<?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: BAPI for transfer order creation - LT03 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-for-transfer-order-creation-lt03/m-p/4052192#M968608</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;But I need to use VBELN... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;PT&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 09 Jul 2008 12:14:06 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-07-09T12:14:06Z</dc:date>
    <item>
      <title>BAPI for transfer order creation - LT03</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-for-transfer-order-creation-lt03/m-p/4052184#M968600</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Community,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you advice on the BAPI for creation of transfer orders in LT03?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance,&lt;/P&gt;&lt;P&gt;PT&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Jul 2008 08:29:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-for-transfer-order-creation-lt03/m-p/4052184#M968600</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-04T08:29:13Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI for transfer order creation - LT03</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-for-transfer-order-creation-lt03/m-p/4052185#M968601</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Don't think that this is not a BAPI(but it is RFC) if you want to use this from external system.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use any one of the below..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;L_TO_CREATE_MULTIPLE
L_TO_CREATE_SINGLE&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I used one of my requirements it is working fine..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Jul 2008 08:34:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-for-transfer-order-creation-lt03/m-p/4052185#M968601</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-04T08:34:33Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI for transfer order creation - LT03</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-for-transfer-order-creation-lt03/m-p/4052186#M968602</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi developer,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Function Module 'L_TO_CREATE_DN' should do it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA lt_ltak TYPE STANDARD TABLE OF ltak_vb WITH HEADER LINE.
"TO Header
DATA lt_ltap1 TYPE STANDARD TABLE OF ltap_vb WITH HEADER LINE.
"TO Items
DATA lt_msg TYPE STANDARD TABLE OF wmgrp_msg WITH HEADER LINE.
DATA lt_delit TYPE TABLE OF l03b_delit.
DATA lt_wa_delit TYPE l03b_delit.
"TO Items with Pallet data
DATA lv_tanum TYPE ltak-tanum. "TO Number

LOOP AT t_pallet.
MOVE t_pallet-posnr TO lt_wa_delit-posnr.
MOVE t_pallet-curr_qty TO lt_wa_delit-anfme.
MOVE t_pallet-vrkme TO lt_wa_delit-altme.
MOVE t_pallet-charg TO lt_wa_delit-charg.
MOVE t_pallet-lgtyp TO lt_wa_delit-vltyp.
MOVE t_pallet-lgpla TO lt_wa_delit-vlpla.

UNPACK t_pallet-lenum TO lt_wa_delit-vlenr.

APPEND lt_wa_delit TO lt_delit.
CLEAR lt_wa_delit.

ENDLOOP.

    * Bapi to Create the TO

CALL FUNCTION 'L_TO_CREATE_DN'
EXPORTING
i_lgnum = t_user-lgnum
i_vbeln = zmilk_zlm26_str-vbeln
i_squit = c_true
it_delit = lt_delit
IMPORTING
e_tanum = lv_tanum
TABLES
t_ltak = lt_ltak
t_ltap_vb = lt_ltap1
t_wmgrp_msg = lt_msg
EXCEPTIONS
foreign_lock = 1
dn_completed = 2
partial_delivery_forbidden = 3
xfeld_wrong = 4
ldest_wrong = 5
drukz_wrong = 6
dn_wrong = 7
squit_forbidden = 8
no_to_created = 9
teilk_wrong = 10
update_without_commit = 11
no_authority = 12
no_picking_allowed = 13
dn_hu_not_choosable = 14
input_error = 15
OTHERS = 16.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anup.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Jul 2008 08:44:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-for-transfer-order-creation-lt03/m-p/4052186#M968602</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-04T08:44:26Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI for transfer order creation - LT03</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-for-transfer-order-creation-lt03/m-p/4052187#M968603</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'm using 'L_TO_CREATE_DN' to create the delivery note as sugested but I need to pass the value of ZEUGN(Certificate field).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you know were to fill the field?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance,&lt;/P&gt;&lt;P&gt;PT&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jul 2008 12:01:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-for-transfer-order-creation-lt03/m-p/4052187#M968603</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-09T12:01:23Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI for transfer order creation - LT03</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-for-transfer-order-creation-lt03/m-p/4052188#M968604</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can pass the info using the Below functions..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You need to pass that to LTAP structure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;L_TO_CREATE_MULTIPLE
L_TO_CREATE_SINGLE&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jul 2008 12:07:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-for-transfer-order-creation-lt03/m-p/4052188#M968604</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-09T12:07:00Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI for transfer order creation - LT03</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-for-transfer-order-creation-lt03/m-p/4052189#M968605</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 this coding &lt;/P&gt;&lt;P&gt;Function Module 'L_TO_CREATE_DN' should do it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example:&lt;/P&gt;&lt;P&gt;DATA lt_ltak TYPE STANDARD TABLE OF ltak_vb WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;"TO Header&lt;/P&gt;&lt;P&gt;DATA lt_ltap1 TYPE STANDARD TABLE OF ltap_vb WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;"TO Items&lt;/P&gt;&lt;P&gt;DATA lt_msg TYPE STANDARD TABLE OF wmgrp_msg WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;DATA lt_delit TYPE TABLE OF l03b_delit.&lt;/P&gt;&lt;P&gt;DATA lt_wa_delit TYPE l03b_delit.&lt;/P&gt;&lt;P&gt;"TO Items with Pallet data&lt;/P&gt;&lt;P&gt;DATA lv_tanum TYPE ltak-tanum. "TO Number&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT t_pallet.&lt;/P&gt;&lt;P&gt;MOVE t_pallet-posnr TO lt_wa_delit-posnr.&lt;/P&gt;&lt;P&gt;MOVE t_pallet-curr_qty TO lt_wa_delit-anfme.&lt;/P&gt;&lt;P&gt;MOVE t_pallet-vrkme TO lt_wa_delit-altme.&lt;/P&gt;&lt;P&gt;MOVE t_pallet-charg TO lt_wa_delit-charg.&lt;/P&gt;&lt;P&gt;MOVE t_pallet-lgtyp TO lt_wa_delit-vltyp.&lt;/P&gt;&lt;P&gt;MOVE t_pallet-lgpla TO lt_wa_delit-vlpla.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;UNPACK t_pallet-lenum TO lt_wa_delit-vlenr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;APPEND lt_wa_delit TO lt_delit.&lt;/P&gt;&lt;P&gt;CLEAR lt_wa_delit.&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;Bapi to Create the TO &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 = t_user-lgnum&lt;/P&gt;&lt;P&gt;i_vbeln = zmilk_zlm26_str-vbeln&lt;/P&gt;&lt;P&gt;i_squit = c_true&lt;/P&gt;&lt;P&gt;it_delit = lt_delit&lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;e_tanum = lv_tanum&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;t_ltak = lt_ltak&lt;/P&gt;&lt;P&gt;t_ltap_vb = lt_ltap1&lt;/P&gt;&lt;P&gt;t_wmgrp_msg = lt_msg&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;input_error = 15&lt;/P&gt;&lt;P&gt;OTHERS = 16.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN __default_attr="red" __jive_macro_name="color"&gt;&lt;STRONG&gt;\[removed by moderator\]&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Y.R.Prem Kumar&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Jan Stallkamp on Jul 30, 2008 4:24 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jul 2008 12:08:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-for-transfer-order-creation-lt03/m-p/4052189#M968605</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-09T12:08:10Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI for transfer order creation - LT03</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-for-transfer-order-creation-lt03/m-p/4052190#M968606</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;TABLES
*"              T_LTAP_CREAT&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can find the Parameter in the table T_LTAP_CREAT &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can fill that here.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jul 2008 12:10:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-for-transfer-order-creation-lt03/m-p/4052190#M968606</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-09T12:10:32Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI for transfer order creation - LT03</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-for-transfer-order-creation-lt03/m-p/4052191#M968607</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Prem&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You copied the same code posted by the above user, Did you notice that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please check before posting&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jul 2008 12:12:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-for-transfer-order-creation-lt03/m-p/4052191#M968607</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-09T12:12:34Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI for transfer order creation - LT03</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-for-transfer-order-creation-lt03/m-p/4052192#M968608</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;But I need to use VBELN... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;PT&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jul 2008 12:14:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-for-transfer-order-creation-lt03/m-p/4052192#M968608</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-09T12:14:06Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI for transfer order creation - LT03</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-for-transfer-order-creation-lt03/m-p/4052193#M968609</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you can make use of T_LATP_CREAT and T_LTAK to send the information&lt;/P&gt;&lt;P&gt; TABLES&lt;/P&gt;&lt;P&gt;*"              T_LTAP_CREAT STRUCTURE  LTAP_CREAT&lt;/P&gt;&lt;P&gt;*"              T_LTAK STRUCTURE  LTAK_VB OPTIONAL&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jul 2008 12:22:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-for-transfer-order-creation-lt03/m-p/4052193#M968609</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-09T12:22:23Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI for transfer order creation - LT03</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-for-transfer-order-creation-lt03/m-p/4052194#M968610</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;were you able to solve this issue, i have the same issue and i tried to use the it_ltap table with certificate number but it doesnt update....    &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The table parameter of the FM also has the description , table for created TO items.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jul 2008 18:40:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-for-transfer-order-creation-lt03/m-p/4052194#M968610</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-29T18:40:56Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI for transfer order creation - LT03</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-for-transfer-order-creation-lt03/m-p/4052195#M968611</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;No, I wasn't able to solve this with the BAPI...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Jul 2008 08:43:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-for-transfer-order-creation-lt03/m-p/4052195#M968611</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-30T08:43:06Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI for transfer order creation - LT03</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-for-transfer-order-creation-lt03/m-p/4052196#M968612</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am having the same issue that was discussed in this thread.  I am able to create a TO for a delivery (like LT03) using L_TO_CREATE_DN.  My issue is the ZEUGN field is not available in the table IT_DELIT.  Creating entries in the L_LTAP_VB table doesn't seem to help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Has anyone been able to use this function module and successfully get it to create the transfer order AND populate the ZEUGN field.  Tried the L_TO_CREATE_SINGE and L_TO_CREATE_MULTIPLE, but these do not update the document flow, so sticking with trying to get the L_TO_CREATE_DN to work.   I am open to any other options (other fm's, bapis,...).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Appreciate any feedback I can get on this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks,&lt;/P&gt;&lt;P&gt;Chip&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Feb 2009 13:29:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-for-transfer-order-creation-lt03/m-p/4052196#M968612</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-27T13:29:13Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI for transfer order creation - LT03</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-for-transfer-order-creation-lt03/m-p/4052197#M968613</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello, Clyde Sanders.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have you solve the issue? I have the similar situation - trying to use L_TO_CREATE_MULTIPLE, but this function is not filling VBELN field of LTAK table, and after confirmation of TO there are no packs in delivery document flow.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Roman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Mar 2009 13:29:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-for-transfer-order-creation-lt03/m-p/4052197#M968613</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-18T13:29:38Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI for transfer order creation - LT03</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-for-transfer-order-creation-lt03/m-p/4052198#M968614</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Was unable to get past this.  Tried using the table T_LTAP_VB but never could get it to recognize anything I put in there.   &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is still an open issue for me.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Apr 2009 20:59:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-for-transfer-order-creation-lt03/m-p/4052198#M968614</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-13T20:59:18Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI for transfer order creation - LT03</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-for-transfer-order-creation-lt03/m-p/4052199#M968615</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is this tip helps u? that, usage of EXPORT &amp;amp; IMPORT in user exits.&lt;/P&gt;&lt;P&gt;thanq&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Apr 2009 22:36:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-for-transfer-order-creation-lt03/m-p/4052199#M968615</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-13T22:36:42Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI for transfer order creation - LT03</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-for-transfer-order-creation-lt03/m-p/4052200#M968616</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You have to call L_TO_SET_SPECIAL before the FM L_TO_CREATE_MULTIPLE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'L_TO_SET_SPECIAL'&lt;/P&gt;&lt;P&gt;   EXPORTING&lt;/P&gt;&lt;P&gt;     i_spezi              = 'B'&lt;/P&gt;&lt;P&gt;     i_vbeln              = &amp;lt;your VBELN&amp;gt;&lt;/P&gt;&lt;P&gt;   EXCEPTIONS&lt;/P&gt;&lt;P&gt;     call_forbidden       = 1&lt;/P&gt;&lt;P&gt;     input_wrong          = 2&lt;/P&gt;&lt;P&gt;     OTHERS               = 3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Damiano&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Sep 2010 12:58:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-for-transfer-order-creation-lt03/m-p/4052200#M968616</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-09-28T12:58:08Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI for transfer order creation - LT03</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-for-transfer-order-creation-lt03/m-p/4052201#M968617</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Damiano,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I didn't succeed in applying your answer, could you please give a code example which is working ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tkanks&lt;/P&gt;&lt;P&gt;Blsap&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Oct 2010 14:16:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-for-transfer-order-creation-lt03/m-p/4052201#M968617</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-10-20T14:16:00Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI for transfer order creation - LT03</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-for-transfer-order-creation-lt03/m-p/4052202#M968618</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anup,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am doing RF programming &amp;amp; need to get data or create TO in background,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can u help me on that&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks in advance its urgent&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Tabrez &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Mar 2014 06:34:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-for-transfer-order-creation-lt03/m-p/4052202#M968618</guid>
      <dc:creator>shaikhtabrez3</dc:creator>
      <dc:date>2014-03-24T06:34:11Z</dc:date>
    </item>
  </channel>
</rss>

