<?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_GOODSMVT_CREATE not updating document flow in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-goodsmvt-create-not-updating-document-flow/m-p/5626257#M1281267</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Have you called BAPI_TRANSACTION_COMMIT  after ur goods mvt BAPI.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 06 May 2009 08:51:44 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-05-06T08:51:44Z</dc:date>
    <item>
      <title>BAPI_GOODSMVT_CREATE not updating document flow</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-goodsmvt-create-not-updating-document-flow/m-p/5626255#M1281265</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I created a function to create an inbound delivery against a PUrchase Order and then Post the goods receipt against that inbound delivery. The inbound delivery and the material document are created correctly in the DEV environment. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The issue is that in our QA environment the document are created correctly but the document flow is not updated at all!! Any idea of where should I be looking at to see difference between these environments?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm using BAPI BAPI_GOODSMVT_CREATE  to Post the Goods Receipt.&lt;/P&gt;&lt;P&gt;&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, 06 May 2009 08:38:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-goodsmvt-create-not-updating-document-flow/m-p/5626255#M1281265</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-06T08:38:01Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_GOODSMVT_CREATE not updating document flow</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-goodsmvt-create-not-updating-document-flow/m-p/5626256#M1281266</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;sort delivery by vbeln posnr.&lt;/P&gt;&lt;P&gt; loop at delivery.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; Populate BAPI variables ready for call&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  goodsmvt_header-pstng_date = sy-datlo.&lt;/P&gt;&lt;P&gt;  goodsmvt_header-doc_date = sy-datlo.&lt;/P&gt;&lt;P&gt;  goodsmvt_header-bill_of_lading = delivery-lifex.&lt;/P&gt;&lt;P&gt;  goodsmvt_header-ref_doc_no = delivery-lifex.&lt;/P&gt;&lt;P&gt;  goodsmvt_header-pr_uname = sy-uname.&lt;/P&gt;&lt;P&gt;  goodsmvt_header-header_txt = 'Auto GR of I/Bound Del'.&lt;/P&gt;&lt;P&gt;  goodsmvt_code-gm_code = con_move_code.&lt;/P&gt;&lt;P&gt;  goodsmvt_item-material = delivery-matnr.&lt;/P&gt;&lt;P&gt;  goodsmvt_item-plant = delivery-werks.&lt;/P&gt;&lt;P&gt;  goodsmvt_item-stge_loc = delivery-lgort.&lt;/P&gt;&lt;P&gt;  goodsmvt_item-move_type = con_move_type.&lt;/P&gt;&lt;P&gt;  goodsmvt_item-vendor = delivery-lifnr.&lt;/P&gt;&lt;P&gt;  goodsmvt_item-entry_qnt = delivery-lfimg.&lt;/P&gt;&lt;P&gt;  goodsmvt_item-entry_uom = delivery-meins.&lt;/P&gt;&lt;P&gt;  goodsmvt_item-mvt_ind = con_move_item.&lt;/P&gt;&lt;P&gt;  goodsmvt_item-deliv_numb_to_search = delivery-vbeln.&lt;/P&gt;&lt;P&gt;  goodsmvt_item-deliv_item_to_search = delivery-posnr.&lt;/P&gt;&lt;P&gt;  append goodsmvt_item.&lt;/P&gt;&lt;P&gt;  clear goodsmvt_item.&lt;/P&gt;&lt;P&gt; endloop.&lt;/P&gt;&lt;P&gt;*Call BAPI&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       = goodsmvt_header&lt;/P&gt;&lt;P&gt;   goodsmvt_code        = goodsmvt_code&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  TESTRUN           = ' '&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  importing&lt;/P&gt;&lt;P&gt;   goodsmvt_headret      = goodsmvt_headret&lt;/P&gt;&lt;P&gt;   materialdocument      = materialdocument&lt;/P&gt;&lt;P&gt;   matdocumentyear       = matdocumentyear&lt;/P&gt;&lt;P&gt;  tables&lt;/P&gt;&lt;P&gt;   goodsmvt_item        = goodsmvt_item&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  GOODSMVT_SERIALNUMBER    =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;   return           = return.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Check BAPI RETURN table to ensure call was successful&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt; loop at return where type = 'E'.&lt;/P&gt;&lt;P&gt;  exit.&lt;/P&gt;&lt;P&gt; endloop.&lt;/P&gt;&lt;P&gt; if sy-subrc eq 0.&lt;/P&gt;&lt;P&gt;  rollback work.&lt;/P&gt;&lt;P&gt;  message e999 with 'GR BAPI Failed, process delivery manually'.&lt;/P&gt;&lt;P&gt; endif.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 May 2009 08:45:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-goodsmvt-create-not-updating-document-flow/m-p/5626256#M1281266</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-06T08:45:56Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_GOODSMVT_CREATE not updating document flow</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-goodsmvt-create-not-updating-document-flow/m-p/5626257#M1281267</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Have you called BAPI_TRANSACTION_COMMIT  after ur goods mvt BAPI.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 May 2009 08:51:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-goodsmvt-create-not-updating-document-flow/m-p/5626257#M1281267</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-06T08:51:44Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_GOODSMVT_CREATE not updating document flow</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-goodsmvt-create-not-updating-document-flow/m-p/5626258#M1281268</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;have u called BAPI_TRANSACTION_COMMIT after it????&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ags.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 May 2009 08:53:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-goodsmvt-create-not-updating-document-flow/m-p/5626258#M1281268</guid>
      <dc:creator>agnihotro_sinha2</dc:creator>
      <dc:date>2009-05-06T08:53:44Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_GOODSMVT_CREATE not updating document flow</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-goodsmvt-create-not-updating-document-flow/m-p/5626259#M1281269</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, yes I did call the BAPI_TRANSACTION_COMMIT. I can see the two documents created, it just the document flow what is missing. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My program is working perfectly well in Development, is jut QA what is wrong.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any ideas?&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, 06 May 2009 09:04:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-goodsmvt-create-not-updating-document-flow/m-p/5626259#M1281269</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-06T09:04:35Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_GOODSMVT_CREATE not updating document flow</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-goodsmvt-create-not-updating-document-flow/m-p/5626260#M1281270</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It might b some customization problem, if its wrkg fine in development then it shd wrk for quality as well.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;U can check whether when u do goods mvmt through standard SAP tcode document flow is being created or not. If it is then do a little debugging and u will knw what parameter might b missing.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 May 2009 09:13:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-goodsmvt-create-not-updating-document-flow/m-p/5626260#M1281270</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-06T09:13:26Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_GOODSMVT_CREATE not updating document flow</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-goodsmvt-create-not-updating-document-flow/m-p/5626261#M1281271</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;Since its workin fine in DEV, so it must be some missing data prob.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try creating a goods movement using standard code in QA. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ags.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 May 2009 09:32:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-goodsmvt-create-not-updating-document-flow/m-p/5626261#M1281271</guid>
      <dc:creator>agnihotro_sinha2</dc:creator>
      <dc:date>2009-05-06T09:32:12Z</dc:date>
    </item>
  </channel>
</rss>

