<?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 with BAPI_GOODSMVT_CREATE in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-bapi-goodsmvt-create/m-p/2350996#M519029</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't think it is possible to use the BAPI if you have to fill that field. Take a look at MB_CREATE_GOODS_MOVEMENT as suggested by aRs as that field is available to you in the tables parameter IMSEG.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 18 Jun 2007 20:58:42 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-06-18T20:58:42Z</dc:date>
    <item>
      <title>Problem with BAPI_GOODSMVT_CREATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-bapi-goodsmvt-create/m-p/2350994#M519027</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 want to use the BAPI_GOODSMVT_CREATE instead of doing a batch input at MB1B transaction. (Movement type = 541).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Below, a part of the code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Header for bapi&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  perform f_monta_itens_header changing i_header.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Itens for bapi.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  perform f_monta_itens_saida tables i_itens.&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  = i_header&lt;/P&gt;&lt;P&gt;            goodsmvt_code    = '04'          " MB1B&lt;/P&gt;&lt;P&gt;       importing&lt;/P&gt;&lt;P&gt;            materialdocument = l_doc_material&lt;/P&gt;&lt;P&gt;            matdocumentyear  = l_ano_doc&lt;/P&gt;&lt;P&gt;       tables&lt;/P&gt;&lt;P&gt;            goodsmvt_item    = i_itens&lt;/P&gt;&lt;P&gt;            return           =      i_return.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I almost sure the parameters for BAPI were filled correctly, but I think it's missing something, because at i_return, I have the following message.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"Enter an alternative base"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Executing MB1B I can see exactly what is that, but I don't know what could be the correspondent at the BAPI. At the MB1B the parameter is MSEG-J_1BEXBASE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anyone help me in this subject?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Raphael&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Jun 2007 20:22:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-bapi-goodsmvt-create/m-p/2350994#M519027</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-18T20:22:40Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with BAPI_GOODSMVT_CREATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-bapi-goodsmvt-create/m-p/2350995#M519028</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;Why don't you use fm MB_CREATE_GOODS_MOVEMENT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please check the documentation for BAPI_GOODSMVT_CREATE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;aRs&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Jun 2007 20:39:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-bapi-goodsmvt-create/m-p/2350995#M519028</guid>
      <dc:creator>former_member194669</dc:creator>
      <dc:date>2007-06-18T20:39:43Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with BAPI_GOODSMVT_CREATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-bapi-goodsmvt-create/m-p/2350996#M519029</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't think it is possible to use the BAPI if you have to fill that field. Take a look at MB_CREATE_GOODS_MOVEMENT as suggested by aRs as that field is available to you in the tables parameter IMSEG.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Jun 2007 20:58:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-bapi-goodsmvt-create/m-p/2350996#M519029</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-18T20:58:42Z</dc:date>
    </item>
  </channel>
</rss>

