<?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 when creating out delevry in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-when-creating-out-delevry/m-p/5465487#M1251886</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Can you send me your code on how you have created the delivery (VL01NO) by using FM: GN_DELIVERY_CREATE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 28 Jul 2010 08:03:33 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-07-28T08:03:33Z</dc:date>
    <item>
      <title>Problem when creating out delevry</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-when-creating-out-delevry/m-p/5465481#M1251880</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 m creating out bond delivery without ref of oreder by using function SHP_DELIVERY_CREATE_NOREF &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'SHP_DELIVERY_CREATE_NOREF'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    IF_VSTEL             = P_VSTEL   &lt;/P&gt;&lt;P&gt;    IF_LFART             = p_lfart  &lt;/P&gt;&lt;P&gt;    IF_VKORG             = p_vkorg   &lt;/P&gt;&lt;P&gt;    IF_VTWEG             = p_vtweg   &lt;/P&gt;&lt;P&gt;    IF_SPART             = p_spart    &lt;/P&gt;&lt;P&gt;    IF_KUNWE             = p_kunnr     &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  IS_HEAD              =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    IS_DATES             = it_dates&lt;/P&gt;&lt;P&gt;    IT_ITEMS             = It_ITEMS&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  IT_SERNR             =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;   IT_PARTNER           = it_partner&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  IT_TEXT_HEADER       =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  IT_TEXT_LINES        =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt; IMPORTING&lt;/P&gt;&lt;P&gt;   ET_DLV_ITEMS         = ET_DLV_ITEMS&lt;/P&gt;&lt;P&gt;     ET_MESSAGES          = ET_MESSAGES .&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;when i used in one prog it is creating bt when i used this function in stabndard  module pool then i m getting error &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&lt;STRONG&gt;E     VL                     009   Article &amp;amp; is not defined for sales org. &amp;amp; distr.chann. &amp;amp; lang. &amp;amp;&lt;/STRONG&gt;*&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;plz help i tried a lot bt not get success&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Apr 2009 03:42:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-when-creating-out-delevry/m-p/5465481#M1251880</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-14T03:42:04Z</dc:date>
    </item>
    <item>
      <title>Re: Problem when creating out delevry</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-when-creating-out-delevry/m-p/5465482#M1251881</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI,&lt;/P&gt;&lt;P&gt;The function module no more exist in the version &lt;STRONG&gt;ECC5&lt;/STRONG&gt; and more may be it is better using other Function module&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try using the FM &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;GN_DELIVERY_CREATE&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this will definitely solve the problem,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;just pass all the data into the table&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;komdlgn&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;the mandatory fields that have to be passed are&lt;/P&gt;&lt;P&gt;vstel &lt;/P&gt;&lt;P&gt;vkorg&lt;/P&gt;&lt;P&gt;vtweg&lt;/P&gt;&lt;P&gt;spart&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;lfart = 'LO'   " ----&amp;gt; Without order reference&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;kunwe&lt;/P&gt;&lt;P&gt;matnr&lt;/P&gt;&lt;P&gt;werks&lt;/P&gt;&lt;P&gt;wadat&lt;/P&gt;&lt;P&gt;lfimg&lt;/P&gt;&lt;P&gt;vrkme&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;any more doubts are welcome.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks &amp;amp; regards&lt;/P&gt;&lt;P&gt;Sarves&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Apr 2009 03:50:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-when-creating-out-delevry/m-p/5465482#M1251881</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-14T03:50:04Z</dc:date>
    </item>
    <item>
      <title>Re: Problem when creating out delevry</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-when-creating-out-delevry/m-p/5465483#M1251882</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;VL01NO  Create Outbound Dlv. w/o Order Ref.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;GN_DELIVERY_CREATE&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;pass lfart as lf for outbound delivery.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;LFART = LF --&amp;gt; Outbound Delivery&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Lalit Mohan Gupta.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Apr 2009 04:24:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-when-creating-out-delevry/m-p/5465483#M1251882</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-14T04:24:54Z</dc:date>
    </item>
    <item>
      <title>Re: Problem when creating out delevry</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-when-creating-out-delevry/m-p/5465484#M1251883</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;still i m getting error &lt;/P&gt;&lt;P&gt;E VL 009 Article &amp;amp; is not defined for sales org. &amp;amp; distr.chann. &amp;amp; lang. &amp;amp;**&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;Bhavesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Apr 2009 10:34:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-when-creating-out-delevry/m-p/5465484#M1251883</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-14T10:34:27Z</dc:date>
    </item>
    <item>
      <title>Re: Problem when creating out delevry</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-when-creating-out-delevry/m-p/5465485#M1251884</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 to go to VL01NO tcode and provide the same data what you are passing it in the function module, if the problem persists there also,&lt;/P&gt;&lt;P&gt;Then the material might not be defined in the particular sales organization or distribution channel try to find out with the SD consultant or MM consultant about the data availability of the particular sales organization.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if the problem is not there in VL01NO then&lt;/P&gt;&lt;P&gt;Can you send the code what you have written to check it and give you the solution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks &amp;amp; regards&lt;/P&gt;&lt;P&gt;Sarves&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Apr 2009 11:42:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-when-creating-out-delevry/m-p/5465485#M1251884</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-14T11:42:11Z</dc:date>
    </item>
    <item>
      <title>Re: Problem when creating out delevry</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-when-creating-out-delevry/m-p/5465486#M1251885</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thnx all i ve complete it by gn_DELIVERY_CREATE&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 May 2009 03:57:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-when-creating-out-delevry/m-p/5465486#M1251885</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-13T03:57:50Z</dc:date>
    </item>
    <item>
      <title>Re: Problem when creating out delevry</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-when-creating-out-delevry/m-p/5465487#M1251886</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Can you send me your code on how you have created the delivery (VL01NO) by using FM: GN_DELIVERY_CREATE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Jul 2010 08:03:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-when-creating-out-delevry/m-p/5465487#M1251886</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-07-28T08:03:33Z</dc:date>
    </item>
    <item>
      <title>Re: Problem when creating out delevry</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-when-creating-out-delevry/m-p/5465488#M1251887</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This message was moderated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Jul 2013 18:37:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-when-creating-out-delevry/m-p/5465488#M1251887</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-07-01T18:37:01Z</dc:date>
    </item>
    <item>
      <title>Re: Problem when creating out delevry</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-when-creating-out-delevry/m-p/5465489#M1251888</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Bhavesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Its been a long time for this post but this is very critical for our go live. Could you please tell how you were able to do it.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks Much!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Jul 2013 18:38:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-when-creating-out-delevry/m-p/5465489#M1251888</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-07-01T18:38:53Z</dc:date>
    </item>
  </channel>
</rss>

