How do i display additional row details on an hGrid?

I have an hGrid rendering fine down to 4 levels. IT's defined as:
PageLayoutRN
--->hGrid region
------>tree region
--------->members
------------>nodeDef1 (set to my master VO, i.e inspection number)
------------>childNode1 (set View Link Accessor property to TestsVO )
--------------->members
------------------>nodeDef2 (set to my child level VO, i.e. Test Number )
------------------>childNode2 (set View Link Accessor property to ResultsVO )
--------------------->members
------------------------>nodeDef3 (set to my 3rd child level VO, i.e. Test result)
------------------------>childNode3 (set View Link Accessor property to ResultAttachmentsVO )
--------------------------->members
------------------------------>nodeDef4 (set to my 4th child level VO, i.e. Result Attachments )
This all renders fine. NOW i want to add info at each node level. i.e. nodeDef1, I"d like to add other data about the inspection in a table-style display. nodeDEf2, i'd like to add data about the Test. nodeDef3, data about the result. and then finally on nodeDef4, in addition to data about the attachyment, i"d like the filename to be a messageDownload that would link to the actual file in a BLOB.
I think this is similar to the Personalize PAge page we use in most of self-service apps, where we can collapse/expand an hGrid, but we also see other data elements and actions off to the right. Another example is the About this page link, which has what appears to be an hGrid.
How do I add these node-level/row-level details ? when I right-click in jdev, i can only choose more members/child-nodes. what am i missing?
Thanks!

Glad it is working for you now :)
--LC                                                                                                                                                                                                                       

Similar Messages

  • How can I display the rows into columns.

    How can I display the rows into columns. I mean
    Create table STYLE_M
    (Master varchar2(10), child varchar2(10));
    Insert itno style_m
    ('MASTER1','CHILD1');
    Insert itno style_m
    ('MASTER2','CHILD1');
    Insert itno style_m
    ('MASTER2','CHILD2');
    Insert itno style_m
    ('MASTER3','CHILD1');
    Insert itno style_m
    ('MASTER3','CHILD2');
    Insert itno style_m
    ('MASTER3','CHILD3');
    Note : The Master may have any number of childs.
    I want to display like this..
    Master child1, child2, child3, .......(dynamic)
    MASTER1 CHILD1
    MASTER2 CHILD1 CHILD2
    MASTER3 CHILD1 CHILD2 CHILD3
    Sorry for disturbing you. Please hlp me out if you have any slution.
    Thanks alot.
    Ram Dontineni

    Here's a straight SQL "non-dynamic" approach.
    This would be used if you knew the amount of children.
    SELECT
         master,
         MAX(DECODE(r, 1, child, NULL)) || ' ' || MAX(DECODE(r, 2, child, NULL)) || ' ' || MAX(DECODE(r, 3, child, NULL)) children
    FROM
         SELECT
              master,
              child,
              ROW_NUMBER() OVER(PARTITION BY master ORDER BY child) r
         FROM
              style_m
    GROUP BY
         master
    MASTER     CHILDREN                        
    MASTER1    CHILD1                          
    MASTER2    CHILD1 CHILD2                   
    MASTER3    CHILD1 CHILD2 CHILD3             Since you said that the number of children can vary, I incorporated the same logic into a dynamic query.
    SET AUTOPRINT ON
    VAR x REFCURSOR
    DECLARE
            v_sql           VARCHAR2(1000) := 'SELECT master, ';
            v_group_by      VARCHAR2(200)  := 'FROM (SELECT master, child,  ROW_NUMBER() OVER(PARTITION BY master ORDER BY child) r FROM style_m) GROUP BY master';
            v_count         PLS_INTEGER;
    BEGIN
            SELECT
                    MAX(COUNT(*))
            INTO    v_count
            FROM
                    style_m
            GROUP BY
                    master;
            FOR i IN 1..v_count
            LOOP
                    v_sql := v_sql || 'MAX(DECODE(r, ' || i || ', child, NULL))' || ' || '' '' || ';
            END LOOP;
                    v_sql := RTRIM(v_sql, ' || '' '' ||') ||' children ' || v_group_by;
                    OPEN :x FOR v_sql;
    END;
    PL/SQL procedure successfully completed.
    MASTER     CHILDREN
    MASTER1    CHILD1
    MASTER2    CHILD1 CHILD2
    MASTER3    CHILD1 CHILD2 CHILD3I'll point your other thread to this one.

  • Display Additional Absence Details based on Absence Type selected

    On Oracle Absence Details screen through SSHR,
    Can display of Additional Absence Details fields be related to Absence Type field in any way ? Requirement is to display additional flex fields only for one absence type and not for others but in SSHR, additional absence details fields are always shown irrespective of what user selects.
    Thanks,
    Tanveer

    Hi Tanveer,
    Context sensitive DFFs are currently not supported by OAF and there an ER 6625335 logged by Oracle for the same.
    In absence of context sensitive DFF you can use the $FLEX$ option, using this option you can define dependent segments which will get enabled only in case of a specific value for all other values the fields will be read-only.
    Also, in order to read the absence data while leave application you will have to read the absence_type data from the HTML code stored in the HR_API_TRANSACTIONS table dumped into a column CLOB named TRANSACTION_DOCUMENT. For more details on how to read XML data from HR_API_TRANSACTIONS refer the link http://www.apps2fusion.com/apps-training/apps-functional-documents/ame-sshr/436-parse-xml-hrapitransactions-sshr-hrms-self-service
    Hope it helps. Let us know if you need further details.
    Thanks,
    Sanjay

  • How to make only one row detail disclosed in uix:TableDetail

    I display row details to user with <uix:TableDetail>. I'd like to have only one detail displayed in the same time. When the page first loads, all details should be hidden, but whe user shows one another detail and one is already disclosed, only the new one should be displayed.
    I use <bc4juix:Table> and JDev 9.0.3.2
    Thanks in advance

    Viliam,
    The <table> element has the detailDisclosure complex attribute that you should use to control whether the details for table rows are disclosed. You should databind the detailDisclosure attribute to some DataObjectList that has the "disclosed" key set for each DataObject in the list. Then, when you disclose a new row, you should modify the DataObject for the corresponding row in the DataObjectLlist, and ensure that all other DataObjects set the "disclosed" key to false.
    Hope this helps,
    Ryan

  • How to populate the selected row details of table in the next view?

    hi,
    Im having a table, on selecting a particular row of a table by clicking on a radio button. i need that row details to be passed on(populated) to the next view when i navigate to that view by clicking on a button?
    Thanks & Regards,
    Suresh

    Hi Suresh,
    Your scenario is simple. Just follow the ex as shown below
    (Assuming you want default selection view provided by table itself.)
    1>Create 2 views (Ex:A and B)
    2>Create a Context with a node and attributes(For Ex:Person as node and Fname and Last Name as attributes
    2>In A view create a table with F name and L Name(map to context as well) and a action button to navigate to B view when you selected a particualr row o.k
    3>In B view, create a TextView with mapping to LastName(or all the data if you want from input selection) from the context
    If you want you can add back action button from B view to A view for easy navigation.
    4>Execute the application and select any row in the table appeared, press next action button,you can see that the selected row details will be shown in second(B) view.
    If you do the above example, I think you can easily find the solution for navigation issue.. try it out.
    In case if you are not able to ...let me know..I have that example.
    Hope that helps
    Regards
    Praveen

  • How can i display the login details in the Web Ui

    Hi All,
              How can i display the information regarding the person who logged into the Web Ui and where can i find the seetings regardin this.Please provide your valuable suggestions
    Regrads,
    Lakshman.P

    look at this link https://wiki.sdn.sap.com/wiki/display/CRM/WelcomeUserMessageinWeb+UI and you will solve your problem.
    have a nice day.

  • How to avoid displaying empty rows in a table?

    The situation is as follows:
    I have got a set of questions under a particular category say marketing category.
    The user will be displayed with a table consisting of a set of questions from a particular category with four radio buttons for each question.
    Now once he is done with all the set of questions under a particular category, he will be navigated to the next set of questions under some other category say 'xyz'
    Now instead of creating seperate view objects for each category, we have created a view object which will hold all the set of questions from all the category but will display only the set of questions under a particular category by declaring a variable in the backing bean and setting the question rendering to the value in the variable. the value to the variable will be changed once the user is done with answering all the set of questions under a particular category.
    Now the problem that i am facing is:
    Because of the rendering condition that i have used, it displays only those rows that have the rendering condition set to the variable in the backing and displays all other empty rows overlapped.
    How do i avoid this situation ??

    Seems odd, but you could use COALESCE to achieve this.
    ME_XE?create table all_nullz (col1 number, col2 number, col3 number);
    Table created.
    Elapsed: 00:00:00.20
    ME_XE?
    ME_XE?insert into all_nullz values (1,2,3);
    1 row created.
    Elapsed: 00:00:00.12
    ME_XE?insert into all_nullz values (null, null, null);
    1 row created.
    Elapsed: 00:00:00.06
    ME_XE?
    ME_XE?delete from all_nullz where coalesce(col1,col2,col3) is null;
    1 row deleted.
    Elapsed: 00:00:00.26
    ME_XE?

  • How can we display 2 rows in a single row with new coulmn names?

    Hi,
    I have a requiment as shown below.
    ME A_END Z_END
    1 aaaa
    2 zzzzz
    I need the above data in the below format.
    A_ME Z_ME A_END Z_END
    1 2 aaaa zzzzz
    How can we achive this?

    user6755466 wrote:
    Hi Alex,
    Thanks for your quick response.
    Actually the coulmns ME_ID, A-END, Z-END, etc doesn't have fixed values as you hard coded with values (e.g., 1, 2) in your query.One way is to assign a "row number" to each row and then pivot using the known row numbers of 1, 2 ... etc.
    Example:
    SQL> ed
    Wrote file afiedt.buf
      1  with test as
      2  (
      3  select 3 a_end, 'aaaa ' z_end from dual union all
      4  select 5 a_end, 'zzzzz' z_end from dual
      5  )
      6  select max (decode (rn, 1, a_end)) a_me
      7       , max (decode (rn, 2, a_end)) z_me
      8       , max (decode (rn, 1, z_end)) a_end
      9       , max (decode (rn, 2, z_end)) z_end
    10  from (select a_end, z_end
    11              ,row_number() over (order by a_end, z_end) as rn
    12*       from test)
    SQL> /
          A_ME       Z_ME A_END Z_END
             3          5 aaaa  zzzzz
    SQL>Here, the values are 3 and 5, but they are assigned a row number based on the order of them and then the decode uses that row number to pivot them.
    Of course, as everyone else has pointed out, the best place to be doing this is in a dedicated reporting tool. SQL is not the best of places to pivot data for reporting purposes.

  • JDeveloper Team - Refers: How do I display multiple rows in a gridControl

    JDeveloper Team
    With reference to the previous reply..
    My query is not based on a view object. It uses the executeRetrieval command to do the select statement.
    The query obtains the correct number of rows but it displays only the first record out of the selected rows.
    pls help me find a solution.
    null

    Can you try to list the row values using the dataitem that the executeRetrieval method returns.
    ex.,
    import javax.infobus.*;
    DbAccess db = sessionInfo.getDbAccess();
    ScrollableRowsetAccess scr =
    (ScrollableRowsetAccess)db.executeRetrieval("select * from dept", "infobus:/oracle/Session1/DynamicQuery", null);
    System.out.println(scr.getRowCount());
    null

  • JDeveloper Team - How do I display multiple rows in a gridControl

    When I execute a SQL select statement and display the results in a gridControl only the first row gets displayed in the grid.
    Could you please give me a solution for this problem?
    null

    If this query is based on a View object, can you verify the number of rows returned in BC4J Tester ?.
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by kusan Atukorala ([email protected]):
    When I execute a SQL select statement and display the results in a gridControl only the first row gets displayed in the grid.
    Could you please give me a solution for this problem?<HR></BLOCKQUOTE>
    null

  • How can I display pdf file details on 64-bit Windows 7 detail view?

    I'd like to display some pdf file details in order to classify them by author, title, subject... This option was simply possible for pdf file on windows xp (just by selecting the desired details on detail view when exploring folders) but it seems to be impossible for windows 7 (It's possible for other file like *.jpg, mp3...). Is there a program or a plugin to solve this problem? Thank you very much.

    It would appear, very annoyingly, that Acrobat is still lagging in the x64 department! It will, at the moment, only run as an x86 sub.....

  • How to not display certain row

    Hi all,
    I'm creating a report using XML Publisher in Excel format.
    I have a group, but I want the report to exclude rows that meet certain criteria. I've been trying attribute@incontext. help anybody?
    thanks

    Add condition in your for-each like
    <?for-each:ROW[YOUR_CONDITION]?>
    for example,
    <?for-each:ROW[DEPTNO!=10]?>
    This should exclude records with DEPTNO=10.
    If you still have doubts paste your xml structure here and lets us know how you want to filter the records.

  • How i can display multiple row from one row

    Hi ,
    i have table called temp_probabaility and contain 2 colomns (id1 , path )the values as below ,
    ID1 Path
    3 ;2,4,6
    4 ;1;2;3;5
    5 ;1;2;3;4;5
    i need to convert the values to be like below ,
    id1 path
    3 2
    3 4
    3 6
    4 1
    4 2
    4 3
    4 5
    please any help ?
    Edited by: user11309581 on May 13, 2011 4:13 PM
    Edited by: user11309581 on May 13, 2011 4:16 PM
    Edited by: user11309581 on May 13, 2011 4:18 PM

    BluShadow wrote:
    it just needs to use the \d+ as you did.Not sure what you mean. Your code did not produce any rows for id1=6:
    SQL> with x as (select 6 as id1, ';;;' path from dual)
      2  --
      3  -- end of test data
      4  --
      5  select id1, regexp_substr(path,'\d+',1,rn) as path
      6  from   x cross join (select rownum rn
      7                       from dual
      8                       connect by rownum <= (select max(length(regexp_replace(path,'[^;]'))) from x))
      9  where regexp_substr(path,'\d+',1,rn) is not null
    10  order by 1,2
    11  /
    no rows selected
    SQL> with t as (select 6 as id1, ';;;' path from dual)
      2  -- end of on-the-fly data sample
      3  select  id1,
      4          regexp_substr(path,'\d+',1,column_value) path
      5    from  t,
      6          table(
      7                cast(
      8                     multiset(
      9                              select  level
    10                                from  dual
    11                                connect by level <= length(regexp_replace(path,'[^;]'))
    12                             )
    13                     as sys.OdciNumberList
    14                    )
    15               )
    16  /
           ID1 PAT
             6
             6
             6
    SQL> Same when path is NULL:
    SQL> with x as (select 6 as id1, '' path from dual)
      2  --
      3  -- end of test data
      4  --
      5  select id1, regexp_substr(path,'\d+',1,rn) as path
      6  from   x cross join (select rownum rn
      7                       from dual
      8                       connect by rownum <= (select max(length(regexp_replace(path,'[^;]'))) from x))
      9  where regexp_substr(path,'\d+',1,rn) is not null
    10  order by 1,2
    11  /
    no rows selected
    SQL> with t as (select 6 as id1, '' path from dual)
      2  -- end of on-the-fly data sample
      3  select  id1,
      4          regexp_substr(path,'\d+',1,column_value) path
      5    from  t,
      6          table(
      7                cast(
      8                     multiset(
      9                              select  level
    10                                from  dual
    11                                connect by level <= length(regexp_replace(path,'[^;]'))
    12                             )
    13                     as sys.OdciNumberList
    14                    )
    15               )
    16  /
           ID1 P
             6
    SQL> SY.

  • How do you add additional rows to a table

    ...on Word of Mac?

    If you just want to add an extra row at the end of the table all you have to do is hit tab while in the last cell, shroudlupe.
    If you want to add a row in the middle or top of a table, highlight the row above or below where you want the new one to be and then go to the "Table" menu. Go down to the "insert" option and choose whichever is appropriate from "Rows below" or Rows above".
    (If you want to insert more than one row ,then select multiple rows at the first step above, rather than just one , and it will insert the same number of rows that you have selected).
    Another way of doing it, after selecting a row in a table, is to simply access the contextual menu by holding down the control key and clicking, or by "right clicking", and then select "insert rows" from the options presented.
    Cheers
    Rod

  • How to display additional fields in the results a 'search user'?

    This may be a newb question but how can I display additional user attributes in the results of a user search in the admin console?
    i.e. more than just the standard fields of: User ID, First Name, Last Name, Status, Enable, Disable, Unlock and Delete.
    I would like to include some UDFs that I have defined for the create user form e.g. personnel number.
    Thanks,
    Bernie

    Thats not gonna work for sure. Thats to include additional attributes in the search input parameters drop-down. There is another procedure to do that, but not very sure if it works or not because once I was decompiling the code and found that it doesn't have an implementation. You can anyway try it out, the worst would be that you would not be able to see the column headings, but try atleast:
    And thats through the use of properties file. Open up ** and search for the following section-
    *#global.request.users.selectedListDisplayFields=*
    *#global.request.users.selectedListDisplayFields.lables=*
    Remove the comments and update it to below-
    global.request.users.selectedListDisplayFields=USR_UDF_EMPID
    global.request.users.selectedListDisplayFields.lables=global.xmlmetadata.users.USR_UDF_EMPID
    where USR_UDF_EMPID is the UDF and global.xmlmetadata.users.USR_UDF_EMPID is its associated translation.
    Thanks
    Sunny

Maybe you are looking for

  • No continuous play in iTunes

    Recently, when I'm in iTunes, I cannot get it to do continuous play in playlists or otherwise. It just plays one song and then stops. If I hit the fast forward button, the song stops. The songs are all checked, so that is not the problem. I've restar

  • InDesign CS6 Crashes when opening any document from the network

    Below are my notes on this issue along with the useless crash reports that Adobe and Apple ignore. File location showing now special or reserved words in path: /Volumes/design/Design/Print/COLOR CARDS/Color Card-Country/INHOUSE After crash, reopens d

  • Report for stocks with no movement

    Hi All, I would like to know is there a report / transaction, where i can check for all materials in a particular plant / storage location, which has stock, but there was no movement for a particular period. Eg: Mtl-A, stock - 100 nos, Period - Jan 2

  • Serious about cleaning up my library, and i have this question on odd duplicate problem

    Hi all, I am serious about cleaning up my library, and i have this question: Is there such thing as a duplicate anymore in iTunes, and what happened to the View / Find duplicates feature? I could have sworn there was a built-in way... Anyway, In my m

  • How to add style parameter

    Is there a way to add a style parameter and argument to a text area using the unstructured form generation tool? I tried adding the string "style='font: 10pt Helvetica" inside the tag delimeter following the #ename.item# string. Portal generated an a