<?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 Re: Problem with BAPI_CUSTOMERRETURN_CREATE in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-bapi-customerreturn-create/m-p/7227787#M1524514</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The OSS [Note 366265 - How should I fill the BAPI parameters?|https://service.sap.com/sap/support/notes/366265] may help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raymond&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 27 Aug 2010 07:43:33 GMT</pubDate>
    <dc:creator>RaymondGiuseppi</dc:creator>
    <dc:date>2010-08-27T07:43:33Z</dc:date>
    <item>
      <title>Problem with BAPI_CUSTOMERRETURN_CREATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-bapi-customerreturn-create/m-p/7227786#M1524513</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have created a program to create Sales Return Oder by calling this BAPI_CUSTOMERRETURN_CREATE and it creates a Sales Order Return succesfully, my problem is that, quantiy is always Zero '0'. I tried to debug and check the content of RETURN_ITEMS_IN-target_qty before it calls the BAPI, it has a quantity.  What would be the problem why am I getting zero quantity on the SO created.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Aug 2010 07:39:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-bapi-customerreturn-create/m-p/7227786#M1524513</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-08-27T07:39:29Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with BAPI_CUSTOMERRETURN_CREATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-bapi-customerreturn-create/m-p/7227787#M1524514</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The OSS [Note 366265 - How should I fill the BAPI parameters?|https://service.sap.com/sap/support/notes/366265] may help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raymond&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Aug 2010 07:43:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-bapi-customerreturn-create/m-p/7227787#M1524514</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2010-08-27T07:43:33Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with BAPI_CUSTOMERRETURN_CREATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-bapi-customerreturn-create/m-p/7227788#M1524515</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For updating the quantity,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use  REQ_QTY in  structure  return_schedules_in to update the quantity&lt;/P&gt;&lt;P&gt;and pass item number to the field ITM_NUMBER&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Set 'X' to the field REQ_QTY in structure return_schedules_inx&lt;/P&gt;&lt;P&gt;and pass item number to the field ITM_NUMBER&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sujay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Aug 2010 08:06:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-bapi-customerreturn-create/m-p/7227788#M1524515</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-08-27T08:06:12Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with BAPI_CUSTOMERRETURN_CREATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-bapi-customerreturn-create/m-p/7227789#M1524516</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pass the quantity the schedule lines as well. REQ_QTY = '10.000'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;For ur convinience:
item_sl-ITM_NUMBER= '000001'.
item_sl-SCHED_LINE = '0001'.
item_sl-target_qty = '10.000'.
item_sl-REQ_DATE = sy-datum

APPEND item_sl.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;May it helps you.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;DS.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Aug 2010 08:35:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-bapi-customerreturn-create/m-p/7227789#M1524516</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-08-27T08:35:43Z</dc:date>
    </item>
  </channel>
</rss>

