<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic at new problem...help! in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-new-problem-help/m-p/3050439#M722187</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in my code, i have to create one inbound delivery for PO's with the same vendor and container. how will i do this? i already have the code for the inbound delivery.&lt;/P&gt;&lt;P&gt;but i don't know how to do the condition on this. i tried at new command but it doesn't work because the field is replaced with *. what will be an alternative for this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please help me on this and give me suggestions about this.&lt;/P&gt;&lt;P&gt;thanks so much.:-)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-march-&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 04 Dec 2007 18:54:53 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-12-04T18:54:53Z</dc:date>
    <item>
      <title>at new problem...help!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-new-problem-help/m-p/3050439#M722187</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in my code, i have to create one inbound delivery for PO's with the same vendor and container. how will i do this? i already have the code for the inbound delivery.&lt;/P&gt;&lt;P&gt;but i don't know how to do the condition on this. i tried at new command but it doesn't work because the field is replaced with *. what will be an alternative for this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please help me on this and give me suggestions about this.&lt;/P&gt;&lt;P&gt;thanks so much.:-)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-march-&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Dec 2007 18:54:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-new-problem-help/m-p/3050439#M722187</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-04T18:54:53Z</dc:date>
    </item>
    <item>
      <title>Re: at new problem...help!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-new-problem-help/m-p/3050440#M722188</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can write like :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;declare one work area like itab ( wa_itab)&lt;/P&gt;&lt;P&gt;loop at itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;move itab to wa_itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use wa-itab ( here you will not get any *)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the sample program :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  ZTEST_IEVENTS no standard page heading&lt;/P&gt;&lt;P&gt;                      line-count 40(2).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tables : vbap.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : begin of i_vbap occurs 0,&lt;/P&gt;&lt;P&gt;       vbeln like vbap-vbeln,&lt;/P&gt;&lt;P&gt;       posnr like vbap-posnr,&lt;/P&gt;&lt;P&gt;       matnr like vbap-matnr,&lt;/P&gt;&lt;P&gt;       kwmeng like vbap-kwmeng,&lt;/P&gt;&lt;P&gt;       netpr like vbap-netpr,&lt;/P&gt;&lt;P&gt;       end of i_vbap.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data wa_vbap like line of  i_vbap.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data v_flag type c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select-options s_vbeln for vbap-vbeln obligatory.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;start-of-selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select vbeln&lt;/P&gt;&lt;P&gt;       posnr&lt;/P&gt;&lt;P&gt;       matnr&lt;/P&gt;&lt;P&gt;       kwmeng&lt;/P&gt;&lt;P&gt;       netpr from vbap&lt;/P&gt;&lt;P&gt;       into table i_vbap&lt;/P&gt;&lt;P&gt;       where vbeln in s_vbeln.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sort i_vbap by vbeln posnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;end-of-selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at i_vbap.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;move i_vbap to wa_vbap.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at first.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write:/2 'Order #',15 'Item #',28 'Material #',50 'Qty', 70 'Net value'.&lt;/P&gt;&lt;P&gt;skip 1.&lt;/P&gt;&lt;P&gt;endat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at new vbeln.&lt;/P&gt;&lt;P&gt;write:/2 wa_vbap-vbeln,15 wa_vbap-posnr,28 wa_vbap-matnr,&lt;/P&gt;&lt;P&gt;        47 wa_vbap-kwmeng,65 wa_vbap-netpr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;v_flag = 'X'.&lt;/P&gt;&lt;P&gt;endat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if v_flag ne 'X'.&lt;/P&gt;&lt;P&gt;write:/15 wa_vbap-posnr,28 wa_vbap-matnr,&lt;/P&gt;&lt;P&gt;        47 wa_vbap-kwmeng,65 wa_vbap-netpr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at end of vbeln.&lt;/P&gt;&lt;P&gt;sum.&lt;/P&gt;&lt;P&gt;skip 1.&lt;/P&gt;&lt;P&gt;write:/5 'Sub totals', 47 i_vbap-kwmeng,65 i_vbap-netpr.&lt;/P&gt;&lt;P&gt;skip 1.&lt;/P&gt;&lt;P&gt;endat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at last .&lt;/P&gt;&lt;P&gt;skip 1.&lt;/P&gt;&lt;P&gt;sum.&lt;/P&gt;&lt;P&gt;write:/5 'Grand Totals',47 i_vbap-kwmeng,65 i_vbap-netpr.&lt;/P&gt;&lt;P&gt;skip 1.&lt;/P&gt;&lt;P&gt;write:/ 'end of page', 'Footer'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endat.&lt;/P&gt;&lt;P&gt;clear v_flag.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Seshu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Dec 2007 19:22:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-new-problem-help/m-p/3050440#M722188</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-04T19:22:20Z</dc:date>
    </item>
  </channel>
</rss>

