Fusion HCM SaaS - how to find screens behind VO & the VO sql query

In my view, it is not currently possible for a customer to find out this information in SaaS mode... is it?

I wonder if there is a way we could get this information internally for a few big screens HCM. (for example, the various "Manage no one screens ')? This would make it much easier for partners, OCS & customers to write the new data in BI Publisher model and meet a number of needs reports not yet served by the areas delivered.

Hi Kiran,

the model of data (tables, views, etc.) are documented in the Fusion Apps OER (https://fusionappsoer.oracle.com), but is not necessarily you help understand how a particular screen derives its data.

We have a few messages from blog out there that explain how to identify the code objects:

https://blogs.Oracle.com/fadevrel/entry/finding_code_artifacts_for_customization

https://blogs.Oracle.com/fadevrel/entry/finding_code_artifacts_for_customization1

But I don't think that there is a way to achieve what you are looking for if you have access to an instance of SaaS.

Tags: Oracle Applications

Similar Questions

  • How to find this value in the oracle database to find out the table

    Hi expert,

    I know there is a value in the oracle database, please show me how to find this value in the oracle database to find out the table that contains this value.

    Thank you very much

    918440 wrote:
    Hi expert,

    I know there is a value in the oracle database, please show me how to find this value in the oracle database to find out the table that contains this value.

    Thank you very much

    Go to the online documentation and discover the data dictionary. You may be interested in reading about ALL_TAB_COLUMNS, but you will need to know what you want until you can query the view to find information

  • How to access screen that allows the addition of a name, delete a name or a touch edition?

    In Windows Live Mail, the new Message 'To' when clicked on gives a list of contacts; but the list does not allow adding, deleting or changing one or more of the names.  How can I get to a screen that allows the same?

    Open the list of Contacts (address book), and they do. Simply click on this icon.
     
     
     
     
     
    You can add an address by right-clicking on a message of a received email and Add sender to Contactsheader.
     
  • How to find which user have the Channel Manager

    Hello

    How to find which user are responsible for R12 Channel Manager.

    And how to invite the partner already in the list of my partners.

    Please answer me as soon as possible

    Thank you
    Vivek

    How to find which user are responsible for R12 Channel Manager.

    You can run 'The responsibility one users' simultaneous program or run the script in (how to find Out who the responsibility has been granted to A specific user? [ID] 304687.1).

    Please answer me as soon as possible

    For the responses of the ASAP, please log an SR.

    Thank you
    Hussein

  • How to find null values in the table

    Hi experts,

    my version is oracledb10g:

    I am doubted simple.

    for example:

    create table ex1 (e varchar2 (20));

    Insert ex1 (null).

    insert into ex1 (e)

    number of will be: 2

    I can easily find the value "e".

    so my question is:

    How can I find null values in the table and I want to remove the null values from the table.

    ADF 7 wrote:
    Hi experts,

    my version is oracledb10g:

    I am doubted simple.

    for example:

    create table ex1 (e varchar2 (20));

    Insert ex1 (null).

    insert into ex1 (e)

    number of will be: 2

    It depends on what you expect. If you issue count (*) you ask Oracle "how many lines there. If you issue a County () you ask Oracle 'how non null values for are there. "

    ADF 7 wrote:

    I can easily find the value "e".

    so my question is:

    How can I find null values in the table and I want to remove the null values from the table.

    delete from 
    where  is null;
    

    Ideally you would simply place a NOT NULL constraint on the column in question, thus prohibiting NULL values into the system (assuming that your business needs, it is that the column MUST always have a value).

  • How do find no data in the table

    Hi all

    I have 250 table in my diagram and when I query like this

    Select * from object where type_objet = 'TABLE' and owner = 'MATTELLI.
    order by object_name CSA


    Some tables have no data in it. How to find the tables that not have data or records

    Thanks and greetings
    Srikkanth.M

    Hi Srikkanth,

    First of all, if you are only interested in object TABLE type, so you should better use dba_tables instead of dba_objects.
    Then, assuming that your statistics are up to date, it would look like:

    SELECT *
      FROM all_tables
     WHERE owner = 'MATTELLI'
      AND num_rows > 0
     ORDER BY table_name ASC
    

    Otherwise, you can go with a subquery and a 'select count.

    HTH,
    Thierry

  • How to create screen saver using the java bean

    Hi all

    can someone knows how to create screen saver using java beans?

    Thanks in advance.
    Sarah

    It is a strange requirement, but you can go

    A TIME-NEW-FORM-INSTANCE:

    DECLARE timer_id Timer;
     one_minute NUMBER(5) := 60000;
    BEGIN
     timer_id := CREATE_TIMER('chnage_color', one_minute, REPEAT);
    END; 
    

    WHEN-TIMER-EXPIRED:

    DECLARE
         RandomR NUMBER(10):=dbms_random.value(1,256);
         RandomG NUMBER(10):=dbms_random.value(1,256);
         RandomB NUMBER(10):=dbms_random.value(1,256);
    BEGIN
    
     SET_CANVAS_PROPERTY('CANVAS2',BACKGROUND_COLOR, 'R'||RandomR||'G'||RandomG||'B'||RandomB);
    END; 
    
  • How to find a table, using the name of the column in the database schema

    Dear all,

    Please help me on

    using the name of the column, how to find a table name in the database schema.

    Thanks in advance

    Hello

    You can query the data dictionary views all_tab_columns and user_tab_columns.
    For example, to find the tables in the scott schema have called deptno columns:

    SELECT  table_name
    FROM    all_tab_columns
    WHERE   owner           = 'SCOTT'
    AND     column_name     = 'DEPTNO';
    

    Remember that anything inside quotes is case-sensitive.

    The all_tab_columns view has one row for each column in each table (or view) that you have the privileges to use.
    The user_tab_columns view is a subset of all_tab_columns, containing only your own tables (and views).

  • How to find a day in the next few days 27

    Hello

    How to find a date = "Wednesday" in the coming days 27? " The script below does not work. Could someone tell me what's wrong with this code? I suspect that the WHERE clause which make the mistake!


    SELECT TO_DATE (SYSDATE + ROWNUM, 'DD-MON-YY')
    DUAL CONNECT BY ROWNUM FROM < = 27
    WHERE TO_CHAR (DAY, 'DAY') = 'SUNDAY '.

    johnsyns wrote:
    Why doesn't it for the other days? When I tried to change the day except Wednesday. It returns nothing.

    Reason why Justin code does not work for the other days is a date format mask DAY Returns padded white day to 9 characters which is the longest name of day, yes you guessed right, is WEDNESDAY. You must either virgins pad or use modifier format FM:

    SQL> select *
      2    from (SELECT TO_DATE(SYSDATE+ROWNUM, 'DD-MON-YY') dt
      3            FROM DUAL CONNECT BY ROWNUM <= 27)
      4  WHERE TO_CHAR(dt,'DAY') = 'TUESDAY'
      5  /
    
    no rows selected
    
    SQL> select *
      2    from (SELECT TO_DATE(SYSDATE+ROWNUM, 'DD-MON-YY') dt
      3            FROM DUAL CONNECT BY ROWNUM <= 27)
      4  WHERE TO_CHAR(dt,'DAY') = 'TUESDAY  '
      5  /
    
    DT
    ---------
    07-APR-09
    14-APR-09
    21-APR-09
    28-APR-09
    
    SQL> select *
      2    from (SELECT TO_DATE(SYSDATE+ROWNUM, 'DD-MON-YY') dt
      3            FROM DUAL CONNECT BY ROWNUM <= 27)
      4  WHERE TO_CHAR(dt,'FMDAY') = 'TUESDAY'
      5  /
    
    DT
    ---------
    07-APR-09
    14-APR-09
    21-APR-09
    28-APR-09
    
    SQL> 
    

    SY.

  • How to find valid cases in the truth table?

    Hello

    I am using a truth table to select the next case in my state machine. The number of possible cases is 256 with a set of 8 input of Boolean values. The following is a generic example.

    Obviously, I don't need the conditions of passage, but how to weed them out of the table?

    0          1          2          3          4          5          6          7          8          9          10        11        12        13        14            15in house?            F          T          F          T          F          T          F          T          F          T          F          T          F          T          F            Tpassed test?       F          F          T          T          F          F          T          T          F          F          T          T          F          F          T            Tscrapped?          F          F          F          F          T          T          T          T          F          F          F          F          T          T          T            T in inventory?      F          F          F          F          F          F          F          F          T          T          T          T          T          T          T            T

    The numbers along the top refer to the result of the code just before the structure case in the attached vi.

    Tay

    jcarmody wrote:

    I often do.  Take each of your eight Boolean and consolidate them in a table, convert the table number and select your case on that based on the number.  Thus, if the first fifth suite and boolean (from above) are true, you have 25 case (10011000 = 25).  You can have a case manage multiple values, separate them with a comma in the selector.  It will make you famous.

    I do the same thing, but the value of the radix of the binary display case.

  • How to find out who is the administrator account on my laptop if there are three users

    My son and daughter created the user account on my laptop how I tell me who is the administrator user and change in me. now, I can not even run or install your antivirus to protect my laptop because it asks me to the administrator. any suggestions?   either by the way, I have version XP of Windows 7... the gardener in version in the forum section has no XP version of windows 7.

    My son and daughter created the user account on my laptop how I tell me who is the administrator user and change in me. now, I can not even run or install your antivirus to protect my laptop because it asks me to the administrator. any suggestions?   Incidentally, I have version XP of Windows 7... the gardener in version in the forum section has no XP version of windows 7.

    What does that mean? There is a Windows 7 or Windows XP, but not the version XP of Windows 7. Or do you mean "Windows XP Mode", which has been installed on a full Windows 7 Edition-Professional host? I'm a bit confused.

    Next the administrator account number-> may request to your son or doughter - they know what account is a member of the admin group (and they also know the password for this account).

  • How to find missing values in the table?

    Hi all..

    Please help me.

    1.jpg

    For example:

    I have a. table

    in this table, I have a folder with the number 1 up to 10 serial number.

    And then, in table B, I put number between 1 and 10.

    and I use the number 1, 2, 3, 6, 8, 10.

    I want to find missing values between 1 and 10. So, can I select with query for this case?

    It's the value of query output:

    4, 5, 7, 9

    Sorry for the bad language.

    Thank you all.

    Select

    r

    Of

    (

    Select Rownum r

    Of the double

    Connect by Rownum<= (select="" serialto="" from="">

    )

    where are > = ((select serialfrom from tablea))

    less

    Select the series from tableb

  • How to find similar data in the worksheet?

    Hello.

    I need to find in my products from worksheet with the same name and find themselves their value on the cell.

    How can I do?

    Greetings

    Barbara

    Hi Barbara,

    What do you mean by "collect their value in cell one (e)?

    Do you mean something like this?

    Summary::B2: = SUMIF (Data::A, A2, Data::B)

    Fill down.

    Kind regards

    Barry

  • How fix a screen upward with the OS lock, check the point 9.2 on 4S

    How can I solve on iphone4s "update check" screen lock to IOS 9.2.

    Try resetting your device. This will not erase your data stored on that device.

    • Press and hold the sleep/wake button
    • Press and hold the Home button
    • Press and hold both buttons until the display turns off and on again with the Apple logo on the subject.

    Take a look at these articles:

    Solve the iOS update and restore error in iTunes - Apple Support

    Get help with iOS update or restore errors - Apple Support

  • How to find a word in the name of channels?

    Hello

    I want to search for a word in a channel name

    For example, I have 3 channels:

    1 Re_treffensiemich

    2 Re_treffensiemich_ouipourquoipas

    3 Jaimele_pate

    I already have the first "Re_treffensiemich".

    I want to detect the "Re_treffensiemich_ouipourquoipas", its channel number (2) and also read the '_ouipourquoipas '.

    So I'm looking for something to find a portion of a string

    How can I do that?

    Thanks for help

    Fred

    Hi Fred

    I hope that the following script solves your problem. It compares all strings in all groups with a string.

    Dim oGroups, oOneGroup, oChannels, oOneChannel, sChnName, sSearchText
    sSearchText = "treffensiemich".
    Set oGroups = Data.Root.ChannelGroups
    For each oOneGroup in oGroups
    Set oChannels = oOneGroup.Channels
    For each oOneChannel in oChannels
    sChnName = oOneChannel.Properties ("name"). Value
    If InStr (1, sChnName, sSearchText, vbTextCompare in) > 0 Then
    ' Do something
    Call Msgbox (sChnName)
    End If
    Next
    Next

    Concerning

    Winfried

Maybe you are looking for