<?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: L_TO_CREATE_MULTIPLE not create unit number in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/l-to-create-multiple-not-create-unit-number/m-p/7788501#M1586147</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; I find the problem. The length of the unit number that I pass was the nine positions, but the bapi need a unit number of twenty positions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you very much.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 17 Mar 2011 08:50:58 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-03-17T08:50:58Z</dc:date>
    <item>
      <title>L_TO_CREATE_MULTIPLE not create unit number</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/l-to-create-multiple-not-create-unit-number/m-p/7788498#M1586144</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 wait that you can understandme because I only speak a little english.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I try to use the bapi L_TO_CREATE_MULTIPLE.  I pass the unit number into field nlenr. The transfer orden number (tanum) is ok, however, when I found this tanum the field nlenr is empty. The source storage bin and the others datas are correct. &lt;/P&gt;&lt;P&gt;If I look at T_LTAP_VB I found my unit number.&lt;/P&gt;&lt;P&gt;I try to make it with tcode LT06 and when I palletization the result is ok.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       wa_ltap_creat-matnr = wa_ua_a_crear-matnr&lt;/P&gt;&lt;P&gt;       wa_ltap_creat-werks = wa_ua_a_crear-werks.&lt;/P&gt;&lt;P&gt;       wa_ltap_creat-lgort = wa_ua_a_crear-lgort.&lt;/P&gt;&lt;P&gt;       wa_ltap_creat-charg = wa_ua_a_crear-charg.&lt;/P&gt;&lt;P&gt;       wa_ltap_creat-anfme = wa_ua_a_crear-anfme&lt;/P&gt;&lt;P&gt;       wa_ltap_creat-altme = wa_ua_a_crear-altme.&lt;/P&gt;&lt;P&gt;       wa_ltap_creat-letyp = wa_ua_a_crear-letyp.&lt;/P&gt;&lt;P&gt;       wa_ltap_creat-nlenr = wa_ua_a_crear-lenum.&lt;/P&gt;&lt;P&gt;       append wa_ltap_creat to t_ltap_creat.&lt;/P&gt;&lt;P&gt;&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                   = lgnum&lt;/P&gt;&lt;P&gt;        i_bwlvs                   = '101'&lt;/P&gt;&lt;P&gt;        I_BETYP                   = 'B'&lt;/P&gt;&lt;P&gt;        I_BENUM                   = benum&lt;/P&gt;&lt;P&gt;        I_COMMIT_WORK             = 'X'&lt;/P&gt;&lt;P&gt;     IMPORTING&lt;/P&gt;&lt;P&gt;       E_TANUM                  = tanum&lt;/P&gt;&lt;P&gt;      TABLES&lt;/P&gt;&lt;P&gt;        t_ltap_creat              = t_ltap_creat&lt;/P&gt;&lt;P&gt;       T_LTAK                    = T_LTAK&lt;/P&gt;&lt;P&gt;       T_LTAP_VB                 = T_LTAP_VB&lt;/P&gt;&lt;P&gt;     EXCEPTIONS ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you very much.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Mar 2011 11:01:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/l-to-create-multiple-not-create-unit-number/m-p/7788498#M1586144</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-03-16T11:01:19Z</dc:date>
    </item>
    <item>
      <title>Re: L_TO_CREATE_MULTIPLE not create unit number</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/l-to-create-multiple-not-create-unit-number/m-p/7788499#M1586145</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;Please try it in this way by passing only these many data to the function module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;wa_lqua-werks TO wa_ltap_creat-werks,
     wa_lqua-lgort TO wa_ltap_creat-lgort,
     wa_lqua-matnr TO wa_ltap_creat-matnr,
     wa_lqua-charg TO wa_ltap_creat-charg,
     wa_lqua-bestq TO wa_ltap_creat-bestq,
     wa_lqua-sobkz TO wa_ltap_creat-sobkz,
     wa_lqua-sonum TO wa_ltap_creat-sonum,
     wa_lqua-verme TO wa_ltap_creat-anfme,
     wa_lqua-meins TO wa_ltap_creat-altme,
     wa_lqua-lqnum TO wa_ltap_creat-vlqnr,
     wa_lqua-lenum TO wa_ltap_creat-vlenr,
     wa_lqua-lgtyp TO wa_ltap_creat-vltyp,
     wa_lqua-lgpla TO wa_ltap_creat-vlpla.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CALL FUNCTION 'L_TO_CREATE_MULTIPLE'
       EXPORTING
            i_lgnum                = lgnum
            i_bwlvs                = bwlvs
            i_commit_work          = c_x
       IMPORTING
            e_tanum                = tanum
       TABLES
            t_ltap_creat           = i_ltap_creat
       EXCEPTIONS
            error_message          = 99.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Hareesh Menon&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Mar 2011 11:18:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/l-to-create-multiple-not-create-unit-number/m-p/7788499#M1586145</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-03-16T11:18:49Z</dc:date>
    </item>
    <item>
      <title>Re: L_TO_CREATE_MULTIPLE not create unit number</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/l-to-create-multiple-not-create-unit-number/m-p/7788500#M1586146</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Hareesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Thank you for your answer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; I suppose that I have to pass the nlenr too.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Mar 2011 11:41:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/l-to-create-multiple-not-create-unit-number/m-p/7788500#M1586146</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-03-16T11:41:59Z</dc:date>
    </item>
    <item>
      <title>Re: L_TO_CREATE_MULTIPLE not create unit number</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/l-to-create-multiple-not-create-unit-number/m-p/7788501#M1586147</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; I find the problem. The length of the unit number that I pass was the nine positions, but the bapi need a unit number of twenty positions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you very much.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Mar 2011 08:50:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/l-to-create-multiple-not-create-unit-number/m-p/7788501#M1586147</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-03-17T08:50:58Z</dc:date>
    </item>
    <item>
      <title>Re: L_TO_CREATE_MULTIPLE not create unit number</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/l-to-create-multiple-not-create-unit-number/m-p/7788502#M1586148</link>
      <description>&lt;P&gt;I have the same problem it does not generate the number but the sy-subrc is executed successfully&lt;/P&gt;</description>
      <pubDate>Mon, 17 Jan 2022 12:58:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/l-to-create-multiple-not-create-unit-number/m-p/7788502#M1586148</guid>
      <dc:creator>arkner</dc:creator>
      <dc:date>2022-01-17T12:58:55Z</dc:date>
    </item>
  </channel>
</rss>

