<?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 Error in BAPI_GOODSMVT_CREATE in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-bapi-goodsmvt-create/m-p/1672851#M297190</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi everyone&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm using bapi BAPI_GOODSMVT_CREATE to make the movements 332 &amp;amp; 321 (Unrestricted to QI &amp;amp; QI to Unrestricted), and now i need to use the movements 551 &amp;amp; 553, but when i test bapi in SE37, the test show me in the return table this: "Goods movement not possible with mvmt type 551" or "Goods movement not possible with mvmt type 553". I put the same field that i have in MB1A. Can anyone help how can i use the bapi with this movements.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;    David&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 26 Oct 2006 17:31:23 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-10-26T17:31:23Z</dc:date>
    <item>
      <title>Error in BAPI_GOODSMVT_CREATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-bapi-goodsmvt-create/m-p/1672851#M297190</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi everyone&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm using bapi BAPI_GOODSMVT_CREATE to make the movements 332 &amp;amp; 321 (Unrestricted to QI &amp;amp; QI to Unrestricted), and now i need to use the movements 551 &amp;amp; 553, but when i test bapi in SE37, the test show me in the return table this: "Goods movement not possible with mvmt type 551" or "Goods movement not possible with mvmt type 553". I put the same field that i have in MB1A. Can anyone help how can i use the bapi with this movements.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;    David&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Oct 2006 17:31:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-bapi-goodsmvt-create/m-p/1672851#M297190</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-26T17:31:23Z</dc:date>
    </item>
    <item>
      <title>Re: Error in BAPI_GOODSMVT_CREATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-bapi-goodsmvt-create/m-p/1672852#M297191</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi David,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What GM_CODE you passed to the function module BAPI_GOODSMVT_CREATE?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Movement types 551 &amp;amp; 553 refers to GI Scrapping.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So I think you have to pass GM_CODE = '03'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;L_GOODSMVT_CODE-GM_CODE    = '03'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      CALL FUNCTION 'BAPI_GOODSMVT_CREATE'&lt;/P&gt;&lt;P&gt;           EXPORTING&lt;/P&gt;&lt;P&gt;                GOODSMVT_HEADER  = xxxx&lt;/P&gt;&lt;P&gt;                GOODSMVT_CODE    = L_GOODSMVT_CODE&lt;/P&gt;&lt;P&gt;           IMPORTING&lt;/P&gt;&lt;P&gt;                GOODSMVT_HEADRET = xxxx&lt;/P&gt;&lt;P&gt;           TABLES&lt;/P&gt;&lt;P&gt;                GOODSMVT_ITEM    = xxx&lt;/P&gt;&lt;P&gt;                RETURN           = xxx.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;ramakrishna&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Oct 2006 17:40:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-bapi-goodsmvt-create/m-p/1672852#M297191</guid>
      <dc:creator>venkata_ramisetti</dc:creator>
      <dc:date>2006-10-26T17:40:52Z</dc:date>
    </item>
    <item>
      <title>Re: Error in BAPI_GOODSMVT_CREATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-bapi-goodsmvt-create/m-p/1672853#M297192</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If that doesn't work try 06&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;GM_CODE = '06'.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Oct 2006 17:48:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-bapi-goodsmvt-create/m-p/1672853#M297192</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-10-26T17:48:47Z</dc:date>
    </item>
    <item>
      <title>Re: Error in BAPI_GOODSMVT_CREATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-bapi-goodsmvt-create/m-p/1672854#M297193</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks ramakrishna &amp;amp; Rich the GM_CODE = '03'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Where can i find every GM_CODE and its description?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;  David&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Oct 2006 18:41:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-bapi-goodsmvt-create/m-p/1672854#M297193</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-26T18:41:30Z</dc:date>
    </item>
    <item>
      <title>Re: Error in BAPI_GOODSMVT_CREATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-bapi-goodsmvt-create/m-p/1672855#M297194</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;* &amp;lt;b&amp;gt;GMCODE Table T158G&amp;lt;/b&amp;gt; - 01 - MB01 - Goods Receipts for Purchase Order
*                      02 - MB31 - Goods Receipts for Prod Order
*                      03 - MB1A - Goods Issue
*                      04 - MB1B - Transfer Posting
*                      05 - MB1C - Enter Other Goods Receipt
*                      06 - MB11&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;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Oct 2006 18:45:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-bapi-goodsmvt-create/m-p/1672855#M297194</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-10-26T18:45:58Z</dc:date>
    </item>
    <item>
      <title>Re: Error in BAPI_GOODSMVT_CREATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-bapi-goodsmvt-create/m-p/1672856#M297195</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Rich&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;  David&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Oct 2006 18:47:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-bapi-goodsmvt-create/m-p/1672856#M297195</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-26T18:47:30Z</dc:date>
    </item>
  </channel>
</rss>

