Background posting in MIGO using 501 E movement type

Hi  Experts,
         I do have a requirement in which I have to post excess quantity to same batch , storage location and under same grid value by movement  type 501 E after posting with 101 movement type is done.
I do need that after creation of a PO .
   I have to do MIGO ,GR wrt PO by movement type 101.
Let PO Quantity(goitem-bsmng) be 100.
But when entered  quantity in delivery note(150 ) is more than over delivery PO  tolerance quantity(110) ,
then 110 should be posted as under movement type 101
and remaining 40 quantity should be posted to same storage location , batch and grid value under movement type 501 E and that too in background.
Any  one if face the same situation , please help me out.
Thanx ,
Jeet
Moderator message : Spec dumping not allowed. Thread locked.
Edited by: Vinod Kumar on Jul 25, 2011 4:51 PM

nilupriya wrote:
Hi Experts,
>
> Can you please brief me about the Accounting doc while using the 311 movement type. if there is involve the split valutation in internal purpose or external purpose.
>
> Regards
Hi Nilu,
See that Mvt 311 is trf betwn st.loc to st.loc, where the goods are not leaving any valuation area, hence there's no value change, which means Accounting Documents are not created as they are not necessary.
Hope its clear
Shiva

Similar Messages

  • MIGO Goods Receipt multiple Movement Types?

    Hi,
    Is it possible with MIGO Goods Receipt using Inbound Deliveries to have multiple movement types? the reason I ask is I am getting the following error 'BORGR622 Movement Type XXX not allowed; only 101 is allowed' when trying to receipt a Line no. with different Movement Type to the earlier lines.
    We do have the same problem if we receipt in MIGO Goods Receipt directly to the Purchase Order, we can happily post a document which has the normal '101' movement type and another Custom movement type.
    The reason for the requirement is to do with Account Determination, we have free bonus goods lines which are zero price on the purchase order - the price difference gets posted to a bonus stock account instead of the usual price difference account, by using a Custom Movement Type - the bonus stock agreement (kind of like BOGOFs Buy One get one free) is passed to the Customer with similar account determination updating the same bonus stock account.
    This works fine for MIGO receipt directly with the Purchase Order but we get the error message above with Inbound Deliveries.
    I cannot see anywhere obvious in config which might sort this issue, but am unsure why multiple movement types on a Goods Receipt would be allowed against a Purchase Order but not an Inbound Delivery.

    Hi,
    Try with the below mentioned settings,
    goto SPRO -> Materials Management -> Inventory Management & Physical Invetory -> Settings for enjoy transactions -> Settings for good movements(MIGO) -> Settings for transactions & reference documents -> select MIGO_GR -> Click on transaction/event -> select goods receipt -> click on reference documents -> remove the tick mark on active.
    Regards,
    Prabu

  • Hide/Suppress Cost center field in MIGO and MB1A for movement types 551&552

    Hi All,
    Can anybody tell me how to suppress or hide the cost center field in MIGO or MB1A for movement types 551 and 552?
    I did below settings and it worked fine for only MB1A and for MIGO still it is showing cost center field.
    IMG > Materials Management > Inventory Management and Physical Inventory >Goods Issue/Transfer posting > Define screen layout > select movement type to change the option.
    Also I did gothrough the settings for Enjoy transaction (MIGO) there we have only option to make fields either  "Required entry" or "Optional entry" and we don't have an option to hide/suppress.
    Please advise or help me .
    Thanks in advance!
    Regards,
    Praveen

    Hi
    The cost center field is a required field in mvt type 551 as you are scrapping materials, some cost center will need to take the cost of this operation.
    Anyway, you first need to make the field as optional for example, before you move.
    One option is that you create a screen variant in Tcode SHD0 for MB1A, where 551 is setup as constant (with content) , and mark Cost center as invisible and assign this screen variant to a transaction in SE93.
    regards
    Sidi

  • Error while using BAPI_GOODSMVT_CREATE wiht movement type 311.

    Hi All experts,
    i am geting error msg, while using BAPI_GOODSMVT_CREATE wiht movement type 311.
    the error msg is " For reservation 0000443815 0000, no movements can be posted".
    Here is my code.
    IF I_ZMM_S_MBIB_LOT[] IS NOT INITIAL.
    *moving posting date and document date  to header
        GOODSMVT_HEADER-PSTNG_DATE = ZMM_S_MBIB_311-BUDAT.
        GOODSMVT_HEADER-DOC_DATE   =  ZMM_S_MBIB_311-BUDAT.
        LOOP AT I_ZMM_S_MBIB_LOT WHERE MENGE NE '0'.
          IF I_ZMM_S_MBIB_LOT-IND = 'X'.
    *moving material and plant ,stge_loc,qty and movement type  to header
            GOODSMVT_ITEM-MATERIAL       = I_ZMM_S_MBIB_LOT-MATNR.
            GOODSMVT_ITEM-PLANT          = I_ZMM_S_MBIB_LOT-WERKS.
            GOODSMVT_ITEM-BATCH          =  I_ZMM_S_MBIB_LOT-CHARG.
            GOODSMVT_ITEM-STGE_LOC       = I_ZMM_S_MBIB_LOT-SLGORT.
            GOODSMVT_ITEM-MOVE_TYPE      = '311'.
            GOODSMVT_ITEM-ENTRY_QNT      = I_ZMM_S_MBIB_LOT-MENGE.
            GOODSMVT_ITEM-ENTRY_UOM      = I_ZMM_S_MBIB_LOT-MEINS.
            GOODSMVT_ITEM-MOVE_MAT       = I_ZMM_S_MBIB_LOT-MATNR.
            GOODSMVT_ITEM-MOVE_PLANT     = I_ZMM_S_MBIB_LOT-RWERKS.
            GOODSMVT_ITEM-MOVE_BATCH     = I_ZMM_S_MBIB_LOT-UMCHA.
            GOODSMVT_ITEM-MOVE_STLOC     = I_ZMM_S_MBIB_LOT-UMLGO.
            GOODSMVT_ITEM-RESERV_NO      = I_ZMM_S_MBIB_LOT-RSNUM.
    CALL FUNCTION 'BAPI_GOODSMVT_CREATE'
            EXPORTING
              GOODSMVT_HEADER               = GOODSMVT_HEADER
              GOODSMVT_CODE                 = '04'
          TESTRUN                       = ' '
          GOODSMVT_REF_EWM              =
            IMPORTING
          GOODSMVT_HEADRET              =
              MATERIALDOCUMENT              = MATERIALDOCUMENT
              MATDOCUMENTYEAR               = MATDOCUMENTYEAR
            TABLES
              GOODSMVT_ITEM                 = GOODSMVT_ITEM
          GOODSMVT_SERIALNUMBER         =
              RETURN                        = RETURN.
          GOODSMVT_SERV_PART_DATA       =
          EXTENSIONIN                   =
        ELSE.
    Moderator message: duplicate post locked.
    Edited by: Thomas Zloch on Feb 23, 2011 11:46 AM

    Hi Sachin,
    Pass the Item Number of Reservation to GOODSMVT_ITEM-RES_ITEM .
    Regards
    DKS

  • Error while posting batch managed stock in 107 movement type?

    Hi All,
    Error while posting batch managed stock in 107 movement type in MIGO, like 'Goods movement not possible with mvmt type 107'
    and here in batch tab batch number is not displaying only valuation type is displaying, kindly let me know can it be done by doing any change in field selection with respect to 107 movement type
    regards,
    Sanjana

    Hi,
    spro-inventory management-setting for enjoy transaction-setting for goods mvt--field selection per mvt type
    107     SGTXT
    107     WEMPF
    Check here 107 mvt type there or not if not then put.
    101     CUSTNAME
    101     GRUND
    101     SGTXT
    101     WEMPF
    102     SGTXT
    102     WEMPF
    103     SGTXT
    103     WEMPF
    104     SGTXT
    104     WEMPF
    105     SGTXT
    105     WEMPF
    106     SGTXT
    106     WEMPF
    107     SGTXT
    107     WEMPF
    108     SGTXT
    108     WEMPF
    109     SGTXT
    109     WEMPF
    110     SGTXT
    110     WEMPF
    Regards
    Rakesh

  • MB11/MB1C/MB1B post GL entry for tax for movement type 561 initial stock

    Hi,
    We want to bring in stock into new system using movement type 561. The usual account posting is:
    Debit stock
      Credit account in OBYC GBB
    How can I add additional tax posting in the transaction? For e.g.
    Debit stock
    Debit input tax
      Credit account in OBYC GBB
    I tried to open up the Tax Code in the movement type field status but it doesn't show up in any of MB11/MB1C/MB1B.
    Any customized BAdI/user-exit for this?
    Any suggestions?
    Thanks in advance for help!

    hi,
    you cant update the tax account directly using the 561 mov type.
    please find below the link for more clarifications regarding the tax accounts.
    http://forums.sdn.sap.com/thread.jspa?threadID=2126200
    Regards,
    velu

  • Posting the account doc for the movement type 311

    Hi Experts,
    Can you please brief me about the Accounting doc while using the 311 movement type. if there is involve the split valutation in internal purpose or external purpose.
    Regards

    nilupriya wrote:
    Hi Experts,
    >
    > Can you please brief me about the Accounting doc while using the 311 movement type. if there is involve the split valutation in internal purpose or external purpose.
    >
    > Regards
    Hi Nilu,
    See that Mvt 311 is trf betwn st.loc to st.loc, where the goods are not leaving any valuation area, hence there's no value change, which means Accounting Documents are not created as they are not necessary.
    Hope its clear
    Shiva

  • Accounts used in a movement type.

    Hi Experts,
    We want to how a way or a transaction to find what account are using in a movement type. In the program RM07CUFA through the transaction SE38, we can see all accounts that can use with this movement but not the really accounts that are using.
    Thank you in advance.
    Best regards.

    Use OMWB tcode
    the popup screen hit cancel and then you will see the screen
    here select simulation button and enter material, plant then hit account assignment you will see the accounts

  • Excise invoice created using J1IS and movement type  122

    Hello
    Can you please suggest whether we need to run J2IUN for the following process in order to show the debit entries in extracted RG23A PART2 register.
    1. Returning the material with refernce to the original Goods receipt document (101) using MIGO movement type 122. Original GR document posted with capture and Post excise option.
    2. Creaqting the Excise inoivce using J1IS with reference to material document created in Step 1
    3. Releasing to accounting/ Posting the excise invoice in J1IV.
    4. Extracting the Register RG23A PART 2 using J2I5
    5. Print excise register using J2I6....But the debit entry not shown in register
    Can you please confirm whether the debit entries in register will be updated after the Montly utilization J2IUN run ( as this process is a indirect sale process)
    Please confirm
    warm regards
    Ramakrishna.

    Hi Rama,
    The accounting entries for 122 is as per standard.
    for the excise invoice
    Cenvat Clearing         Dr.     
    Cenvat Account        Cr.
    for utilization
    Cenvat payable          Dr.
    Cenvat Account         Cr.
    PLA Account              Cr.
    and for MIRO it would be the standard.
    you can refer the note 542862 for cin related accounting entries.
    let me know if this helps you.
    regards,
    Adwait Bachuwar
    Edited by: adwait bachuwar on Dec 21, 2010 2:21 PM

  • Stk posting change for Material received in movement type 101

    Experts,
    A material received in Mov type:101 / Inspection type : 01 and rejected during Inspection was posted in To Reserves instead of Return Delivery.
    How to change the posting to Return delivery stock from Reserves stock.
    Regards,
    RPV.

    Dear,
    First check reservation is created against reserv stock of material.
    You can check reservation with MB23.
    If yes than delete it first and than create return delivery for material with MIGO.
    Regards,
    Mahesh Wagh.

  • Use a different movement type for Scrap in Production Order Confirmation

    Hello gurus. I have the following question.
    Is it possible to have the "Scrap" quantity during Production confirmation in a separate movement type?
    Currently, when I type in the "Yield" and "Scrap" quantities, both of them are summarized into one backflush line under Movement Type 261. So for example: Yield: 10 pieces and Scrap 5 pieces; I only get one Goods Movement for 15 pieces with MvT 261.
    The requirement is that whatever is typed under "Scrap" goes on a different movement type (e.g. 551), because then it will be easy to follow (inventory-wise) how many pieces were used in production and how many were scrapped.
    Is it possible?

    Thanks for your reply Krishna.
    Well, I notice that when I type a quantity in the "Scrap" field, the difference with "Yield" is that I simply don't get the produced material on stock (in the case of the last operation with a GR for instance). I just get the backflushed quantity.
    But yes, I guess in this transaction, I'm scrapping the produced material, the components are still issued. I was just wondering if perhaps they could be split in 261 for normal backflush and 551 for backflush that didn't generate any finished assembly.
    Thanks for your insight.

  • Use of WM movement types

    Hello Team,
    1) I would like to know the use of below WM movement types
    91     Putaway pre-pick. HU
    92     Remove HU from Stock
    93     GR handling unit
    94     GI handling unit
    99     Repack
    2) Also the Storage type 923
    Especially would like to in which scenarios do we use them.
    Thanks for your kind answer.

    Hi
    The below movt types are usefull in VAS scenarios, ie, Value Added Services. 923 is the movt type used when you issue the material to VAS workcenter.
    Rgds
    Ramesh

  • Movement type 101 Q is not planned. (Entry is not copied over)

    Hi,
    I have created a purchase order with account assignment to WBS element.
    While i am trying to create migo using 101 Q movement type, i get the following error.
    "Movement type 101 Q is not planned. (Entry is not copied over)"
    if i post the migo using only 101 (without mentioning Q), project stock is not shown.
    Please help me create a GRN with project stock.
    Cheers!
    AUN

    hI,
    check whether below link useful or not.
    Movement type 101 Q is not planned. (Entry is not copied over)

  • The movement type 261 is greyed out in MIGO

    HI Experts,
    We have a scenario where we want to use the copy of movement type 261 to post goods issue against a process order. In MIGO even if I change it in the initial screen and execute, system takes only 261. System is not allowing to change it in the tab "Where". The field for mvt type in this tab is greyed out.
    But we have created a movement type to post the goods receipt which is copy of 101. This is working fine. System takes this movement type when we enter it in the initial screen and copies to the tab where.
    How to solve this issue?
    Request your expert advice.
    Regards
    Prathib

    Hi Ajit,
    Thanks for the reply. Here the issue is we wanted to use the customized movement type only for a particular type of order. For all the other order we should use 261 only.
    I dont think this can be done through standard SAP. Is there any user exit or BADI for the same?
    Please let me know.
    Thanks & Regards
    Prathib

  • Regarding inboundIDOC for posting movement type 701-708 in inventorymgnt

    Hi ,
    I am trying to find the SAP inbound Idoc that is used to post inventory adjustment in SAP ( For Movement type 701-708) in IM .. please guide and also the required field so that i can test it through WE19..
    Thanks
    Rahul

    try a small search with key words:  +physical +inventory +idoc
    you will get 3 hits from last 90 days, one mentions the idoc.

Maybe you are looking for