BAPI_GOODSMVT_CREATE Movement Type 641

Hi All
I was wondering if it is possible to do a Stock Transfer posting using Movement type 641 in the BAPI, BAPI_GOODSMVT_CREATE.
I am trying to replicate the VL02N functionality using this BAPI.
No matter what I do I keep getting the error "For item 00001 of purch. order 80000274, no goods issue can be posted"  M7 152
Is this even possible, if yes, what am I doing wrong ?
Thanks
Aju Paul

Hi,
You need to change your GMCODE to 03 for GOODS ISSUE.
GMCODE Table T158G - 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
Regards,
Gilberto Li

Similar Messages

  • MOVEMENT TYPE 641

    HELLO,
    IS MOVEMENT TYPE 641 INWARD OR OUTWARD?
    IN MY SYSTEM SOMETIMES IT APPEAR AS INWARD(IF STORAGE LOCATION IS EMPTY) N SOMETIMES OUTWARD(IF STLOC NOT EMPTY)..SAMETHING HAPPENS FOR 642..PLS HELP ME.
    THANX IN ADVANCE..
    REGARDS,
    MAYA.

    PRABHU,
    THANK U VERY MUCH FOR UR RESPONSE....
    I HAVE ONE MORE QUESTION.
    IS IT SUFFICIENT TO CHECK THIS FIELD MSEG-SHKZG TO DECIDE WHETHER TO CREDIT R DEBIT STOCK? R SHUD I CHECK MOVEMENT TYPE ALSO ALONG WITH THIS FIELD? WAITING FOR UR REPLY...
    REGARDS,
    MAYA.

  • STO Goods Issue Movement Type 641 vs 603

    Hello,
    I created a STO for stock transfer.  During the Goods Issue against delivery, the system is picking movement type 603.  Is this right? I have always seen 641 for issuing goods against STO outbound delivery.
    How to make system choose movement type 641 for goods issue against STO outbound delivery.
    Thanks,

    As expected, why do u choose to use UL, and why not NL?
    If you continue to use UL, may be u should ask your SD consultant to change the schedule line category to movt type 641 or change the existing schedule line category movt type to 641..
    hope this helps...
    Rgds,
    Harish

  • How movement type 641 E can post goods issue for sales order

    Hi
    One of our sales process need sales goods cross plant, form sales order type OR(the item required special stock E) to create delivery then auto generate PR , form PR create Stock Transprot Order, in vl10b generate delivery type is NL, when PGI this NL delivery, the message said 'Sales order stock 30001057 000010 does not exist' .
    I check the NL delivery movement type is 641 E, normally, 641 would transprot the goods to 'in transfer', but I could not find the reason why it can't create sales order stock  in 'in transport' .
    Any suggestion about that?

    Did you check whether stock is available for the particular material ?
    Is the material extended to the relevent plant, storage location ?

  • BAPI_GOODSMVT_CREATE movement type 344

    Hi , i want to convert unristricted stock to block stock, so i use movement 344. the thing is ,it is creating document but commit work and wait is failing. i am geeting mail in sap mailbox, updation is failed like that. i am not able to see that document, but bapi is creating document, but is not saving to database.
    what should be reason. i am providing sample of my code.
    PERFORM within_warehouse_convert
                   USING l_lqua '344'.
    FORM within_warehouse_convert
        USING wa2_lqua TYPE lqua
              l_bwlvs  TYPE ltak-bwlvs.
    *Decalre Variables
      DATA :
      wa_header    LIKE bapi2017_gm_head_01,
      wa_header1   LIKE bapi2017_gm_head_ret,
      l_code       LIKE bapi2017_gm_code,
      l_belnr      LIKE bapi2017_gm_head_ret-mat_doc,
      l_gjahr      LIKE bapi2017_gm_head_ret-doc_year,
      it_items     LIKE bapi2017_gm_item_create OCCURS 0 WITH HEADER LINE,
      it_return    LIKE bapiret2 OCCURS 0 WITH HEADER LINE,
      l_uom        LIKE t006-msehi,
      l_uom_iso    LIKE t006-isocode,
      l_text(100),
      l_error.
    Assign Variables
      CLEAR wa_header.
      wa_header-pstng_date = sy-datum.
      wa_header-doc_date = sy-datum.
      wa_header-header_txt = 'Converted to Blocked'.
      l_code = '04'.
      REFRESH :
       it_items, it_return.
      CLEAR :
       wa_header1, l_belnr, l_gjahr, l_error,l_uom.
      SELECT SINGLE meins INTO l_uom FROM mara
       WHERE matnr = wa2_lqua-matnr.
      CALL FUNCTION 'SAP_TO_ISO_MEASURE_UNIT_CODE'
           EXPORTING
                sap_code    = l_uom
           IMPORTING
                iso_code    = l_uom_iso
           EXCEPTIONS
                not_found   = 1
                no_iso_code = 2
                OTHERS      = 3.
      IF sy-subrc <> 0.
        MESSAGE s001 WITH 'Unable to convert Units of Mesaurement'.
      ELSE.
        it_items-entry_uom_iso  = l_uom_iso.
        it_items-material       = wa2_lqua-matnr.
        it_items-plant          = wa2_lqua-werks.
        it_items-stge_loc       = wa2_lqua-lgort.
        it_items-batch          = wa2_lqua-charg.
        it_items-move_plant     = wa2_lqua-werks.
        it_items-move_stloc     = wa2_lqua-lgort.
        it_items-spec_stock     = wa2_lqua-sobkz.
        it_items-sales_ord      = wa2_lqua-sonum(10).
        it_items-s_ord_item     = wa2_lqua-sonum+10(6).
        it_items-val_sales_ord  = wa2_lqua-sonum(10).
        it_items-val_s_ord_item = wa2_lqua-sonum+10(6).
        it_items-item_text      = 'Converted to Blocked'.
        it_items-move_type      = l_bwlvs.
        it_items-entry_qnt      = wa2_lqua-gesme.
        APPEND it_items.
      Call BAPI Goods movement
        CALL FUNCTION 'BAPI_GOODSMVT_CREATE'
             EXPORTING
                  goodsmvt_header  = wa_header
                  goodsmvt_code    = l_code
                  testrun          = l_test
             IMPORTING
                  goodsmvt_headret = wa_header1
                  materialdocument = l_belnr
                  matdocumentyear  = l_gjahr
             TABLES
                  goodsmvt_item    = it_items
                  return           = it_return.
        CLEAR l_error.
        LOOP AT it_return WHERE type = 'E' OR type = 'A'.
          MESSAGE i001 WITH it_return-message text-001.
          l_error = 'X'.
          EXIT.
        ENDLOOP.
      Call Commit BAPI.
        IF l_error = ' '.
          CLEAR : it_return.
          CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
               EXPORTING
                    wait   = 'X'
               IMPORTING
                    return = it_return.
          IF it_return-type = 'E' OR it_return-type = 'A'.
            MESSAGE i001 WITH it_return-message.
            l_error = 'X'.
            CALL FUNCTION 'BAPI_TRANSACTION_ROLLBACK'.
            EXIT.
          ENDIF.
        ENDIF.
      ENDIF.
    ENDFORM.                    " within_warehouse_convert

    Hi ,
    put simple code like this .
    Call BAPI  'Create Goods '.
    loop at lt_return where type eq 'E' or 'A'.
    error = 'X'.
    endloop.
    if error ne  'X'.
    commit work.
    else.
    Roll back.
    endif.
    regards
    Prabhu

  • Goods Issue using BAPI_GOODSMVT_CREATE movement type 541

    Hi
        According to my requirement I need to do Post goods issue using BAPI_GOODSMVT_CREATE. But I am unable to do PGI . how to consume BOM details if batches are changed. please let me know what values I need to pass to BAPI . give with an example.
    Its an urgent requirement.

    are you passing batch number to the BAPI?
    if not try pass the batch number the rest of the things bapi will take care of.
    bi

  • 'BAPI_GOODSMVT_CREATE movement type

    here are my requirements
    The current functionality in SAP takes a Material and changes it from “Unrestricted” to “Restricted” at the time of Material Expiry.
    The Following Functionality is required:
    • Upon automatically running a batch job the system will check for all expired Materials with a stock status of “Restricted” and change that status to “Blocked”
    i have to call Call 'BAPI_GOODSMVT_CREATE' function module for creating the material document
    Upon running Batch job, the program will look in table MCH1 for all Batch/Material combinations that have an expired SLED (field: VFDAT).
    After finding all expired Batch/Material combinations in step one the program will then use that data to locate the associated Plants (field: WERKS) and Storage Locations (field: LGORT) in table MCHB
    where BAPI2017_GM_CODE-GM_CODE = 04(Transfer Posting).
    my question is after passing the selcted data into GOODSMVT_ITEM will the materials that i have selcted will automatically be changed from “Restricted” and change that status to “Blocked”
    if so what would be the correct GOODSMVT_ITEM-MOVE_TYPE
    please help

    I thinkfthats case for gm_code being goods reciept
    but i have get it for TP-transfer posting code 04

  • BAPI_GOODSMVT_CREATE - Movement type 309

    I am using  this BAPI to do a 309 movement. 
    I get the error message M7 E021                                                                 
    Deficit of SL Unrestricted-use .
    I do not get the error message for the same data when i use MB1b. 
    The problem exists in program LMBMVFV0
    The online tcode assigns a value using this code....
            ASSIGN (t156f-felds) TO <m>.
    But when the BAPi executes there is no value here.  It is 0. This causes the error.
    I cannot find an OSS note.
    Canybody have any experience mapping a move 309 using this BAPI

    Updating the thread as it appears in google search and has no solution.
    Came across same issue when posting goods movement 309 on same material/batch twice. Problem is with function module that fetches data from MCHB table. If called two or more times it will pass data from local internal table instead of reading from database.
    MB_PREFETCH_MATERIAL calls MATERIAL_PRE_READ_MBEF to read data from MCHB. Function module MATERIAL_PRE_READ_MBEF maintains buffer for MCHB. Unless calling program specifically request data from database, it (MATERIAL_PRE_READ_MBEF) tries to full-fill from internal table. Within function module MB_PREFETCH_MATERIAL there is a bit of logic which tells fm MATERIAL_PRE_READ_MBEF to use buffer if late exclusive block is activated (field TCURM-MBEQU transaction OMJI). 
    Note 194070 resolves the issue.

  • Updation of rg1 register twice on 641 mov type

    Hi,
    We have a scenerio, where finished product will be consumed for assembling the another product,
    for this the scenerio is STO to own plant through Sales,
    When I am updating RG1 register through J1I5 transaction with mov type 641 against STO to own plant
    RG1 entry is updating twice, one as receipt in the plant and once as Issue from the plant with value.
    Pls. provide the solution how to control this to enter only once.
    regards
    Ramesh

    Possible options to get RG1 updated twice in case of STO-
    - Check whether you are using "One step procedure" in STO
    - Check movement types assigned to RG1 in CIN Settings ( i guess, 641/101 movement types assigned to RG1)
    - Should not maintian 101 assigned to RG1- bcoz inflow of Materials will not update RG1,
    try n revert

  • 641 movement type in Project

    Dear Experts,
    Is it possible to assign movement type 641 in Project for non valuated material (packaging material).
    I have checked it in T_CODE: OPT1, where we can maintain single movement type at a time.
    Our requirement is for both 281 and 641movement type, considering packaging material as capital
    material in Project.
    Please let me know how it can be maintain else suggest any other solution in this scenerio.
    Regards,
    Nitish

    Please correct the movement type is 621 not 641.
    Rgds,
    Nitish

  • PGI for STO movement type error Message no. L9005

    Hi Gurus,
    I have created an STO.Created delivery and confirmed TO.
    Now while doing PGI,single step only(647 movement type),
    system throws the following message,
    "" Error during search for WM movement type (641 1 L K  )
       Message no. L9005 "".
    As per my checking for both IM movement types 641 and 647, ' 641 ' has been assigned as
    Ref movement type and " 601"  has been assigned as WM movement type.
    601 is maintained in WM.Should I maintain 641 in WM?That case I have to change SAP std settings..
    If so pls provide me the details for 641 K.
    Kindly help.
    Best Regards

    Hi Kumar,
    Try the following:
    Maintain an entry for your warehouse with movement type 641 SpStIn and Movment Indicator l combination in transaction OMLR.
    And also ,
    Check in IMG Path - Enterprise Structure --> Assignment --> Logistis Execution --> Assign warehouse number to plant/storage location.
    Here check whether the warehouse number is assigned to your plant and storage location.
    Thanks!
    Preethi
    Edited by: preethi R on Dec 2, 2008 10:50 AM
    Edited by: preethi R on Dec 2, 2008 10:50 AM

  • Automatic Creation of MIGO for stock transfer order with movement type 351

    I have used the BAPI - BAPI_GOODSMVT_CREATE_OIL to create the material document number. But the test ended with error "Goods movement not possible with mvmt type 351".
    Is there any ways to eliminate the above error....
    Friends need your help

    351 Goods issue for a stock transport order (without SD)
    The quantity is transferred from unrestricted-use stock in the issuing plant to stock in transit in the receiving plant.
    Movement type 351 is only used if the goods issue is posted without an SD delivery. A goods issue for a stock transport order with SD delivery is posted using movement type 641 or 643.
    The transfer posting is also possible for materials valuated separately.
    The goods issue for a stock transport order takes place using movement type 101.
    Possible special stock indicators: E, Q
    For special stock indicators E and Q and for purchase orders assigned to an account, ensure that the quantity is not posted to the stock in transit in the receiving plant.

  • Stock transit 351 movement type

    hi,
    For item 00010 of purch. order 4500017208, no goods issue can be posted
    Message no. M7152
    Diagnosis
    Item 00010 of purchase order 4500017208 is no stock transfer order.
    Procedure
    Make sure your entries are correct.
    Check whether the the purchase order is a stock transport order.
    Perform function
    If required, remove the item entry so that the system displays all items of the purchase order on the selection list. Then select the desired item(s) from the selection list.
    Thanks & Regards,
    senthil

    Hi
    Movement type 351 Goods isue for STO without shipping
    The qty is transferred from unrestricted use in the issuing plant to stock in transit in the receiving plant
    351 movement type is used if the goods issue is posted without delivery in shipping
    A goods issue for a STO with delivery in shipping is posted using movement type 641,643,645,647
    This is the explanation of  351 movement type
    I see a link between your earlier post and this
    You have done STO with shipping and delivery with a wrong movement type
    This 351 movement type is for t code MB1B only
    For intracompany STO 641 is the movement type
    For intercompany STO 643 is the movement type
    Regards
    Raja

  • MOVEMENT TYPES - SD

    Friends
    List  the Movement Types used in SD. Could anyone just explain the movement type with some examples.
    Will reward you.
    Thanks

    Hi,
    Further information
    Below you will find a short description of the standard movement types. The reversal movement type is the movement type + 1 (reversal of 101 = 102).
    101 Goods receipt for purchase order or order
    If the purchase order or order has not been assigned to an account, a stock type (unrestricted-use stock, stock in quality inspection, blocked stock) can be entered during goods receipt.
    If the purchase order or order has been assigned to an account, the goods receipt is not posted to the warehouse, but to consumption.
    In the case of non-valuated materials, the goods receipt is posted to the warehouse, although the purchase order has not been assigned to an account.
    Possible special stock indicators:
    •     K Goods receipt for purchase order to consignment stock
    •     O Goods receipt for purchase order to stock of material provided to vendor
    •     E GR for purchase order or order to sales order stock
    •     Q GR for purchase order or order to project stock.
    Goods receipt for
    subcontract order: at goods receipt, the consumption of the components is posted at the same time (see movement type 543)
    Goods receipt for
    stock transport order: at goods receipt the transported quantity is posted in the receiving plant from stock in transit into unrestricted-use stock (stock in quality inspection or blocked stock).
    103 Goods receipt for purchase order into GR blocked stock
    You cannot receive goods into goods receipt blocked stock for stock transport orders.
    Possible special stock indicators:
    K, O, E, Q
    105 Release from GR blocked stock for purchase order
    Movement type 105 has the same effects as 101.
    Possible special stock indicators:
    K, O, E, Q
    121 Subsequent adjustment for subcontracting
    This movement type cannot be entered manually.
    With a subsequent adjustment for a subcontract order it is possible to correct the consumption of components. In this case, the material produced by the supplier is credited with the excess consumption / under-consumption. For this reason, if there is a subsequent adjustment, an item is generated for the produced material using movement movement type 121.
    Movement type 121 does not have a reversal movement type.
    Possible special stock indicators:
    O, E, Q
    122 Return delivery to supplier or to production
    Using movement type 122, you can distinguish real return deliveries for a purchase order or order from cancellations (102).
    In the standard version, you must enter a reason for the return delivery if you are using movement type 122. This enables you to carry out evaluations for return deliveries.
    The effects of movement type 122 correspond to a cancellation of movement type 101.
    Possible special stock indicators:
    K, O, E, Q
    123 Reversal of return delivery
    If you returned a goods receipt using movement type 122, you can reverse the return delivery using movement type 123. This movement type has the same effects as movement type 101.
    Possible special stock indicators:
    K, O, E, Q
    124 Return delivery to vendor from GR blocked stock
    Using movement type 124, you can return a goods receipt to GR blocked stock ( 103).
    Movement type 124 has the same effects as movement type 104.
    Possible special stock indicators:
    K, O, E, Q
    125 Return delivery from GR blocked stock - reversal
    If you returned a goods receipt to GR blocked stock using movement type 124 , you can reverse the return delivery using movement type 125.
    Movement type 125 has the same effects as movement type 103.
    Possible special stock indicators:
    K, O, E, Q
    131 Goods receipt for run schedule header
    This movement type cannot be entered manually. It is generated automatically at notification of goods receipt for a run schedule header.
    Possible special stock indicators:
    E, Q
    141 Goods receipt for subsequent adjustment for active ingredient
    This movement type cannot be entered manually. It is generated automatically upon subsequent adjustment for a proportion/product unit . Subsequent adjustment is necessary if the system finds that there has been excess consumption or under-consumption after a goods receipt posting.
    Possible special stock indicators:
    K, O, E, Q
    161 Return for purchase order
    If a purchase order item is marked as a returns item, the returns to vendor are posted using movement type 161 when the goods receipt for purchase order ( 101) is posted.
    Movement type 161 has the same effects as movement type 122.
    Possible special stock indicators:
    K, O, E, Q
    201 Goods issue for a cost center
    The goods can only be withdrawn from unrestricted-use stock.
    Possible special stock indicators:
    •     K: Goods withdrawal from consignment stock
    •     P: Goods withdrawal from the pipeline
    If you have withdrawals from consignment stock and from pipeline, payables to suppliers ensue.
    221 Goods issue for a project
    The goods can only be withdrawn from unrestricted-use stock.
    Possible special stock indicators:
    K, Q
    231 Goods issue for a customer order (without Shipping)
    You use this movement type if you want to process the delivery without Shipping.
    The goods can only be withdrawn from unrestricted-use stock.
    Possible special stock indicators:
    E, K, Q
    241 Goods issue for an asset
    The goods can only be withdrawn from unrestricted-use stock.
    Possible special stock indicators:
    K
    251 Goods issue for sales (without customer order)
    Use this movement type if you have not entered a customer order in SD. In the standard system, the movement is assigned to a cost center.
    The goods can only be withdrawn from unrestricted-use stock.
    Possible special stock indicators:
    K
    261 Goods issue for an order
    This refers to all withdrawals for orders (for example, DS:GLOS.3526C388AFAB52B9E10000009B38F974>production orders, maintenance orders), with the exception of customer orders.
    Possible special stock indicators:
    E, K, P, Q, W
    The goods issue can be posted manually in Inventory Management or automatically when an order is confirmed or via a delivery in Shipping.
    281 Goods issue for a network
    The goods can only be withdrawn from unrestricted-use stock.
    The goods issue can also be posted via a delivery in Shipping.
    Possible special stock indicators:
    E, K, P, Q
    291 Goods issue for any arbitrary account assignment
    With this movement type, all account assignment fields are ready for input. You can assign the movement to any arbitrary account assignment object.
    The goods can only be withdrawn from unrestricted-use stock.
    Possible special stock indicators:
    E, K, P, Q
    301 Transfer posting plant to plant in one step
    The quantity is transferred from unrestricted-use stock in the issuing plant to unrestricted-use stock in the receiving plant.
    Possible special stock indicators:
    E, O, Q, V, W
    303 Transfer posting plant to plant in two steps - removal from storage
    The quantity is transferred from unrestricted-use stock of the issuing plant tostock in transfer in the receiving plant.
    For technical reasons, you cannot carry out transfer postings from plant to plant in two steps for split valuation materials.
    Removal from storage can be posted with movement type 603 via Shipping.
    Possible special stock indicators:
    None
    305 Transfer posting plant to plant in two steps - placement in storage
    The quantity is posted from stock in transfer to unrestricted-use stock in the receiving plant. The movement is not valuated.
    You can use movement type 605 in Shipping to post the goods receipt with reference to the delivery.
    Possible special stock indicators:
    None
    309 Transfer posting material to material
    The quantity is posted from unrestricted-use stock of the issuing material into unrestricted-use stock in the receiving material.
    Prerequisite: both materials have the same stockkeeping unit.
    Possible special stock indicators:
    E, O, Q, V, W
    311 Transfer posting storage location to storage location in one step
    The quantity is transferred from unrestricted-use stock of the issuing storage location to unrestricted use in the receiving storage location.
    Possible special stock indicators:
    E, K, M, Q
    See also 321, 343, 349, and 455 for other stock types
    313 Stock transfer storage location to storage location in two steps - removal from storage
    The quantity is transferred from unrestricted-use stock of the issuing storage location to stock in transfer in the receiving storage location.
    Possible special stock indicators:
    None
    315 Transfer posting storage location to storage location in two steps - placement in storage
    In the receiving storage location, the quantity is transferred from the stock in transfer to the unrestricted-use stock.
    Possible special stock indicators:
    None
    317 Creation of a structured material from constituent components (Retail)
    A material split into its components using movement type 319 can be rejoined using movement type 317.
    Movement type 317 has the same effect as a cancellation of movement type 319.
    Possible special stock indicators:
    None
    319 Split structured material into components (Retail)
    You can enter the splitting of a structured material manually using movement type 319.
    You can configure Customizing so that a structured material (for example, aset, prepack, or display is automatically split into its components at goods receipt. The system posts the split using movement type 319. In this process, the BOM header material is posted and each of the component stocks are increased. You can also use this function if you use the Warehouse Management System (LE-WM).
    Possible special stock indicators:
    None
    Example:
    A box of the structured material S contains 3 pieces of the component K1 and 4 pieces of the component K2. The following material document items result after the material is split at goods receipt:
         Qty     Unit     Material     Movement type
         1     box     S     101 +
         1     box     S     319 -
         4     piece     K1     319 +
         5     piece     K2     319 +
    321 Transfer posting stock in quality inspection - unrestricted-use stock
    The quantity is transferred from stock in quality inspection into unrestricted-use stock. Here you can post the quantity to another storage location.
    You cannot use this movement type for QM-managed materials since transfer posting for these materials takes place via the usage decision.
    Possible special stock indicators:
    E, K, O, Q, V, W
    323 Transfer posting storage location to storage location - stock in quality inspection
    The quantity is transferred from stock in quality inspection in the issuing storage location into stock in quality inspection in the receiving storage location.
    Possible special stock indicators:
    E, K, Q
    325 Transfer posting storage location to storage location - blocked stock
    The quantity is transferred from blocked stock in the issuing storage location into blocked stock in the receiving storage location.
    Possible special stock indicators:
    E, K, Q
    331 Withdrawal of sample from stock in quality inspection
    The sample is destructive, that is, the withdrawal has the same effects asscrapping.
    Possible special stock indicators:
    E, K, Q, V, W
    333 Withdrawal of sample from unrestricted-use stock
    The sample is destructive, that is, the withdrawal has the same effects asscrapping.
    Possible special stock indicators:
    E, K, Q, V, W
    335 Withdrawal of sample from blocked stock
    The sample is destructive, that is, the withdrawal has the same effects asscrapping.
    Possible special stock indicators:
    E, K, Q
    340 Revaluation of batch
    Using this movement type, you can change a batch's valuation type. The system automatically calls up this movement type when you want to revaluate a batch by choosing Logistics -> Central Functions -> Batch Management -> Batch -> Change (transaction code MSC2N). There is no reversal movement type.
    Possible special stock indicators:
    E, Q
    341 Change in status of a batch (available to unavailable)
    This goods movement is automatically created when there is a change in the status of a batch and it is also used to transfer the unrestricted-use stock into restricted-use stock.
    Possible special stock indicators:
    E, K, M, O, Q, V, W
    343 Transfer posting blocked stock - unrestricted-use stock
    The quantity is transferred from blocked stock to unrestricted-use stock. You can also post the quantity to another storage location.
    Possible special stock indicators:
    E, K, Q
    349 Transfer posting from blocked stock to stock in quality inspection
    The quantity is transferred from blocked stock to stock in quality inspection. Here you can transfer the quantity to another storage location.
    Possible special stock indicators:
    E, K, Q
    351 Goods issue for a stock transport order (without Shipping)
    The quantity is transferred from unrestricted-use stock in the issuing plant to stock in transit in the receiving plant.
    Movement type 351 is only used if the goods issue is posted without a delivery in Shipping. A goods issue for a stock transport order with delivery in Shipping is posted using movement types 641, 643, 645, or 647.
    The transfer posting is also possible for materials with split valuation.
    The goods issue for a stock transport order takes place using movement type 101.
    Possible special stock indicators:
    E, Q
    For special stock indicators E and Q and for purchase orders assigned to an account, ensure that the quantity is not posted to the stock in transit in the receiving plant.
    411 Transfer posting of special stocks E, K, and Q to company's own stock
    The quantity is transferred from unrestricted-use special stock E (sales order stock), unrestricted-use stock K ( consignment stock) and unrestricted-use special stock Q (project stock) to unrestricted-use storage location stock. The corresponding special stock indicator is required for this movement.
    If you do not use the special stock indicator, the system uses this movement type and movement type 311.
    For sales order stock, you can change the material number for this movement if you manage the material in your company's own stock under a different material number (for example, for configurable materials).
    Consignment stock is transferred to valuated stock, thus resulting in a vendor liability.
    413 Transfer posting to sales order stock
    You can use this movement type to carry out a transfer posting from your own unrestricted-use stock, other sales order stock, consignment stock, and project stock to a sales order stock.
    Possible special stock indicators:
    E, K, Q
    415 Transfer posting to project stock
    You can use this movement type to carry out a transfer posting from your own unrestricted-use stock, consignment stock, and other project stock to a project stock.
    Possible special stock indicators:
    E, K, Q
    441 Transfer posting non-tied to tied empties
    Part of the stock of an "empties" material assigned to a full product is managed in the stock type "tied empties".
    Empties stock not assigned to a full product forms part of the stock type "unrestricted-use".
    Using movement type 441, you can make a transfer posting for an empties material from the stock type "unrestricted-use" to the stock type "tied empties". Movement type 442 reverses this transaction.
    Example:
    The full product "beer" has a stock of 15 cases. Part of the empties components "bottle" and "case" is tied empties stock.
    Refer example in next page
         Material     unrestricted-use     tied empties
         Beer     15     
         Bottle     240     360
         case     10     15
    451 Returns from customer (without Shipping)
    Using movement type 451, you post customer returns without a returns delivery in Shipping into blocked stock returns.
    Possible special stock indicators:
    None
    See also: 453, 651, 653
    453 Transfer posting blocked stock returns to unrestricted-use stock
    The quantity is transferred from blocked stock returns to unrestricted-use stock and thereby transferred to valuated stock.
    With this movement you can transfer the quantity to another storage location at the same time.
    Possible special stock indicators:
    None
    455 Transfer posting storage location to storage location - blocked stock returns
    The quantity is transferred from blocked stock returns of the issuing storage location to blocked stock returns of the receiving storage location.
    Possible special stock indicators:
    None
    457 Transfer posting blocked stock returns to quality inspection stock
    The quantity is transferred from blocked stock returns to quality inspection stock and thereby transferred to valuated stock.
    With this movement you can transfer the quantity to another storage location at the same time.
    Possible special stock indicators:
    None
    459 Transfer posting blocked stock returns to blocked stock
    The quantity is transferred from blocked stock returns to blocked stock and thereby transferred to valuated stock.
    With this movement you can transfer the quantity to another storage location at the same time.
    Possible special stock indicators:
    None
    501 Goods receipt without purchase order - unrestricted-use stock
    This movement type is used for deliveries from vendors that are not based on a purchase order. Invoice verification is not possible for these goods receipts.
    For a goods receipt for purchase order (
    101), the receipt of returnable transport packaging can be entered using movement type 501 and special stock indicator M.
    Possible special stock indicators:
    E, K, M, Q
    503 Goods receipt without purchase order - stock in quality inspection
    This movement type is used for deliveries from vendors that are not based on a purchase order. Invoice verification is not possible for these goods receipts.
    Possible special stock indicators:
    E, K, Q
    505 Goods receipt without purchase order - blocked stock
    This movement type is used for deliveries from vendors that are not based on a purchase order. Invoice verification is not possible for these goods receipts.
    Possible special stock indicators:
    E, K, Q
    511 Free-of-charge delivery from vendor
    The quantity is posted to unrestricted-use stock. If there is a material with moving average price, the moving average price is reduced accordingly.
    Possible special stock indicators:
    None
    521 Goods receipt without order - unrestricted-use stock
    This movement type is used for deliveries from production that are not based on an order.
    Possible special stock indicators:
    E, Q
    523 Goods receipt without order - stock in quality inspection
    This movement type is used for deliveries from production that are not based on an order.
    Possible special stock indicators:
    E, Q
    525 Goods receipt without order - blocked stock
    This movement type is used for deliveries from production that are not based on an order.
    Possible special stock indicators:
    E, Q
    531 Goods receipt from by-product from the order
    The goods receipt of a by-product usually refers to an order, but it can be entered without a reference.
    If a component is entered with a negative quantity in the order, a reservation item is created with 531 (instead of 261 ). The receipt of a by-product can be entered when the component for the order is withdrawn from stock or it can be entered as an 'other goods receipt'.
    Possible special stock indicators:
    E, Q
    See also: 545 and 581
    541 Transfer posting unrestricted-use stock - stock of material provided to vendor
    With this movement type you provide the subcontractor with the components required for subcontract orders. The quantity is posted into unrestricted-use stock of material provided to vendor.
    If there is a goods receipt for a subcontract order ( 101 ) consumption of components is posted from this stock.
    The transfer posting can be posted via a delivery in Shipping.
    Possible special stock indicators:
    None
    543 Consumption from stock of material provided to vendor
    This movement cannot be entered manually.
    The consumption of components for a subcontract order is posted using goods receipt for purchase order ( 101). It can be corrected by means of a subsequent adjustment.
    For special stock indicators E and Q, you must ensure that the quantity is not posted to the stock of material provided to vendor, but to the unrestricted-use sales order or project stock.
    Possible special stock indicators:
    E, O, Q
    545 Goods receipt from by-product from subcontracting
    If a component is entered with a negative quantity for the subcontract order, the receipt of the by-product is posted to stock provided to vendor during goods receipt for purchase order or during the subsequent adjustment.
    For special stock indicators E and Q, you must ensure that the quantity is not posted to the stock of material provided to vendor, but to the unrestricted-use sales order or project stock.
    Possible special stock indicators:
    E, O, Q
    551 Scrapping from unrestricted-use stock
    Possible special stock indicators:
    E, K, O, Q, V, W
    553 Scrapping from stock in quality inspection
    Possible special stock indicators:
    E, K, O, Q, V, W
    555 Scrapping from blocked stock
    Possible special stock indicators:
    E, K, Q
    561 Initial entry of stock - unrestricted-use stock
    During
    initial entry of stock balances, when the R/3 system is active, you enter the physical warehouse stock figures or the book inventory from your old system into the R/3 Materials Management component. This data entry usually takes place by means of batch input.
    Possible special stock indicators:
    E, K, M, O, Q, V, W
    563 Initial entry of stock - quality inspection
    During
    initial entry of stock balances, when the R/3 system is active, you enter the physical warehouse stock figures or the book inventory from your old system into the R/3 Materials Management component. This data entry usually takes place by means of batch input.
    Possible special stock indicators:
    E, K, O, Q, V, W
    565 Initial entry of stock - blocked stock
    During
    initial entry of stock balances, when the R/3 system is active, you enter the physical warehouse stock figures or the book inventory from your old system into the R/3 Materials Management component. This data entry usually takes place by means of batch input.
    Possible special stock indicators:
    E, K, Q
    571 Goods receipt for assembly order to unrestricted-use
    This movement cannot be entered in Inventory Management. It can only be entered in repetitive manufacturing using the Goods receipt for sales order function.
    Possible special stock indicators:
    E, Q
    573 Goods receipt for assembly order to quality inspection
    This movement cannot be entered in Inventory Management. It can only be entered in repetitive manufacturing using the Goods receipt for sales order function.
    Possible special stock indicators:
    E, Q
    575 Goods receipt for assembly order to blocked stock
    This movement cannot be entered in Inventory Management. It can only be entered in repetitive manufacturing using the Goods receipt for sales order function.
    Possible special stock indicators:
    E, Q
    581 Goods receipt of a by-product from the network
    The goods receipt of a by-product usually refers to a network, but can be entered without reference.
    If a component is entered with a negative quantity in the network, a reservation is created with 581 (instead of 281 ). The receipt of a by-product can be entered during the withdrawal for the network or as an 'other goods receipt'.
    Possible special stock indicators:
    E, Q
    601 Goods issue for delivery (Shipping)
    In Shipping, this movement type is created automatically with the Goods issue for delivery function.
    The quantity is taken from unrestricted-use stock.
    Possible special stock indicators:
    E, K, Q
    603 Goods issue for stock transport order (Shipping) with additional
    item
    If you issue goods for a stock transport order in Shipping using movement type 641, you can use this movement type to assign an extra item to the order.
    The ordered material is transferred to the stock in transit of the receiving plant. The material for the additional item is transferred from unrestricted-use stock in the issuing plant to stock in transfer in the receiving plant.
    You can also use this movement type without referencing a purchase order.
    Possible special stock indicators:
    None
    See also: 303, 641
    605 Goods receipt for a stock transport order (Shipping) with
    additional item
    You can use this movement type to transfer into unrestricted-use stock the material you posted into stock in transfer in the receiving plant using movement type 603. You post the goods movement with reference to the purchase order (if available) or the delivery.
    Possible special stock indicators:
    None
    See also: 305 and 641
    621 Transfer posting unrestricted-use - returnable packaging (Shipping)
    The quantity is transferred from unrestricted-use stock to the returnable packaging stock at customer.
    Possible special stock indicators:
    none
    623 Goods issue from returnable packaging stock at customer (Shipping)
    This quantity is withdrawn from unrestricted-use returnable packaging stock at the customer.
    Possible special stock indicators:
    V
    631 Transfer posting unrestricted use - customer consignment stock (Shipping)
    The quantity is transferred from unrestricted-use stock to consignment stock at customer.
    Possible special stock indicators:
    E, Q
    633 Goods issue from customer consignment (Shipping)
    The quantity is withdrawn from unrestricted-use consignment stock at the customer.
    Possible special stock indicators:
    W
    641 Goods issue for a stock transport order (Shipping)
    The quantity is transferred using a delivery in Shipping from unrestricted-use stock of the issuing plant to stock in transit of the receiving plant.
    The goods receipt for the stock transport order takes place using movement type 101 and can, if required, refer to the purchase order or to the delivery. If a purchase order item is flagged as a returns item in the stock transport order, you can post the goods receipt of the returns in the issuing plant with movement type 671.
    Possible special stock indicators:
    E, Q
    For the special stock indicators E and Q and for purchase orders assigned to an account, you must ensure that the quantity is not posted to the stock in transit of the receiving plant.
    See also: 351, 643, 671
    643 Goods issue for a cross-company
    stock transport order (Shipping)
    It is used only for cross-company stock transport orders with SD billing and invoice. The quantity is withdrawn from the unrestricted-use stock of the issuing plant. No stock in transit is created here. In the second step, the goods receipt must be entered in the receiving plant. If a purchase order item is flagged as a returns item in the stock transport order, you can post the goods receipt of the returns in the issuing plant with movement type 673.
    Possible special stock indicators:
    E
    See also: 351, 641, 673
    645 Goods issue for a cross-company
    stock transport order in one step (Shipping)
    Unlike movement type 643 when a goods issue is posted using movement type 645, a goods receipt line is generated automatically 101). If a purchase order item is flagged as a returns item in the stock transport order, you can post the goods receipt of the returns in the issuing plant with movment type 675.
    Possible special stock indicators:
    E
    See also: 675
    647 Goods issue for a stock transport order in one step
    (Shipping)
    Unlike movement type 641 when a goods issue is posted using movement type 647, a goods receipt line (movement type 101) is generated automatically in the receiving plant. If a purchase order item is flagged as a returns item in the stock transport order, you can post the goods receipt of the returns in the issuing plant with movement type 677.
    Possible special stock indicators:
    E, Q
    See also: 677
    651 Returns from customer (Shipping)
    Using movement type 651, you post returns from a customer with a return delivery in Shipping to blocked stock returns.
    Possible special stock indicators:
    None
    See also: 451, 453, 653
    653 Returns from customer (Shipping) to unrestricted-use stock
    With this movement type you post returns from the customer with returns delivery via Shipping directly to the valuated stock.
    Possible special stock indicators:
    E
    See also: 451, 453, 651
    655 Returns from customer (Shipping) to stock in quality inspection
    With this movement type you post returns from the customer with returns delivery via Shipping directly to the valuated stock.
    Possible special stock indicators:
    E
    See also: 451, 453, 651
    657 Returns from customer (Shipping) to blocked stock
    With this movement type you post returns from the customer with returns delivery via Shipping directly to the valuated stock.
    Possible special stock indicators:
    E
    See also: 451, 453, 651
    661 Returns to vendor via Shipping
    As with movement type 502, a return delivery to the vendor is entered without reference to the purchase order, but the goods issue is posted via a delivery in Shipping.
    Possible special stock indicators:
    E
    671 Returns for stock transport order via Shipping
    If a purchase order item is marked as a returns item in a stock transport order using movement type 641 when a goods receipt for a stock transport order ( 101) is posted, the return is posted to stock in transit using movement type 161. When the return arrives, the issuing plant posts the goods receipt for the return using movement type 671. Movement type 671 (like movement types 352 and 642) reduces the receiving plant's stock in transit and increases the issuing plant's unrestricted-use stock.
    Possible special stock indicators:
    E, Q
    673 Returns for cross-company stock transport order
    (Shipping)
    If you post a goods issue for a cross-company stock transport order with returns items using movement type 643 via Shipping, the returns are transferred to unrestricted-use stock in the issuing plant in a second step using movement type 673.
    Possible special stock indicators:
    None
    See also: 643
    675 Returns for cross-company stock transport order
    (Shipping) in one step
    If you use movement type 645 to post a goods issue for a cross-company stock transport order with returns items in one step, the returns are transferred to unrestricted-use stock in the issuing plant using movement type 161 in the receiving plant and movement type 675 in the issuing plant.
    Possible special stock indicators:
    None
    See also: 645
    677 Returns for stock transport order in one step (Shipping)
    If you use movement type 647 to post a goods issue for a stock transport order with returns items in one step, the returns are transferred to unrestricted-use stock in the issuing plant using movement type 161 in the receiving plant and movement type 677 in the issuing plant.
    Possible special stock indicators:
    E, Q
    See also: 647
    701 Inventory differences in unrestricted-use stock (MM-IM)
    This movement is generated automatically during inventory difference posting in Inventory Management.
    Possible special stock indicators:
    E, K, M, O, Q, V, W
    703 Inventory differences in quality inspection stock (MM-IM)
    This movement is generated automatically during inventory difference posting in Inventory Management.
    Possible special stock indicators:
    E, K, M, O, Q, V, W
    707 Inventory differences in blocked stock (MM-IM)
    This movement is generated automatically during inventory difference posting in Inventory Management.
    Possible special stock indicators:
    E, K, M, Q
    711 Inventory differences in unrestricted-use stock (LE-WM)
    This movement is generated automatically when you post inventory differences in the Warehouse Management System.
    Possible special stock indicators:
    E, K, M, Q
    713 Inventory differences in quality inspection stock (LE-WM)
    This movement is generated automatically when you post inventory differences in the Warehouse Management System.
    Possible special stock indicators:
    E, K, M, Q
    715 Inventory differences in blocked stock returns (LE-WM)
    This movement is generated automatically when you post inventory differences in the Warehouse Management System.
    Possible special stock indicators:
    None
    717 Inventory differences in blocked stock (LE-WM)
    This movement is generated automatically when you post inventory differences in the Warehouse Management System.
    Possible special stock indicators: E, K, M, Q
    721 - Sales value receipt - not affecting margins (Retail)
    The movement is generated automatically when the sales price of a value-only material is changed (total sales price revaluation on the posting date).
    Possible special stock indicators:
    None
    731 - Sales value receipt - affecting margins (Retail)
    The movement is generated automatically when the sales price of a value-only material is changed (partial sales price revaluation on the posting date).
    Possible special stock indicators:
    None
    Reward points if useful
    Regards,
    Amrish Purohit

  • Movement   types  from  sd  point of view

    does somebody have a list of movement  types   and   some  document   explaining  what  movement types  are  meant for   what?  from  sd  point of  view
    thank
    s.r.c
    [email protected]

    Movement types
    Any movement of stock in SAP has a movement type , u can see the movement types in  T:code: OMJJ
    As such a movement type is not directly related to any order type. But the combination of
    order type + item category group ==> item category
    now
    item category + MRP type ( from mat master) --- > Schedule line category.
    The movement type is linked with schedule line category. As a thumb rule all Movement types from 601 to 699 belong purely to SD.
    If u want to c the movement type related to that particular order go with the following path.
    Hit the icon 'schedule line for the item' , in the following screen hit 'procurement push button' there u will find the movement type.
    For each material movement, the system uses the movement type to determine the rules for updating the stock quantities and the stock values in the relevant G/L accounts.
    http://help.sap.com/saphelp_40b/helpdata/ru/fc/6cec6eb435d1118b3f0060b03ca329/content.htm
    601 Goods issue for delivery (Shipping)
    In Shipping, this movement type is created automatically with the Goods issue for delivery function.
    The quantity is taken from unrestricted-use stock.
    Possible special stock indicators:
    E, K, Q
    603 Goods issue for stock transport order (Shipping) with additional
    item
    If you issue goods for a stock transport order in Shipping using movement type 641, you can use this movement type to assign an extra item to the order.
    The ordered material is transferred to the stock in transit of the receiving plant. The material for the additional item is transferred from unrestricted-use stock in the issuing plant to stock in transfer in the receiving plant.
    You can also use this movement type without referencing a purchase order.
    Possible special stock indicators:
    None
    See also: 303, 641
    605 Goods receipt for a stock transport order (Shipping) with
    additional item
    You can use this movement type to transfer into unrestricted-use stock the material you posted into stock in transfer in the receiving plant using movement type 603. You post the goods movement with reference to the purchase order (if available) or the delivery.
    Possible special stock indicators:
    None
    See also: 305 and 641
    621 Transfer posting unrestricted-use - returnable packaging (Shipping)
    The quantity is transferred from unrestricted-use stock to the returnable packaging stock at customer.
    Possible special stock indicators:
    none
    623 Goods issue from returnable packaging stock at customer (Shipping)
    This quantity is withdrawn from unrestricted-use returnable packaging stock at the customer.
    Possible special stock indicators:
    V
    631 Transfer posting unrestricted use - customer consignment stock (Shipping)
    The quantity is transferred from unrestricted-use stock to consignment stock at customer.
    Possible special stock indicators:
    E, Q
    633 Goods issue from customer consignment (Shipping)
    The quantity is withdrawn from unrestricted-use consignment stock at the customer.
    Possible special stock indicators:
    W
    641 Goods issue for a stock transport order (Shipping)
    The quantity is transferred using a delivery in Shipping from unrestricted-use stock of the issuing plant to stock in transit of the receiving plant.
    The goods receipt for the stock transport order takes place using movement type 101 and can, if required, refer to the purchase order or to the delivery. If a purchase order item is flagged as a returns item in the stock transport order, you can post the goods receipt of the returns in the issuing plant with movment type 671.
    Possible special stock indicators:
    E, Q
    For the special stock indicators E and Q and for purchase orders assigned to an account, you must ensure that the quantity is not posted to the stock in transit of the receiving plant.
    See also: 351, 643, 671
    643 Goods issue for a cross-company stock transport order (Shipping)
    It is used only for cross-company stock transport orders with SD billing and invoice. The quantity is withdrawn from the unrestricted-use stock of the issuing plant. No stock in transit is created here. In the second step, the goods receipt must be entered in the receiving plant. If a purchase order item is flagged as a returns item in the stock transport order, you can post the goods receipt of the returns in the issuing plant with movment type 673.
    Possible special stock indicators:
    E
    See also: 351, 641, 673
    645 Goods issue for a cross-company
    stock transport order in one step (Shipping)
    Unlike movement type 643 when a goods issue is posted using movement type 645, a goods receipt line is generated automatically 101). If a purchase order item is flagged as a returns item in the stock transport order, you can post the goods receipt of the returns in the issuing plant with movment type 675.
    Possible special stock indicators:
    E
    See also: 675
    647 Goods issue for a stock transport order in one step
    (Shipping)
    Unlike movement type 641 when a goods issue is posted using movement type 647, a goods receipt line (movement type 101) is generated automatically in the receiving plant. If a purchase order item is flagged as a returns item in the stock transport order, you can post the goods receipt of the returns in the issuing plant with movement type 677.
    Possible special stock indicators:
    E, Q
    See also: 677
    651 Returns from customer (Shipping)
    Using movement type 651, you post returns from a customer with a return delivery in Shipping to blocked stock returns.
    Possible special stock indicators:
    None
    See also: 451, 453, 653
    653 Returns from customer (Shipping) to unrestricted-use stock
    With this movement type you post returns from the customer with returns delivery via Shipping directly to the valuated stock.
    Possible special stock indicators:
    E
    See also: 451, 453, 651
    655 Returns from customer (Shipping) to stock in quality inspection
    With this movement type you post returns from the customer with returns delivery via Shipping directly to the valuated stock.
    Possible special stock indicators:
    E
    See also: 451, 453, 651
    657 Returns from customer (Shipping) to blocked stock
    With this movement type you post returns from the customer with returns delivery via Shipping directly to the valuated stock.
    Possible special stock indicators:
    E
    See also: 451, 453, 651
    661 Returns to vendor via Shipping
    As with movement type 502, a return delivery to the vendor is entered without reference to the purchase order, but the goods issue is posted via a delivery in Shipping.
    Possible special stock indicators:
    E
    671 Returns for stock transport order via Shipping
    If a purchase order item is marked as a returns item in a stock transport order using movement type 641 when a goods receipt for a stock transport order ( 101) is posted, the return is posted to stock in transit using movement type 161. When the return arrives, the issuing plant posts the goods receipt for the return using movement type 671. Movement type 671 (like movement types 352 and 642) reduces the receiving plant's stock in transit and increases the issuing plant's unrestricted-use stock.
    Possible special stock indicators:
    E, Q
    673 Returns for cross-company stock transport order
    (Shipping)
    673.
    Possible special stock indicators:
    675 Returns for cross-company stock transport order
    (Shipping) in one step
    677 Returns for stock transport order in one step (Shipping)

Maybe you are looking for

  • Cadastro de Empresa como Fornecedor e Centro

    Prezados, Estou com um problema com relação à criação de Fornecedor para Empresa e atrelamento de Centro: Cenário: Tenho 1 Empresa onde a mesma tem um Grupo de Contas para Fornecedor e outra pra Centro. Empresa: 1000 Grupo de Contas Transferência : T

  • Dual Display Issues, Mini Display Cable, Firewire, USB, Nothing Works

    I am working on a project for my supervisor, the specifics of each machine are listed below to the best of my ability: Machine 1: iMac9,1 Intel Core 2 Duo Version: 10.6.8 Build: 10K549 Machine 2: iMac10,1 Intel Core 2 Duo Version: 10.6.8 Build:10K549

  • Log management - Oracle PIM

    In the development and production environment, log management has been enabled for many of the functionalities and for most of the users. Hence due to this there are lot of log files created (also being created) and ending up occupying huge space. I

  • Possible to select one of two wireless routers preferentially?

    I have two routers in my home because the signal strength doesn't reach the whole house. Often my laptop will connect to the more distant router with a weaker (slower) signal. Is there a way that I can configure my connection to prefer one router ove

  • Could not download the ordered file after five attaempts due to network problem

    Hi, Could not download the ordered file after five attaempts due to network problem. Help required. Regards, Nilesh Shah.