Lot Size Check at Good Receipt in MIGO

How can I check lot sizes at the point of GR within MIGO? (as oppose to qty tolerances).
Example, if my lot size is 100 and I raise a PO for 100 at the GR is for qty 80 (i.e not a complete lot size, which could mean a split pack) how can I get the system to produce an error message?
Thanks in advance.

Hi,
U can use Shipping Instruction which is there in Purchasing Value Key(Purchasig View). Using this while GR u can give some points for Complete supply or Partial Supply.
This is for tracking of partial supply and u can aslo this info. for vendor evaluation..
Regards,
Rajeev

Similar Messages

  • Attach document while Goods receipt in MIGO

    Hi,
    Can I attach a word or a pdf document while posting Goods receipt via MIGO.
    In 'Service for Object' the option  store document is not possible. It is grey out.
    Do I need to do some settings to get this option so as to upload a file while posting the GR.
    I am able to get the option while create/change PO but not in MIGO.
    Regards

    Hi!
    To attach business documents in MIGO you have to do a little bit customizing first...
    In OAC0 check if a content repository is available.
    In OAC2 enter the document type you want to attach
    In OAC3 enter object type BUS2017 with your document type, content repository etc.
    You can attach documents only after the posting because until then SAP has no fix document number which is the key/link to the document. So display the posted material document again and then you can attach the business document.
    Greeting

  • Short Dump While Printing Good Receipt Using MIGO

    I have copied standard program /SMB40/M07DR for printing Goods Receipt from MIGO for a purchase order.
    I am getting a dump: ST22  (POSTING_ILLEGAL_STATEMENT)
    Error analysis
        There is probably an error in the program
        "SAPLKKBL".
        This program is triggered in the update task . there, the
        following ABAP/4 statements are not allowed.
        -  CALL SCREEN
        -  CALL DIALOG
        -  CALL TRANSACTI
        -  SUBMIT
    Looked for many SAP NOTES but no luck.

    When i check the short DUMP in ST22 , it gave me this information ..!!!!
    error analysis
    There is probably an error in the program
    "SAPLKKBL".
    This program is triggered in the update task. There, the
    following ABAP/4 statements are not allowed:
    -  CALL SCREEN
    -  CALL DIALOG
    -  CALL TRANSACTION
    -  SUBMIT
    How to correct the error
        Probably the only way to eliminate the error is to correct the program.
        If the error occures in a non-modified SAP program, you may be able to
        find an interim solution in an SAP Note.
        If you have access to SAP Notes, carry out a search with the following
        keywords:
        "POSTING_ILLEGAL_STATEMENT" " "
        "SAPLKKBL" or "LKKBLU01"
        "K_KKB_LIST_DISPLAY"

  • Changing the G/L Account while Posting the Goods Receipts in MIGO

    Hi All,
    I have requirement in which G/L Account needs to be changed based on some validation while Posting the Goods Receipt in MIGO.
    I have created exit in OBBH by copying the standard SAP Program RGGBS800 in view V_T80D.
    I changed following entry in view V_T80D:
    GBLS     ZGGBS800     Val/sub:Exits for substitution
    Now Inside program ZGGBS800, I have written the logic to change the BSEG-HKONT value with the new G/L Account which gets called inside the standard function module G_VSR_SUBSTITUTION_CALL.
    FORM U999.
       DATA : V_HKONT TYPE BSEG-HKONT.
       clear : V_HKONT.
       SELECT SINGLE SAKNR FROM ZMASH1 INTO V_HKONT WHERE MATNR = BSEG-MATNR AND WERKS = BSEG-WERKS.
         IF SY-SUBRC EQ 0.
           BSEG-HKONT = V_HKONT.
         ENDIF.
    ENDFORM.
    After the execution of the above code the value of BSEG-HKONT changes with new value of V_HKONT but after this when I go further in Standard SAP code of function module G_VSR_SUBSTITUTION_CALL, there is one subroutine FORM EXP_TAB_009_BSEG  being called which changes the value of BSEG-HKONT to initial value of HKONT also while moving the data from BSEG to TEMP_STRUCT it doesn't passes the HKONT value, which I want it be passed as I want the changed value to be passed finally to OUT_RESULT. Please look at the code below.
    Following is the SAP standard code of subroutione FORM EXP_TAB_009_BSEG :
    FORM EXP_TAB_009_BSEG
             USING
               IN_ORIG STRUCTURE        BSEG
            CHANGING
               OUT_RESULT STRUCTURE     BSEG
               B_RESULT.
      DATA:  ORIG LIKE BSEG.
      DATA:  BEGIN OF TEMP_STRUCT,
             ABPER                          LIKE   BSEG-ABPER,
             AUGGJ                          LIKE   BSEG-AUGGJ,
             DOCLN                          LIKE   BSEG-DOCLN,
             FIPOS                          LIKE   BSEG-FIPOS,
             FISTL                          LIKE   BSEG-FISTL,
             FKBER                          LIKE   BSEG-FKBER,
             FKBER_LONG                     LIKE   BSEG-FKBER_LONG,
             GEBER                          LIKE   BSEG-GEBER,
             GMVKZ                          LIKE   BSEG-GMVKZ,
             GRANT_NBR                      LIKE   BSEG-GRANT_NBR,
             HKTID                          LIKE   BSEG-HKTID,
             HZUON                          LIKE   BSEG-HZUON,
             INTRENO                        LIKE   BSEG-INTRENO,
             MEASURE                        LIKE   BSEG-MEASURE,
             PARGB                          LIKE   BSEG-PARGB,
             PPA_EX_IND                     LIKE   BSEG-PPA_EX_IND,
             PPRCT                          LIKE   BSEG-PPRCT,
             PRCTR                          LIKE   BSEG-PRCTR,
             PRODPER                        LIKE   BSEG-PRODPER,
             PRZNR                          LIKE   BSEG-PRZNR,
             PSEGMENT                       LIKE   BSEG-PSEGMENT,
             SAMNR                          LIKE   BSEG-SAMNR,
             SCTAX                          LIKE   BSEG-SCTAX,
             SEGMENT                        LIKE   BSEG-SEGMENT,
             SGTXT                          LIKE   BSEG-SGTXT,
             SRTYPE                         LIKE   BSEG-SRTYPE,
             UZAWE                          LIKE   BSEG-UZAWE,
             XREF1                          LIKE   BSEG-XREF1,
             XREF2                          LIKE   BSEG-XREF2,
             XREF3                          LIKE   BSEG-XREF3,
             ZUONR                          LIKE   BSEG-ZUONR,
             ZZBUSPARTN                     LIKE   BSEG-ZZBUSPARTN,
             ZZCHAN                         LIKE   BSEG-ZZCHAN,
             ZZLOB                          LIKE   BSEG-ZZLOB,
             ZZLOCA                         LIKE   BSEG-ZZLOCA,
             ZZPRODUCT                      LIKE   BSEG-ZZPRODUCT,
             ZZREGION                       LIKE   BSEG-ZZREGION,
             ZZSPREG                        LIKE   BSEG-ZZSPREG,
             ZZSTATE                        LIKE   BSEG-ZZSTATE,
             ZZUSERFLD1                     LIKE   BSEG-ZZUSERFLD1,
             ZZUSERFLD2                     LIKE   BSEG-ZZUSERFLD2,
             ZZUSERFLD3                     LIKE   BSEG-ZZUSERFLD3,
             END OF TEMP_STRUCT.
      IF IN_ORIG = BSEG .
        B_RESULT = B_FALSE.
        OUT_RESULT = IN_ORIG.
        EXIT.
      ENDIF.
      MOVE-CORRESPONDING BSEG TO TEMP_STRUCT.
      OUT_RESULT = IN_ORIG.
      MOVE-CORRESPONDING TEMP_STRUCT TO OUT_RESULT.
      IF IN_ORIG = OUT_RESULT .
        B_RESULT = B_FALSE.
      ELSE.
        B_RESULT = B_TRUE.
      ENDIF.
      BSEG = OUT_RESULT.
    ENDFORM.                               " EXP_TAB_009_BSEG
    I need the value of BSEG-HKONT should be passed to OUT_RESULT-HKONT.
    I am not able to find any userexit or BADI for this.
    Please guide me on this.
    Thanks,
    Chandravadan
    Edited by: Chandravadan Jaiswal on May 8, 2009 2:18 PM
    Edited by: Chandravadan Jaiswal on May 8, 2009 3:45 PM

    Hi
    I also need to change hkont while posting MIGO and MIRO transaction..
    Any suggestion for this?
    Here's my problem.. Substitution of account(HKONT) when posting in MIGO/MIRO

  • Function module to check whether Goods Receipt of a Purchase Order is done.

    Hi,
    Is there any function module to check whether Goods Receipt of a Purchase Order is already done?
    Taking into consideration reversals.
    Thanks.

    Hi,
    I think u can do this by using a simple select query.
    u have to go in EKBE table.
    put the PO no. in field EBELN + EBELP(line item)  and get the material docuement no.  in field BELNR + BUZEI(line item).
    Thanks
    Jitendra

  • Hitting error when post goods receipt in MIGO

    Dear SAP Gurus and Expert
    Kindly advice what config or setting need to be done when the post good receipt in MIGO hit the error of "Acct. 81110140 for trans. /ev. key ANL, is not a control account".
    Thank you
    Regards
    Leonard Tan

    Hi
    http://wiki.sdn.sap.com/wiki/display/B1/SAPBusinessOne...ToGo-3.TheBasicsofFinancial+Accounting
    http://help.sap.com/saphelp_sbo88/helpdata/en/45/06b9997d720487e10000000a155369/content.htm
    kiran

  • Change account upon reversing Goods receipt document (MIGO)

    Hello,
    I have the following situation at hand:
    A goods receipt document (MIGO- 101) is posted in the month of June. Everything OK, account determination correctly.
    Now in the month of July we want  to cancel this goods receipt (MIGO - 102). My client does not allow postings in months already closed!
    The complexity is that upon reversing the goods receipt the request is that a different account is posted.
    In the standard SAP funcionality upon reversing a material document, the same accounts get debited and credited.
    How can I acomplish this request?  Is there a BADI or user-exit available to manipulaste in this particular situation the accounts posted?
    Thanks for any answer.
    Aart

    The complexity is that upon reversing the goods receipt the request is that a different account is posted.
    Here  company  required  in  different  account  or  when  you  done  reversal  it posted  in  to  different  account .
    Whenever  we  done  reversal  same  accounting  will  be   debited  and  credited  (Standard  Behavior )

  • Missing part check at goods receipt or transfer posting

    How Missing part check at goods receipt or transfer posting is different from availabilty check in production order.??
    In which conditions we would use Missing part check at goods receipt or transfer posting ??
    Is it possible for same component to behave differently in Missing part check at goods receipt or transfer posting or availabilty check in production order ?

    missing parts check is possible at the time of a goods receipt, other receipt, or transfer posting.
    if the missing parts check function is active in the plant, the system checks whether the material posted as a receipt is a missing part.
    if it is a missing part, the system issues a warning message and sends an e-mail to the MRP controller responsible in the plant. assigning the missing part to a particular goods recipient takes place with the missing part processing in the application component Warehouse Management
    please also check here:
    http://help.sap.com/saphelp_47x200/helpdata/en/41/191fdb45fd11d188ff0000e8322f96/frameset.htm

  • Need a Badi to look the good issue status for prod order before good receipt in MIGO

    Hi ,
    Need a Badi to look the good issue status for compoents for prod order before good receipt in MIGO.
    Example : There are 10 comps need to be issued to production order to make any assy but 6 comps were issued
    and remaining 4 comps are not yet issued.,in this situation if I try to do goods receipt for prod order through MIGO.,system should populate the warning
    message saying still goods issue are pending for prod order.
    Please advise .
    Thanks
    Prasad

    Hi Prasad,
    Before trying with a BAdI, have you tried to control this behaviour thru the Order confirmation parameters (OPK4)?
    Note that you can have a termination in case of having problems in the goods movements..
    Take a look of this and the SAP help:
    Termination of Confirmation if Incorrect Goods Movements
    Controls if the confirmation is terminated in the event of incorrect goods
    movements.
    Use
    This enables you to terminate the confirmation in the event of incorrect
    items, for example, to prevent postprocessing records.
    Dependencies
    The indicator is only evaluated if either no process control key or one
    process control key has been stored that enbles the goods movements to be posted
    in dialog AND for which the "provide error handling for goods movements"
    indicator is active. If there are incorrect goods movements, the system behaves
    as follows:
    A log is issued that gives information on the incorrect goods movements
    If these incorrect goods movements are determined by inventory management,
    then the option of correcting these errors is offered in the error handling
    If the correction is not successful, the confirmation is terminated
    Kind Regards,
    Mariano

  • Not able to do goods receipt in MIGO

    Hi,
    While doing goods receipt for process order through MIGO, system gives me an error "The document xxxxxxxxxxx does not contain any selectable item".Suppose if it is MB31 we can solve the problem by tick the "suggest zero lines"but for MIGO what we should do to solve this problem.

    Hi,
    check in the routing whether the control key entered is having Automatic GR check box ticked, if it is there then thorough confirmation u can do the GR not manually, other the wise change the contorl key for operation which is not having the tick the do it thorough MB31.
    regards
    ramakant

  • Posting goods receipt in migo getting the error

    hi
    when posting goods receipt in tc migo getting the error ' check table 169p: entry "cocode" does not exist". What does it mean? what is th e solution for this?

    Hi,
    Use Se12-Enter table name T169Pdisplay---select utilities from menu bar--table entries-create entries--enter your company code and save.
    try the entry again.
    Regards
    Aravind
    Assign points if useful

  • Cannot post Goods receipt in MIGO Error message"Field Business Area requird

    Hai
    I am posting Goods Receipt ( MIGO) with Reference to Purchase Order its having 47 Line item material. When i will doing Goods Receipt with rreference to po number its triggered error message in :Message No F5808 Field business Area is a Required  field for G/L account 1180 300000 . for only particular line item 47 material shown error..
    i checked all the settings in MM Automatic determination And G/L element, field variants, posting keys.. but everything configured profer settings..why particulat materail it shown error? how to resolve this error?

    Hi Thiru,
    A somewhat late aswer, but it might be helpfull for other users with the same problem. You can solve this problem by assigning the division/valuation area to the business area. Follow the path below to execute this:
    SPRO - enterprise controlling - Consolidation - Integration: preparation for consolidation - Preparation in the sender system - Further settings for Business Area Consolidation - Materials Management - Assign Division/Valuation Area to Business area.
    Under Enterprise structure -  Assignment - Logistics General, you will find a similar function. First execute option 1 or 2 here and then execute option 3. This makes it work as well, exept that it will not be recorded in a proper transport. The first option I gave for assigning is properly transportable.
    Greetings,
    Sjaak van den Berg
    Magnus Technology Consultants
    Edited by: S. van den Berg on Aug 14, 2009 1:09 PM
    Edited by: S. van den Berg on Aug 14, 2009 1:10 PM

  • Goods receipt with migo?

    hi
    when i am doing goods receipts with respect to purchase order(movement type-101)the following error
    message come.
    Balancing field "Business Area" in line item 001 not filled
    could anyone provide the solution for that.
                                                                                    regards
                                                                                    sanjay

    Hi,
    If you have set the required field for business area through field status of the GL account while hit during GRN entry e.g.
    Exp. GL Account          100
                   GR/IR clr A/c       100
    If you donu2019t need to have business are field required, then change the field status of expense GL account. If this is not the case then check your cost center master data may be business area is not entered there, or if you are using MIGO for asset then check asset master data that cost center is entered or not.
    If this will not solve your problem, please give us the detail of your PO transaction.
    Thanks
    Javed

  • SRM PO - how to check Shipment/Goods Receipt/Payment

    Dear Gurus,
    I have to find if there is a shipment or goods receipt or payment against a SRM PO. My question is can I get these details in SRM or I have to come to ECC to check. If they are in SRM, please let me know where. If I have to come to ECC to get these details, please let me know any standard functions for this. Appreciate all your help.
    Thanks,
    GSM

    Synchronize invoice status
    BBP_IV_UPDATE_PAYMENT_STATUS
    You can use this report to synchronize the status of invoices in SAP SRM with the status in the back-end system. If an invoice in the back-end system has the status Paid, the status in SAP SRM is adjusted; that is, the status changes from Approved to Paid.
    Note that invoices in SAP SRM with the status Paid cannot be canceled.
    Check goods receipt for XML invoices
    BBP_IV_AUTO_COMPLETE
    This report checks for XML invoices with the status Waiting for Preceding Document, and whether appropriate documents have been posted in the meantime, and then attempts to post the relevant invoice
    BBP_IV_UPDATE_PAYMENT_STATUS
    via check status , user can see his documnet whether sc status, po created or not, gr done or not, invoice made or not.
    br
    muthu

  • Display good receipt without migo

    Hi expert,
    i have a Question:
    "Does anybody knows a Function module (BAPI) that display goods receipt like in the transaction MIGO?"
    I know there is a BAPI "BAPI_GOODSMVT_CREATE"
    but i want to display goods receipt and not to post it.
    Does anybody know how i can solve this Problem? Or is there another possibility?
    THANKS
    Regrads PHIL

    BAPI_GOODSMVT_GETDETAIL
    BAPI_GOODSMVT_GETITEMS

Maybe you are looking for

  • Wrong Daywise dep on asset setteled on 31/03/2009

    Hi, We are using apr to mar financial year. I am settling the pm order. When the pm order is setteled on 31/03/2009 it is strting the depreciation from 01/04/2009 instead of 31/03/2009. When I am settling the same order on same asset on 30/03/2009 or

  • Will not having any ink in the color cartage cause the printer to fail the alignment test.

    Will not having any ink in the color cartage cause the printer to fail the alignment test.

  • Sub contracting vendor returns

    Hi, We have an issue that, when we return to vendor a sub contract Finished goods from Quality Inspection (T code QA32).System will return components(mvmt 544) also along with FG but my clients want only the FG should be returned to Vendor not compon

  • New itunes search function is terrible

    The new itunes search function is really terrible, as a dj and listener with over 250GB of mp3s I find the new system to be extremely frustrating. I want to be able to type in a tag and sort my music hierarchically and I am no longer able to do this.

  • Placing multi page .indd files

    Hi, I found out recently you can now place .indd files in other .indd files. Awesome! However, it seems like you can only place stuff from the first page of the .indd file you're placing. Is this true? Can you place content from the second page or af