<?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: Error while doing Good Issue for Production Order using BAPI in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-doing-good-issue-for-production-order-using-bapi/m-p/8583280#M1661007</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Eduardo,&lt;/P&gt;&lt;P&gt;Regarding SAP Note. I have checked it. I haven't found the solution.&lt;/P&gt;&lt;P&gt;Anyways thanks for the input.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 07 Feb 2012 11:29:19 GMT</pubDate>
    <dc:creator>reachdebopriya</dc:creator>
    <dc:date>2012-02-07T11:29:19Z</dc:date>
    <item>
      <title>Error while doing Good Issue for Production Order using BAPI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-doing-good-issue-for-production-order-using-bapi/m-p/8583275#M1661002</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;I am facing an error like 'u2018Content of order 1011907: MDT218AJ10 transferred to interface (IMSEG): T-86410-71". &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have written the code as below. Please let me know what is missing when using the BAPI 'BAPI_GOODSMVT_CREATE'. What is the cause of this error ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Action in Transaction (GM_CODE)&lt;/P&gt;&lt;P&gt;*GM Code for Goods Issue for Production Order is 03&lt;/P&gt;&lt;P&gt;  gs_gmcode-gm_code = '03'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Header Data&lt;/P&gt;&lt;P&gt;*Posting date&lt;/P&gt;&lt;P&gt;  gs_header-pstng_date = sy-datum.&lt;/P&gt;&lt;P&gt;*Document date&lt;/P&gt;&lt;P&gt;  gs_header-doc_date   = sy-datum.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Item Data&lt;/P&gt;&lt;P&gt;*Material&lt;/P&gt;&lt;P&gt;  gs_item-material  = zptp_s_rf_migo_261-matnr1.&lt;/P&gt;&lt;P&gt;*Movement Type&lt;/P&gt;&lt;P&gt;  gs_item-move_type = '261'.&lt;/P&gt;&lt;P&gt;*Movement Indicator&lt;/P&gt;&lt;P&gt;  gs_item-mvt_ind   = 'F'.&lt;/P&gt;&lt;P&gt;*Stock Type&lt;/P&gt;&lt;P&gt;  gs_item-stck_type = 'F'.&lt;/P&gt;&lt;P&gt;*Plant&lt;/P&gt;&lt;P&gt;  gs_item-plant     = gv_plant.&lt;/P&gt;&lt;P&gt;*Storage Location&lt;/P&gt;&lt;P&gt;  gs_item-stge_loc  = gv_str_loc.&lt;/P&gt;&lt;P&gt;*Quantity&lt;/P&gt;&lt;P&gt;  gs_item-entry_qnt = zptp_s_rf_migo_261-menge2.&lt;/P&gt;&lt;P&gt;*Unit&lt;/P&gt;&lt;P&gt;  gs_item-entry_uom = gv_uom.&lt;/P&gt;&lt;P&gt;*ISO code for unit of measurement&lt;/P&gt;&lt;P&gt;  gs_item-entry_uom_iso = gv_uom.&lt;/P&gt;&lt;P&gt;*Order Number&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      input  = zptp_s_rf_migo_261-aufnr&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      output = gs_item-orderid.&lt;/P&gt;&lt;P&gt;*Reservation Number&lt;/P&gt;&lt;P&gt;  gs_item-reserv_no = gv_resv_num.&lt;/P&gt;&lt;P&gt;*Reservation Item&lt;/P&gt;&lt;P&gt;  gs_item-res_item = gv_resv_itm.&lt;/P&gt;&lt;P&gt;*Reservation Type&lt;/P&gt;&lt;P&gt;  gs_item-res_type = gv_resv_type.&lt;/P&gt;&lt;P&gt;  APPEND gs_item TO gt_item.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Calling BAPI_GOODSMVT_CREATE to create the Material Document Number&lt;/P&gt;&lt;/LI&gt;&lt;/UL&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       = gs_header&lt;/P&gt;&lt;P&gt;      goodsmvt_code         = gs_gmcode&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      goodsmvt_headret      = gs_headret&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      goodsmvt_item         = gt_item&lt;/P&gt;&lt;P&gt;      goodsmvt_serialnumber = gt_serial&lt;/P&gt;&lt;P&gt;      return                = gt_return.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in Advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Feb 2012 14:17:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-doing-good-issue-for-production-order-using-bapi/m-p/8583275#M1661002</guid>
      <dc:creator>reachdebopriya</dc:creator>
      <dc:date>2012-02-06T14:17:04Z</dc:date>
    </item>
    <item>
      <title>Re: Error while doing Good Issue for Production Order using BAPI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-doing-good-issue-for-production-order-using-bapi/m-p/8583276#M1661003</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;Wellcome tp SDN. See SAP Note 520813 - FAQ: BAPIs for goods movements. Remember to use BAPI_TRANSACTION_COMMIT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Eduardo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Feb 2012 16:03:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-doing-good-issue-for-production-order-using-bapi/m-p/8583276#M1661003</guid>
      <dc:creator>eduardo_hinojosa</dc:creator>
      <dc:date>2012-02-06T16:03:45Z</dc:date>
    </item>
    <item>
      <title>Re: Error while doing Good Issue for Production Order using BAPI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-doing-good-issue-for-production-order-using-bapi/m-p/8583277#M1661004</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;did you look at message ? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;System says, there are differences between the interface data and the order data. It can be anything. I think you should check &lt;/P&gt;&lt;P&gt;data in the interface .  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this is the long explanation of your message :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Diagnosis&lt;/P&gt;&lt;P&gt;When calling the function module MB_CREATE_GOODS_MOVEMENT or the BAPI GoodsMovement.CreateFromData (BAPI_GOODSMVT_CREATE) to post a goods receipt for a production order, there are differences between the interface data and the order data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example: The order was created for plant 0001, but plant 0002 is passed on in the interface.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The system checks this for the material and the order item.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;System response&lt;/P&gt;&lt;P&gt;Due to this difference, the system cannot post the goods receipt.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Procedure&lt;/P&gt;&lt;P&gt;Check the data in the interface (IMSEG-WERKS, IMSEG-AUFNR). If necessary, correct the plant or the order number in the interface.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;SPAN __default_attr="red" __jive_macro_name="color"&gt;&amp;lt;&amp;lt; Moderator message - Point begging removed &amp;gt;&amp;gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Rob Burbank on Feb 6, 2012 11:24 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Feb 2012 16:06:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-doing-good-issue-for-production-order-using-bapi/m-p/8583277#M1661004</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-02-06T16:06:04Z</dc:date>
    </item>
    <item>
      <title>Re: Error while doing Good Issue for Production Order using BAPI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-doing-good-issue-for-production-order-using-bapi/m-p/8583278#M1661005</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;Check the bellow links for working on production order bapi.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN __jive_macro_name="thread" id="123453"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://wiki.sdn.sap.com/wiki/display/Snippets/BAPI_GOODSMVT_CREATE-ABAP" target="test_blank"&gt;http://wiki.sdn.sap.com/wiki/display/Snippets/BAPI_GOODSMVT_CREATE-ABAP&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://wiki.sdn.sap.com/wiki/display/ABAP/Sample" target="test_blank"&gt;http://wiki.sdn.sap.com/wiki/display/ABAP/Sample&lt;/A&gt;&lt;EM&gt;code&lt;/EM&gt;BAPI_GOODSMVT_CREATE&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-img.com/abap/bapi-goodsmvt-create-to-post-goods-movement.htm" target="test_blank"&gt;http://www.sap-img.com/abap/bapi-goodsmvt-create-to-post-goods-movement.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Goutam Kolluru.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Feb 2012 04:49:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-doing-good-issue-for-production-order-using-bapi/m-p/8583278#M1661005</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-02-07T04:49:32Z</dc:date>
    </item>
    <item>
      <title>Re: Error while doing Good Issue for Production Order using BAPI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-doing-good-issue-for-production-order-using-bapi/m-p/8583279#M1661006</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Eduardo,&lt;/P&gt;&lt;P&gt;Thanks for input for SAP Note. I will check on this and get back.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hi Goktasor,&lt;/P&gt;&lt;P&gt;Thanks for the input.&lt;/P&gt;&lt;P&gt;"Check the data in the interface (IMSEG-WERKS, IMSEG-AUFNR). If necessary, correct the plant or the order number in the interface." - I have checked in the debugger. The data is correct. Same as I have entered. The plant and order number is same as entered. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hi Goutam Kolluru,&lt;/P&gt;&lt;P&gt;Thanks for the input.&lt;/P&gt;&lt;P&gt;I have already check that links. It is for purchase order. I need good issue for production order and the reason for that error.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Feb 2012 05:34:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-doing-good-issue-for-production-order-using-bapi/m-p/8583279#M1661006</guid>
      <dc:creator>reachdebopriya</dc:creator>
      <dc:date>2012-02-07T05:34:44Z</dc:date>
    </item>
    <item>
      <title>Re: Error while doing Good Issue for Production Order using BAPI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-doing-good-issue-for-production-order-using-bapi/m-p/8583280#M1661007</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Eduardo,&lt;/P&gt;&lt;P&gt;Regarding SAP Note. I have checked it. I haven't found the solution.&lt;/P&gt;&lt;P&gt;Anyways thanks for the input.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Feb 2012 11:29:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-doing-good-issue-for-production-order-using-bapi/m-p/8583280#M1661007</guid>
      <dc:creator>reachdebopriya</dc:creator>
      <dc:date>2012-02-07T11:29:19Z</dc:date>
    </item>
  </channel>
</rss>

