Expandable table - which UI elemet is to be used ??

Hi ,
I have to develop a web dynpro layout which has a table.
And the difficult part is that the table is exapandable/collapsible.
When you collapse the table by clicking on the left of the table header frame,
the table should collapse into the header frame.
Which UI element is to be used for this ? Any hints are welcome.
Thanks,
Sandip.

Hi
   You can use the UI Table tree By key for this purpose.
Check this thread
Tree expanded by default
Regards
Sarath

Similar Messages

  • Have a table which pop up on screen any time

    Hi there. I have a problem, would be happy if someone will help me. Most of time i got table which pop ups on my screen, useing explorer or watching movie, thats really anoying..... please help!!!

    Hi there ,  I did more research on the pop up you are getting. You had responded and said that you get no error messages in Safe Mode which was the biggest hint that confirmed my thought process on what you were getting.  Even though the third party sites below are not affiliated with HP at all, I felt the need to share my findings with you. Here are a couple of documents I would like you to read over and use to troubleshoot what is happening on your Notebook.  1. What is wscript.exe? - This document says "Important: Some malware camouflages itself as wscript.exe. Therefore, you should check the wscript.exe process on your PC to see if it is a threat. We recommend Security Task Manager for verifying your computer's security."  2. How can you fix “How do you want to open this type of file (.js) ?” error message ? - This site gives you steps to try and fix the malware. It also gives you links to other websites for more research if you would like to do some on your own as well. It explains what it is, how to fix it, and how you may have received this type of malware.  If all else fails, you could try to do a System Refresh. Windows 8 includes a feature called Refresh your PC that allows you to refresh your computer without affecting your files. This can be useful to recover from a problem. The Refresh option is primarily a repair method - a way to return your computer to a known good state. I hope this helps! 

  • Subtract calculation in an expanding table?

    Hi
    I am currently designing a form in Livecycle ES2 and am in need of calculation script.
    I have an expanding table with add rows on it.
    In the table i have a drop down list with 2 items that be can selected DR and CR, an Amount field and a total field.
    Currently the Amount field and a totals field adds up correctly with this script Sum(Spersonaldetails2.Table1.Item[*].Amount)
    However i now need the Totals field to calculate based on which item from the drop down is selected.
    So if DR is selected i need it to add to the total and if CR is selected i need to subtract from the total.
    One row could be a DR and the next row a CR.
    I am unable to have the totals field subtract the Amount if CR is selected.
    look forward to any help.  i have been wrecking my brain over this.

    Hi,
    A sumif equivalent in FormCalc could look like;
    var totalRows = LoanProposal.Table1._Item.count
    var groupTotal = 0
    var list = ref(LoanProposal.Table1.resolveNodes("Item.[ItemName == ""Lodging""]"))
    for i=0 upto list.length - 1 step 1 do
        groupTotal = groupTotal + list.item(i).Total
    endfor
    Note the totalRows variable is not used but is required so the calculate event knows to fire when a row is added or removed.
    This would have to be repeated for each category so you might want to have a calculate event code at a higher level (like the LoanProposal subform) with some JavaScript code like;
    // Reset all fields
    xfa.host.resetData([Mileage.somExpression, Lodging.somExpression].join(","));
    var rows = Table1.resolveNodes("Item[*]");
    for (var i = 0; i < Table1._Item.count ; i++)
        var row = rows.item(i);
        switch (row.ItemName.rawValue)
            case "Mileage":
          Mileage.rawValue += row.Total.rawValue;
                break;
            case "Lodging":
          Lodging.rawValue += row.Total.rawValue;
                break;
    I've only done the first two categories but you can see the pattern
    Regards
    Bruce

  • Expanding table: Calculating difference to value from previous row

    Hi there,
    I am a complete newbie to LiveCycle Designer (ES2) and have created below document with an expanding table.
    Shared Files - Acrobat.com
    My aim is to make the form user friendly by adding a calculation in the field "Twist" which calculates the difference from the current row to the previous row.
    I have no idea about Java Script, I am afraid, and also don't know if this is possible at all so it's probably a bad idea after all.
    The reason for setting it up as an expanding table is so that the form can be used for all 32 instances the form would be used for (they would all require different amount of rows altogether).
    The calculation would start in row 2 (Checklist.Table1), take the twist value entered in row 2 and calculate the difference to the twist value entered in row 1.
    Then in row 3, it would calculate the difference between twist value in row 3 to row 2 etc.
    So subtract value of field in rown with value in rown-1 or something in this direction.
    Is there anyone at all who could help me with this at all?
    I'd be very grateful for any advice you could give me.
    Thanks a lot!
    Mathilda

    Not sure what happened with the formatting there, try this;
    if (Row1.index > 0 && !Row1.resolveNode("NumericField4[0]").isNull)
        var prevTwist = Table1.resolveNode("Row1[" + (Row1.index - 1) + "].NumericField4[0]").rawValue
        var result = Math.abs(3000 / (Row1.resolveNode("NumericField4[0]").rawValue - prevTwist));
       this.rawValue = result;
    else
        this.rawValue = "";

  • A transacction or table which can display all the souce system

    Hi,
    Is there any transaction or table which can display all the source systems?
    Thanks in advance.

    RSA1->Modeling-> Click on Source Systems, here you can see all the source systems connected with BW.
    tcode: SM59 & expand all the connections. Here you can see all the connections.
    Hope it helps..

  • Expandable Table Need to Sum Different Cost Centers

    I am trying to complete a mileage reimbursement form. I think I have a good design (?) but I am missing a critical efficiency within the form. I want the form to be able to calculate the cost centers across the expandable table within the subform. I have a dropdown that has different cost centers. How would I be able to sum like cost centers within the expandable table? Can I populate another table with just the totals for a particular cost center by calculation? I would need this for all cost centers This would help out the accounting department as the mulitple cost centers would be added.
    My first page is expandable to accomodate multiple rows and has a page total and a grand total that floats if more rows are needed. My second page is more or less just for accounting I have a seperate table that right now is manually completed. The clerk has to printout the form and then manually add each cost center and then add it to the table on the second page.
    I have tried to just use a numeric field on the second page attempting to get the calculations based of the test entry in the cost center of Edit. It only places the data of the first entry and does not cycle through and capture all cost centers in the expandable table that are Edit. Any help in the code and ideas on how to present the total in a new table would be greatly appreciated.I am a beginner at this and am trying to learn and complete this on my own but I am not sure what to do. Attached is my form.
    http://aaa9.org/Updated%20Employee%20Mileage%20Expense%20Form.pdf

    The following JavaScript will loop through the table and total up according to what is selected in the dropdown list. Put it on the Calculate event of a numeric field.
    You'll need a separate field for each category and you'll need to update the rawValue test to the appropriate number for each field (I started with 2 because your first entry, which is 1 is blank). Depending where you put the fields you'll need to update the path to "Table1".
    var nTotal = 0;
    for (var i=0; i < Table1._Item.count; i++){
         if (xfa.resolveNode("Table1.Item[" + i + "].DropDownList2").rawValue == 2){
              nTotal ++;
    this.rawValue = nTotal;
    Couple of tips:
    You've got an extra subform on your "page 3", you've wrapped one subform with another which isn't needed.
    It's important to name your subforms, especially when scripting.

  • Is there any standard SAP table which stores the license number assigned to a delivery item

    Hi Experts,
    This is in relation to license number assigned to a delivery item under ‘Export License Log’. Our scenario is for delivery of type NLCC created for an inter-company stock transport order. (i.e.not a sales order case where the license may get copied from sales order to delivery through copy control)
    As we understand, for legal control – relevant scenarios, export license for each item shall be determined afresh every time the delivery is accessed. (Depending on legal regulation, grouping, destination country, export control class, delivery partners vis-à-vis license master customer assignments etc.)
    To print the license text on one of the delivery output types, we want to access the license number for each item. (determined under export license log)
    Our question is:  is there any standard SAP table which stores the license number assigned to a delivery item?
    We have checked some of the license tables (T606*, VAEX, EMXX etc.) but couldn’t get any specific table storing delivery-item-specific license data.
    Helpful answers Text Removed
    Regards,
    Jagan
    Message was edited by: G Lakshmipathi
    Dont add such text in your post

    Hi Lakshmipathi,
    The export control log can be accessed by going to delivery Extras-> Export license log
    We need a table that stores the determined license for each item in a delivery document ( as shown in the below screenshot)
    Regards,
    Jagan

  • Delete records from tableA which are not in tableB

    Table A contains milions of records which is the best way to delete records from tableA which are not in tableB
    delete from tableA where empno not in (select empno from tableb)
    or
    delete from tableA where empno not exists (select empno from tableb
    where b.empno=a.empno)
    any help

    Hi
    If you can do this, do with this:
    create table tableC
    as select a.*
    from tableA a,
    (select empno from tableA
    minus
    select empno from tableB) b
    where a.empno = b.empno;
    drop table tableA;
    rename table tableC to tableA;
    Ott Karesz
    http://www.trendo-kft.hu

  • How to use identity column in table which value always start from one?

    Hi all,
    Hope doing well,
    sir i created one table which has id with number datatype
    for which i created sequence and stored procedure so suppose
    i inserted two row there it's inserting and id is showing 1, 2
    again i truncate that table and again i inserted value there now the id is starting from 3 , 4
    so my question is that after truncating table can't it insert from 1 in id column?
    thanks,

    >
    sir i created one table which has id with number datatype
    for which i created sequence and stored procedure so suppose
    i inserted two row there it's inserting and id is showing 1, 2
    again i truncate that table and again i inserted value there now the id is starting from 3 , 4
    so my question is that after truncating table can't it insert from 1 in id column?
    >
    Oracle does not have 'identity' columns.
    Oracle sequences are NOT gap free.
    Oracle sequences are independent objects and not associated with any other table or object.
    If you are wanting a gap-free sequnece of numbers, which is not recommended, you will have to create your own functionality. And that functionality will not be scalable or perform well.

  • How to process each records in the derived table which i created using cte table using sql server

    I want to process each row from the CTE table I created, how can I traverse from first row to second row and so on....
    how to process each records in the derived table which i created using  cte table using sql server

    Ideally you would be doing a set based processing rather than traversing row by row as thats more efficient. To answer it specific to your scenario we may need more info. Can you explain with some sample data your exact requirement?
    Please Mark This As Answer if it solved your issue
    Please Mark This As Helpful if it helps to solve your issue
    Visakh
    My MSDN Page
    My Personal Blog
    My Facebook Page

  • In creating a fillable PDF in XI Pro, can I insert a table which can be tabbed through?

    In creating a fillable PDF in XI Pro, can I insert a table which can be tabbed through?

    You're in luck. Create the first field and then right-click it (in Form Edit mode) and select Create Multiple Copies. You'll be able to specify how many copies of the fields to generate, and at what intervals. The nice thing is that although the properties of the new fields will be identical to the source one, they'll each have a unique name, so you'll get an instant "table" of fields.

  • How to create a relational view base on an xmltype table which included sev

    Hi,
    I am using oracle 11.2.0.1.0.
    how to create a relational view base on an xmltype table which content several different .xml files?
    Thanks.
    for examle:
    SQL> SELECT OBJECT_VALUE FROM document;
    Edited by: Cow on Jan 6, 2011 7:57 PM

    For example I already have these three xml files inserted into the document xmltype table.
    These xml files have same schemas. I have attached below.
    I want to show all elements/attribute values in xml files to relational view.
    Is this possible to create one big relational view to show everything
    or I have to create three separate relation views then use UNION to put together? Thanks a lot. Cow
    <?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet href="http://www.accessdata.fda.gov/spl/stylesheet/spl.xsl" type="text/xsl"?>
    <document xmlns="urn:hl7-org:v3" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="urn:hl7-org:v3 http://localhost:8080/home/DEV/xsd/spl.xsd">
    <id root="5ca4e3cb-7298-4948-8cc2-58e71ad32694"/>
    </component>
    </document>
    <?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet href="http://www.accessdata.fda.gov/spl/stylesheet/spl.xsl" type="text/xsl"?>
    <document xmlns="urn:hl7-org:v3" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="urn:hl7-org:v3 http://localhost:8080/home/DEV/xsd/spl.xsd">
    </component>
    </document>
    Edited by: Cow on Jan 4, 2011 9:51 AM

  • How to Read data from a table which is defined as a field in another table

    Hi
    Iam working with FM: 'CUCB_GET_CONFIGURATION'
    <b>  Import parameter configuration as a table.</b>
      <u>but configuration has another table as a field.</u>
    i want to read the inner table fields.
    how can i read the table which is defined as field in configuration table.
    Please try to give me a solution.
    can i have the declartions too....
    Thanks,
    sri

    Hi jonnakuti,
    1. simple
    2.
    DATA : CONFG      TYPE IBCO2_INSTANCE_TAB2.
    <b>DATA : WA TYPE LINE OF IBCO2_INSTANCE_TAB2.</b>
    3. just copy paste
    4.
    report abc.
    TYPE-POOLS : IBCO2.
    DATA : INSTANCE     TYPE     CUIB_CUOBJ.
    DATA : CONFG      TYPE IBCO2_INSTANCE_TAB2.
    DATA : WA TYPE LINE OF IBCO2_INSTANCE_TAB2.
    CALL FUNCTION 'CUCB_GET_CONFIGURATION'
      EXPORTING
        INSTANCE                           = INSTANCE
      IS_BUSINESS_OBJECT                 =
      IV_MOMENT                          =
      IV_WITH_DB_INSTANCE                =
    IMPORTING
      IBASE                              =
       CONFIGURATION                      = CONFG
      EO_CBASE_REF                       =
    EXCEPTIONS
       INVALID_INPUT                      = 1
       INVALID_INSTANCE                   = 2
       INSTANCE_IS_A_CLASSIFICATION       = 3
       OTHERS                             = 4
    read like this
    LOOP AT CONFG INTO WA.
    ENDLOOP.
    regards,
    amit m.

  • Transaction Currency Tables which will give totals only

    Transaction currency purpose  bseg, bkpf, bsis, bsid contain document wise details hence will not be useful for my purpose,   i need a table which will give transaction currency  totals only.

    Hi Anu,
    I am unable to understand your exact requirement as if you need total of any transaction currency then there must be a criteria for the same like one want to add all currencies monthly/annually/weekly for reporting purpose and in this case you have to write a report and add currencies.No tables can hold such calculative recordes.
    Please elaborate more so I can u'stand requirement.
    Regards,
    Gaurav

  • How to import a table which is in mdb file(same table in different mdb's)

    Hello,
    how to import a table which is in mdb file(same table in different mdb's)
    e.g. table 'EMPLOYEE' is in 'test.mdb' the same table 'EMPLOYEE' is in 'current.mdb'
    How this can be done on click of a button on my form if the path of mdb is provided?
    Thanks

    This question is not related with ora dev forms, its about Microsoft Access.
    Use import option (File >> Get External Data >> Import)
    or use TransferDatabase action.

Maybe you are looking for

  • ITunes gets unresponsive when I click on Podcast tab in the device management window.

    Hello, I run the iTunes 11.1 on MacOX 10.8.5. iTunes gets unresponsive each time I click on Podcast tab in the device management window. (when my iPhone5 is connected, running iOS7) There was no bug before I upgrade iTunes and iOS. Is this a know bug

  • Not able to close a PO

    Hi all, We are using extended classic scenario. When we are trying to close a PO from portal, it is throwing error message, partner number blocked, and this is becasue, the business partner is centrally blocked(as the person has left the org.). Do we

  • Safari not loading any webpages after 10.7.3 update.

    I did the update through software update, and I saw a lot of people having errors with that, but i did not get the cui error, my only issue is safari stopped loading any webpages. If I try to enter an address in the bar and hit enter, it just beachba

  • ERS Payment

    Can someone please tell me how I can display a P.O based payment through ERS. I have done MIGO succesfully but the payment is not reflected in FBL1N. So is there a way to look to see if a payment has been scheduled or not ( to see if ERS is working o

  • NWDI and JDK 1.5

    Hi is there anyone here using JDK 1.5 with NWDI SP 15 and EP 6 SP 15?