<?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 in Delivery Split - BAPI_OUTB_DELIVERY_SPLIT_DEC in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-delivery-split-bapi-outb-delivery-split-dec/m-p/7637750#M1571884</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you please let me know what are all the parameters needs to be passed..&lt;/P&gt;&lt;P&gt;  i need to split the outbound delivery based on ship qty and receiving error  MESSAGE ID LEDSP - 037&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 08 Mar 2011 21:16:55 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-03-08T21:16:55Z</dc:date>
    <item>
      <title>Problem in Delivery Split - BAPI_OUTB_DELIVERY_SPLIT_DEC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-delivery-split-bapi-outb-delivery-split-dec/m-p/7637747#M1571881</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear friends, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Iam facing a problem on Delivery Split&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;My Requirement :&lt;/STRONG&gt; I have a delivery A with Item 000010 and Batches 10,20,30,40,50 in ERP system. I have a third party system which wil create a new delivery B for this Original delivery A and associate batches 20, 30 - Means... the Third party system is splitting the delivery A to delivery A and B and associate &lt;/P&gt;&lt;P&gt;Delivery A with Batches 10, 40 and 50 &lt;/P&gt;&lt;P&gt;New Delivery B with Batches 20 and 30.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;What am I trying to do is&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Step 1. I am trying to create a new delivery B using "BAPI_OUTB_DELIVERY_SPLIT_DEC" &lt;/P&gt;&lt;P&gt;Step 2. Ill do a Batch Split for B using "BAPI_OUTB_DELIVERY_CHANGE"&lt;/P&gt;&lt;P&gt;Step 3. Ill delete the Batches 20 and 30 which are used in Delivery B from Delivery A.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Usage of "BAPI_OUTB_DELIVERY_SPLIT_DEC"&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    wa_item-deliv_numb            = p_n_dlv.   "New Delivery Number  "65000000&lt;/P&gt;&lt;P&gt;    wa_item-deliv_item            = p_n_psn.     "New Delivery Item      "000010&lt;/P&gt;&lt;P&gt;    wa_item-curr_qty              = 'B'.       "Base Unit (B) / Sales Unit (A)&lt;/P&gt;&lt;P&gt;    wa_item-dlv_qty               = lv_qty.                                               "40&lt;/P&gt;&lt;P&gt;*wa_item-DEL_QTY_FLO           =&lt;/P&gt;&lt;P&gt;    wa_item-sales_unit            = wa_lips-vrkme.                                "MSF&lt;/P&gt;&lt;P&gt;    wa_item-isocode_sales_unit    = wa_lips-vrkme .                             "MSF&lt;/P&gt;&lt;P&gt;    wa_item-dlv_qty_stock         = lv_qty.                                           "40&lt;/P&gt;&lt;P&gt;*wa_item-DLV_QTY_ST_FLO        =&lt;/P&gt;&lt;P&gt;    wa_item-base_uom              = wa_lips-meins.                             "MSF&lt;/P&gt;&lt;P&gt;    wa_item-base_uom_iso          = wa_lips-meins.                            "MSF&lt;/P&gt;&lt;P&gt;    wa_item-sales_qty_num         = 1.&lt;/P&gt;&lt;P&gt;    wa_item-sales_qty_denom       = 1.&lt;/P&gt;&lt;P&gt;    wa_item-convfactor            = wa_lips-umrev.                             "0.00000000000.....0+0&lt;/P&gt;&lt;P&gt;    APPEND wa_item TO lt_items.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CALL FUNCTION 'BAPI_OUTB_DELIVERY_SPLIT_DEC' &lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        delivery                    = p_vbeln&lt;/P&gt;&lt;P&gt;        deliverynew                 = p_n_dlv&lt;/P&gt;&lt;P&gt;        deliveryitemsbelongto       = p_dlv_md  "N         &lt;/P&gt;&lt;P&gt;        businessprocess             = 'Z006'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  TECHNCONTROL                =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      TABLES&lt;/P&gt;&lt;P&gt;        itemdata                    = lt_items&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  EXTENSIONIN                 =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;        return                      = l_return&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  ITEM_SERIAL_NO              =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;              .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Errors which Iam getting&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;E   |LEDSP               |037   |                                         &amp;lt;&lt;/P&gt;&lt;P&gt;E   |LEDSP               |025   |                                         &amp;lt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Waiting for some good suggestions!...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;removed by moderator&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Kripa Rangachari.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        wait = LV_WAIT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Thomas Zloch on Feb 19, 2011 1:38 PM - please do not promise ...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 19 Feb 2011 07:42:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-delivery-split-bapi-outb-delivery-split-dec/m-p/7637747#M1571881</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-02-19T07:42:40Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in Delivery Split - BAPI_OUTB_DELIVERY_SPLIT_DEC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-delivery-split-bapi-outb-delivery-split-dec/m-p/7637748#M1571882</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Folks! &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Any inputs you have!?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Feb 2011 05:33:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-delivery-split-bapi-outb-delivery-split-dec/m-p/7637748#M1571882</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-02-21T05:33:42Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in Delivery Split - BAPI_OUTB_DELIVERY_SPLIT_DEC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-delivery-split-bapi-outb-delivery-split-dec/m-p/7637749#M1571883</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey all!.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The BAPI "BAPI_OUTB_DELIVERY_SPLIT_DEC" works for Delivery Split ... with the parameter values which Iam passing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The problem was the data which is used for testing!..... The customized split profile which is used "Z006" doesnt pick up the delivery data given for splitting ....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Used a different data - and the new delivery number got created! &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Kripa Rangachari.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Feb 2011 06:25:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-delivery-split-bapi-outb-delivery-split-dec/m-p/7637749#M1571883</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-02-23T06:25:19Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in Delivery Split - BAPI_OUTB_DELIVERY_SPLIT_DEC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-delivery-split-bapi-outb-delivery-split-dec/m-p/7637750#M1571884</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you please let me know what are all the parameters needs to be passed..&lt;/P&gt;&lt;P&gt;  i need to split the outbound delivery based on ship qty and receiving error  MESSAGE ID LEDSP - 037&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Mar 2011 21:16:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-delivery-split-bapi-outb-delivery-split-dec/m-p/7637750#M1571884</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-03-08T21:16:55Z</dc:date>
    </item>
  </channel>
</rss>

