<?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 - GI for GR in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-goodsmvt-create-gi-for-gr/m-p/2847953#M667201</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It took a while but I solved it up &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TX,&lt;/P&gt;&lt;P&gt;FS&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 25 Sep 2007 18:33:37 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-09-25T18:33:37Z</dc:date>
    <item>
      <title>BAPI_GOODSMVT_CREATE - GI for GR</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-goodsmvt-create-gi-for-gr/m-p/2847950#M667198</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ABAP Masters,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need help (and example, please) in some dirty ABAP job. I'm a total newbee, so please try to explain me things like u'll do for your mum's &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need function module which given a specific GR number (and WBS element) posts GI (for cost center 221) with exactly the same items and returns GI document number. Sounds easy, but I got lost in looking for tables, BAPIs etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Relevant examples please (I've searched sdn archives and found some GR posting examples, but it didn't worked out for me - GI examples for 221 needed).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regs,&lt;/P&gt;&lt;P&gt;FS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PS. Points will be given for all helpful answers.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 23 Sep 2007 09:30:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-goodsmvt-create-gi-for-gr/m-p/2847950#M667198</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-23T09:30:59Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_GOODSMVT_CREATE - GI for GR</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-goodsmvt-create-gi-for-gr/m-p/2847951#M667199</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;Check the tables MSEG and MKPF for all GR and GI related stuff&lt;/P&gt;&lt;P&gt;regarding the BAPI see this&lt;/P&gt;&lt;P&gt;REPORT ZRICH_0001 .&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Structures for BAPI&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;DATA: GM_HEADER  TYPE BAPI2017_GM_HEAD_01.&lt;/P&gt;&lt;P&gt;DATA: GM_CODE    TYPE BAPI2017_GM_CODE.&lt;/P&gt;&lt;P&gt;DATA: GM_HEADRET TYPE BAPI2017_GM_HEAD_RET.&lt;/P&gt;&lt;P&gt;DATA: GM_ITEM    TYPE TABLE OF&lt;/P&gt;&lt;P&gt;                 BAPI2017_GM_ITEM_CREATE WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;DATA: GM_RETURN  TYPE BAPIRET2 OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;DATA: GM_RETMTD  TYPE BAPI2017_GM_HEAD_RET-MAT_DOC.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;CLEAR: GM_RETURN, GM_RETMTD. REFRESH GM_RETURN.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Setup BAPI header data.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;GM_HEADER-PSTNG_DATE = SY-DATUM.&lt;/P&gt;&lt;P&gt;GM_HEADER-DOC_DATE   = SY-DATUM.&lt;/P&gt;&lt;P&gt;GM_CODE-GM_CODE      = '04'.                                " MB1A&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Write 971 movement to table&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;CLEAR GM_ITEM.&lt;/P&gt;&lt;P&gt;MOVE '412'                 TO GM_ITEM-MOVE_TYPE     .&lt;/P&gt;&lt;P&gt;MOVE 'Q'                 TO GM_ITEM-SPEC_STOCK.&lt;/P&gt;&lt;P&gt;MOVE '3800533484'  TO GM_ITEM-MATERIAL.&lt;/P&gt;&lt;P&gt;MOVE '1'     TO GM_ITEM-ENTRY_QNT.&lt;/P&gt;&lt;P&gt;*MOVE 'PC'    TO GM_ITEM-ENTRY_UOM.&lt;/P&gt;&lt;P&gt;MOVE '1060'  TO GM_ITEM-PLANT.&lt;/P&gt;&lt;P&gt;MOVE '0007'  TO GM_ITEM-STGE_LOC.&lt;/P&gt;&lt;P&gt;*MOVE '0901'   TO GM_ITEM-MOVE_REAS.&lt;/P&gt;&lt;P&gt;MOVE 'P203601001' TO GM_ITEM-WBS_ELEM.&lt;/P&gt;&lt;P&gt;MOVE 'P203601001' TO GM_ITEM-VAL_WBS_ELEM.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;APPEND GM_ITEM.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Call goods movement BAPI&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;CALL FUNCTION 'BAPI_GOODSMVT_CREATE'&lt;/P&gt;&lt;P&gt;     EXPORTING&lt;/P&gt;&lt;P&gt;          GOODSMVT_HEADER  = GM_HEADER&lt;/P&gt;&lt;P&gt;          GOODSMVT_CODE    = GM_CODE&lt;/P&gt;&lt;P&gt;     IMPORTING&lt;/P&gt;&lt;P&gt;          GOODSMVT_HEADRET = GM_HEADRET&lt;/P&gt;&lt;P&gt;          MATERIALDOCUMENT = GM_RETMTD&lt;/P&gt;&lt;P&gt;     TABLES&lt;/P&gt;&lt;P&gt;          GOODSMVT_ITEM    = GM_ITEM&lt;/P&gt;&lt;P&gt;          RETURN           = GM_RETURN.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;IF NOT GM_RETMTD IS INITIAL.&lt;/P&gt;&lt;P&gt;  COMMIT WORK AND WAIT.&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'DEQUEUE_ALL'.&lt;/P&gt;&lt;P&gt;ELSE.&lt;/P&gt;&lt;P&gt;  COMMIT WORK AND WAIT.&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'DEQUEUE_ALL'.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;WRITE:/ GM_RETMTD.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;LOOP AT GM_RETURN.&lt;/P&gt;&lt;P&gt;  WRITE:/ GM_RETURN.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check the BAPI_GOODSMVT_CREATE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Functionality&lt;/P&gt;&lt;P&gt;You can use this method to create a material document for a goods movement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can only create one material document each time you call up the method.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use a simulation function before posting the goods movement to check how the data is updated in the database. The standard system is configured so that the goods movement is posted immediately without simulating beforehand.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ensure that you transfer the data in the same way as it is run in the database, for example,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Material number 18-figure with leading zeros&lt;/P&gt;&lt;P&gt;Batches with uppercase letters&lt;/P&gt;&lt;P&gt;Note that for all transactions/events listed below, the posting date is entered in the header data of the material document. In the BAPI2017_GM_HEAD_01 interface, fill the PSTNG_DATE (import structure GOODSMVT_HEADER) field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Notes&lt;/P&gt;&lt;P&gt;Authorization check check&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the MM Inventory Management component, the method does not execute any authorization checks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note that during a posting of a goods movement, depending on the business transaction of the system, authorization objects of other applications can also be checked.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Transfer&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The following information about the material document that is to be created is transferred to the method:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a structure with header data&lt;/P&gt;&lt;P&gt;a structure with the code for the movement&lt;/P&gt;&lt;P&gt;a table with the item data&lt;/P&gt;&lt;P&gt;a table with the serial numbers&lt;/P&gt;&lt;P&gt;The posting is carried out in the SAP R/3 via the MB_CREATE_GOODS_MOVEMENT function module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Confirmations&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Messages are returned in the Return parameter. The parameter documentation shows the return codes and their meanings.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Further Information&lt;/P&gt;&lt;P&gt;The method can only carry out your function if no error messages were generated in the Return table. This is the case if the header data and all the items were processed successfully.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Transaction control is not implemented. The calling program therefore has to execute the Commit Work itself after this method has been successfully called (in other words, if no errors were reported in the Return parameter).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Which fields have to be filled during the various transactions/ events?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The following sample scenarios demonstrate which fields have to be filled for which business transactions/events (code).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are the following types of transactions/events:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. GM_Code 01: Goods receipt for purchase order&lt;/P&gt;&lt;P&gt;2. GM_Code 02: Goods receipt for production order&lt;/P&gt;&lt;P&gt;3. GM_Code 03: Goods issue&lt;/P&gt;&lt;P&gt;4. GM_Code 04: Transfer posting&lt;/P&gt;&lt;P&gt;5. GM_Code 05: Other goods receipts&lt;/P&gt;&lt;P&gt;6. GM_Code 06: Reversal of goods movements&lt;/P&gt;&lt;P&gt;7. GM_Code 07: Subsequent adjustment to a subcontract order&lt;/P&gt;&lt;P&gt;Entering the movement indicator&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Depending on the transaction, you must enter the following in the movement indicator:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GM_Code 01 (Goods receipt for purchase order): B&lt;/P&gt;&lt;P&gt;GM_Code 02 (Goods receipt for production order): F&lt;/P&gt;&lt;P&gt;For all other transactions, you leave the field blank.&lt;/P&gt;&lt;P&gt;For 1: GM_Code 01: Goods receipt for purchase order&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Purchase order known&lt;/P&gt;&lt;P&gt;The following fields have to be filled:&lt;/P&gt;&lt;P&gt;Purchase order&lt;/P&gt;&lt;P&gt;Purchase order item&lt;/P&gt;&lt;P&gt;Movement type&lt;/P&gt;&lt;P&gt;Movement indicator&lt;/P&gt;&lt;P&gt;Quantity in unit of entry&lt;/P&gt;&lt;P&gt;ISO code unit of measurement for unit of entry or&lt;/P&gt;&lt;P&gt;quantity proposal&lt;/P&gt;&lt;P&gt;The following fields may have to be filled in some cases (incomplete listing):&lt;/P&gt;&lt;P&gt;Shelf life expiration date (if it has been configured like this in the system)&lt;/P&gt;&lt;P&gt;Reason for movement (if it has been configured like this in the system)&lt;/P&gt;&lt;P&gt;Batch (if the material is handled in batches and batch numbers are not assigned automatically)&lt;/P&gt;&lt;P&gt;Storage location (if a storage location has not been specified in the purchase order item)&lt;/P&gt;&lt;P&gt;The following fields can be filled (incomplete listing):&lt;/P&gt;&lt;P&gt;Stock type&lt;/P&gt;&lt;P&gt;Item text&lt;/P&gt;&lt;P&gt;Unloading point&lt;/P&gt;&lt;P&gt;Delivery completed indicator&lt;/P&gt;&lt;P&gt;You cannot fill the following fields (incomplete listing):&lt;/P&gt;&lt;P&gt;Account assignment fields (account assignment is adopted from the purchase order)&lt;/P&gt;&lt;P&gt;Reservation&lt;/P&gt;&lt;P&gt;Receiving/issuing material&lt;/P&gt;&lt;P&gt;Receiving/issuing plant&lt;/P&gt;&lt;P&gt;Receiving/issuing storage location&lt;/P&gt;&lt;P&gt;In the case of a purchase order item with the "subcontracting" item category, only the GR item in the interface is to be transferred. The system automatically determines GI items.&lt;/P&gt;&lt;P&gt;Purchase order unknown: Shipping notification known&lt;/P&gt;&lt;P&gt;The following fields have to be filled:&lt;/P&gt;&lt;P&gt;Delivery&lt;/P&gt;&lt;P&gt;Delivery item&lt;/P&gt;&lt;P&gt;Movement type&lt;/P&gt;&lt;P&gt;Other fields, such as those under "Purchase order known". The system determines the relevant purchase order item via the delivery/delivery item.&lt;/P&gt;&lt;P&gt;Purchase order unknown: Purchase order should be created automatically&lt;/P&gt;&lt;P&gt;The following fields have to be filled:&lt;/P&gt;&lt;P&gt;Material number&lt;/P&gt;&lt;P&gt;Plant&lt;/P&gt;&lt;P&gt;Storage location&lt;/P&gt;&lt;P&gt;Vendor&lt;/P&gt;&lt;P&gt;Movement type&lt;/P&gt;&lt;P&gt;Movement indicator&lt;/P&gt;&lt;P&gt;Quantity in unit of entry&lt;/P&gt;&lt;P&gt;ISO code unit of measurement for unit of entry&lt;/P&gt;&lt;P&gt;The following fields may have to be filled in some cases (incomplete listing):&lt;/P&gt;&lt;P&gt;Shelf life expiration date (if it has been configured like this in the system)&lt;/P&gt;&lt;P&gt;Reason for movement (if it has been configured like this in the system)&lt;/P&gt;&lt;P&gt;Batch (if the material is handled in batches and batches are not assigned automatically)&lt;/P&gt;&lt;P&gt;The following fields can be filled (incomplete listing):&lt;/P&gt;&lt;P&gt;Stock type&lt;/P&gt;&lt;P&gt;Item text&lt;/P&gt;&lt;P&gt;Unloading point&lt;/P&gt;&lt;P&gt;You cannot fill the following fields (incomplete listing):&lt;/P&gt;&lt;P&gt;Account assignment fields (automatic creation of purchase order items with account assignment is not supported)&lt;/P&gt;&lt;P&gt;Reservation&lt;/P&gt;&lt;P&gt;Receiving/issuing material&lt;/P&gt;&lt;P&gt;Receiving/issuing plant&lt;/P&gt;&lt;P&gt;Receiving/issuing storage location&lt;/P&gt;&lt;P&gt;Purchase order unknown: A purchase order should not be created&lt;/P&gt;&lt;P&gt;The following fields have to be filled:&lt;/P&gt;&lt;P&gt;Material number&lt;/P&gt;&lt;P&gt;Plant&lt;/P&gt;&lt;P&gt;Storage location&lt;/P&gt;&lt;P&gt;Vendor&lt;/P&gt;&lt;P&gt;Movement type&lt;/P&gt;&lt;P&gt;Movement indicator&lt;/P&gt;&lt;P&gt;Quantity in unit of entry&lt;/P&gt;&lt;P&gt;ISO code unit of measurement for unit of entry&lt;/P&gt;&lt;P&gt;The following fields may have to be filled in some cases (incomplete listing):&lt;/P&gt;&lt;P&gt;Shelf life expiration date (if it has been configured like this)&lt;/P&gt;&lt;P&gt;Reason for movement (if it has been configured like this)&lt;/P&gt;&lt;P&gt;Batch (if the material is handled in batches and automatic assignment of batch numbers is not set)&lt;/P&gt;&lt;P&gt;The following fields can be filled (incomplete listing):&lt;/P&gt;&lt;P&gt;Special stock indicator&lt;/P&gt;&lt;P&gt;Item text&lt;/P&gt;&lt;P&gt;Unloading point&lt;/P&gt;&lt;P&gt;Goods recipient&lt;/P&gt;&lt;P&gt;The following fields cannot be filled (incomplete listing):&lt;/P&gt;&lt;P&gt;Account assignment fields (automatic creation of purchase order items with account assignment is not supported)&lt;/P&gt;&lt;P&gt;Reservation&lt;/P&gt;&lt;P&gt;Receiving/issuing material&lt;/P&gt;&lt;P&gt;Receiving/issuing plant&lt;/P&gt;&lt;P&gt;Receiving/issuing storage location&lt;/P&gt;&lt;P&gt;Receiving/issuing batch&lt;/P&gt;&lt;P&gt;The input combinations listed above for the GM_CODE 01 can be combined within an input table so that they can be posted in a material document. Items can also be posted for different purchase orders, provided that all the purchase orders refer to the same vendor.&lt;/P&gt;&lt;P&gt;Transfer of subcontracting components&lt;/P&gt;&lt;P&gt;During the posting of the ordered material of a subcontract order with movement type 101, for the transfer of the subcontracting components, the filled unique identification of the document line (LINE_ID) is also required.&lt;/P&gt;&lt;P&gt;More information on LINE_ID and PARENT_ID&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The following fields have to be filled for the components:&lt;/P&gt;&lt;P&gt;Unique identification of the document line&lt;/P&gt;&lt;P&gt;Identification of the immediately superior line&lt;/P&gt;&lt;P&gt;Material number&lt;/P&gt;&lt;P&gt;Plant&lt;/P&gt;&lt;P&gt;Storage location&lt;/P&gt;&lt;P&gt;Quantity in unit of entry&lt;/P&gt;&lt;P&gt;The following fields can be filled for the components:&lt;/P&gt;&lt;P&gt;All other fields in the method that are included in this list.&lt;/P&gt;&lt;P&gt;The following fields cannot be filled for the components:&lt;/P&gt;&lt;P&gt;All fields that are not included in the list above. The movement indicator must be initial.&lt;/P&gt;&lt;P&gt;Additional fields in goods-receipt-based invoice verification&lt;/P&gt;&lt;P&gt;When you post a goods receipt to purchase order with movement type 102, an issue with reference to a previously posted goods issue, the following fields must also be transferred:&lt;/P&gt;&lt;P&gt;REF_DOC_IT (LFPOS): Item of a reference document&lt;/P&gt;&lt;P&gt;REF_DOC (LFBNR): Document number of a reference document&lt;/P&gt;&lt;P&gt;REF_DOC_YR (LFBJA): Fiscal year of a reference document&lt;/P&gt;&lt;P&gt;Only when you transfer these fields is it guaranteed that the reference to the original goods movement stay the same.&lt;/P&gt;&lt;P&gt;For 2 GM_Code 02: Goods receipt for production order&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The following fields have to be filled:&lt;/P&gt;&lt;P&gt;Order&lt;/P&gt;&lt;P&gt;Movement type&lt;/P&gt;&lt;P&gt;Movement indicator&lt;/P&gt;&lt;P&gt;Quantity in unit of entry&lt;/P&gt;&lt;P&gt;ISO code unit of measurement for unit of entry or&lt;/P&gt;&lt;P&gt;quantity proposal&lt;/P&gt;&lt;P&gt;The following fields may have to be filled in some cases (incomplete listing):&lt;/P&gt;&lt;P&gt;Shelf life expiration date (if the system has been configured like this)&lt;/P&gt;&lt;P&gt;Reason for movement (if the system has been configured like this)&lt;/P&gt;&lt;P&gt;Batch (if the material is handled in batches and automatic batch number assignment is not set)&lt;/P&gt;&lt;P&gt;Storage location (if storage location has not been specified in the order)&lt;/P&gt;&lt;P&gt;The following fields can be filled (incomplete listing):&lt;/P&gt;&lt;P&gt;Order item (co-product)&lt;/P&gt;&lt;P&gt;Stock type&lt;/P&gt;&lt;P&gt;Item text&lt;/P&gt;&lt;P&gt;Unloading point&lt;/P&gt;&lt;P&gt;"Delivery completed" indicator&lt;/P&gt;&lt;P&gt;The following fields cannot be filled (incomplete listing):&lt;/P&gt;&lt;P&gt;Account assignment fields (the account assignments are adopted from the purchase order)&lt;/P&gt;&lt;P&gt;Reservation&lt;/P&gt;&lt;P&gt;Receiving/issuing material&lt;/P&gt;&lt;P&gt;Receiving/issuing plant&lt;/P&gt;&lt;P&gt;Receiving/issuing storage location&lt;/P&gt;&lt;P&gt;Receiving/issuing batch&lt;/P&gt;&lt;P&gt;For 3 GM_Code 03: Goods issue&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Goods issue without reference to a reservation&lt;/P&gt;&lt;P&gt;The following fields have to be filled:&lt;/P&gt;&lt;P&gt;Material number&lt;/P&gt;&lt;P&gt;Plant&lt;/P&gt;&lt;P&gt;Storage location&lt;/P&gt;&lt;P&gt;Movement type&lt;/P&gt;&lt;P&gt;Movement indicator&lt;/P&gt;&lt;P&gt;Quantity in unit of entry&lt;/P&gt;&lt;P&gt;ISO code unit of measurement for unit of entry&lt;/P&gt;&lt;P&gt;The following fields may have to be filled in some cases (incomplete listing):&lt;/P&gt;&lt;P&gt;Special stock (e.g. sales order, project, vendor etc.)&lt;/P&gt;&lt;P&gt;Shelf life expiration date (if the system is configured like this)&lt;/P&gt;&lt;P&gt;Reason for movement (if the system has been configured like this)&lt;/P&gt;&lt;P&gt;Batch (if the material is handled in batches and automatic batch number assignment is not set)&lt;/P&gt;&lt;P&gt;Account assignment fields&lt;/P&gt;&lt;P&gt;The following fields can be filled (incomplete listing):&lt;/P&gt;&lt;P&gt;Special stock indicator&lt;/P&gt;&lt;P&gt;Item text&lt;/P&gt;&lt;P&gt;Unloading point&lt;/P&gt;&lt;P&gt;Goods recipient&lt;/P&gt;&lt;P&gt;The following fields cannot be filled (incomplete listing):&lt;/P&gt;&lt;P&gt;Reservation&lt;/P&gt;&lt;P&gt;Receiving/issuing material&lt;/P&gt;&lt;P&gt;Receiving/issuing plant&lt;/P&gt;&lt;P&gt;Receiving/issuing storage location&lt;/P&gt;&lt;P&gt;Receiving/issuing batch&lt;/P&gt;&lt;P&gt;Goods issue with reference to a reservation&lt;/P&gt;&lt;P&gt;The following fields have to be filled:&lt;/P&gt;&lt;P&gt;Reservation number&lt;/P&gt;&lt;P&gt;Reservation item&lt;/P&gt;&lt;P&gt;Record type of the reservation&lt;/P&gt;&lt;P&gt;Movement indicator&lt;/P&gt;&lt;P&gt;Quantity in unit of entry&lt;/P&gt;&lt;P&gt;ISO code unit of measurement for unit of entry&lt;/P&gt;&lt;P&gt;The following fields may have to be filled in some cases (incomplete listing):&lt;/P&gt;&lt;P&gt;Shelf life expiration date (if this has been configured in the system)&lt;/P&gt;&lt;P&gt;Reason for movement (if this has been configured in the system)&lt;/P&gt;&lt;P&gt;Batch (if the material is handled in batches and automatic batch number assignment is not set)&lt;/P&gt;&lt;P&gt;Storage location (if not planned in the reservation)&lt;/P&gt;&lt;P&gt;The following fields can be filled (incomplete listing):&lt;/P&gt;&lt;P&gt;Special stock indicator&lt;/P&gt;&lt;P&gt;Item text&lt;/P&gt;&lt;P&gt;Unloading point&lt;/P&gt;&lt;P&gt;Goods recipient&lt;/P&gt;&lt;P&gt;The following fields cannot be filled (incomplete listing):&lt;/P&gt;&lt;P&gt;Movement type&lt;/P&gt;&lt;P&gt;Material&lt;/P&gt;&lt;P&gt;Plant&lt;/P&gt;&lt;P&gt;Account assignment fields&lt;/P&gt;&lt;P&gt;For 4 GM_Code 04: Transfer posting&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Transfer posting without reference to a reservation&lt;/P&gt;&lt;P&gt;The following fields have to be filled:&lt;/P&gt;&lt;P&gt;Material number&lt;/P&gt;&lt;P&gt;Plant&lt;/P&gt;&lt;P&gt;Storage location&lt;/P&gt;&lt;P&gt;Movement type&lt;/P&gt;&lt;P&gt;Movement indicator&lt;/P&gt;&lt;P&gt;Quantity in unit of entry&lt;/P&gt;&lt;P&gt;ISO code unit of measurement for unit of entry&lt;/P&gt;&lt;P&gt;The following fields may have to be filled in some cases (incomplete listing):&lt;/P&gt;&lt;P&gt;Receiving material&lt;/P&gt;&lt;P&gt;Receiving plant&lt;/P&gt;&lt;P&gt;Receiving storage location&lt;/P&gt;&lt;P&gt;Receiving batch (if material is handled in batches and you want to change batches)&lt;/P&gt;&lt;P&gt;Receiving/issuing special stock (e.g. sales order, project, vendor etc.)&lt;/P&gt;&lt;P&gt;Shelf life expiration date (if this has been configured in the system)&lt;/P&gt;&lt;P&gt;Reason for movement (if this has been configured in the system)&lt;/P&gt;&lt;P&gt;Batch (if the material is handled in batches and automatic batch number assignment is not set)&lt;/P&gt;&lt;P&gt;The following fields can be filled (incomplete listing):&lt;/P&gt;&lt;P&gt;Special stock indicator&lt;/P&gt;&lt;P&gt;Item text&lt;/P&gt;&lt;P&gt;Account assignment fields (for automatic posting lines: Expense/income from stock transfer)&lt;/P&gt;&lt;P&gt;The following fields cannot be filled (incomplete listing):&lt;/P&gt;&lt;P&gt;Reservation&lt;/P&gt;&lt;P&gt;Transfer posting with reference to a reservation&lt;/P&gt;&lt;P&gt;See goods issue with reference to a reservation&lt;/P&gt;&lt;P&gt;For 5 GM_Code 05: Other goods receipts&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Other goods receipt without reference to a reservation&lt;/P&gt;&lt;P&gt;See goods issue without reference to a reservation&lt;/P&gt;&lt;P&gt;Other goods receipt with reference to a reservation&lt;/P&gt;&lt;P&gt;See goods issue with reference to a reservation&lt;/P&gt;&lt;P&gt;For 6 GM_Code 06: Reversal of goods movements&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use the Cancel method to reverse goods movements. But you may also want to cancel a goods movement without referring to a material document (see the Cancel method).&lt;/P&gt;&lt;P&gt;If you want to work without referring to the document, you have to fill the field BAPI_GM_ITEM_CREATE-XSTOB in the interface (import table GOODSMVT_ITEM). In this case, the system converts the movement type assigned in the interface to the reversal movement type. Alternatively, you can set the reversal movement type in the interface. In this case, the BAPI_GM_ITEM_CREATE_XSTOB field must be transferred blank.&lt;/P&gt;&lt;P&gt;If you want to cancel a goods movement with reference to a reservation (without using the Cancel method) you can only transfer the field BAPI_GM_ITEM_CREATE_XSTOB if it is filled. Movement types are not transferred when you post with reference to a reservation, as the movement type is contained in the reservation item.&lt;/P&gt;&lt;P&gt;For 7. GM_Code 07: Subsequent adjustment to a subcontract order&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ordered material of subcontract order&lt;/P&gt;&lt;P&gt;The following fields have to be filled:&lt;/P&gt;&lt;P&gt;Unique identification of document line (can be assigned to anything)&lt;/P&gt;&lt;P&gt;Posting date in document header&lt;/P&gt;&lt;P&gt;Document number of purchasing document&lt;/P&gt;&lt;P&gt;Item number of purchasing document&lt;/P&gt;&lt;P&gt;Material number check&lt;/P&gt;&lt;P&gt;Plant check&lt;/P&gt;&lt;P&gt;Movement type (select movement type 121)&lt;/P&gt;&lt;P&gt;Movement indicator (must be O)&lt;/P&gt;&lt;P&gt;Further entries are not allowed. The entry quantity for the ordered material of a subcontract order must be zero.&lt;/P&gt;&lt;P&gt;Components&lt;/P&gt;&lt;P&gt;The following fields have to be filled:&lt;/P&gt;&lt;P&gt;Unique identification of document line (can be assigned to anything)&lt;/P&gt;&lt;P&gt;Identification of the immediately superior line&lt;/P&gt;&lt;P&gt;Plant&lt;/P&gt;&lt;P&gt;Material number check&lt;/P&gt;&lt;P&gt;Quantity in unit of entry; can also be negative&lt;/P&gt;&lt;P&gt;The following fields can be filled:&lt;/P&gt;&lt;P&gt;Storage location&lt;/P&gt;&lt;P&gt;All other fields in the method that are included in this list.&lt;/P&gt;&lt;P&gt;The following fields may not be filled:&lt;/P&gt;&lt;P&gt;All fields that are not in the list above. The movement indicator must be blank.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;More information on LINE_ID and PARENT_ID&lt;/P&gt;&lt;P&gt;Additional fields in goods-receipt-based invoice verification&lt;/P&gt;&lt;P&gt;When you post a subsequent adjustment, the following fields must also be transferred:&lt;/P&gt;&lt;P&gt;REF_DOC_IT (LFPOS): Item of a reference document&lt;/P&gt;&lt;P&gt;REF_DOC (LFBNR): Document number of a reference document&lt;/P&gt;&lt;P&gt;REF_DOC_YR (LFBJA): Fiscal year of a reference document&lt;/P&gt;&lt;P&gt;Only when you transfer these fields is it guaranteed that the reference to the original goods movement stays the same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if useful&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Anji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 23 Sep 2007 11:08:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-goodsmvt-create-gi-for-gr/m-p/2847951#M667199</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-23T11:08:36Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_GOODSMVT_CREATE - GI for GR</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-goodsmvt-create-gi-for-gr/m-p/2847952#M667200</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;thank you for your help. Have another question - is there any BAPI to get GR header and items (to assign it to GI for posting) or do I have to read tables you've mentioned. If so, please post example.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regs,&lt;/P&gt;&lt;P&gt;FS&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 23 Sep 2007 19:32:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-goodsmvt-create-gi-for-gr/m-p/2847952#M667200</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-23T19:32:22Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_GOODSMVT_CREATE - GI for GR</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-goodsmvt-create-gi-for-gr/m-p/2847953#M667201</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It took a while but I solved it up &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TX,&lt;/P&gt;&lt;P&gt;FS&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Sep 2007 18:33:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-goodsmvt-create-gi-for-gr/m-p/2847953#M667201</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-25T18:33:37Z</dc:date>
    </item>
  </channel>
</rss>

