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

Similar Messages

  • User not able to create goods receipt

    hi experts,
    workflow is completed and purchase order also released
    but user doesn't able to create goods receipt
    i have checked in return parameters in container there is no error
    how to check the workflow and why user getting problem??
    could you please send your advises ,

    Hi,
    What Error you are getting ?
    Regards,
    Manish Jain

  • Not able to post goods receipt trcode MB1c

    hi problem in posting the gr (mb1c)
    when i am trying to post goods receipt i am getting the message
    ctr1000/testcc is not assigned to a business area.
    but when i am trying to assign a business area to cost centre testcc
    it is giving the message that transaction data already exists.
    please note 1000 is my co code
    1000 is my controlling area
    test cc is my cost centre.

    Hi,
    Good afternoon and greetings,
    I presume there should be a transaction already existing for that particular cost centre and that is the reason it is not allowing you to do the change...go to the cost centre reporting and reverse the old transaction and then make the changes and post the new transaction using MB1C.
    Please reward points if found useful.
    Thanking you,
    With kindest regards
    Ramesh Padmanabhan

  • Not able to do goods receipt

    Hi Experts,
    I have one issue that ,PO (Intra-company stock transfer Scenario) is OLD PO raised in 2007 .For this PO Outbound delivery & GI happened.Along with this shipment document created & payment also done .The material is in Transit and now we want to either receive the material or want to cancel the goods issue.
    Please guide me on ,what should be done.
    AMIT

    Hi,
    If physically that material is not tracable remember that after GR stock of receiving plant will increase and after deleivery cancellation stock of your issuing plant will increase.
    Decide accoring to that and then carry out physical inventory in both plant to regularise stock
    Regs,
    Appie

  • 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

  • Not able to post a GR in MIGO transaction

    Dear Friends,
    I am not able to post a good receipt in MIGO for a PO with Item having split valuation, I get message in MIGO as "document does not contain any selectable items.
    Please help.
    Regards,
    Milesh.

    Hi,
    The problem is not because of split valuation. remove the confirmation which you have entered. Check the following things
    1. If the movement type selected is 101 itself
    2. If the Po is released if there is a release procedure
    3. If the GR is already done for the PO
    4. If the PO line item is already deleted.
    Regards
    Ashwin

  • 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"

  • Able to do Goods Receipt without Goods Issue in Intercompany STO process

    Hi,
    We are in ECC 6.0 and noticed that we are able to post Goods Receipt in receiving plant (Intecompany) without even goods issues in supplying plant.
    How to restrict proceeding Goods receipt in case no GI at supplying plant?
    Please advice.
    Regards,
    Ram

    SAP explains in OSS Note 25220 - No stock in transit with cross-company purchase orders:
    This procedure was chosen because usually the issuing and receiving companies have to be managed on different computers.  In addition, goods receipt in the receiving plant can be posted before goods issue in the issuing plant with this kind of stock transfer, i.e., the corresponding stock in transit would temporarily be negative.
    If you want restrict this situation, then you have to do some coding in  userexi: EXIT_SAPMM07M_001

  • 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 )

  • 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

  • User is not able to find the receipt to correct it from Iprocurement.

    User is not able to find the receipt for PO to correct it. User logged into iProcurement and queried for this PO but system says no data exists.
    I checked there is a receipt for this PO and the same can be queried in Correction window through core APPS.
    Could you please help why its not available in iProcurement for correction.
    Thanks in Advance,
    AVN

    Are you logging into right organization (OU) to check the receipts?
    Check your ship to location in PO and then based on that change your organization (through responsibility or change organization) then query yur receits, it should come.
    BTW for receipts to be seen, the PO lines should not be in "CLOSED" status!
    Jithendra

  • The total goods movement status not changed after goods receipt using MIGO

    Dear gurus:
    when i use T-code MIGO doing goods-receipt against Inbound delivery, the total goods movement status don't changed. i tryed VL32N to do goods receipt, and the status changed.
    how can i do to make the status change when i receive goods in MIGO against inbound delivery?
    best wishes,
    David

    Hi,
    If your MM is integrated with WM (SU mgt or HUM) you have to post the GR with Inbound delivery.
    Amit

  • Packaging material is not appearing in the Goods receipt of STPO

    Dear All,
    We are currently dealing one Roll-Out project for one multinational company. In that from sales side, one of the main processes defined is u201CStock Transport Purchase Order processu201D. As a regular process, outbound delivery document also created with ref to STPO.
    As per the client requirement the u201CPackaging materialu201D needs to be added as additional line item in the delivery to calculate the packaging cost. This packaging material is a "Stockable and Valuated" material. So while performing the PGI the stock will get reduced from SD side.
    The problem is, using this same STPO delivery document the Goods receipt is planned to do in the another side of company code. while doing the Goods receipt system is displaying only the "Finished Product" only. The packaging material is not displaying while doing the goods receipt in the another company code.
    due to this we are not able to complete our test cycle.
    so we need the expert opinion to solve this issue.
    if the packaging material is added as additional line item while doing Goods receipt then, the problem is solved.
    Kindly suggest us...
    Regards,
    MANI
    frWe have customized that also and now u201CPackaging materialu201D is adding as a new line item in the delivery document as a non valuated material.
    But the issue is, the Billing type u201CZICu201D is not getting determined while creation of billing if u201CPackaging materialu201D is added as a new line item. If u201CPackaging materialu201D is not added as a line item then, billing type is getting determined automatically without any issue.
    We have checked in LIKP table, its containing the billing type as u201CZICu2019. But if packaging material is added then, the billing type determination is not happening.
    We are assuming that some customizing needs to be done from MM/SD point of view. I am seeking the experts help regarding this issue to solve the problem.
    Regards,
    MANI

    Dear Friends,
              Thanks for the Feedback.
    Even though it is a associated company, in one company code the packaging material stock was reduced and packed for the STPO shipment.
    After receiving the consignment, in the receiving company code they will perform the goods receipt with ref to "Outbound Delivery" document.
    Since in the outbound delivery document "Packaging material" also available. So as a business strategy we are expecting the same "packaging material" also should available for goods receipt.
    I hope i have explained with max of my knowledge to clear your doubt.

Maybe you are looking for

  • Sub totals display

    hai friends iam useing alv grid display to dispaly the report in that report i have LIFNR,BUKRS,BUDAT,DMBTR ,      SHKZG,WAERS  from BSIK table the problem is SHIKZG field we have values like S and H. so particular LIFNR may have both S and H values

  • Migrate/import (?) bookmarks from iBook to new iMac?

    Is there some way to move my bookmarks from my old iBook to my new iMac? I ran the Migratiion Assistant, but that doesn't seem to have done the trick. thanks, Chris

  • Converting to decimal number

    Hi to all, I am diplaying data from the DataControl on a page, these data is numbers and are shown as: number1: 12.154 number2: 125.25 number3: 1.254 as seen with a decimal point, are not aligned and with more than two decimal numbers. How can I make

  • Reports to be made available in portal

    Hi Gurus, I need to develope a report in HR and make it available in Portal. How can i do this... I m new to this. Pls, help me out, Regards, Phani Edited by: Phani B on Oct 15, 2008 7:39 PM

  • Is the Dell UZ2215H multimedia monitor supported by the Mac Mini mid-2010 running OS X Mavericks?

    I have hooked up a new Dell UZ2215H multimedia monitor to my Mac mini which recognizes the Dell model but does not recognize the built-in HD webcam or allow control of the internal speakers for sound output on the Dell monitor.  I have used both an H