Issue of Popup with subTab Layout

Hi folks,
I have a requirement to implement a popup which will have three tabs in the popup region. I create a button to trigger the popup and use subTab layout for tabs in the popup region. But the issue is when I click the button, it does not show tabs and the tabs look like a table in the popup region. Please let us know how to implement tabs in the popup region. Any help will be greatly appreciate.

Hi
Your POP should also be an OAF page. You create subTab in POPUP page as you create in any other page.
If you are not sure how to work with subTabs please check documentations
Regards
Shobhit S

Similar Messages

  • Issue with Report Layout

    Hi All,
    I am working on a report which display employee present or absent in the month. I have to display dynamic column as days varies as per month .
    I am done with the report design/query part, using matrix report layout. Report executes and produce expected output too.
    Problem:
    As this report consists maximum 33 columns (1 = employ name + 31=days in the month + 1=Total days present) I change Page Layout to Landscape.
    When I select report output as "pdf" it generates report in Portrait Layout.
    Could you please tell me how to fix this issue?
    regards,
    RSD

    Title of this Forum: Forms
    Title of this Thread: Issue with Report Layout
    I can't point my finger on it, but something feels wrong. Or is it just me ;) ?
    Reports has its own forum dedicated to questions related to...reports:
    Reports
    You have a good chance that you get more answers over there. Also you did not mention any version numbers (reports version, database version,...) so please add these informations over there as well as the solution to your problem may depend on the version of the product you are using.
    good luck!
    cheers

  • Subtab layout Question

    Hi,
    i have a subtab layout and there are 2 subtab A and B. Both contain Advance table with each table holding a seprate vo's VO1 and VO2. These vos are not associated with any EO.
    There will be always records in these 2 sub tabs and user will update the few record.
    My job is to read the all the updated records of VO and then use Pl/sql to update in datbase.
    ISSUE.
    Now i am facing a problem . In subtab A if i updates already queried rows and move to subtab B and then comeback to A again , all the updated values in the Subtab is lost, becuase it class the processrequest and requery the view again.
    How to solve this probelm ?
    1) Do we ask to save teh data to move betweek sub tab ?
    2) do not query again if it is already quries.
    What is the based approch ?
    thx

    You can handle this sub-tab navigation logic at a much higher level than letting your processRequest call the AM's init method that should not query the VO when the VO's isPreparedForExecution method returns true.
    One approach would be to add an event called 'Init' which should be set when the page is invoked the first time, and to add the condition in the 'processRequest' to ensure that the AM's init method that queries the VO is called only when this event is set. This will ensure that VOs are not re-queried when the 'Init' event is not be set for e.g. on sub-tab navigation, and this also gives you the control to re-initialize the AM simply setting the event 'Init'.

  • Error after close popup with swfloader

    Hi all, hope some one could help me with this i get this
    error ( Error: Unable to load '' ) each time after i close a popup
    with a swfloader the error popsup when i click on the datagrid
    *****************************main mxml
    private function ShowPano():void
    var SWFLoaderInstance:Panoramica2 =
    Panoramica2(PopUpManager.createPopUp(this,Panoramica2,true));//
    instantiate and show the title window
    PopUpManager.centerPopUp(SWFLoaderInstance);
    SWFLoaderInstance.mainAppPano = this //Reference to the main
    app
    scope
    *******************************this is the mxml Panoramica2
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Canvas xmlns:mx="
    http://www.adobe.com/2006/mxml"
    creationComplete="doInt()"
    cornerRadius="10" width="600" height="450">
    <mx:Script><![CDATA[
    import mx.controls.PopUpMenuButton;
    import mx.managers.PopUpManager;
    import mx.collections.ArrayCollection;
    import mx.controls.Button;
    [Bindable]public var mainAppPano:Object = null;
    //called by the close event raised byclicking the close
    button
    private function closeWindow():void
    PopUpManager.removePopUp(this);
    }//closeWindow
    private function doInt():void
    PopUpManager.centerPopUp(this);
    ]]>
    </mx:Script>
    <mx:TitleWindow layout="absolute" right="10" left="10"
    showCloseButton="true"
    close="closeWindow()" top="10" bottom="10">
    <mx:SWFLoader
    source="{mainAppPano.datagrid.selectedItem.pano..src}"
    scaleContent="false"
    horizontalCenter="0" verticalCenter="0"/>
    </mx:TitleWindow>
    </mx:Canvas>
    ********************************xml structure
    <catalog>
    <libro>
    <name><![CDATA[<b>Biblioteca Central
    </b> ]]></name>
    <desc><![CDATA[Se inauguró el 20 de noviembre
    de 1978 ]]></desc>
    <imagen>FOTOS/est/Biblioteca Central Manuel Bartlett
    Bautista.jpeg</
    imagen>
    <pano nombrePano="Biblioteca Central Bautista">
    <src>FOTOS/Panoramicas/PanoZoom642007.swf</src>
    </pano>
    <ico>BOTONES/gifs/video.gif</ico>
    <video nombreVid="Biblioteca Manuel Bartlet">
    <src>VIDEOS/Biblioteca Manuel Bartlet.flv</src>
    </video>
    <audio/>
    <pie>Biblioteca Central Manuel Bartlett
    Bautista</pie>
    </libro>
    </catalog>

    <script type="text/javascript">
    function saveChanges(){
    doSubmit('SUBMIT');
    var test = $x('P7_FLAG').value;
    if(test == '1')
    window.close();
    window.opener.doSubmit('REFRESH');
    </script>javascript does not wait for the current action to complete and then perform the next line.
    means in your function call
    doSubmit('SUBMIT');is triggered and it carry on's to next line that is
    $x('P7_FLAG').value;this will not be set because you are setting the value of P7_FLAG to 1 in plsql and trying to check in javascript, which will not work.
    what you need to do is amend your js function like below
    <script type="text/javascript">
    function saveChanges(){
    doSubmit('SUBMIT');
    </script>create a page branch to procedure and make it conditional to when P7_FLAG = 1
    and set the branch source to below
    htp.p('window.close();');
    htp.p('window.opener.doSubmit(''REFRESH'');');

  • Popup with open and save file option

    Hi,
    I have created a button on my page name as "Export File" and created a process and called on "EXPORT FILE" button. I am using utl file in this procedure and i want to download this file and file will be .ics file using for calendar.
    My page process code is
    begin
    pro_create_ical(:P6_START_DATE,:P6_END_DATE);
    end;when i click on export file button it should raise a popup with open and save file option.
    How i can do this?
    Thanks & Regards
    Vedant
    Edited by: Vedant on Jan 25, 2013 1:59 AM
    Edited by: Vedant on Jan 25, 2013 2:00 AM
    Edited by: Vedant on Jan 25, 2013 3:49 AM

    Shiv,
    Have you installed any new Software/Spyware/Virus Scanner etc.Check it out.It might have caused the issue for last 5 days.
    This issue is fixed in Latest Support Package Versions.
    Which Version of Support Package you are using?
    If EP6 <SP19 you will face this issue.
    Just upgrade it to EP6, Support Pack-19,this will be resolved.
    Upgrade of Support Pack wont take much time.you can get the document under http://service.sap.com/instguides
    Hope it helps
    Regards,
    Karthick Eswaran
    *Reward Points for helpful answers.

  • Adobe Indesign 2014 CC export epub with Fixed Layout

    When I export a book with he new beautiful new export filter "E Pub with fixed Layout" and send him to the central bookstore in the nederlands... They testing the epub and give tree errors
    Filename contains spaces, (this i can repair, but many work)
    date value '19-06-2014' does not follow recommended syntax as per http://www.w3.org/TR/NOTE-datetime:19-06-2014 class java.lang.IllegalArgumentException DAY_OF_MONTH, this error i can not place (we work with a dutch system and ist standard setting)!!
    item (iTunesMetadata.plist) exists in the zip file, but is not declared in the OPF file, this error i can not place.
    Have you a suggestion
    Geert

    Better explain
    http://abrainmisspelled.wordpress.com/2011/12/21/itunesmetadata-plist-epub-validation-erro r-explained/
    “item (iTunesMetadata.plist) exists in the zip file, but is not declared in the OPF file

”
    The issue: If I get this message, it means that I’ve already loaded my ePub into iTunes. iTunes inserts this code automatically into the file. Why? Dunno. Probably something it thinks it needs?
    How to solve it:
    One way to solve this is to create a fresh ePub version of the file and NOT load that copy into iTunes before running the check. Make a duplicate ePub file of the ebook after it passes the test, and LOAD THE COPY into iTunes, keeping the original file pristine and error-free!’

  • Modal popup with lightbox effect on page load

    Hi friends,
    I was looking for help for making a windows modal popup with reads a url from xml file and load it into windows modal popup in the centre of the screen on page load. The requirement was also that it will dim the rest of the page. After searching at several places I got hint at:
    http://forums.adobe.com/message/746503
    Now there are two issues that background page is not getting dim and if any one can help me in telling how to load flash modal popup on pageload. I dont want it to be annoyed so just want to load popup once a session of once a day only on first page, I am trying cookies but I dont know why I it is not reading cookies in production environment. There are lot of examples available in javascript and silverlight but I want in flash.
    Any help shall be highly appreciated.

    Thanks. Unfortunately I'm not sure the code will apply to my
    situation... I'm actually not using a Spry dataset in any way, just
    some Spry effects to enhance my own markup (which comes from a PHP
    page but is static as far as the document is concerned.)
    If I put the Spry effect in the body onload handler, the
    element appears for a second as the page loads, then disappears
    suddenly as the Spry fade in effect kicks in bringing it from 0 to
    100.
    Another related question, I would like the Spry effect to to
    fade in with some values ending at the values as set by my CSS
    class... is it possible to have it do so? In other words fade from
    0 to current value? I know there are some ways to retrieve default
    styling of an element but figure Spry might have something built
    in?

  • Problems with the Layout Priority in KM

    Hello, I have some problems with the Layout Priority in KM..
    I'm using a KM Navigation Iview with "<i>Layout Set</i>"=NewsBrowser (this Layout Set uses a Collection renderer that sorts the folder's contents by "last modified") and "<i>Layout Set Mode</i>"=exclusive.
    In the KM folder I setted in <i>Details->Settings->Presentation</i> as "<u>rndSortProperty</u>"=name because I need to order my files by FileName property.
    Despite that in see that the contents showed in my iview are ordered by Last Modified...
    The "<i>Layout Set Mode</i>" exclusive gives the higher priority to the Folder Settings..
    I don't understand..
    Thank you in advance.

    Thank you Shyja,
    your post was helpful, but another issue is occurred.
    Maybe en example could be useful..
    My scenario:
    - I need to show a km folder with layout set "<i>ConsumerExplorer</i>" on root folder (no "property of sorting" setted on its collection renderer) and "<i>TabExplorer</i>" (no "property of sorting" setted on its collection renderer).
    - I need to sort files and folders by "last modified". By default seems that they are sorted by "name".
    - With my administrator user I open my folder details (in Content Admin->KM Content is used the Layout "<i>AdminExplorer</i>"), and in "Settings->Presentation->Additional Parameters" I add two parameters "<i>rndSortOrder</i>=descending" and "<i>rndSortProperty</i>=modified" (the others are parameters of AdminExplorer Layout).
    - Then I check "Apply Settings to All Subfolders" and "Use Settings for All iViews (Preferred Presentation)".
    result:
    I see the "<i>ConsumerExplorer</i>" on root folder, the subfolder are sorted by "last modified" (everything ok).
    I click on a subfolder, the "TabExplorer" si showed, the Tabs and the content are sorted by "last modified" BUT..
    .. into the tabs are showed <u>nameFolders</u> (in link style), <u>the action command</u>, and the properties of "<u>author</u>" and "<u>last modified</u>" (normally into the tabs are showed just the folderNames in text style)...
    Why?? Is possible that the "AdminExplorer" parameters of the km folder affect the Tab component??
    Thank you

  • ISR drop-down lists with ZCI layout

    Hi,
    We are developing a custom ISR scenario on Netweaver 2004s SP11 and Adobe LiveCycle Designer 7.1. Our Interactive form has a drop-down list which is supposed to get prefilled. When we use the ZCI layout, the drop-down is not showing any values. If we simply change the layout type to Standard, it is working fine. While using ZCI layout, we inserted the webdynpro script and used ISR native controls.
    Why the drop-down is not working with ZCI layout? Are we missing any thing?
    Appreciate your response
    Thanks
    Ram

    It is solved. The issue was with binding.

  • Adobe Content Viewer crashes with particular layout

    Hello all,
    I have two layouts I've added to a folio, the first is a smooth-scrolling layout and the second is a snap-to-page layout. It works perfectly until I add the horizontal layouts of the second set.
    What I found most unusual is that everything works fine viewed vertically, but crashes on trying to view the horizontal layouts ( horizontal layouts uploaded by other team members in the same folio work fine somehow ). It works fine horizontally until I add the second set of layouts. The crashes happen only on the iPad, and works fine viewed on Content Viewer from the desktop. It's not just me either, other members are also having crash issues with my layouts..
    The horizontal layout is identical to the vertical layouts, and I'm not getting any sort of error messages, so I can't tell what's causing the folio to crash. What's going on?

    My folio still does not work. I've isolated the problem to one particular layout. When this article is in landscape layout, it causes the Content Viewer to crash. I have no MSO with the same name, and I've checked all the interactive objects and overlays to see what's causing this problem. It worked perfectly before the update to the new Content Viewer and before I updated the tools. The article also works fine in portrait view, and it has the exact same objects and interactivity. This is extremely frustrating, and I could be looking for hours to find what the problem is. Any help would be greatly appreciated.

  • Subtab Layout

    I have a Subtab layout with 3 sub tabs.
    in the second tab i want to call a JSP page.
    How to find which tab is clicked when and how to include JSP page in the corresponding sub tab region when the second tab is clicked.
    Thanks

    Hi Anil
    i am getting the selected tab by the method getSelectedIndex() of subtablayout.
    and getting the corresponding link
    int tab=sub.getSelectedIndex(pageContext);
    if(tab==1)
    OALinkBean link=(OALinkBean)webBean.findChildRecursive("item2");
    link.setDestination("D:/NewJdev/jdev9/jdevhome/jdev/myhtml/OA_HTML/Order.jsp");
    but i am not able to redirect to jsp page.
    It is simply displaying the region bounded to the link.
    Pls help how to redirect to jsp.
    Thanks

  • CO-PA planning for individual months and previous year with same layout

    I would like to create a planning layout that uses a SINGLE value to define multiple period/year columns, which is driven by the value of the first period of the plan years.
    The planning layout would look something like this:
    2012  2012  2012      2012   2012          2011
    JAN   FEB   MAR u2026   DEC    TOTAL     TOTAL
    I want to create a variable PER01 and use the following as my column definition
    PER01               (JAN 2012)
    PER01+1               (FEB 2012)
    PER01+2               (MAR 2012)
    PER01+11                (DEC 2012)
    PER01-1 TO PER01-12                            (TOTAL 2011)
    What am I doing wrong in the following sequence?
    1.  Create local variable in transaction KEPM
    Edit>Variable>Define variable
    Here is my entry:
    Characteristic          Period/year (Characteistic PERIO)
    Variable                               PER01 (Note zero-one, not oh-one)
    Value from                               001/2012 to 012/2012 or
                   001/2012 to 001/2012 or
                   Blank
    What should be u201Cvalue fromu201D range be set to from the three above choices?
    2.  Create a planning level
    Which of these is correct for the selection criteria for period/year range?
    (X)          PER01
    (X)          PER01      to      PER01
    (X)          PER01     to      PER12     
    3.  Iu2019ve tried I think about all possible combinations and permutations of values and keep running into this error message:
    KG1003
    Planning package can not be edited with planning layout
    Planning layout has one or more variables for characteristic u201CPERIO.u201D  These variables are given values from the selection criterion for the planning package.  The selection criterion (single values and/or nterval) must match the variables.
    The system tries to replace the variables in the planning layout with the selection criterion for the planning package.  If for example, there is a variable for asingle value in the planning layout that is a planning characteristic, then the selection criterion must contain a single value.  If there are two variables from the from and to value of an interval in the planning layout for a characteristic, then an interval must also exist in the selection criterion.
    SAP course AC605 states that "Users will be prompted to enter the values for these variables when planning."
    To date, I am not getting a popup to allow me to enter in period 001/2012.  What am I missing/overlooking?
    Thanks,
    Bob

    Thanks Ajay for your reply.
    In the sake of completeness, here is my solution incorporating your suggestion:
    Characteristic     Variable     Name                          Value from    Value to     
    PERIOD/YEAR     PER01     FIRST PERIOD/YEAR     001/2012     012/9999     
    Settings                         
    Planning level     MYLEVEL          001/2012           
    Planning package     MYPACKAGE     001/2012           
    Planning layout      MYLAYOUT          PER01, PER011, PER012, PER01+3, etc.
    The trick was to specify only the single value 001/2012 for period/year as shown above, rather
    than specifying a range..
    Bob McGaffic
    Pittsburgh, PA

  • Since upgrading to Yosemite on my iMac, My Mail app refuses to open, Safari won't load, and I can't upload pictures from my iPad... Please help, any ideas very welcome. I've had my iMac since 2011, and have never had any issues to deal with before..

    Since upgrading to Yosemite on my iMac: My Mail app refuses to open, Safari won't load, and I can't upload pictures from my iPad...
    Please help, any ideas very welcome. I've had my iMac since 2011, and have never had any issues to deal with before..
    Thanks

    29/11/2014 20:17:01.315 com.apple.xpc.launchd[1]: (jp.buffalo.NASPower)
    Service only ran for 11 seconds. Pushing respawn out by 49 seconds.
    29/11/2014 20:17:37.013 com.apple.backupd[616]: Finished scan
    29/11/2014 20:17:43.108 com.apple.backupd[616]: Saved event cache at
    /Volumes/Time Machine Backups/Backups.backupdb/Geoff Lambrechts’s iMac
    (2)/2014-11-29-200648.inProgress/9B453663-603F-40B8-AC21-24F05C724E15/.6162AD34- 38F8-30AB-98E0-4A22FB9D311F.eventdb
    29/11/2014 20:17:43.207 com.apple.backupd[616]: Not using file event
    preflight for Macintosh HD
    29/11/2014 20:18:01.561 com.apple.xpc.launchd[1]: (jp.buffalo.NASPower)
    Service only ran for 11 seconds. Pushing respawn out by 49 seconds.
    29/11/2014 20:18:16.288 com.apple.xpc.launchd[1]:
    (com.apple.quicklook[715]) Endpoint has been activated through legacy
    launch(3) APIs. Please switch to XPC or bootstrap_check_in():
    com.apple.quicklook
    29/11/2014 20:18:23.705 com.apple.SecurityServer[56]: Session 100013 created
    29/11/2014 20:18:32.046 mdworker[718]: code validation failed in the
    process of getting signing information: Error Domain=NSOSStatusErrorDomain
    Code=-67062 "The operation couldn’t be completed. (OSStatus error -67062.)"
    29/11/2014 20:19:01.662 com.apple.xpc.launchd[1]: (jp.buffalo.NASPower)
    Service only ran for 11 seconds. Pushing respawn out by 49 seconds.
    29/11/2014 20:19:45.458 com.apple.xpc.launchd[1]:
    (com.apple.imfoundation.IMRemoteURLConnectionAgent) The
    _DirtyJetsamMemoryLimit key is not available on this platform.
    29/11/2014 20:19:59.123 com.apple.xpc.launchd[1]:
    (com.apple.PubSub.Agent[725]) Endpoint has been activated through legacy
    launch(3) APIs. Please switch to XPC or bootstrap_check_in():
    com.apple.pubsub.ipc
    29/11/2014 20:19:59.123 com.apple.xpc.launchd[1]:
    (com.apple.PubSub.Agent[725]) Endpoint has been activated through legacy
    launch(3) APIs. Please switch to XPC or bootstrap_check_in():
    com.apple.pubsub.notification
    29/11/2014 20:20:01.138 com.apple.xpc.launchd[1]: (jp.buffalo.NASPower)
    Service only ran for 10 seconds. Pushing respawn out by 50 seconds.
    29/11/2014 20:21:01.484 com.apple.xpc.launchd[1]: (jp.buffalo.NASPower)
    Service only ran for 10 seconds. Pushing respawn out by 50 seconds.
    29/11/2014 20:21:13.430 com.apple.backupd[616]: Found 4529 files (1.1 GB)
    needing backup
    29/11/2014 20:21:18.786 com.apple.backupd[616]: 2.82 GB required (including
    padding), 1.24 TB available
    29/11/2014 20:21:31.775 Console[734]: Failed to connect (_consoleX) outlet
    from (NSApplication) to (ConsoleX): missing setter or instance variable
    29/11/2014 20:21:34.230 WindowServer[162]: disable_update_timeout: UI
    updates were forcibly disabled by application "Console" for over 1.00
    seconds. Server has re-enabled them.
    29/11/2014 20:21:36.898 WindowServer[162]: common_reenable_update: UI
    updates were finally reenabled by application "Console" after 3.67 seconds
    (server forcibly re-enabled them after 1.00 seconds)
    29/11/2014 20:21:36.971 coreservicesd[83]: SFLEntryBase::ListHasChanged
    mach_msg returned 10000004d
    29/11/2014 20:22:01.817 com.apple.xpc.launchd[1]: (jp.buffalo.NASPower)
    Service only ran for 10 seconds. Pushing respawn out by 50 seconds.
    29/11/2014 20:23:02.170 com.apple.xpc.launchd[1]: (jp.buffalo.NASPower)
    Service only ran for 10 seconds. Pushing respawn out by 50 seconds.
    29/11/2014 20:24:02.547 com.apple.xpc.launchd[1]: (jp.buffalo.NASPower)
    Service only ran for 10 seconds. Pushing respawn out by 50 seconds.
    29/11/2014 20:25:02.168 CalendarAgent[218]:
    [Refusing to parse response
    to PROPPATCH because of content-type: .]
    29/11/2014 20:25:02.233 CalendarAgent[218]:
    [Refusing to parse response
    to PROPPATCH because of content-type: .]
    29/11/2014 20:25:02.236 CalendarAgent[218]:
    [Refusing to parse response
    to PROPPATCH because of content-type: .]
    29/11/2014 20:25:02.284 CalendarAgent[218]:
    [Refusing to parse response
    to PROPPATCH because of content-type: .]
    29/11/2014 20:25:03.059 com.apple.xpc.launchd[1]: (jp.buffalo.NASPower)
    Service only ran for 10 seconds. Pushing respawn out by 50 seconds.
    29/11/2014 20:25:12.674 com.apple.xpc.launchd[1]:
    (com.apple.imfoundation.IMRemoteURLConnectionAgent) The
    _DirtyJetsamMemoryLimit key is not available on this platform.
    29/11/2014 20:26:03.464 com.apple.xpc.launchd[1]: (jp.buffalo.NASPower)
    Service only ran for 10 seconds. Pushing respawn out by 50 seconds.
    29/11/2014 20:27:03.841 com.apple.xpc.launchd[1]: (jp.buffalo.NASPower)
    Service only ran for 10 seconds. Pushing respawn out by 50 seconds.
    On 29 November 2014 at 19:29, Apple Support Communities Updates <

  • How do I create a automatic second page with different layout settings?

    Hi there,
    I want to create a business letter template with a different second page. I already managed to create a different layout on page nr two, but
    whenever I write a letter with this template and I reach the end of page one, pages creates a thrid page in between my page nr one and nr two with a mixture of the layout of template page nr two and the footer of page nr one.
    I want pages to take my template page nr two (with different header and footer) as second page instead of creating one itself.
    If I don't need a second page - because my letter is to short - I should not have to delete a second page. It simply should not be there...
    Thanks for Help!
    G4's and 12" PB   Mac OS X (10.4.6)  

    Hello Stefan,
    you achieve this with a little trick. Create your letter and set the layout for the first and the second page by inserting a placeholder text. This placeholder text should fill the first page and the top of the second page, so both pages are build in one section. When the entire letter is layouted well, select the placeholder text and than save the letter as a template.
    Now every time you open this template, you only have to insert the main text (replace the placeholder text with real content), and the second page disappears until the main text overflows the borders of the first page. Than you will get the second page again with the layout you have created for it.
    I hope this will work for you like it works fine for me.

  • Popup with generic ALV to display all fields of a structure

    Hello WebDynpro Experts,
    I have developed a WebDynpro application using an ALV control to display all the search results in a table.
    The number of columns shown in this table is reduced by a default view, that is preset for all users.
    In the SAP GUI there is a standard feature to show all the details of a record in a pop up window.
    E.g. in WE02 you see a few fields in the ALV table, and when you click on the details button, you get a popup with all the fields of the selected line.
    Is there something similar in the ALV table for WebDynpro?
    I want to show all the fields of the selected structure in a generic table with two columns: Field label and value.
    Can anybody help?
    Regards,
    Jürgen

    Hello Jurgen,
                    When you select a particular row in ALV table, you can get the data in that row by using ONLEADSELECT
            method from used component(SALV_WD_TABLE).
                   And i Guess you can get all the field names of that structure from DD03L table and you can display them
            in a generic table.
        Regards,
        Harry

Maybe you are looking for

  • I am locked up in slideshows, a prompt comes up "the volume for (a picture) cannot be found, how do I get out of slideshow,

    I am locked up in slideshows in IPhoto, a message comes up "the volume for "some picture" cannot be found, Insert the disk or connect to the server volume and wait for it to appear on the destop, then try again." you can hit find photo, cancel (which

  • Parent-child relation between Activities

    Hello, Is it possible to give parent child relationship between Activities within single Project? The requirement is, parent Activity to take part in overall scheduling whereas the Dates for parent Activity are determined by the child Activities atta

  • "The operations cannot complete because of an error" DFER

    I frequently use preview to view exports of images from Adobe Illustrator on my Retina MBP. Typically I export an image, then I view it in Preview. After viewing, I make changes then re-export while the file is still open in Preview. It usually works

  • Enhancement for MIRO

    Hi all, i want to trigger a workflow after posting an incoming invoice via MIRO. i've found user exit LMR1M001 which unfortunately importing parameter types MRM_RBKPV that contains the field BELNR for invoice number but not the field i want for accou

  • How to set Value from Frame to Frame

    I am having 2 Frame. Frame A and Frame B. Frame A is having a text Field and a button. When i click on the button on the Frame A, how can pass the value inside the text field of Frame A into a text Field of Frame B which already prepared. Please help