<?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: How to use function module BAPI_CUSTOMERRETURN_CREATE in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-function-module-bapi-customerreturn-create/m-p/6829666#M1471322</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;RETURN_SCHEDULES_IN &amp;amp; RETURN_SCHEDULES_INX is commented in BAPI. Data in this structures is used to determine quantity at item level.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Vinod&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 23 Apr 2010 11:24:29 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-04-23T11:24:29Z</dc:date>
    <item>
      <title>How to use function module BAPI_CUSTOMERRETURN_CREATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-function-module-bapi-customerreturn-create/m-p/6829650#M1471306</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to create return sales order. I am trying to use BAPI_CUSTOMERRETURN_CREATE.&lt;/P&gt;&lt;P&gt;Can anybody please help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Apr 2010 11:14:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-function-module-bapi-customerreturn-create/m-p/6829650#M1471306</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-22T11:14:28Z</dc:date>
    </item>
    <item>
      <title>Re: How to use function module BAPI_CUSTOMERRETURN_CREATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-function-module-bapi-customerreturn-create/m-p/6829651#M1471307</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;Click on the Whereuse list for this FM &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i.e SE37--&lt;DEL&gt;&amp;gt;FM name&lt;/DEL&gt;&lt;DEL&gt;&lt;/DEL&gt;&lt;/P&gt;&lt;HR originaltext="---" /&gt;&amp;gt; click o n the wheruselist (ctrl&lt;EM&gt;shift&lt;/EM&gt;F3)--&amp;gt; select the check for programs and enter&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Padmasri.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Apr 2010 11:22:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-function-module-bapi-customerreturn-create/m-p/6829651#M1471307</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-22T11:22:24Z</dc:date>
    </item>
    <item>
      <title>Re: How to use function module BAPI_CUSTOMERRETURN_CREATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-function-module-bapi-customerreturn-create/m-p/6829652#M1471308</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;Try the sample code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;call function 'BAPI_CUSTOMERRETURN_CREATE'
      exporting
        salesdocumentin      = salesdocumentin
        return_header_in     = wa_return_header_in
        return_header_inx    = wa_return_header_inx
      importing
        salesdocument        = salesdocumentout
      tables
        return               = it_return
        return_items_in      = it_return_items_in
        return_items_inx     = it_return_items_inx
        return_partners      = it_return_partners
        return_schedules_in  = it_schedules_in
        return_schedules_inx = it_schedules_inx&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Fill: order number in salesdocumentin&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Fill following fields in "return_header_in"&lt;/P&gt;&lt;P&gt;DOC_TYPE, ORD_REASON, SD_DOC_CAT ='H', &lt;/P&gt;&lt;P&gt;REF_DOC = Reference document,&lt;/P&gt;&lt;P&gt;REFDOC_CAT = 'M' (If invoice is reference document)&lt;/P&gt;&lt;P&gt;SALES_ORG,DISTR_CHAN,DIVISION&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Fill the value 'X' to corresponding fields of structure "return_header_inx"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Fill partner details in "return_partners"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;While filling the structure "return_items_in" and "return_items_inx"&lt;/P&gt;&lt;P&gt;pass reference document number in the field "REF_DOC"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Fill Schedule line data in "return_schedules_in" and "return_schedules_inx"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Vinod&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Apr 2010 11:23:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-function-module-bapi-customerreturn-create/m-p/6829652#M1471308</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-22T11:23:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to use function module BAPI_CUSTOMERRETURN_CREATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-function-module-bapi-customerreturn-create/m-p/6829653#M1471309</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Vinod.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kindly help me with RETURN_SCHEDULES_IN and RETURN_SCHEDULES_INX Values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nikita Giradkar.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Apr 2010 11:49:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-function-module-bapi-customerreturn-create/m-p/6829653#M1471309</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-22T11:49:52Z</dc:date>
    </item>
    <item>
      <title>Re: How to use function module BAPI_CUSTOMERRETURN_CREATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-function-module-bapi-customerreturn-create/m-p/6829654#M1471310</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, Try sample code as below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;move &amp;lt;ls_return_item&amp;gt;-itm_number to wa_schedules_in-itm_number.
        move '0001'                      to wa_schedules_in-sched_line.
        move &amp;lt;ls_return_item&amp;gt;-target_qty to wa_schedules_in-req_qty.
        move ' '                         to wa_schedules_in-req_dlv_bl.
        append wa_schedules_in to it_schedules_in.

        move &amp;lt;ls_return_item&amp;gt;-itm_number to wa_schedules_inx-itm_number.
        move '0001'                      to wa_schedules_inx-sched_line.
        move 'X'                         to wa_schedules_inx-req_qty.
        move 'U'                         to wa_schedules_inx-updateflag.
        move 'X'                         to wa_schedules_inx-req_dlv_bl.
        append wa_schedules_inx to it_schedules_inx.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Vinod&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Apr 2010 11:55:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-function-module-bapi-customerreturn-create/m-p/6829654#M1471310</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-22T11:55:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to use function module BAPI_CUSTOMERRETURN_CREATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-function-module-bapi-customerreturn-create/m-p/6829655#M1471311</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nikita,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You have to fill given below fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;             so_header-doc_type               &lt;/P&gt;&lt;P&gt;             so_header-sales_org &lt;/P&gt;&lt;P&gt;              so_header-distr_chan &lt;/P&gt;&lt;P&gt;              so_header-division &lt;/P&gt;&lt;P&gt;              so_header-pmnttrms &lt;/P&gt;&lt;P&gt;              so_header-purch_no_c &lt;/P&gt;&lt;P&gt;              so_header-incoterms1 &lt;/P&gt;&lt;P&gt;              so_header-incoterms2 &lt;/P&gt;&lt;P&gt;              so_header-ord_reason &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;               w_items-itm_number&lt;/P&gt;&lt;P&gt;                w_items-material &lt;/P&gt;&lt;P&gt;                w_items-plant &lt;/P&gt;&lt;P&gt;                w_items-orderid &lt;/P&gt;&lt;P&gt;                w_items-profit_ctr&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;               w_shedule-itm_number &lt;/P&gt;&lt;P&gt;                w_shedule-sched_line &lt;/P&gt;&lt;P&gt;                w_shedule-req_qty&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;              w_partner-partn_role &lt;/P&gt;&lt;P&gt;              w_partner-partn_numb&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So you have to fill atleast these above parameters.&lt;/P&gt;&lt;P&gt;Ihope it will help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Narendra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Apr 2010 12:18:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-function-module-bapi-customerreturn-create/m-p/6829655#M1471311</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-22T12:18:33Z</dc:date>
    </item>
    <item>
      <title>Re: How to use function module BAPI_CUSTOMERRETURN_CREATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-function-module-bapi-customerreturn-create/m-p/6829656#M1471312</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I am getting error&lt;/P&gt;&lt;P&gt; 331	Item 000003 does not exist&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kindly help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Apr 2010 07:10:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-function-module-bapi-customerreturn-create/m-p/6829656#M1471312</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-23T07:10:52Z</dc:date>
    </item>
    <item>
      <title>Re: How to use function module BAPI_CUSTOMERRETURN_CREATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-function-module-bapi-customerreturn-create/m-p/6829657#M1471313</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You have to pass the line item number of Reference document (generally Billing document)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Vinod&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Apr 2010 07:36:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-function-module-bapi-customerreturn-create/m-p/6829657#M1471313</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-23T07:36:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to use function module BAPI_CUSTOMERRETURN_CREATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-function-module-bapi-customerreturn-create/m-p/6829658#M1471314</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;My code is &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;clear : vbrp.&lt;/P&gt;&lt;P&gt;  select * from vbrp where vbeln = zdefc_claim-vbeln and matnr = zdefc_claim-matnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    RETURN_SCHEDULES_IN-ITM_NUMBER = vbrp-posnr.&lt;/P&gt;&lt;P&gt;    RETURN_SCHEDULES_IN-REQ_QTY = zdefc_claim-zaccepted.&lt;/P&gt;&lt;P&gt;    append  RETURN_SCHEDULES_IN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    RETURN_SCHEDULES_INX-ITM_NUMBER = vbrp-posnr.&lt;/P&gt;&lt;P&gt;    RETURN_SCHEDULES_INX-REQ_QTY = 'X'.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   RETURN_SCHEDULES_INX-updateflag = 'U'.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    APPEND RETURN_SCHEDULES_INX.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  endselect.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Apr 2010 09:45:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-function-module-bapi-customerreturn-create/m-p/6829658#M1471314</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-23T09:45:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to use function module BAPI_CUSTOMERRETURN_CREATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-function-module-bapi-customerreturn-create/m-p/6829659#M1471315</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Add following line of code while filling schedule line information.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;move '0001'    to RETURN_SCHEDULES_IN-sched_line.
move '0001'    to RETURN_SCHEDULES_INX-sched_line.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Hope you are mapping following values&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"zdefc_claim-vbeln" into return_items_in-ref_doc,&lt;/P&gt;&lt;P&gt;"vbrp-posnr" into return_items_in-ref_doc_it,&lt;/P&gt;&lt;P&gt;"zdefc_claim-vbeln" into return_header_in-ref_doc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Vinod&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Apr 2010 09:51:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-function-module-bapi-customerreturn-create/m-p/6829659#M1471315</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-23T09:51:21Z</dc:date>
    </item>
    <item>
      <title>Re: How to use function module BAPI_CUSTOMERRETURN_CREATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-function-module-bapi-customerreturn-create/m-p/6829660#M1471316</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nikita,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As I mentioned mandatory fields in my above point.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kindly use SCHEUD_LINE also &lt;/P&gt;&lt;P&gt;Atleast fill this field by 6 characters&lt;/P&gt;&lt;P&gt;i.e. padd with zeros in starting&lt;/P&gt;&lt;P&gt;eg. instead of 0001 you have to write '000001'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Narendra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Apr 2010 09:58:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-function-module-bapi-customerreturn-create/m-p/6829660#M1471316</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-23T09:58:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to use function module BAPI_CUSTOMERRETURN_CREATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-function-module-bapi-customerreturn-create/m-p/6829661#M1471317</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks a lot.&lt;/P&gt;&lt;P&gt;While updating Sales documnet is getting created but Quantity is Blank.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kindly Help.&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Apr 2010 10:54:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-function-module-bapi-customerreturn-create/m-p/6829661#M1471317</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-23T10:54:31Z</dc:date>
    </item>
    <item>
      <title>Re: How to use function module BAPI_CUSTOMERRETURN_CREATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-function-module-bapi-customerreturn-create/m-p/6829662#M1471318</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check following lines of code where quantity is assigned.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;move &amp;lt;ls_return_item&amp;gt;-target_qty to return_items_in-target_qty.
move 'X'                        to return_items_inx-target_qty.

move &amp;lt;ls_return_item&amp;gt;-target_qty to return_schedules_in-req_qty.
move 'X'                        to return_schedules_inx-req_qty.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Vinod&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Apr 2010 11:02:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-function-module-bapi-customerreturn-create/m-p/6829662#M1471318</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-23T11:02:16Z</dc:date>
    </item>
    <item>
      <title>Re: How to use function module BAPI_CUSTOMERRETURN_CREATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-function-module-bapi-customerreturn-create/m-p/6829663#M1471319</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nikita,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Plz check quantity field in your code.&lt;/P&gt;&lt;P&gt;i.e. just before calling BAPI, check ur internal table which contains quantity data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also check on this line of your code.&lt;/P&gt;&lt;P&gt;RETURN_SCHEDULES_IN-REQ_QTY = zdefc_claim-zaccepted.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or you can check by passing some constant value in quantity field.       " to check the data is coming in variable or not.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Narendra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Apr 2010 11:04:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-function-module-bapi-customerreturn-create/m-p/6829663#M1471319</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-23T11:04:21Z</dc:date>
    </item>
    <item>
      <title>Re: How to use function module BAPI_CUSTOMERRETURN_CREATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-function-module-bapi-customerreturn-create/m-p/6829664#M1471320</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, I tried passing constant '10.000', but still quantity is not getting updated.&lt;/P&gt;&lt;P&gt;My code is:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'BAPI_CUSTOMERRETURN_CREATE'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  SALESDOCUMENTIN               =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      RETURN_HEADER_IN              = RETURN_HEADER_IN&lt;/P&gt;&lt;P&gt;      RETURN_HEADER_INX             = RETURN_HEADER_INX&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  SENDER                        =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  BINARY_RELATIONSHIPTYPE       = 'VORA'&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  INT_NUMBER_ASSIGNMENT         =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  BEHAVE_WHEN_ERROR             =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  LOGIC_SWITCH                  =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  TESTRUN                       =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  CONVERT                       = ' '&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;   IMPORTING&lt;/P&gt;&lt;P&gt;     SALESDOCUMENT                 = SALESDOCUMENT&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;     RETURN                        =  RETURN&lt;/P&gt;&lt;P&gt;     RETURN_ITEMS_IN               = RETURN_ITEMS_IN&lt;/P&gt;&lt;P&gt;     RETURN_ITEMS_INX              = RETURN_ITEMS_INX&lt;/P&gt;&lt;P&gt;     RETURN_PARTNERS               =  RETURN_PARTNERS&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    RETURN_SCHEDULES_IN           = RETURN_SCHEDULES_IN&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    RETURN_SCHEDULES_INX          = RETURN_SCHEDULES_INX&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  RETURN_CONDITIONS_IN          =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  RETURN_CFGS_REF               =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  RETURN_CFGS_INST              =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  RETURN_CFGS_PART_OF           =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  RETURN_CFGS_VALUE             =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  RETURN_CFGS_BLOB              =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  RETURN_CFGS_VK                =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  RETURN_CFGS_REFINST           =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  RETURN_TEXT                   =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  RETURN_KEYS                   =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  EXTENSIONIN                   =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  PARTNERADDRESSES              =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;            .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Apr 2010 11:06:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-function-module-bapi-customerreturn-create/m-p/6829664#M1471320</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-23T11:06:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to use function module BAPI_CUSTOMERRETURN_CREATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-function-module-bapi-customerreturn-create/m-p/6829665#M1471321</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nikita,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Plz uncomment the given below lines&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;RETURN_SCHEDULES_IN = RETURN_SCHEDULES_IN&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;RETURN_SCHEDULES_INX = RETURN_SCHEDULES_INX&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You are filling structures but commented these lines in your code.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Uncomment this.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope it will help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Narendra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Apr 2010 11:18:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-function-module-bapi-customerreturn-create/m-p/6829665#M1471321</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-23T11:18:06Z</dc:date>
    </item>
    <item>
      <title>Re: How to use function module BAPI_CUSTOMERRETURN_CREATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-function-module-bapi-customerreturn-create/m-p/6829666#M1471322</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;RETURN_SCHEDULES_IN &amp;amp; RETURN_SCHEDULES_INX is commented in BAPI. Data in this structures is used to determine quantity at item level.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Vinod&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Apr 2010 11:24:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-function-module-bapi-customerreturn-create/m-p/6829666#M1471322</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-23T11:24:29Z</dc:date>
    </item>
    <item>
      <title>Re: How to use function module BAPI_CUSTOMERRETURN_CREATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-function-module-bapi-customerreturn-create/m-p/6829667#M1471323</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for above answers. Now at sales order quantity is getting updated but net value is blank.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kindly help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 24 Apr 2010 04:28:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-function-module-bapi-customerreturn-create/m-p/6829667#M1471323</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-24T04:28:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to use function module BAPI_CUSTOMERRETURN_CREATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-function-module-bapi-customerreturn-create/m-p/6829668#M1471324</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN __default_attr="red" __jive_macro_name="color"&gt;Moderator message - Please do not respond to questions like this. Correct answer is RTFM.

post locked and points unassigned

Rob&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 24 Apr 2010 18:34:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-function-module-bapi-customerreturn-create/m-p/6829668#M1471324</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-24T18:34:32Z</dc:date>
    </item>
  </channel>
</rss>

