While I am posting MIGO (Material Receipt)

While I am posting MIGO (Material Receipt) I got this error and I am customized with New GL Concept please solve and reply as early as possible.
Error:
Posting only possible in periods 2008/09 and 2008/08 in company code NFCL
Message no. M7053
Diagnosis
The posting date entered is not within one of the permitted posting periods (current period/previous period).
This can be due to one of two reasons:
u2022     The correct current period has not been set in the system.
For the system, the first of the entered periods is the current period. At the beginning of a new period, your systems administrator must change the current period in the material master record, using the function "Shift periods". This has not yet been done.
u2022     You have entered a wrong date in the field "Posting date".
Procedure
Check the posting date and correct it if necessary. If your input is correct, inform your systems administrator that the "period shifting" (period-end closing) process has not yet been completed.

change period in MMPV trxn
First go to OMSY and check the current period for your Comp code..
Then go to MMPV trx..
and Enter Comp code, period & year..
Here you need to enter the period you wants to open..
Ex: The Current period in OMSY is 09,2008
Then you need to enter period 10 & year 2008 in MMPV.
So, that period 9 will be closed & Period 10 will be opened automatically..
Like that you need to close the periods one by one till the period you want to post

Similar Messages

  • No document is generating while withraw or posting the material

    Hello
    When I am posting the material say by IW8W system is not generating any document
    Even while withdraw by 261 we are not getting the documnt .Actually it is doing everything ok like posting withdraw but why the system is not generating the document can you guys more light on this
    Regards
    chandrashekhar Ingole

    Hi
    I tried by putting the tick in custimizing but still it is not generating any other possiblity
    Even the message  after 261 withdraw of material form ware house is not coming that the document number so & so are posted that is also not coming but material is posting
    Regards
    chandrashekhar

  • Material receipt from employee (Cr AR account)

    Is it possible to make a direct posting of material receipt to inventory with correspondence to AR, i.e. as a result to have the following posting:
    Dr Inventory  Cr AR
    I need system to automatically choose AR account while posting receipt to inventory via mb1c, migo or any other receipt transaction. Please advise if there is any way to perform such posting?

    I understand that it's impossible to make such direct post as it's required by the client. 
    I was thinking of make receipt other and use interim account, and then in FI correspond the interim account with AR.  Or with reference to PO in MIRO enhance the ability of choosing a GL account for which to make the reconciliation account for account type as K Vendors.
    Are there any other ways anybody could suggest? or comments on the above-mentioned solutions?
    Thank you,
    Maira

  • Error in posting MIGO

    Hi Experts,
    I have created my own chart of accounts ( not copied from standard INT ).
    While trying to post MIGO, the following error is getting displayed.
    1) Account determination for entry XXXX BSX not possible.
    when i try to lead through the diagnosis.It is leading me to Account Determination
    Configure Automatic Postings->Account Assignment-->Inventory Posting (BSX) ,
    where i am entering my chart of accounts and the account Assignment colomn is empty.
    I try to assign the standard account number 300000 again an error is displayed
    2) Account 300000 not created in chart of accounts.
    I try to create G/L account using FS00 for my company code.. here too i am facing difficulty in creating G/L account. the following error is displayed.
    3) No PSIRUL statement account type is defined in chart of accounts XXXX.
    Any suggestions please, is there any way i can copy all the standard G/L accounts to my company code or chart of accounts.
    Regards,
    Nani
    Edited by: Nani on Feb 19, 2009 3:19 PM

    Hi
    You can use the below Transaction to copy GL a/c from Sap std co code to your
    OBY2 - Copy Company Code: G/L Accounts
    Regards
    Vikrant

  • 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

  • Components were not consumed while posting the goods receipt through VL32N

    Hi Experts,
    We are into technical upgrade. We are upgrading from 4.7 to ECC 6.0. We are facing one issue. The issue is while posting the goods receipt for the subcontracting shceduling agreement through VL32N (Inbound Delivery) component materials were not consumed. While displaying the material document for the GR, could not find any compponent materials consumed with movement type 543, where as if I use the MIGO transaction code for the same inbound delivery, I could see the component materials were consumed with movement type 543.
    Could anybody tell us how to fix this issue if they come across.
    Appreciate your reply.
    Regards
    Bala

    Hi,
    Try checking below SAP notes
    Note 645119 - Problems with subcontracting using delivery
    338119 - Goods receipt in inbound delivery for SC order
    Hope this helps
    Reg
    Dheeraj

  • G/L Account error while posting MIGO: Msg no: 8i195

    Dear Gurus,
    I am posting MIGO, while posting I am getting the following error msg:
    1) G/L a/l 300030 does not exit in the chart of account INT , msg no 8i195,
    I have created the account 300030 in FS01as MODVAT clearing account, but still I am getting the same error saying account is not maintained in english language even though I have maintained EN in translation tab and I have also checked the same through Tcode FSP0.
    But still same error is persist
    FYI: I have configured the material with all CIN setting.
    Kindly help..
    Regards,
    prashanth pai

    Dear Pankaj,
    I have maintained the same with FS00 tcode, but even then I am getting the same error.
    Prashanth

  • Error (Short Dump) while posting any Material document

    Hello All Experts,
    I am facing an error (short dump) while doing all material document related transactions (for example MIGO,MB1A etc) . I am getting the below message:-
    Short text of error message:
    Document number 1000 5000000000 2009 was already assigned
    Earlier, I had posted some material documents using the same transactions.
    Kindly help
    Regards,
    Atul

    Hi Atul,
    Please use T-code OMBT to check the number range status of material document. You can click on the 'Intervals' button to check the 'Current number', the last material document number the system was created so far. Try to change the 'Current number' to a number greater than 5000000001, save the change, and post material document again.
    Hope it can solve your issue.
    Cheers

  • MIRO(Invoice Verification) posting date is lesser than MIGO(Goods Receipt)

    MIRO(Invoice Verification) posting date is lesser than MIGO(Goods Receipt) posting date.
    Explanation:
    Miro sholud be posted after the GRN has posted. It means that the Posting date of Miro should be greater than or equal to the Posting date of Migo. But I am facing the issue that I can able to post the Miro before the Migo date..
    For example:  I have posted the Migo(Goods receipt) document with the posting date u2013 10.8.09 and at the same time I can also able to post the Miro(Invoice Verification) posting date as u2013 5.08.09. This is should not be allowed . Kindly give me the solution. Is there any options in SAP standards to restrict this type of Postings(without using user exit).
    regards
    Varadharaj

    Hi
    you  need to use BADi for this INVOICE_UPDATE
    you can give logic as whil;e MIRO system will compare posting date with MIGO doc , then create a Z error msg in se91 nad assign it in that badi
    take help of ABAPer, check following link
    [LINK |GR date lesser than the PO date, the system should show an error message.;

  • System allows to  post migo even after material flaged for deletion.

    Dear Experts,
                          system allowing to post MIGO , even after  material has been flaged for  deletion.
                          while posting migo, system giving warning, i want this to be error, how to achive this.  
    regards
    rajakarthik.

    yes it'll allow u to create PO , GR ..etc.
    Because its flagged for deletion means , its nothing but u have marked for deletion. only marking jus lik u have noted that has to be deleted from system.
    But by doing MM06 it 'll not get change. So u have to archivation .
    Revert if any clarification....
    Thanks
    SAP_MM

  • Error while creating 2nd Material Receipt after reversal of 1st MR

    Dear,
    Facing an error while creating Material Receipt.
    The gate entry of this material is 123456789.
    The 1st MR was created on 10/02/2011 & no. was 12345 with Location ABC via Z T-code.
    Under Quality this product was Rejected with Location XYZ.
    Due to Material was Rejected in Quality this MR 12345 was reversed through MB01 which produced a Reversal number 67890.
    Now the material is again on its original Location ABC.
    Now when the user is again creating an MR on 17/03/2011 of this material present at ABC location via using Z T-code it is producing an error stating that M/R already processed against 123456789 gate entry.
    We have done these several cases before also and there was no error shown when we created the 2nd MR for the same material after its reversal has been made.

    Dear,
    Problem solved.
    The problem was in PO.
    The person had unchecked the GR-basediv which caused the real trouble. The MR number was not appearing in MB03 & material was rejected in the QA11 so it was reversed through MB01.
    When again the MR was being punched then it was stating that the "MR already processed for the Gate Entry."
    PO was changed, Bill No. was changed by adding "A" & later deleting this "A" from Table level.

  • BAPI_GOODSMVT_CREATE - Error while posting a Material Document

    Hi Experts,
    We are  trying to do the material document posting using the transaction "MB1C" manually in SAP. The movement type which we are using for the same is "261".  While doing this is, it is asking for a work order number and the Recipient number. We gave the Recipient Number as "123". Material document is created successfully.
    Again using the same transaction  "MB1C" , we are trying to do the reversal of the material document which we posted previously against another work order number for the same material and the serial number if the material is serialised and as well as for the non serialised material.
    Both this case, in SAP the material document is created succesfully. This is done manually in SAP.
    When we are trying to create the material document using the BAPI 'BAPI_GOODSMVT_CREATE', for the above scenario, posting the material document '261' movement type for one work order and the reversal for another work order '262' movement type for the same material (whether it is a serialised or non serialised) we are getting the eror as "RE Qty. transferred exceeded 1 PC: 50,003,695 C001 USED 1200".
    We are passing the following at the item level. MATERIAL Number, Plant, STGE_LOC, ENTRY_QNT, MOVE_TYPE, BATCH, ORDERID, RESERV_NO,  RES_ITEM, ACTIVITY, XSTOB for reversal.
    We are passing the GM_CODE as '05'.
    Please let us know what needs to be changed inorder to create the material document properly without getting errors.
    Thanks in Advance,
    Mohan.

    Hi,
    We fixed this issue by removing the reservation number of the material when we are trying to post the material document with the movement type "262".
    The reason for removing the reservation number for the movement type "262"
    The reservation number is getting created against a work order when we trying to create the work order in IW32. This reservation number is used for validating the stock while we are trying to consume and doing the reversal.
    SAP is allowing us to reverse the consumed quantities only based on the reservartion number and hence we got this error.
    To fix this error, if we are trying to reverse a particular material against a different work order for which it has been consumed previiously, remove the reservation number and item number and try posting the material document.
    Hope this solution will solve your issue:)
    Thanks and Regards,
    Mohan.

  • Error while posting MIGO GR

    I am getting a very strange error while trying to post a GR in migo, the error is in the attached file, and no dump occurs, but after trying ST22 the dump is attached in the second file.
    No configuration has been changed recently, if someone can help i would greatly appreciate it.

    Please check these below notes. It seems some BADI implementation in your system is causing this:
    1776835 - Preventing inconsistencies by posting termination in MM
    1843441 - Optimizing error prevention mechanism from SAP Note 1776835

  • Error while posting the material

    Hi experts,
    While intially posting the material in Mb1c by movement type 561.
    while saving it show the below error
    "Account determination for entry GKR GBB ____ BSA 3000 not possible"
    pls help
    regards
    arun

    Have u checked this first
    go to OMWD and put the valution grouping code may be u r using 0001 for ur valuating area (plant) and company combination
    hear this is missing so u r having the error
    if yes
    then go to OBYC
    click on gbb give chart of account i think in ur case its GKR then find entry with
    0001 BSA 3000 GL or
    BSA 3000 GL
    if this entru is missing
    the ask ur fi person to creat gl account to initial balace upload in FS00
    may be copy of 399999 std sap have for copmpanyt code 1000
    and creat a entry
    0001 BSA 3000 GL
    BSA 3000 GL
    hope this will clear ur issue
    Reward if issue solved
    Message was edited by:
            Umakant Bhangale

  • Error while posting the Goods Receipt

    Hi Friends,
    I am having an issue while posting the Goods Receipt.
    I am getting the error "Balance not zero: 1.000,00- debit: 0,00 credit: 1.000,00". I am using the Purchase Order with Account Assignment category P and K. When ever I used the account assignment category, I am getting this type of error. I have checked the configuration and every thing is OK. System is not able to debit the G/L account which is mentioned in the Purchase Order, hence the problem. However, I think system is able to get the G/L account (to Credit the amount) from Automatic Account determination.
    Would like to know if any one come across similar type of problem and resolved it.
    We have recently upgraded the system from 4.7 to ECC 6.0.
    Apprciate the help.
    Thank you,
    Prakash

    Hi
    Thank you for the reply.
    I have checked what you have mentioned. While creating PO it is determining the G/L account automatically through the assignments in OBYC. Even then I am getting the error while doing the Goods Receipt.
    Any one is having any idea?
    Thank you,
    Prakash
    Edited by: Prakash KM on Dec 17, 2010 6:26 PM

Maybe you are looking for