How to display details through toggle button in a table.

Hi Experts,
I have a table, which has a list of orders in the table. I also have a button in every row, wherein on click of the button i should be able to display detailed information of  the selected order under the row. This button should actually perform the actions of hiding and unhiding the detailed information. Can anyone help me with this.Please check the attachment.
Thanks & Regards
Chittibabu

Hi Chittibabu,
what about using a TreeTable control?
SAPUI5 SDK - Demo Kit
Regards
Tobias

Similar Messages

  • How to display records when clicking button in alv

    I am using screen painter to create two buttons
    'classical' and 'alv'.
    When i click the first button control should move to
    corresponding classical program.Evan i got the answer
    I am not able to display the "select-options button" in the
    output as in classical report program.
    It displays all records instead of selecting particular records from select-option button.
    So how to display the select option button(i.e in the classical view program) while "clicking the classical button " .
    plz send me the coding....

    hi,
    try this.
    SELECTION-SCREEN BEGIN OF SCREEN 100.
    SELECT-OPTIONS : EBELN FOR V_EBELN MODIF ID G1,
                     VBELN FOR V_VBELN MODIF ID G2.
    SELECTION-SCREEN END OF SCREEN 100 .
    PAI.
    module mod_name.
    case sy-ucomm.
    when 'BUTT!'.
    call selection-screen 100.
    when 'BUTT2'.
    """"your ALV logic"""".
    endcase.
    endmodule.
    if...any doubts revert back.
    Regards
    Sandeep Reddy

  • How to display more than 200 rows in the table?

    Hi Experts,
    Is that possible to display more than 200 rows in a Table.
    when i query from table, it has 1000 rows, i want to display all the 1000 rows in the Table.
    when i query, the values are displaying up to 201 rows only,
    when i click next on 200 - 201 it throws Exception says
    *"Query has exceeded 200 rows. Potentially more rows exist, please restrict your query."*
    let me know how to display all the 1000 rows in a table without Exception.
    Any idea will be highly appreciated.
    Thanks
    Aswath

    The number of rows retrieved is controlled by profile option "FND: View Object Max Fetch Size". I believe 200 is the default value. Pl see these MOS Docs
    386402.1- Query Has Exceeded 200 Rows
    275876.1 - Oracle Application Framework Profile Options Release 11i (11.5.10)
    HTH
    Srini

  • How to display smartform through transaction code on action of button

    Hi All,
    Please let me know how can i display smartform through tcode on button action.
    For e.g. I have a F.62 tcode where the smartform is attached. Now i want a button in BSP which when clicked should call tcode F.62 and display that smartform.
    Also if i cannot use "CALL TRANSACTION" can i use "SUBMIT" and call that transaction.
    If not how will i able to acheive that?
    Please help as it is very urgent.
    Thanks,
    Rahul

    Hi,
    Use ITS to display the F.62 transaction is worth a try. But I am not sure whether the ITS will be able to display Smartforms...
    Another option is trying to launch the Smartforms (I dont know the F.62 transaction enough to tell if it is time-consuming or not) and convert it to PDF (there is plenty of threads about this in SDN) and then, display it through BSP (either inline or for the user to download).
    Best regards,
    Guillaume

  • How Do I Make a Toggle Button

    How would I do this?
    I want to create a toggle button, so when the button is in
    it's default position it says "Sound On" and when clicked again it
    says "Sound Off" etc.

    Comp. 792 wrote:
    > How would I do this?
    >
    > I want to create a toggle button, so when the button is
    in it's default position it says "Sound On" and when clicked again
    it says "Sound Off" etc.
    There is many ways to achieve that.
    You could have movie clip with two frames, button in frame 1
    with action go to nextFrame()
    and button in second frame with action go to prevFrame(); so
    they would toogel each other
    back and forth.
    You could have one movie clip with single frame and just an
    action on timeline frame:
    sound1 = new Sound(this);
    sound1.attachSound("loopSound");
    sound1.start(0, 999);
    buttonName.onPress = function() {
    (playing=!playing) ? sound1.stop() : sound1.start(0, 999);
    (give button instance name "buttonName" and you all set ....
    Best Regards
    Urami
    <urami>
    If you want to mail me - DO NOT LAUGH AT MY ADDRESS
    </urami>

  • How to display records with radio buttons

    Well,
    <b>This is what I have right now:</b>
    When I execute  the Sales Orders report, it takes me to a selection screen with fields (VBELN, AUDAT, UNAME,....). I have Display, Create and Edit buttons below the selection criteria. The database table will have a DELETE FLAG.
    <b>This is what I need to do:</b>
    When I click on Edit button, it should take me to a new screen (this screen will have 3 buttons: Change, Delete, Undelete) with records based on the selection criteria. Also each record should have radio button.
    So if I select a record and <u>click on CHANGE</u> button it should take me to a new screen with only that record and the fields should be editable. Upon changing the fields, the records should be updated in the database.
    If I <u>click on DELETE</u> button it should set the DELETE FLAG in the database, so that when I click on Display button in main screen it shouldn't show me this record next time.
    If I <u>click on UNDELETE</u> button it should reset the DELETE FLAG.
    <b>This is what you get:</b>
    Reward points if helpful

    You can use AT SELECTION-SCREEN OUTPUT event to capture the dynamic screen changes like selecting the radio buttons, once you captured the user action then you can call the other screen and you can work on that.
    regards,
    Dj
    reward, if its useful

  • How to display, 2 vo's attributes in single table.. they are connected VL

    Hi to all oaf gurus....!!
    i have a search page... with n number of attributes. When the user enter a attribute... search is done in VO by using dynamic where clause in voimpl class.Now the problem is that there is one attribute that cannot be retrieved in this vo query.So i have made another vo to retrieve that attribute. And joined this vo with original vo by the help of a vl.
    Now i m displaying results....in a table. Table takes all the attributes from a single vo. how can i display my second vo attribute in this table with the help of vl...?
    How to do that...... please help...!!

    Hey avaneesh.... thanks for the answer, But... first of all i want to tell you that this is a custom search page and so the VO is a custom VO, so there is no need to extend it. Second thing that this VO query i can't join with second vo query... by using join ... because in the original vo query i have used external join and the particular table is already joined with some other table with external join.
    So i have to use vl through which i get the new attribute from the second vo. The problem is still the same how to use these 2 vo attributes in a single table...!! can a table attribute be retrieved by a vl?

  • How to Display a message after inserting row in table............

    Hi
    I want to display a message after inserting rows in table like *'you have inserted a new row successfully*'.
    i am using the createinsert ADF Button to insert the rows in table.after that i am comitting it.
    after commiting i want to display message for the user.for this what i need to do.
    Please help me.
    Sailaja.

    user10860137
    Can you please explain me the each line in the code briefly.
    +public String saveButton_action(){+
    BindingContainer bindings = getBindings();
    OperationBinding operationBinding = bindings.getOperationBinding("Commit");
    Object result = operationBinding.execute();
    +// note "!" operator has been removed from the default code.+
    +if(operationBinding.getErrors().isEmpty()){+
    FacesContext ctx = FacesContext.getCurrentInstance();
    FacesMessage saveMsg = new FacesMessage("Record Saved Successfully");
    ctx.addMessage(null,saveMsg);
    +}+
    return null;
    +}+
    And i have requirement to show the message on favcet "status bar".not in a popup window.(from the above code the message is showing in popup window. )the Layout i am using is PanelCollection.
    can you tell me what i need to do.
    Thanks
    Sailaja.
    Edited by: sj0609 on Mar 19, 2009 8:03 AM

  • How to display details for all figures at once

    Hello all,
    I have a report that shows the number of different notifications per month. The user enters a month and a twelve months timeline (counted back from the entered month) is displayed with the number of different notifications for each month. Additionally I have created another query that shows the details for the first one.
    However I wanted to know whether it is possible to get the details for all displayed figures at once?
    Currently it is only possible to display the details for one single row (which means one single month from the timeline) or single values. Is it possible that the user can click on any figure (or that he has an additional button) and gets all details?
    Or elsewise how can I transfer only the user-chosen month from the first query to a detail query and not the one that he selects from the displayed values.
    I hope you can help me with this.
    Best Regards
    Fabian
    Edited by: Björn Rose on Mar 12, 2008 11:29 AM

    Hello Fabian,
    You can use User Exit to get the User Selected value and Choose only the month from that and pass it to the other query. The user exit has to be written in the reciving query.
    Thanks
    Chandran

  • How to display a message after button press ?

    Hi,
    I created a jspx page with a button.
    When that button is pressed, a lot of stuff is going to happen in my backing bean.
    This can take up to 30 seconds. (soap call etc ... )
    Meanwhile, the pressed button stays greyed out. When the action is finished, the button
    is available again.
    I want to display a message saying the action was succesfull or not, after that button is available again.
    Can anyone help me how I can make this ?
    Greetz.

    Why not opening a popup from your backing bean?
    Add a popup to your page:
    <af:popup id="yourID" bindings="#{yourBean.popup}">
    </af:popup>Open this in your backing bean:
        public void OpenPopup(String popupID) {
          FacesContext facesContext = FacesContext.getCurrentInstance();
          ExtendedRenderKitService service = Service.getRenderKitService(facesContext, ExtendedRenderKitService.class);
          service.addScript(facesContext,"AdfPage.PAGE.findComponent('"+this.getPopup().getClientId(facesContext) + "').show();");
        }This way you can add anything you want in your popup. forms, messages, images,...

  • How to Display Detailed navigation passing Top level navigation node name

    Hi All,
    I have prepared a DLN par file but unfortunatly my requirement is such that I need to pass one of the toplevel node name as input parameter and that should display the corresponding DLN which is from 3rd level.
    I have checked in sdn for passing a value to the navigation tag lib which will consider it as a selectednode but could find none.
    Can some body suggest me how to acheive this.
    Thanks in Advance.
    Sai Krishna. K

    Hi Kiran,
    Thanks for your Reply..
    Following is my Scenario:
    I use 2 same versions of portals connected via federated portal concept.
    I have my detailed navigation par file in portal2 and was calling it from portal1 from a iview.
    Since I am not physically navigating in portal2(which mean there is no selected node to iterate ), when I call that iview in portal1 it is picking up only 1st node in top level navigation.
    So i need to pass "My reports" (as 1st level) & "India" (as 2nd level) as parameters such that it gets only its DTN at all times from 3rd level.
    Hope you understand my scenario, below is my iteration code logic.
    <div id="myslidemenu" class="jqueryslidemenu">
    <ul>
         <nav:iterateSelectedNavNodesLevel level="<%=START_LEVEL%>">
         <%-- the 'currentDepth' attribute provides the byte value of the current level --%>
        <nav:recurseNavNodeChildren currentDepth="depth">
             <% current = start + depth.intValue() - 1; %>
             <%=writeClosingTags(last - current)%>
             <%
            last = current;
            %>
            <%-- we want to distinguish between folder and leaf nodes so we can use different graphics --%>
              <%-- complete the html syntax for the 'class' attribute pass it as an anchor attribute--%>
              <li><nav:navNodeAnchor navigationMethod="byURL" />
              <%-- checks for additional navigation level and the appropriate html tags to accomodate them --%>
            <nav:ifNextRecursionDepthWillIncrease>
                <ul>
            </nav:ifNextRecursionDepthWillIncrease>
            <nav:ifNextRecursionDepthWillNotChange>
                </li>
            </nav:ifNextRecursionDepthWillNotChange>
        </nav:recurseNavNodeChildren>
        <%=writeClosingTags(last - start)%>
        <% last = start; %>
    </nav:iterateSelectedNavNodesLevel>
    </ul>
    </div>
    As per the passing parameter concept please explain me a bit more clear with step by step procedure.
    <b>Here if not passing parameters, providing static values will also do for my requirement.</b>
    Many Thanks,
    Sai Krishna.
    Edited by: Konchada Sai Krishna on Feb 14, 2009 9:42 PM

  • How to display another scene after button click

    In my Application, I've already create tool bar and menu bar at the top, a navigation panel on the left, and a working area in the center. I have an introduction page in opening my application, but I have a problem, when I click a new project button in my navigation panel to show a scene in working area.. a new scene display separately with main window.. I want that scene integrated with main window, can you help me to solve this problem?
    Edited by: 973863 on Dec 2, 2012 6:28 AM

    Has this question not already been answered?
    How can I display a new scene in JavaFX 2.2? For example after button click

  • How to hide contents using toggle button

    Hi,
    I am new to sap ui5. I have scenario where i have a matrix layout and some contents in it. There is also a button which on click should unhide the contents like label and textfield inside the same layout along with other contents. I see there are ways  of doing it through css3 or jquery, how can i hide and unhide contents with a button.
    Thanks and Regards,
    Ravikiran

    Hi Ravi,
    You can hide content inside your layout in so many ways.
    1. Give id to your controls.
        On button click you can get that control by using
        sap.ui.getCore().byId("id").setVisible(false);
    2.  If you have bound your controls inside a parent control.
         Give Id to your patent control.
         Use method findElements() to get the child elements.
         This will return the array of child controls.
         Hide the element at particular index using array[index].setVisible(false);
    Hope it will help.
    Regards,
    KK

  • How to display image through script

    Hi,
    In my template I am passing image path through xml, I need to display this image on XDP template.
    Please help for the same,
    I tried
    ImageField1.resolveNode("value.#image").href = "C:\\logo.jpg";
    Image1.resolveNode("value.#image").url=".\logo.jpg";
    But it doesn't help, Is I am doing any mistake or is there any other way.
    Thanks,
    Abhijit

    Got the solution,
    first need to convert the imge into base 64 encoded string, and then pass it through xml.
    do the binding with imageField, and make it readonly.
    To covert image into base4 use below code
    //convert image file into byte array this case - buf
    String base64EncodedStr =
    new sun.misc.BASE64Encoder().encode(buf);

  • How to display detail message in channel monitor

    Hi,
    I have developed a module for mail adapter.
    In the module, sometimes I will throw ModuleException like this:
    ModuleException me = new ModuleException("You are not allowed here!",e);
    throw me;
    But in channel monitor, I could only see the exception like this:
    exception caught during processing mail message [8]com.sap.aii.af.lib.mp.module.ModuleException
    I can't find "You are not allowed here!" in the channel monitor directly. I know I could find it in trace or auditlog, but, is it possible to display these words in channel monitor directly?
    Thanks.
    Mike

    hi Mike,
    use AuditMessage to log to messaging system (adapter framework)
    have a look at the code from this (or many other module blogs)
    /people/francesco.bersani/blog/2007/03/27/rename-attachment-adapter-module
    this is the proper way of handling monitor messages
    from help.sap.com
    http://help.sap.com/saphelp_nw04/helpdata/en/a6/66e540aa827e7fe10000000a1550b0/content.htm
    Regards,
    michal
    <a href="/people/michal.krawczyk2/blog/2005/06/28/xipi-faq-frequently-asked-questions"><b>XI / PI FAQ - Frequently Asked Questions</b></a>

Maybe you are looking for