MIGO GR posting prompt " Read planning situation for material"  message

Hi Guru
Need some advice on SAP MM MIGO GR 101 with reference to Purchase Order.
There is a purchase order created for AAC = P project and item category = S 3rd party. It is linked to a sales order which meet 3rd party scenario purchase and delivery directly to customer in the SO.
However, during MIGO GR screen on this PO, system prompted a message below where it took a while (long respond time) and then only post to material document successfully.
Read planning situation for material XXX in plant YYY
XXX = material code
YYY = plant code
Question:
From where this message is triggerred? It is not error, warning, or information message. However, it only appear when we post GR against 3rd aprty scenario purchase order
Please advise

Dear Lyonie
This message seems to be generated dynamically during the save process of GR.
When we click save button in MIGO GR button, there will be number of BAPI/FM will triggered to validate/check and post the data. During this process, some dynamic messages will be displayed for the user about the process. It is very difficult to find out the message triggering point.
Example I can provide , not sure about relevancy , We can observe start of application: Good movement  message initially while we execute MIGO. 
Still you need to find out about the message, please take help of technical ABAP consultant help to trace out the message triggering point.
warm regards
Ramakrishna Ponnapati

Similar Messages

  • Read Combination segments for material account from item level

    Dear Value Consultant,
    Read Combination segments for material account from item level
    "For any inventory transactions"
    Is there is away to read the material account from item level , to affect the real combination segments not general combinations segments from item master or organization
    Business Impacts :
    All inventory transaction for all item will affect the same combination segments for material accounts
    After I transfer to GL, This not helps me to differentiate the balance for material value is related to any item category
    Also for Budget Wise , I want to map the budget on combination level for materials accounts , and this not actualize without affect the real combination for material accounts in subledger ,
    Thanks

    I have not seen any client asking for this, but you can consider Costing Hooks to create your own accounting engine for inventory transactions. Hope you are taalking about standard costing. In such case, costing hooks are available in Oracle for you to write your own accounting.
    Even better in R12, you can do this with setup in SLA.
    Thanks
    Nagamohan

  • Reading Additional info for Material Document (Movement Types 313, 201)

    Hi SAP Gurus,
    I am currently working on a requirement for Material Document Interface.
    <u><b>The Requirement is as below:</b></u>
    (1) The user creates/modifies a material document using MB01/MB03/MIGO for movement types 313 and 201 separately.
    (2) The user maintains additional information by creating a NOTE using the option
    SERVICES FOR OBJECT --> CREATE NOTE. 
    (3) To Print the materail document information.
    <u><b>The Approach is followed is:</b></u>
    1) I have to retrieve the Address for From and To Locations respectively along with  document data and display it as Simple List output.
    Approach:
    I retrieved the data from MKPF and MSEG tables respectively.
    Also retrieved the data for FROM and TO locations using table TWLAD and function module ADDR_GET.
    (2) I also need to retreive additional information created by the user using the option SERVICES FOR OBJECT --> CREATE NOTE. 
    <b>Approach:
    Request your guidance and inputs to solve the point (2) mentioned above.</b>
    I have debugged the SAP Standard tcode MB01, MB03 ,MIGO which have the option SERVICES FOR OBJECT --> CREATE NOTE.
    I have also used ST05 to trace the transaction to get a proper solution.
    But, i was able to observe that only a table SOOD provides the initial required info only which points to a office document type.
    Looking forward to your valuable inputs, so that i can retrieve the data entered using the option SERVICES FOR OBJECT --> CREATE NOTE.
    Thanks in advance for spending time and
    guiding me to deliver the development on time.
    With best regards,
    Sudhakar

    Hi,
      Try this..
      TABLES: MSEG.
      PARAMETERS: P_DATE      LIKE MKPF-BUDAT.
      SELECT-OPTIONS SO_BWART FOR MSEG-BWART.
      SELECT-OPTIONS SO_MATNR FOR MSEG-MATNR.
      DATA: BEGIN OF ITAB OCCURS 0,
             MBLNR   LIKE MKPF-MBLNR,
             GJAHR   LIKE MKPF-MJAHR,
             MATNR   LIKE MSEG-MATNR,
             MENGE   LIKE MSEG-MENGE,
             MEINS   LIKE MSEG-MEINS,
            END OF ITAB.
      SELECT AMBLNR AMJAHR BMATNR BMENGE B~MEINS
             INTO TABLE ITAB
             FROM MKPF AS A INNER JOIN MSEG AS B
             ON AMBLNR = BMBLNR AND
                AMJAHR = BMJAHR
             WHERE A~BUDAT = P_DATE
             AND   B~BWART IN SO_BWART
             AND   B~MATNR IN SO_MATNR
    <b>         AND   B~MENGU = 'X'.</b>
    The field MENGU might be used to check if the
    material movement has affected the stock..
    Also I have used posting date = given date in P_DATE..
      LOOP AT ITAB.
        WRITE: / ITAB-MBLNR,
                 ITAB-GJAHR,
                 ITAB-MATNR,
                 ITAB-MENGE,
                 ITAB-MEINS.
      ENDLOOP.
    Thanks,
    Naren

  • Cannot Read Body Parts for certain messages on IMAP Server

    Hi There
    I get the following exception on some (not all) messages when trying to extract and save body parts from an email message on the IMAP server. I can iterate through all the body parts, get the filenames, etc. but when I try to read them I get the following error. Any ideas?
    It is MS Exchange (not sure what version) and seems to happen more when there are multiple file attachments or embedded images. We also have a POP3 option and this seems to work fine, only fails when using IMAP...
    java.io.ByteArrayOutputStream baos = new java.io.ByteArrayOutputStream();
    DataHandler dh = bodyPart.getDataHandler();
    dh.writeTo(baos); // <=== Exception here
    TYPE=TEXT/PLAIN; name="New Text Document.txt"/Disposition=attachment
    java.lang.NullPointerException
         at com.sun.mail.iap.Response.parse(Response.java:130)
         at com.sun.mail.iap.Response.<init>(Response.java:87)
          at com.sun.mail.imap.protocol.IMAPResponse.<init>(IMAPResponse.java:48)
         at com.sun.mail.imap.protocol.IMAPResponse.readResponse(IMAPResponse.java:122)
         at com.sun.mail.imap.protocol.IMAPProtocol.readResponse(IMAPProtocol.java:230)
         at com.sun.mail.iap.Protocol.command(Protocol.java:263)
         at com.sun.mail.imap.protocol.IMAPProtocol.fetch(IMAPProtocol.java:1234)
         at com.sun.mail.imap.protocol.IMAPProtocol.fetch(IMAPProtocol.java:1226)
         at com.sun.mail.imap.protocol.IMAPProtocol.fetchBody(IMAPProtocol.java:994)
         at com.sun.mail.imap.protocol.IMAPProtocol.fetchBody(IMAPProtocol.java:983)
         at com.sun.mail.imap.IMAPBodyPart.getContentStream(IMAPBodyPart.java:169)
         at javax.mail.internet.MimePartDataSource.getInputStream(MimePartDataSource.java:94)
         at javax.activation.DataHandler.writeTo(DataHandler.java:297)
         at com.workpool.interactionservices.EmailMessageUtils.saveBodyPartToFile(EmailMessageUtils.java:250)
         at com.workpool.interactionservices.EmailMessageMimeConvertor.processBodyPart(EmailMessageMimeConvertor.java:305)

    I presume the work around you refer to is to make a copy
    of the message? That's all I could find in the FAQ under
    IMAP. I'll try that.
    Unfortunately the server is sitting with a client on their LAN
    and we don't have remote access for debugging. We don't
    currently have a way to easily enable debugging for testing.
    Getting access for testing can take a few days ... but I shall
    do this if the work around does not work.

  • Planning layout for material and cost element

    Dear all,
    i need to upload data from r/3 and start planning from data i have uploaded.
    data is as follows:
    year month material amount
    what i need to do is to put data in planning layout and put cost element next to that and manually enter cost element.
    so desired column is like that:
    year month costelement( enter manually) material amount(enter manually)
    is it possible and how?
    thanks

    Hi,
    You can do it.Take a  look at the best practice  below.It is telling step by step how to do cost center accoıunting planning.
    http://help.sap.com/bp_biv235/bi_en/html/BW/CostCtrPlan.htm
    Regards.

  • Reading Classification data for material

    Hi all
    can anybody give me a FM or BAPI to read the classification data
    for a particular material..
    Kindly help . apt points will be rewarded
    Regards
    N manjrekar

    Hi Nikhil
    just copy paste this code to get the clasification of any material.
    hope this will be helpful.
    DATA: V_CLASS LIKE KLAH-CLASS VALUE 'MAT_SEL_CLASS_JASC',
            V_CLASSTYPE LIKE KLAH-KLART VALUE '023',
            V1_OBJECT LIKE AUSP-OBJEK,(nothing but material no)
            V_OBJECTTABLE LIKE  TCLA-OBTAB VALUE 'MARA',
            V_LANGU LIKE SY-LANGU,
            V_DATUM LIKE SY-DATUM.
            V_LANGU = 'EN'.
            V_DATUM = SY-DATUM.
    CALL FUNCTION 'CLAF_CLASSIFICATION_OF_OBJECTS'
      EXPORTING
       CLASS                      = V_CLASS
      CLASSTEXT                  = 'X'
        CLASSTYPE                  = V_CLASSTYPE
      CLINT                      = 0
      FEATURES                   = 'X'
       LANGUAGE                   = V_LANGU
       OBJECT                     = V1_OBJECT
       OBJECTTABLE                = V_OBJECTTABLE
       KEY_DATE                   = V_DATUM
      INITIAL_CHARACT            = 'X'
      NO_VALUE_DESCRIPT          =
      CHANGE_SERVICE_CLF         = 'X'
      INHERITED_CHAR             = ' '
      CHANGE_NUMBER              = ' '
      TABLES
        T_CLASS                    = T_CLASS
        T_OBJECTDATA               = T_CLOBJDAT
      I_SEL_CHARACTERISTIC       =
      T_NO_AUTH_CHARACT          =
    EXCEPTIONS
       NO_CLASSIFICATION          = 1
       NO_CLASSTYPES              = 2
       INVALID_CLASS_TYPE         = 3
       OTHERS                     = 4 .
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
         READ TABLE T_CLOBJDAT INDEX 2. " KEY 'MAT_CHAR_THICKNESS'.
          IF SY-SUBRC = 0.
            T_OUTPUT1-THICK = T_CLOBJDAT-AUSP1.
          ENDIF.
    Please close the thread if your query in  answered
    Reward points if helpful.
    Regards
    Zarina

  • Exicse invoice tab coming in MIGO while posting GR against PO w/o material

    Hi guys,
    We Were creating the PO with only short text,
    Created the std PO without material, with only text with account assignment" K".
    The perticular vendor is not menationed in J1ID, We are not found any blank chapter id in Material and chapter id combination in J1ID.
    When we go for MIGO system will proposing us the excise tab in MIGO. Why?

    Hi,
    Our question is why the excise invoice tab is coming in MIGO.
    We would like to know based on which configuration or masterdata settings this tab is coming in MIGO.
    We tried to deactivate the " EI capture" option in excise group configuration eventhough tab is coming in MIGO. Please provide some other solution to solve this issue

  • Planning of similar material

    Hello,
    Is there a way in SAP to plan / have the planning situation for similar finish goods material toghether?
    ex: We produce bicycle for stock  and 3 of them are the same except for the seat.  So we want to produce the 3 bikes toghether rather than separatly.  The demand is different for these 3 products...
    Having a notice when planning one of the 3 bike mentionning that 2 others similar bike exist...  Or else...
    Other than the planning calendar,  what can be used in SAP in order to see these 3 products at planning time?
    Thank you!
    Luc

    You are right, we are using special procurement 52.
    We are forecasting the finish goods with demand management (MD61). 
    the subassemblies would be the wheels, the bike frame in my bicycle example...  So far, most of the subassemblies are design for one finish good.  Meaning that they are not stocked planned separatly.  This is why we,re using spec. proc. 52.
    Another example would be for the furniture industry.  A night table is planned and all the components (subassemblies-top sides drawers...) are produced according to the packaging request X days ahead.  If 2 night tables are almost the same (except the color or except the handle) we want to dispatch them at the same time because most of the setup are the same, it's the same product family....
    When talking about dispatching in SAP the schedule is already made.  I would like to know what's available in SAP to see or group these product before the schedule is made, to suggest a schedule according to the product simillarities...
    Another example would be at TOYOTA, when making the Camry, I'm assuming they produce all colors and editions of it at the same time while the basic setups are made... How to they know all the related SKUS?  They are planing the CAMRY (family) first and the SKUS are pulled from the family?
    Is there such functionnality in SAP or we need to go thru custom development?
    Thanks!

  • BAPI KPF6 POST PLAN COST FOR INTERNAL ORDER AND COST ELEMENT

    Hi all gurus,
    I would like to use in a custom report a BAPI/Function Module that help me to simulate KPF6 in order to post planning costs for internal order and cost element (layout 1-401).
    So the input should be:
    1) Version
    2) period from
    3) periodo to
    4) year
    5) internal order n.
    6) cost element n.
    7) value
    I found a lot of BAPI but don't know the correct one and how to use it (example how to fill the input value).
    Can anyone help me on that?
    Kind Regards

    In additio  to the previous I found the BAPI_COSTACTPLN_POSTPRIMCOST but don't know if it's the correct one and how to use it (some example fitting the my case will be very appreciated).
    If the quoted BAPI is correct.
    I tested it filling all fields as following:
    HEADERINFO:
    CO_AREA=FFCA
    FISC_YEAR=2008
    PERIOD_FROM=001
    PERIOD_TO=012
    DOC_HDR_TX='blank'
    INDEXSTRUCTURE:
    OBJECT_INDEX=000001
    VALUE_INDEX=000004 (hope this point at Interna Order)
    ATTRIB_INDEX=000000
    COOBJECT:
    OBJECT_INDEX=000001
    ORDERID=ZO53-08IMZ
    TOTVALUE:
    VALUE_INDEX=000004
    COST_ELEM=3224048
    FIX_VALUE= 200,0000
    DIST_KEY_FIX_VAL=2
    The Return table is set to 0. Nothing happens.....I suspect something related to indexstructure or index is wrong..
    Could anyone help me on that?
    Kind Regards

  • Posted depreciation is missing in period 7, planned depreciation for period 8 is doubled

    Hi Experts,
    I would like to ask for some explanation for this issue and how to correct the error.
    Performed Depreciation run via AFAB transaction.
    then upon checking in asset explorer. period 7 is missing while the amount in planned depreciation for period 8 is doubled.
    could you please explain how and why this thing happened?
    thanks in advance!

    solved.

  • ASCP Plan Is Not Able To Read Global Forecast For Options Published By Demantra

    ASCP plan is not able to read global forecast for options published by Demantra
    ASCP plan is not able to read global forecast for options published by Demantra. Only Model Forecast is being read into ASCP plan. 
    1) We are publishing global forecast from Demantra at CTO/Zone/Week level and it is getting published properly to ASCP denorm table. 
    2)There is no forecast explosion being done in ascp (plan option explode forecast is not checked) 
    3)The sourcing rule is set at zone level for the model saying source from an organization (org code 11) 
    4) The profile: msc:-Organization containing generic BOM for global forecasting is set to 22 which is a reference org 
    5) Now when we run the plan the model forecast goes to org 11  but the option forecasts do not go properly 
    6) We have just one line created for the option (production forecast) with a wrong quantity
    7) Demantra has forecasts for both Model and options

    Looking at the error message "The Network Adapter could not establish the connection" , It appears hostname and port may be incorrect. Review the targets.xml under E:\oracle\product\10.2.0\db_1\SAP_solman_SDB\emd and
    emoms.properties under E:\oracle\product\10.2.0\db_1\SAP_solman_SDB\config folder to make sure host ( sap_solman) and port (1527) are correct.
    As far as setting the environment variables goes, you can go to control panel -> system -> advanced -> environment variables and set the ORACLE_HOME and ORACLE_SID
    -Ramesh

  • Error: "posting period is not defined for fiscal year variant" in  FBICS3

    Hi,
    I got error  "posting period is not defined for fiscal year variant" when I execute t code FBICS3.
    I checked in OB29 &  t code FBIC010 & noted that the fiscal year variant had ben maintained.
    Please advice.

    HI,
    It was noted that the mentioned t code had been maintain but below mentioned error appear:
    Posting period  is not defined for fiscal year variant
    Message no. GU506
    Diagnosis
    You have tried to determine a posting date in fiscal year variant for period , fiscal year , but this period is not defined for the variant.
    Procedure
    You maintain fiscal year variants in table T009.
    It was referring to t code OB29. I have checked the detail, in OB29 also details maintain.
    Please advice why the error still prompt.

  • Asset still showing planned  value for closed fiscal year.

    *We have a situation:-  After we ran depreciation for Dec 2009, there was a credit memo posting done in the system for a particular asset.  Now, the fiscal year has been closed for 2009 and 2010 is opened. Jan and Feb depreciation posting has been done for the asset for year 2010, but the credit memo posting is still stuck as planned value in the 12th period of 2009. How can we take care of that?  I canu2019t run unplanned depreciation for 2009. Is there a better way to take care of this?  I thought about opening year 2009 for the asset (ccode) and then running unplanned depreciation. Will that be a problem? If yes, what other solution can be proposed.*
    *Appreciate the response.*

    Hi,
    If it is not possible to open the fiscal year because audit          
    has already been completed we have a workaround which is not quite   
    correct from the legal side ist thereport RACORR20_A from note 29694.
    If in table ANLC there are differences between posted and planed     
    depr. the report simply makes: planed = posted.  
    The correct way would be:
    ->  Reopen your GL for FY 2008 via OB52.      
    ->  Recalculate values  (RAAFAR00)                                  
    ->  RAPOST2000                                
    ->  RAPERB2000                                
    ->  RAJABS00                                  
    Regards Bernhard

  • MIGO t code for Material Slip field , i want to add F4 values

    Hai in MIGO t code for Material Slip field , i want to add F4 values, cna u give me details procedure.
    thanks in advance

    Create a search help via SE11.   The help documents should walk you through the process.   When you get to a point where you need more information - post another question.
    I haven't added a search help for the material slip field, but someone else might have.

  • Selecting the Planning Level for Statistical Forecast in S&OP on HANA

    Hello together,
    we currently face an issue regarding the statistical forecast in S&OP on HANA:
    The customer wants to implement an S&OP process containing the two steps statistical forecast (automatically calculated) and sales forecast (manually determined). The planning level of the statistical forecast should be higher than the planning level of the sales forecast, i.e. the statistical forecast is calculated on a higher planning level and then disaggregated to be an input for the manually determined sales forecast.
    Since it doesn't seem to be possible to disaggregate any key figure below its base planning level we need to have the lower sales planning level as base planning level in all key figures, including the input and output key figures of the statistical forecast.
    When running a statistical forecast with a defined forecasting profile, the planning level used for the forecast seems to be the base planning level of the input/output key figures defined in the forecasting profile.
    However, we need to define a higher planning level for the statistical forecast in order to have a better data base for recognizing trends and sesonality. In APO DP it is possible to define the planning level for the forecast when running/scheduling the forecasting job. Is this also possible in S&OP on HANA? Can we define the planning level for the forecast in the forecasting profile or when running the forecast from the Excel AddIn? I tried to use the field "Filter" in the forecasting profile as it listed all the planning levels (as well as a lot of other things, we don't know where they come from), but the forecast was still carried out on the base planning level.
    Do you have any other idea where to define the forecasting planning level that is different from the base planning level of the input/output key figures?
    Thank you in advance,
    Jonathan

    Hi Bert,
    thank you for your fast answer. I checked the forum again and found this post:
    Question about Statistical Forecast
    However, I don't really get how the disaggregation is meant to work; the suggestion seems to be to calculate a forecast on an aggregated level, i.e. with input and output key figure with an aggregated base planning level, and then disaggregate it "somehow".
    Do you have any idea how this disaggregation might work and what other steps I have to consider?
    It seems as if I'd have to define a whole bunch of new key figures and have more than one output key figure but no input key figure for the statistical forecast, which doesn't make sense in my eyes.
    Actually I was looking for a solution where I can define my forecasting profile with both input and output key figure on the lower planning level and then insert the level I want the forecast to be done at either in the profile as well, or even more flexible when running or scheduling a forecast. Defining more key figures any time I need another forecasting level does not appear very comfortable. Is it meant to be like that or is there another way to reach the goal mentioned above?
    Cheers,
    Jonathan
    Edit: The mentioned thread contains some valuable information on how to disaggregate key figures. However, the really tricky decision is how to define the disaggregation ratio.

Maybe you are looking for

  • How to downsave an Illustrator CS6 file to CS or CS2?

    How to downsave an Illustrator CS6 file to CS or CS2?

  • Explain plan left the building

    Hello guys, i have interesting problem, at least it seemed to me like that. I am on 10.2.0.4.0 and for every statement i do explain plan i get the same plan ???. Propably very known issue to some, but i didn't exeperienced that till now, so if somene

  • How to process Idoc status file within Sap?

    Hi All, We would like to process received status file to update the sent IDOC's. Our current setup is that we send/push  the Outbound Idoc to external EDI sub system and pull the status file for processed Idoc from external EDI system to our R/3 serv

  • Netbeans on Mac OS X help

    Hi guys, I currently have an odd problem. I am finally using Netbeans on my Mac. I currently use it on my Windows machine as well. On my Windows machine if gives you this option up by the toolbar to either have Design or Source showing. I mainly want

  • What is the solution to the 'error 207"? I need help please.

    For over a month now my computer has been unable to get past the 8% mark on the Progress Bar during the Adobe Creative Cloud update! Error Message often stating Server unavailability! And "Error Code 207". Can someone please help  me get out of the t