<?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: Split Transfer Order(TO) using L_TO_CREATE_DN in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/split-transfer-order-to-using-l-to-create-dn/m-p/899327#M54900</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes you can have any number of TO's for a delivery.  It need not be a line item, infact you can create a TO for quantity 1 even if the delivery is for 1000.  If you have any trouble in the FM I can provide examples.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also since this thread is answered it would be better if you can create a new thread, will enable other SDNers to answer if they have had similar experience.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hith&lt;/P&gt;&lt;P&gt;Sunil Achyut&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 08 Sep 2006 16:48:11 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-09-08T16:48:11Z</dc:date>
    <item>
      <title>Split Transfer Order(TO) using L_TO_CREATE_DN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/split-transfer-order-to-using-l-to-create-dn/m-p/899318#M54891</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Cheers everyone.&lt;/P&gt;&lt;P&gt;I'm trying to use the function L_TO_CREATE_DN to simulate the following from LT03(4.6C):&lt;/P&gt;&lt;P&gt;For a certain Delivery line, split the material quantity during picking to have multiple TO lines for 1 Delivery line.&lt;/P&gt;&lt;P&gt;This works in LT03.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In function L_TO_CREATE_DN, there's a table (T_LTAP_VB) that seems to make this possible.  Problem is, this function calls L_TO_CREATE_INT (LT03 also calls this function), but this internal function ignores table T_LTAP_VB.  It uses instead a table in it's function group's global memory.  I am not able to find another function to set this table separately.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Has anyone done this using these functions?  I would like to keep away from doing a Call Transaction.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jester&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 May 2005 19:30:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/split-transfer-order-to-using-l-to-create-dn/m-p/899318#M54891</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-05-12T19:30:35Z</dc:date>
    </item>
    <item>
      <title>Re: Split Transfer Order(TO) using L_TO_CREATE_DN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/split-transfer-order-to-using-l-to-create-dn/m-p/899319#M54892</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;  You can try the following piece of code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: i_ltap TYPE STANDARD TABLE OF ltap_vb&lt;/P&gt;&lt;P&gt;             INITIAL SIZE 0 WITH HEADER LINE,&lt;/P&gt;&lt;P&gt;        l_tanum TYPE tanum.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CLEAR:i_return,i_message.&lt;/P&gt;&lt;P&gt;  REFRESH: i_return,i_message.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  EXPORT i_lenum TO MEMORY ID 'YPD_SSCC_LIST'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'L_TO_CREATE_DN'&lt;/P&gt;&lt;P&gt;       EXPORTING&lt;/P&gt;&lt;P&gt;            i_lgnum                    = v_lgnum&lt;/P&gt;&lt;P&gt;            i_vbeln                    = v_vbeln&lt;/P&gt;&lt;P&gt;            i_squit                    = c_x&lt;/P&gt;&lt;P&gt;            i_commit_work              = space&lt;/P&gt;&lt;P&gt;       IMPORTING&lt;/P&gt;&lt;P&gt;            e_tanum                    = l_tanum&lt;/P&gt;&lt;P&gt;       TABLES&lt;/P&gt;&lt;P&gt;            t_ltap_vb                  = i_ltap&lt;/P&gt;&lt;P&gt;       EXCEPTIONS&lt;/P&gt;&lt;P&gt;            foreign_lock               = 1&lt;/P&gt;&lt;P&gt;            dn_completed               = 2&lt;/P&gt;&lt;P&gt;            partial_delivery_forbidden = 3&lt;/P&gt;&lt;P&gt;            xfeld_wrong                = 4&lt;/P&gt;&lt;P&gt;            ldest_wrong                = 5&lt;/P&gt;&lt;P&gt;            drukz_wrong                = 6&lt;/P&gt;&lt;P&gt;            dn_wrong                   = 7&lt;/P&gt;&lt;P&gt;            squit_forbidden            = 8&lt;/P&gt;&lt;P&gt;            no_to_created              = 9&lt;/P&gt;&lt;P&gt;            teilk_wrong                = 10&lt;/P&gt;&lt;P&gt;            update_without_commit      = 11&lt;/P&gt;&lt;P&gt;            no_authority               = 12&lt;/P&gt;&lt;P&gt;            no_picking_allowed         = 13&lt;/P&gt;&lt;P&gt;            dn_hu_not_choosable        = 14&lt;/P&gt;&lt;P&gt;            error_message              = 99&lt;/P&gt;&lt;P&gt;            OTHERS                     = 15.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  Error Creating --&amp;gt; TO&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    PERFORM set_error_message USING text-019.&lt;/P&gt;&lt;P&gt;    flg_error = c_x.&lt;/P&gt;&lt;P&gt;    v_msgid = sy-msgid.&lt;/P&gt;&lt;P&gt;    v_msgno = sy-msgno.&lt;/P&gt;&lt;P&gt;    v_msgty = sy-msgty.&lt;/P&gt;&lt;P&gt;    v_msgv1 = sy-msgv1.&lt;/P&gt;&lt;P&gt;    v_msgv2 = sy-msgv2.&lt;/P&gt;&lt;P&gt;    v_msgv3 = sy-msgv3.&lt;/P&gt;&lt;P&gt;    v_msgv4 = sy-msgv4.&lt;/P&gt;&lt;P&gt;    PERFORM populate_return_message.&lt;/P&gt;&lt;P&gt;    APPEND i_return.&lt;/P&gt;&lt;P&gt;    APPEND i_message.&lt;/P&gt;&lt;P&gt;  ELSE.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  TO successfully created with No:&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    v_msgid = c_msgclass.       &lt;/P&gt;&lt;P&gt;    v_msgno = c_message_no.     &lt;/P&gt;&lt;P&gt;    v_msgty = c_s.              &lt;/P&gt;&lt;P&gt;    v_msgv1 = text-015.         "TO successfully created with No:&lt;/P&gt;&lt;P&gt;    v_msgv2 = l_tanum.&lt;/P&gt;&lt;P&gt;    CLEAR:v_msgv3,v_msgv4.&lt;/P&gt;&lt;P&gt;    PERFORM populate_return_message.&lt;/P&gt;&lt;P&gt;    APPEND i_message.&lt;/P&gt;&lt;P&gt;    APPEND i_return.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 May 2005 01:00:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/split-transfer-order-to-using-l-to-create-dn/m-p/899319#M54892</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-05-13T01:00:19Z</dc:date>
    </item>
    <item>
      <title>Re: Split Transfer Order(TO) using L_TO_CREATE_DN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/split-transfer-order-to-using-l-to-create-dn/m-p/899320#M54893</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Aveek, and thanks, but creating a TO from a Delivery works fine.  My problem is i need to split a Delivery Line into multiple TO lines.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This function has table T_LTAP_VB, which it passes to L_TO_CREATE_INT, but does not seem to use it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 May 2005 12:03:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/split-transfer-order-to-using-l-to-create-dn/m-p/899320#M54893</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-05-16T12:03:22Z</dc:date>
    </item>
    <item>
      <title>Re: Split Transfer Order(TO) using L_TO_CREATE_DN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/split-transfer-order-to-using-l-to-create-dn/m-p/899321#M54894</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;  You can try this option:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'L_TO_CREATE_MULTIPLE'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      i_lgnum                = i_ltak1-lgnum&lt;/P&gt;&lt;P&gt;      i_bwlvs                = c_bwlvs1&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      e_tanum                = v_tanum&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      t_ltap_creat           = i_ltap_creat&lt;/P&gt;&lt;P&gt;      t_ltap_vb              = i_ltap_vb&lt;/P&gt;&lt;P&gt;    Exceptions &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;&lt;/P&gt;&lt;P&gt;Aveek&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 May 2005 13:36:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/split-transfer-order-to-using-l-to-create-dn/m-p/899321#M54894</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-05-16T13:36:34Z</dc:date>
    </item>
    <item>
      <title>Re: Split Transfer Order(TO) using L_TO_CREATE_DN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/split-transfer-order-to-using-l-to-create-dn/m-p/899322#M54895</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Aveek.&lt;/P&gt;&lt;P&gt;Sorry for taking so long in responding.&lt;/P&gt;&lt;P&gt;Thanks for the advice.&lt;/P&gt;&lt;P&gt;I had tried that one and it did split the TO appropriately, but did not provide the necessary link to the Delivery document.&lt;/P&gt;&lt;P&gt;I ended up having to use a Call Transaction + user-exit to solve this one.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks again.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Jun 2005 15:04:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/split-transfer-order-to-using-l-to-create-dn/m-p/899322#M54895</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-06-07T15:04:59Z</dc:date>
    </item>
    <item>
      <title>Re: Split Transfer Order(TO) using L_TO_CREATE_DN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/split-transfer-order-to-using-l-to-create-dn/m-p/899323#M54896</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Greetings,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I found these postings about Splitting a TO.  We have a similar requirement and, if possible, I like to learn more about the eventual solution mentioned by the 'Guest' contributor (i.e. using a Call Transaction and a user exit).  I assume the called txn was LT03 (right?) but which user exit (MWMTO012?).  A paste of the code would also be great.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We need to know how to influence the TO creation during Picking for Delivery in a non-SUM warehouse so we get TO line items broken up by LE Quantity.  &lt;/P&gt;&lt;P&gt;Example:&lt;/P&gt;&lt;P&gt;WH is non-SUM / Pick Strategy is stringent FIFO.&lt;/P&gt;&lt;P&gt;Delivery Line 010 has reqired qty of 94.&lt;/P&gt;&lt;P&gt;LE Qty is 25/pallet.&lt;/P&gt;&lt;P&gt;Assume 1 material/batch in one bin can satisfy the req'mt of 94.&lt;/P&gt;&lt;P&gt;Currently, we get 1 TO Line Itme for 94.&lt;/P&gt;&lt;P&gt;What we want is 4 TO Line Items for 25, 25, 25 and 19.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance for any help!&lt;/P&gt;&lt;P&gt;Mike D / Coca-Cola&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Mar 2006 20:19:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/split-transfer-order-to-using-l-to-create-dn/m-p/899323#M54896</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-10T20:19:54Z</dc:date>
    </item>
    <item>
      <title>Re: Split Transfer Order(TO) using L_TO_CREATE_DN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/split-transfer-order-to-using-l-to-create-dn/m-p/899324#M54897</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Aveek,&lt;/P&gt;&lt;P&gt;I was wondering if i can get some information on the process of splitting the Transfer order by line Item of the Inbound delivery, or i can have Tr for each line Item.&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;P&gt;Raj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Sep 2006 23:13:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/split-transfer-order-to-using-l-to-create-dn/m-p/899324#M54897</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-07T23:13:42Z</dc:date>
    </item>
    <item>
      <title>Re: Split Transfer Order(TO) using L_TO_CREATE_DN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/split-transfer-order-to-using-l-to-create-dn/m-p/899325#M54898</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In the function module you have an internal table IT_DELIT which can be used to split the TO in whatever quantity you want.  If you are unable to resolve it let me know.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hith&lt;/P&gt;&lt;P&gt;Sunil Achyut&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Sep 2006 02:56:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/split-transfer-order-to-using-l-to-create-dn/m-p/899325#M54898</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-08T02:56:23Z</dc:date>
    </item>
    <item>
      <title>Re: Split Transfer Order(TO) using L_TO_CREATE_DN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/split-transfer-order-to-using-l-to-create-dn/m-p/899326#M54899</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sunil,&lt;/P&gt;&lt;P&gt;Can i split the TO for receiving by Delivery to each line item. In other words can i have N To's for N number of Line Item in One delivery.&lt;/P&gt;&lt;P&gt;I would appreciate your help.&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Sep 2006 16:21:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/split-transfer-order-to-using-l-to-create-dn/m-p/899326#M54899</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-08T16:21:42Z</dc:date>
    </item>
    <item>
      <title>Re: Split Transfer Order(TO) using L_TO_CREATE_DN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/split-transfer-order-to-using-l-to-create-dn/m-p/899327#M54900</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes you can have any number of TO's for a delivery.  It need not be a line item, infact you can create a TO for quantity 1 even if the delivery is for 1000.  If you have any trouble in the FM I can provide examples.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also since this thread is answered it would be better if you can create a new thread, will enable other SDNers to answer if they have had similar experience.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hith&lt;/P&gt;&lt;P&gt;Sunil Achyut&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Sep 2006 16:48:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/split-transfer-order-to-using-l-to-create-dn/m-p/899327#M54900</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-08T16:48:11Z</dc:date>
    </item>
    <item>
      <title>Re: Split Transfer Order(TO) using L_TO_CREATE_DN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/split-transfer-order-to-using-l-to-create-dn/m-p/899328#M54901</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello. I have the same problem. I need to create TO   on a position of entering delivery on a part of quantity (for quantity 1 even if the delivery is for 1000).&lt;/P&gt;&lt;P&gt;Can you provide examples, please? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Olga&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Nov 2006 07:38:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/split-transfer-order-to-using-l-to-create-dn/m-p/899328#M54901</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-03T07:38:24Z</dc:date>
    </item>
    <item>
      <title>Re: Split Transfer Order(TO) using L_TO_CREATE_DN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/split-transfer-order-to-using-l-to-create-dn/m-p/899329#M54902</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You may need to check your customzing. I noticed the same effect when using L_TO_CREATE_DN, but was able to post it using LT03. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Go into SPRO under Shipping Control per Warehouse Number (LE -&amp;gt; WM -&amp;gt; Interfaces -&amp;gt; Shipping -&amp;gt; Define Shipping Control) and select the 'Partial Picking OK' checkbox for your warehouse number. This may (or may not) fix it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Patrick&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jul 2007 02:58:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/split-transfer-order-to-using-l-to-create-dn/m-p/899329#M54902</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-20T02:58:45Z</dc:date>
    </item>
    <item>
      <title>Re: Split Transfer Order(TO) using L_TO_CREATE_DN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/split-transfer-order-to-using-l-to-create-dn/m-p/899330#M54903</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Achyut,&lt;/P&gt;&lt;P&gt;       Can you send me any sample code for TO split.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Vinod&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Sep 2008 22:05:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/split-transfer-order-to-using-l-to-create-dn/m-p/899330#M54903</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-29T22:05:22Z</dc:date>
    </item>
    <item>
      <title>Re: Split Transfer Order(TO) using L_TO_CREATE_DN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/split-transfer-order-to-using-l-to-create-dn/m-p/899331#M54904</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Mr. Guest,&lt;/P&gt;&lt;P&gt;          Can you explain me briefly what you did to acheive the TO split.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Sep 2008 22:07:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/split-transfer-order-to-using-l-to-create-dn/m-p/899331#M54904</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-29T22:07:34Z</dc:date>
    </item>
    <item>
      <title>Re: Split Transfer Order(TO) using L_TO_CREATE_DN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/split-transfer-order-to-using-l-to-create-dn/m-p/899332#M54905</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Aveek,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you please tell me how you found following statement and if you have tested it :&lt;/P&gt;&lt;P&gt;"EXPORT i_lenum TO MEMORY ID 'YPD_SSCC_LIST'."&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you also give the i_lenum structure declaration statement ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Blsap&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Oct 2010 15:13:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/split-transfer-order-to-using-l-to-create-dn/m-p/899332#M54905</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-10-20T15:13:56Z</dc:date>
    </item>
    <item>
      <title>Re: Split Transfer Order(TO) using L_TO_CREATE_DN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/split-transfer-order-to-using-l-to-create-dn/m-p/899333#M54906</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Aveek,&lt;/P&gt;&lt;P&gt;I am confused in code. can you please send me the total code including data declarations.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Suresh Redy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Dec 2013 07:15:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/split-transfer-order-to-using-l-to-create-dn/m-p/899333#M54906</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-12-06T07:15:31Z</dc:date>
    </item>
  </channel>
</rss>

