SC Header POWL Detail Component Showing SC Item POWL

Hi ,
I have created SC Header POWL Query according to this SAP Note:
SAP Note 1410793 - SRM Shopping Carts (SC) header POWL query.
Now i want to show SC Item POWL when a user clicks on SC Header POWL's record.
i am looking for a way to show SC Item POWL in POWL Details component.
I know that i can specify the POWL Detail component name in Method /SAPSRM/CL_CLL_POWL_BASE_AGENT--> IF_POWL_FEEDER~GET_DETAIL_COMP.
However here i can only specify name of detail component and not the configuration name so not too sure how can i show SC Item POWL here.
Any clues? suggestions?
Regards,
Ashish Shah

Dear All,
what i have figured out till now is the following:
in the "Settings" of the POWL (button is at the most right top corner of the POWL), there is the tab "Display" available. Under that tab, there is a check box for hierarchy available. Once the check box is checked, the field "Define" becomes active.
By clicking on the "Define" button, a pop up opens, where the columns for the hierarchy display can be selected.
The important point now, is it is necessary to select at leas two columns here, in order to receive a hierarchical display. The first column will build the header in the POWL and the second column will display its information in the POWL, once the user has expanded the header level of the position in the POWL.
Thank you.

Similar Messages

  • POWL: Can't see POWL detail component when POWL is embedded

    Hi,
    I created a POWL which is embedded in another WD-Component. This WD-Comp contains 2 views, one which embedds the POWL the other which is the view the POWL should use as detail component.
    The problem i have is that when calling the WD Comp. the POWL doesn't show the detail component, while it does when calling the POWL directly.
    Can someone give me a hint what went wrong?
    Thanks
    Harald

    What I want to achieve is following:
    I need a worklist(POWL) and for each item in the worklist I want to see details (as POWL detail component).
    The POWL is inbedded in a webdypro view (let's call it V_MAIN) in WD-Comp "A". For the detail component I need also a view. So my naive idea was to create this view (call it V_DETAIL) also in WD-Comp "A" to have everything that belongs together in one component. Of course I implemented the respective interface I need for POWL Detail Components and I also created separate window for view V_MAIN. V_DETAIL has anyway a dedicated window POWL_DETAIL.
    As mentioned in the initial post I have no issue if I call the POWL directly only if I call it via the wrapper view V_MAIN.

  • FPM embedded in POWL feeder detail component

    Hi there
    Been searching around for an example of FPM config being embedded in the POWL detail component (POWL_DETAIL_COMP_IF) and cant seem to find one.
    I know it is possible to embed a POWL APP in an FPM and also use a POWL feeder inside a GUIBB List. Embedding a tab, form or list into the POWL details only makes sense.
    Has anybody done this before, if so what were the gotchas if any?
    Cheers
    JSP

    John,
    Sorry, but I have no answer for your question but:
    "I know it is possible to embed a POWL APP in an FPM and also use a POWL feeder inside a GUIBB List. Embedding a tab, form or list into the POWL details only makes sense."
    Hm, this is my problem. Need to embed a POWL within an FPM application. But as Chris Paine points out here ([Integrate POWL into OIF (Object Instance Floorplan) |Integrate POWL into OIF (Object Instance Floorplan);) this is not possible.
    I have managed so far that the POWL is looking OK and I can get an LTA event in the feeder class method IF_POWL_FEEDER~HANDLE_ACTION. But when I trigger the FPM event handler there is nothing happening in the shared FPM component controller method PROCESS_EVENT that I am using. Oh my.
    Have you seen such an example? When I read your question I get this feeling but maybe I misunderstood. I am on EhP4 by the way so that should be OK I guess.
    <-- Oh come on now, naughty naughty. -->
    Chris Paine? Thomas Jung? Anyone?
    //Johan
    Edited by: Neil Gardiner on Nov 9, 2010 4:25 PM

  • Show detailed screen for "WORK ITEMS"

    Hi
    We have configured POWL for showing Leave / Travel request. The requirement is ... we have to show detailed screen of respective item which are displaying under "Work Items", it's a combination of Leave / Travel etc.
    How do I show complete detail screen of selected item which are displaying under "Work Items "???
    Thanks

    Powl has multiples queries ie leave request and Timesheet you can all filter to see all tasks in one screen ALl the queries in the initial screen comes form POWL_COCKPIT

  • GL Account details at the header are not flowing to the item level in SC

    Hi All,
    While creating a Shopping Cart, first I am specifying the cost assignment details (i.e., Cost Center, GL Account) in the header and then creating the line items for the shopping Cart.
    While creating these line items, the cost center which is specified in the header is populated at the line item, but GL Account is blank.
    I need to populate the same GL Account at each line item.
    I checked the badi: <b>BBP_DETERMINE_ACCT</b> to populate the GL account for line items. But I am unable to determine this header GL Account in this badi.
    Can anybody help me in this regard, <b>thanks in advance</b>.
    Regards
    Loknath

    Hi
    <b>The purpose of the BADI - BBP_DETERMINE_ACCT is to deal with Shopping cart - Item level data, there it contains only two tables
    ITEM_DATA
    This contains the most important item data for the shopping cart.
    ACCT_DATA
    This contains the account assignment data for the shopping cart item.</b>
    <u>Here is the documentation.</u>
    <b>BBP_DETERMINE_ACCT</b>
    You can use the Business Add-In BBP_DETERMINE_ACCT to specify your own criteria for determining the G/L account.
    In the standard system, the G/L account is determined using the product category and the account assignment type, refer to Define G/L Account for Product Category and Account Assignment Category.
    The G/L account is then placed in field ACCT_DATA-G_L_ACCT. Then, the system calls the Business Add-In BBP_DTERMINE_ACCT.
    In method DETERMINE_ACCOUNT, two table parameters are available:
    ITEM_DATA
    This contains the most important item data for the shopping cart.
    ACCT_DATA
    This contains the account assignment data for the shopping cart item.
    This means that you can now determine the G/L account irrespective of other item data (or any combination of item data) and overwrite field ACCT_DATA-G_L_ACCT.
    Example
    For the product category OFFICE SUPPLIES in conjunction with account assignment type CC (cost center), the system determines G/L account 400000. However, you also want to take into account the company code (field ITEM_DATA-CO_CODE) when determining the G/L account. The system is to make postings to G/L account 410000 for company code 0002. So you overwrite field ACCT_DATA-G_L_ACCT with 410000.
    <u>I recommend, In future, Please read the relevant documetation of any of the BADIs in SE18 Transaction, before implemnting the same, to get the details.</u>
    Hope this will help.
    Please reward suitable points, incase it suits your requirements.
    Regards
    - Atul

  • Why I cant view my picture on my iphoto and if I try to copy to any folder it Shows "The item on the clipboard cant be pasted to this location. (One or more of the item may have been deleted or are no longer available) "

    Why I cant view my picture on my iphoto and if I try to copy to any folder it Shows "The item on the clipboard cant be pasted to this location. (One or more of the item may have been deleted or are no longer available) "

    There are 9 different versions of iPhoto and they run on 9 different versions of the Operating System. The tricks and tips for dealing with issues vary depending on the version of iPhoto and the version of the OS. So to get help you need to give as much information as you can. Include things like:
    - What version of iPhoto.
    - What version of the Operating System.
    - Details. Describe the problem as fully as you can. For example, if you have a problem with exporting, then explain by describing how you are trying to export, and so on.
    - History: Is this going on long? Has anything been installed or deleted? - Are there error messages?
    - What steps have you tried already to solve the issue.
    - Anything unusual about your set up? Or how you use iPhoto?
    Anything else you can think of that might help someone understand the problem you have.

  • How to show two items using $f_Show_On_Value_Item_Row

    Hi,
    I have a select list with values with Yes, No and two items(1 check box, 1 text field) below it.
    I want to show two items if i select 'Yes' in select list.
    I am able to show/hide one item using onchange="$f_Show_On_Value_Item_Row(this,'P1_A_EMAIL_PERS_REQ','Yes');"
    How can i pass two items to this function.
    Thanks for ur help in advance
    Regards,
    Ram

    Ram,
    Rather than putting the call to $f_Show... inline with the onchange handler, create a separate function and call that function does the work and call that function instead. See this thread for some more details:
    Problem when calling more than 1 Javascript function
    Regards,
    Dan
    http://danielmcghan.us
    http://sourceforge.net/projects/tapigen

  • Site showing deleted items in IE. I need to get rid of it. please help

    My website http://www.greenpwwhh.com/crossword_main_page.html is showing ghost items on the right side of the site which was deleted but still shows in IE, even though firefox doesn't have it.
    the codes for the page are:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml"><!-- InstanceBegin template="/Templates/crossword_main.dwt" codeOutsideHTMLIsLocked="false" -->
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <!-- InstanceBeginEditable name="doctitle" -->
    <title>GreenP - Wealth, Wisdom, Health &amp; Happiness</title>
    <!-- InstanceEndEditable -->
    <link href="main_page.css" rel="stylesheet" type="text/css" />
    <!--[if IE 5]>
    <style type="text/css">
    /* place css box model fixes for IE 5* in this conditional comment */
    .thrColFixHdr #sidebar1 { width: 180px; }
    .thrColFixHdr #sidebar2 { width: 190px; }
    </style>
    <![endif]-->
    <!--[if IE]>
    <style type="text/css">
    /* place css fixes for all versions of IE in this conditional comment */
    .thrColFixHdr #sidebar2, .thrColFixHdr #sidebar1 { padding-top: 30px; }
    .thrColFixHdr #mainContent { zoom: 1; }
    /* the above proprietary zoom property gives IE the hasLayout it needs to avoid several bugs */
    </style>
    <![endif]-->
    <script src="SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <link href="SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" />
    <!-- InstanceBeginEditable name="head" -->
    <!-- InstanceEndEditable -->
    <link href="SpryAssets/SpryMenuBarVertical.css" rel="stylesheet" type="text/css" />
    </head>
    <body class="thrColFixHdr">
    <div id='divVHSS'></div><script language="JavaScript" type="text/javascript" src="http://vhss-d.oddcast.com/vhost_embed_functions_v2.php?acc=1242472&js=1"></script><script language="JavaScript" type="text/javascript">AC_VHost_Embed(1242472,300, 400, '', 1, 1, 1890628, 0, 1, 0, 'f778bdfaea52e72c33e6d97d4240496e', 9, '400|300|15|15|L|T|false|1|1|0|0|http%3A//vhss-a.oddcast.com/ccs2/vhss/user/cad/1242472/t humbs/show_1890628.jpg|Double%20click%20to%20play%20me|0|C|0|1|2|890');</script>
    <div id="container">
      <div id="header">
        <div id="headerLogo"><img src="greenP_logo.gif" width="298" height="114" alt="logo" /></div>
        <div id="headerAd">Oh my gosh!! 100 customers just passed your register? Click here to get them</div>
        <h1> </h1>
        <!-- end #header -->
      </div>
      <div id="nav">
        <ul id="MenuBar1" class="MenuBarHorizontal">
          <li><a href="index.html" class="thrColFixHdr">Home</a></li>
          <li><a href="#" class="thrColFixHdr">Resources</a>
            <ul>
              <li><a href="#">Business Opportunities</a></li>
              <li><a href="#" class="MenuBarItemSubmenu">Jobs</a>
                <ul>
                  <li><a href="#">Caribbean</a></li>
                  <li><a href="#">USA</a></li>
                </ul>
              </li>
            </ul>
          </li>
          <li><a href="#" class="thrColFixHdr">Wisdom</a></li>
          <li><a href="#" class="thrColFixHdr">Wealth</a></li>
          <li><a href="#" class="thrColFixHdr">Health</a></li>
          <li><a href="#" class="thrColFixHdr">Happiness</a></li>
          <li><a href="#" class="thrColFixHdr">Relationships</a></li>
          <li><a href="#" class="thrColFixHdr">Achieved!</a></li>
          <li><a href="#" class="thrColFixHdr">Videos</a></li>
    <li><a href="crossword_main_page.html" class="thrColFixHdr MenuBarItemSubmenu">Puzzles</a>
      <ul>
        <li><a href="crossword_main_page.html">Crossword</a></li>
        <li><a href="#">Jigsaw</a></li>
      </ul>
    </li>
    <li><a href="#" class="thrColFixHdr">Fun Facts</a></li>
          <li><a href="#" class="thrColFixHdr">Members</a></li>
    <li><a href="about_us.html" class="thrColFixHdr">About us</a></li>
        </ul>
      </div>
      <div id="date">Thursday, October 29, 2009 6:05 PM</div>
      <div id="calendar"><!-- Start Bravenet.com Service Code -->
      <div align="center">
    <a href="http://pub27.bravenet.com/calendar/show.php?usernum=2253679465">
    <img src="http://assets.bravenet.com/cp/calendar.gif" border="0" title="Free Calendar from Bravenet.com" alt="Free Calendar from Bravenet.com" /></a></div></div>
      <div id="chat"><!-- Start Bravenet.com Service Code -->
      <div align="center">
    <a href="http://pub27.bravenet.com/chat/show.php?usernum=2253679465&cpv=2">
    <img src="http://assets.bravenet.com/cp/chat.gif" border="0" title="Free Java Chat from Bravenet.com" alt="Free Java Chat from Bravenet.com" /></a></div>
    <!-- End Bravenet.com Service Code --></div>
      <!-- This clearing element should immediately follow the #mainContent div in order to force the #container div to contain all child floats -->
      <p> </p>
      <div id="crosswordContainer">
        <div id="crosswordPageHeader">Welcome to the Crossword Stress Reduction Center</div>
        <div id="crosswordMenu">    </div>
        <div id="crosswordSponsorAd">
          <p> Brought to you with the help of Rich Company</p></div>
        <!-- InstanceBeginEditable name="crosswordApplet" -->
        <div id="crosswordGame">
          <p><br />
          </p>
          <font size="2" face="Verdana,Sans-Serif" color="FFFFFF">
            <p> </p>
            <p> </p>
          </font></div>
        <!-- InstanceEndEditable -->
        <div id="crosswordBottomContainer"><!-- InstanceBeginEditable name="crosswordContent" -->
          <div id="crosswordBottomContents">Content for  id &quot;crosswordBottomContents&quot; Goes Here</div>
        <!-- InstanceEndEditable -->
          <div id="crosswordBottomAd"><font color="FFFFFF" size="2">AVVERTISEMENT</font></div>
        </div>
        <p> </p>
        <p> </p>
        <p> </p>
        <p> </p>
        <p> </p>
        <p> </p>
        <p> </p>
        <p> </p>
      </div>
      <div id="crosswordRightCol">
        <div id="crosswordTitles">
          <ul id="MenuBar2" class="MenuBarVertical">
            <li><a class="MenuBarItemSubmenu" href="#">Bible</a>
              <ul>
                <li><a href="#">Item 1.1</a></li>
                <li><a href="#">Item 1.2</a></li>
                <li><a href="#">Item 1.3</a></li>
              </ul>
            </li>
            <li><a href="#">Cities</a></li>
            <li><a href="#">Countries</a></li>
            <li><a href="#">Entertainment</a></li>
            <li><a href="#">Jamaica</a></li>
            <li><a href="#">Medicine</a></li>
            <li><a href="#">Rivers</a></li>
            <li><a class="MenuBarItemSubmenu" href="#">School</a>
              <ul>
                <li><a class="MenuBarItemSubmenu" href="#">Biology</a>
                  <ul>
                    <li><a href="#">Item 3.1.1</a></li>
                    <li><a href="#">Item 3.1.2</a></li>
                  </ul>
                </li>
                <li><a href="#">Chemistry</a></li>
                <li><a href="#">English</a></li>
                <li><a href="#">Economics</a></li>
                <li><a href="#">Maths</a></li>
                <li><a href="#">Spanish</a></li>
                <li><a href="#">Medicine</a></li>
              </ul>
            </li>
            <li><a href="#">Seas</a></li>
            <li><a href="#">Sports</a></li>
            <li><a href="#">TV Personalities</a></li>
          </ul>
        </div>
      </div>
      <p> </p>
      <p> </p>
      <p> </p>
      <p> </p>
      <p> </p>
      <p> </p>
      <p> </p>
      <p> </p>
      <p> </p>
      <p> </p>
      <p> </p>
      <p> </p>
      <p> </p>
      <p> </p>
      <p> </p>
      <p> </p>
      <p> </p>
      <p> </p>
      <p> </p>
      <p> </p>
      <p> </p>
      <script type="text/javascript">
    <!--
    var MenuBar2 = new Spry.Widget.MenuBar("MenuBar2", {imgRight:"../SpryAssets/SpryMenuBarRightHover.gif"});
    //-->
      </script>
      <p> </p>
      <p> </p>
      <p> </p>
      <p> </p>
      <p><br class="clearfloat" />
      </p>
      <div id="footer">
        <p>Copyright &copy; GreenP. All rights reserved. No reproduction of any kind without written permission</p>
      <!-- end #footer --></div>
    <!-- end #container --></div>
    <script type="text/javascript">
    <!--
    var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgDown:"SpryAssets/SpryMenuBarDownHover.gif", imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
    //-->
    </script>
    </body>
    <!-- InstanceEnd --></html>

    And we know that the vertical menu is designed to work in all flavors of IE, so surely someone will come along with the answer.
    I presume you made no edits to the menu's css? other than color etc.?  If you may have, then you could always remove the DW menu from your page (leaving the actual ul menu if tht is possible  - as you can see I never used spry menus!) and re-add the Spry menu css to the page in order to start with a virgin copy.  just a thought.  Sorry i can not help more.
    E. Michael Brandt
    www.divahtml.com
    www.divahtml.com/products/scripts_dreamweaver_extensions.php
    Standards-compliant scripts and Dreamweaver Extensions
    www.valleywebdesigns.com/vwd_Vdw.asp
    JustSo PictureWindow
    JustSo PhotoAlbum, et alia

  • PartDetail not showing for items

    Hi, I'm having a strange issue where part detail isn't showing for items.
    [Here's what should be showing|http://img232.imageshack.us/img232/2007/partdetaildz5.png], but no information is returned. The add button is also missing.  Does anyone know why?

    I've inherited the installation so I'm not sure just how much has been modified. I just copied a known working catalog/ directory over the install and it brought back all the details except for the add button. I can't seem to find where that's been disabled, so I've just added some script to the control to make it visible at Page_Load.
    Thanks for your help.

  • How to print Header page from Tray1 paper and Items page from Tray2 paper

    Hi,
      I have requirement to print the Header data from Tray1 paper and Item details data from Tray2 paper,it should autometically pick paper from Tray1&Tray2...?
    Thanks in advance....

    Hi,
    You can do this by calling the url of the page with the form. You can then use p_arg_names and p_arg_values to pass parameters. In the called form you can get the value from p_arg_names and p_arg_values and assign it to the form field.
    You can call this code in the success procedure of the calling form.
    declare
    v_id number;
    blk varchar2(10):='DEFAULT';
    v_url varchar2(2000);
    Begin
    v_id:=p_session.get_value_as_number (p_block_name=>blk,p_attribute_name=>'A_ID');
    v_url := <page_url>;
    if v_id > 0 then
    call(v_url||'&p_arg_names=id&p_arg_values='||v_id);
    end if;
    End;
    In the called form in "Before displaying form" plsql section write this code.
    for i in 1..p_arg_names.count loop
    if p_arg_names(i) = 'id' then
    p_session.set_value(
    p_block_name => blk,
    p_attribute_name => 'A_ID',
    p_value => p_arg_values(i)
    end if;
    end loop;
    This code picks up the value from p_arg_values and assigns it to the form field.
    Hope that helps.
    Thanks,
    Sharmila

  • Populate header and detail

    Hi,
    I have an internal table with the value below. I need to populate to header data line (1 record only)  and detail is an internal table
    When there is a change of customer, i need to copy 123 to header and 2 records of material (abc & xed), sales (100 & 200) and qty (10 & 12) to detail internal table.
    for customer 567, i need to copy to header and material aqs, sales 150 and qty 5 to detail internal table.
    May I know how can I achieve this?
    customer     material        sales      qty
    123              abc              100         10
    123              xed              200          12
    567              aqs              150           5
    877              abc               140         8
    Thanks
    Rgds

    Hello,
    As per my understanding, your requirement is that you have an internal table which has a combined data and you want to split it into headr and detail internal tables, based on the change of the customer number which is the first field in the combined internal table. If so then assume that it_com is the combined internal table and it_head and it_det as the header and detail interbnal tables respectively.
    First sor the combined internal table on customer number
    sort it_com by kunnr.
    Now loop across this table and on the event at new customer populate the header table and in the remaining loop populate the detail table.
    loop at it_com into wa_com.
      at new kunnr.
         wa_head-kunnr = wa_com-kunnr.
         append wa_head-kunnr to it_head-kunnr.
         clear wa_head-kunnr.
      endat.
    append the records from the combined table into the item table, whatever fields required
    endloop.
    Regards,
    Sachin

  • DMEE issue in header and detail record

    Hi Gurs,
    I am working in DMME payment medium .
    I have declared DMEE  header structure(00000001000001 ) as level 1 and detail (050000010020192             XX110000001) as also level 1.
    This is the output format i am getting.
    00000001000001                                                                               
    05000001002000             XX110000001                                                                               
    00000001000001                                                                               
    05000001002012            XX110000002                                                                               
    00000001000001                                                                               
    05000001002012             XX110000003                                                                00000001000001                                                                               
    05000001002011             XX110000004           
    But my requirment not lke this. i need to dispaly all detail items under one header also i need to increase the counter for every items starting from 2.
    Both header and detail are at  level 1.If i declared the detail as level 2 the output is not generated.
    This is what i need.                                                                               
    00000001000001                                                                               
    05000002002000             XXX110000001                                                        
    05000003002012             XXX110000002
    05000004002012             XXX110000003
    05000005002011             XXX110000004 
    Pls suggest me any solutions
    Thanks .

    NOT answered

  • DMEE Issues header and detail record

    Hi Gurs,
    I am working in DMME(PAYM) payment medium .
    I have declared DMEE header structure(00000001000001 ) as level 1 and detail (050000010020192 XX110000001) as also level 1.
    This is the output format i am getting.
    00000001000001
    05000001002000 XX110000001
    00000001000001
    05000001002012 XX110000002
    00000001000001
    05000001002012 XX110000003 00000001000001
    05000001002011 XX110000004
    But my requirment not lke this. i need to dispaly all detail items under one header also i need to increase the counter for every items starting from 2.
    Both header and detail are at level 1.If i declared the detail as level 2 the output is not generated.
    This is what i need.
    00000001000001
    05000002002000 XXX110000001
    05000003002012 XXX110000002
    05000004002012 XXX110000003
    05000005002011 XXX110000004
    Pls suggest me any solutions
    Thanks .
    Edited by: bala chandran on Oct 9, 2009 10:57 AM

    NOT answered

  • JComboBox only show 10 items data when using DataBinding

    JComboBox only show 10 items data when binding to one table more then 10 lines. List Binding Mode is "Navigation Mode".
    JComboBox's property "maximaxRowCount" is seted to 30, but still display 10 items.
    some code:
    private JComboBox jComboBox2 = new JComboBox();
    jComboBox2.setModel((ComboBoxModel)panelBinding.bindUIControl("ChartView2", jComboBox2));
    ps. Table "Chart" has 35 lines.
    JDeveloper 10g(Version 10.1.2.0.0 Build 1811)

    I am encountering the same problem. I tested the binding VO in the Business Component Browser, it's fetching the correct result set.
    Any suggestion would be greatly appreciated!
    Stephanie

  • Requirement to show parent item on Pick Slip report

    rdf file of pick slip is not giving parent item in the output. I added a sql query to get the parent item details from oe_order_lines_all. Since the query is at a different level, I could not show parent item and its related child items in sequence.
    does any one have similar problem......please let me know how u have fixed it

    actual query gives the items which are picked from wsh_delivery_details wdd, oe_orders_lines_all oola....
    <G_PICK_SLIP_NUMBER>
    <SOURCE_LINE_NUMBER>1.1</SOURCE_LINE_NUMBER>
    <ORDERED_ITEM>SS</ORDERED_ITEM>
    </G_PICK_SLIP_NUMBER>
    <G_PICK_SLIP_NUMBER>
    <SOURCE_LINE_NUMBER>2.1..1</SOURCE_LINE_NUMBER>
    <ORDERED_ITEM>XX1</ORDERED_ITEM>
    </G_PICK_SLIP_NUMBER>
    <G_PICK_SLIP_NUMBER>
    <SOURCE_LINE_NUMBER>2.1..2</SOURCE_LINE_NUMBER>
    <ORDERED_ITEM>XX2</ORDERED_ITEM>
    </G_PICK_SLIP_NUMBER>
    i added a query to get the parent item, which I can get only from oola since the parent item did not have the record in wdd
    <G_SOURCE_HEADER_ID4>
    <SOURCE_LINE_NUMBER1>2.1</SOURCE_LINE_NUMBER1>
    <ORDERED_ITEM4>XX</ORDERED_ITEM4>
    </G_SOURCE_HEADER_ID4>
    in the template i am using the following xml tag
    <?for-each:G_PICK_SLIP_NUMBER?><?sort:SOURCE_LINE_NUMBER;'ascending';data-type='text'?>
    which gives
    1.1 ss
    2.1.1 xx1
    2.1.2 xx2
    where as i am looking for the following output
    1.1 ss
    2.1 xx
    2.1.1 xx1
    2.1.2 xx2
    i hope this explains my issue. Thanks
    zoom_ride
    zoom_ride

Maybe you are looking for

  • TA27430 how can i get my deleted notes if iphone wasnt backed up

    i lost all my notes and contacts off my un backed up i phone five how can i get them back please help this was my dh phone and he is supper upset im trying everything and just cant figure it out please help thanks

  • ALV Grid to be run in background & to generate output file in Excel format

    I use  REUSE_ALV_GRID_DISPLAY in my program for the ALV output My Requirement is Program to be run in a background since it is getting timed out when executed in foreground and also to generate the output file in Excel format. And we are using 4.6 C

  • WRT1900AC: Can it block DNS requests?

    Hello, Can the WRT1900AC block DNS request from devices in a home network to public DNS service like GoogleDNS? Can anyone tell me what steps are necessary to accomplish this? I tried to follow instructions found on the web but I could not add static

  • Batch Job Performance Issue in BW

    Hi All I would like to if there are any performance tuning methods for batch jobs in BW. Few jobs are taking much longer time and i need to figure out a method to tune them. Thanks in advance for your help Regards JP

  • How to download facebook videos

    anyone can help me to download facebook videos on iphone.