Error :Purchasing info record not found in purchasing organisation

Hi,
after invoice verification with T.Code MIRO,
Goods issue for consumption: with T.Code MB1A
it display error message: purchaseing info record not found in purchasing organisation, pls tell me steps to correct it.
thanks in advance
ramesh.

Dear Azis,
         Double Click on the serial no of the Component you will get the  inforecord fieldin the Purchasing tab. But this is only for Stock Materials.
Please recheck again your components.
Regards,
Shareeq
Edited by: K M AHAMED SHAREEQ HUSSAIN on Oct 13, 2009 2:42 PM

Similar Messages

  • Purchase Info Record not found in Purchasing Organization 1000

    Hi all,
    While doing MIGO, Goods issue to cost center from consignment stock (201 k )
    i'm getting this error.
    "Purchase Info Record not found in Purchasing Organization 1000"
    i'm practising with standard company 1000.
    i have checked the all assignments.
    i.e., purch. org ->company code and
          purch. org-> plant.
          company code -> plant.
    Please guide me.
    regards,
    anand.

    Hi,
    Go and maintain Pur. Org 1000 against ur plant in :
    SPRO-Enterprise Structure-Assignments--MM-Assign Std Pur. Org for plant
    and please confirm that you have maintained the inforecord in Pur Org 1000 only and that too of Consignment type.
    Hope this helps
    Regards
    Dheeraj

  • APO CIF issue - Purchase Info Record not getting CIFed from R/3 to APO

    Dear All,
                We are unable to CIF Purchase Info Record from SAP R/3 to APO. Are there any special setting that needs to be done for the same. We have created an Integration Model and using tcodes CFM1/CFM2 but without any success. Can anybody throw some light on this issue?
    Thanks in advance
    Ehsan Ahmed

    Ehsaan
    Can you check the SLG1 logs in R/3 and APO sides for further clues? Try to confine the time range to the exact time of activation of Purch INfo record model.
    Maybe you have already done this check. Can you go to the Purchasing tab of Material Master and see if the Source List checkbox is unchecked ? Do you have any special procurement keys defined by any chance ?
    Regards
    Srinivas

  • Consignment PO - Info record not found

    Hi Experts,
    I have an urgent issue to resolve.
    A consignment PO was created on 30.01.2004. Still there are open items for that PO(as on date). Info records were removed from PO line items (automatically, the reason not known to anybody from business). The materials present in the PO have a source list and they are MRP relevant.
    Now being MRP relevant, these kind of POs are causing problem to the planning department.
    When i tried to delete/block the PO line items using ME22N, i get ERROR msg "Consignment info record does not exist". The consignment info records are there but with validity periods starting from 15.07.2004. I extended the validity from dates to 01.01.2004. When i returned to PO in ME22N, i am still having the problem with deleting the line items of PO.So i am not able to close these kind of POs which were created in the past but still open.
    Please anybody who has some idea about this kind of scenario, please let me know.
    Points will be rewarded to solution providers.
    Thanks & Regards,
    Pratap reddy M.

    Hi,
    Check the Validity period in the Consignment Info record, when is the to date.
    While closing the PO the info record should be active on the date, as the validity may be causing the problem to your PO,
    So extend the new validity period for that Consignment info record till the PO deletion.
    rgds
    Chidanand

  • Creating Purchase Info Record in SAP using JCO

    I am trying to create a Purchase Info Record (ME11) in SAP using the below JCo code:
    It executes without fail and throws no error, but i am not able to get the newly created info record in SAP. In ME13 it says info record not found. Can i know what am i missing?
    I am using these FMs :
    1. ME_INITIALIZE_INFORECORD
    2. ME_DIRECT_INPUT_INFORECORD
    3. ME_POST_INFORECORD
    IFunctionTemplate ft1 = mRepository.getFunctionTemplate("ME_INITIALIZE_INFORECORD");
        JCO.Function function1 = ft1.getFunction();
        mConnection.execute(function1);
        IFunctionTemplate ft = mRepository.getFunctionTemplate("ME_DIRECT_INPUT_INFORECORD");
        JCO.Function function = ft.getFunction();
        JCO.ParameterList importparams =function.getImportParameterList();
        //  Setting HeadData Structure Information
        JCO.Structure headStructure = importparams.getStructure("I_EINA");
        //headStructure.setValue("105","MANDT");
        //headStructure.setValue("5300259768", "INFNR");
        headStructure.setValue("MYPART0006", "MATNR");     
        //headStructure.setValue("MYPART0006", "IDNLF");
        headStructure.setValue("100002","LIFNR");
        headStructure.setValue("10000","MATKL");
        headStructure.setValue("KGS","MEINS");
        headStructure.setValue("1","UMREZ");
        headStructure.setValue("1","UMREN");
        headStructure.setValue("SG","URZLA");
        headStructure.setValue("KGS","LMEIN");
        //headStructure.setValue("0000005300259768","URZZT");
        JCO.Structure headStructure1 = importparams.getStructure("O_EINA");
        //headStructure1.setValue("105","MANDT");
        //headStructure1.setValue("5300259768", "INFNR");
        headStructure1.setValue("MYPART0006", "MATNR");    
        //headStructure1.setValue("MYPART0006", "IDNLF");
        headStructure1.setValue("100002","LIFNR");
        headStructure1.setValue("10000","MATKL");
        headStructure1.setValue("KGS","MEINS");
        headStructure1.setValue("1","UMREZ");
        headStructure1.setValue("1","UMREN");
        headStructure1.setValue("SG","URZLA");
        headStructure1.setValue("KGS","LMEIN");
        //headStructure1.setValue("0000005300259768","URZZT");
        System.out.println("General Data Set");
        JCO.Structure purchaseDataStructure = importparams.getStructure("I_EINE");
        //purchaseDataStructure.setValue("105","MANDT");
        //purchaseDataStructure.setValue("5300259768", "INFNR");
        purchaseDataStructure.setValue("1000","EKORG");
        purchaseDataStructure.setValue("1000", "WERKS");
        purchaseDataStructure.setValue("003","EKGRP");
        purchaseDataStructure.setValue("USD","WAERS");
        purchaseDataStructure.setValue("3","APLFZ");
        purchaseDataStructure.setValue("1","PEINH");
        purchaseDataStructure.setValue("1","BPUMZ");
        purchaseDataStructure.setValue("1","BPUMN");
        purchaseDataStructure.setValue("1000","EFFPR");    
        purchaseDataStructure.setValue("0001","BSTAE");    
        purchaseDataStructure.setValue("100000","NETPR");
        purchaseDataStructure.setValue("X","KZABS");
        JCO.Structure purchaseDataStructure1 = importparams.getStructure("O_EINE");
        //purchaseDataStructure1.setValue("105","MANDT");
        //purchaseDataStructure1.setValue("5300259768", "INFNR");
        purchaseDataStructure1.setValue("1000","EKORG");
        purchaseDataStructure1.setValue("1000", "WERKS");
        purchaseDataStructure1.setValue("003","EKGRP");
        purchaseDataStructure1.setValue("USD","WAERS");
        purchaseDataStructure1.setValue("3","APLFZ");
        purchaseDataStructure1.setValue("1","PEINH");
        purchaseDataStructure1.setValue("1","BPUMZ");
        purchaseDataStructure1.setValue("1","BPUMN");
        purchaseDataStructure1.setValue("1000","EFFPR");       
        purchaseDataStructure1.setValue("0001","BSTAE");       
        purchaseDataStructure1.setValue("100000","NETPR");
        purchaseDataStructure1.setValue("X","KZABS");
        mConnection.execute(function);
        IFunctionTemplate ft2 = mRepository.getFunctionTemplate("ME_POST_INFORECORD");
        JCO.Function function2 = ft2.getFunction();
        JCO.ParameterList importparams2 =function2.getImportParameterList();
        importparams2.setValue("MYPART0006", "I_MATNR");
        importparams2.setValue("MYPART0006", "O_MATNR");
        mConnection.execute(function2);
    Edited by: rs_d123 on Dec 17, 2011 10:46 AM
    Edited by: rs_d123 on Dec 17, 2011 10:46 AM

    If i give this much code then it throws an error
    Exception in thread "main" com.sap.mw.jco.JCO$Exception: (104) RFC_ERROR_SYSTEM_FAILURE: Enter Purch. group :
    I have already set the purchase group in the code: EKGRP as 003. Dont know why its still asking for purchase group.
                JCO.Repository mRepository;
             mRepository = new JCO.Repository("SAPConnection", mConnection);
             System.out.println(" Repository Created ");
             IFunctionTemplate ft1 = mRepository.getFunctionTemplate("ZME_INITIALIZE_INFORECORD");
             JCO.Function function1 = ft1.getFunction();
             mConnection.execute(function1);
             IFunctionTemplate ft = mRepository.getFunctionTemplate("ZME_DIRECT_INPUT_INFORECORD");
             JCO.Function function = ft.getFunction();
              JCO.ParameterList importparams =function.getImportParameterList();
              //  Setting HeadData Structure Information
              JCO.Structure headStructure = importparams.getStructure("I_EINA");
              headStructure.setValue("MYPART0006", "MATNR");          
              headStructure.setValue("0000100002","LIFNR");
              headStructure.setValue("000010000","MATKL");
              headStructure.setValue("KGS","MEINS");
              headStructure.setValue("1","UMREZ");
              headStructure.setValue("1","UMREN");
              headStructure.setValue("SG","URZLA");
              headStructure.setValue("KGS","LMEIN");
              System.out.println("General Data Set");
              JCO.Structure purchaseDataStructure = importparams.getStructure("I_EINE");
              purchaseDataStructure.setValue("1000","EKORG");
              purchaseDataStructure.setValue("1000", "WERKS");
              purchaseDataStructure.setValue("003","EKGRP");
              purchaseDataStructure.setValue("USD","WAERS");
              purchaseDataStructure.setValue("1","APLFZ");
              purchaseDataStructure.setValue("1","PEINH");
              purchaseDataStructure.setValue("1","BPUMZ");
              purchaseDataStructure.setValue("1","BPUMN");
              purchaseDataStructure.setValue("1000","EFFPR");          
              purchaseDataStructure.setValue("0001","BSTAE");          
              purchaseDataStructure.setValue("1000","NETPR");
              purchaseDataStructure.setValue("X","KZABS");
              mConnection.execute(function);
             IFunctionTemplate ft2 = mRepository.getFunctionTemplate("ZME_POST_INFORECORD");
             JCO.Function function2 = ft2.getFunction();
              JCO.ParameterList importparams2 =function2.getImportParameterList();
              importparams2.setValue("MYPART0006", "I_MATNR");     
              mConnection.execute(function2);
              System.out.println("Execution Completed");
    Edited by: rs_d123 on Dec 19, 2011 9:04 AM

  • Conditions in scale pricing in purchase info record

    Dear Experts,
    Need your valuable inputs on the following issue:
    We have entered into an agreement with a vendor with the following clause:
    1 PAC of material ABC costs Rs. 13000/-
    In every month , the first PAC bought will be priced at Rs 13000/- and any quantity further bought in the same month will be priced at Rs. 6000/- per PAC.
    For example:
    07th July: PO placed for the material at 13000/-
    15th July: Po placed for the material should automatically be at 6000/-
    01st August: PO placed for the material at 13000/- and so on.
    We looked up for Scales in Purchase Info Record and found to be valid only on quantity basis within the validity period of the info record.
    Our concern is how to map the scaling condition for every month, whereby, the pricing of the purchase order in PO is system-dependent.
    Looking forward to get the best solution,
    Regards,
    Nihar

    I do not think its possible with scale maintain. Scale is used for picking price as per quantity.
    Here, your requirement is against validity. Your price will be fluctuated against validity period.
    You can maintain the price for the validity period as per your requirement in info record.
    But unfortunately you have to maintain the price for every validity period for every months.
    Otherwise you have the option of development, where you can write your own logic for the price picking in PO.

  • Purchase Info Record scenario

    Hi experts,
    I want to create purchase order , but requirement is without updating purchase info record all the time purchase order should not created how to achieve this ? so is there any field in po to restrict po without updating info record ? we are not using purchase requisitions.Please provide suitable solution.
    Thanks & regards
    sangita
    Edited by: sangita on Feb 13, 2012 4:46 PM

    sangita wrote:
    hi
    >
    > I am going to create automatic purchase order so that it will pick price from info record , so that the user must put new price at the time of po creation in info record so that i am asking for po should not create before changing info record price, Please suggest suitable solutions .
    >
    > Regards
    > sangita
    How can the PO know that the price in the info record is not current?
    have you checked how a price condition in an info record looks like?
    if is usually valid from the date of entry to end of year 2999 (or similar)
    if you add a new condition with a shorter validy, then the original condition is broken into 2 parts: it ends with the start date of your new condition, and starts again with a start date equal to the end date of your new condition.
    So you have a valid price all the time.
    ...and your PO cannot know that the price  is current or not.

  • Authorization object in Purchasing Info Record

    Hello,
    I can't find an authorization object in the purchasing info record to block the acces to the general fields at client level, user by user.
    I have found only the following authorizations object:
    M_EINF_EKO : Purchasing Organization in Purchasing Info Record
    M_EINF_EKG : Purchasing Group in Purchasing Info Record
    M_EINF_WRK : Plant in Purchasing Info Record
    S_TCODE : Transaction Code Check at Transaction Start
    An authorization object like 'M_MATE_MAN : Material Master: Data at Client Level' doesn't exist for the Purchasing Info Record?
    Thanks,
    Fabien.

    Dear Friend
    If dont have Authorization object in Purchasing Info Record, You can create the Spool request Number in SU53 Transction Code, send to Your Basis people, he will priovide the Authorization object in Purchasing Info Record.

  • Purchase info records report

    Hi All,
    Is there any report of the purcashe info records entered for different plants.
    I need to see the material prices maintained with their validity periods
    SAPXPT

    Hi
    chek this table it may useful
    EINA Purchasing Info Record- General Data
    EINE Purchasing Info Record- Purchasing Organization Data
    Regards
    Kailas ugale

  • Purchase Info record mandatory to create PO/SA

    Hi,
    Please tell me the user exit in PO to make Purchase Info record mandatory to create Purchase Order or Scheduling Agreement (only for material with material code). No PO/SA for material should be created without any Purchase Info record maintenance.
    Thanks
    M

    Hi,
    Mantain source list check box in the material master record - purchase view.
    Then for this material,  purchase info record and source list both are mandatory.
    With out this, system won't allow further.
    Regards
    KRK

  • Pricing Procedure determination in Purchase info record

    Dear Experts
    I would like to understand how pricing procedure is determined in Purchase info Record.
    While creating purchase info record, system is identifying some standard pricing procedure rather my own pricing procedure. Hence i couldnt able to select my condition type whihc i have used in my pricing procedure.
    Kindly provide your inputs in the same.
    Thanks & Regards,
    Kumar

    HI,
    While creating purchase info record, system is identifying some standard pricing procedure rather my own pricing procedure. Hence i couldnt able to select my condition type whihc i have used in my pricing procedure.
    have you check forum ?
    check following link
    [Pricing Procedure for Info Record;
    Regards
    Kailas Ugale

  • Tables involved in Purchase Info Record

    Hi Gurus
    what are all the tables involved in PIR apart from EINA & EINE ?

    Hi
    Only these two tables are used for info record
    EINA     Purchase info record (main data)
    EINE     Purchase info record (organizational data)
    also check
    QINF     Inspection info record (vendor - material)
    Vishal...

  • Valuation record not found

    Hi All,
    On doing 561 for a material I getting this error meassage "Valuation record not found"
    On going in to details it asking me to enter the valuatin type at the organisational level while entering the material master but I am not able to find this field in this case.
    The material is in split valuation.
    Please help.

    Hi,
    Did you maintain the Valuation category and Valuation types and Assignment of valuation category to Org levels in customization?
    If not first you make all the customization settings
    Then you can maintain the parent acc view using val. category and child acct views for all the valuation types under the val category
    Remember to use MAP in parent act view
    Pls check Basic setting :
    The Split Valuation settings are as follow:
    1.SPRO> MM>VALN AND ACC ASSIGNMENT> SPLIT VALUATION> Acitvate Split Valuation
    2.SPRO> MM>VALN AND ACC ASSIGNMENT> SPLIT VALUATION> Configure Split Valuation
    Click on Golbal type: create your own valuation types as Type 1, Type 2 etc
    Click on Global categories:create your own Valuation Category as Type(T) and
    Activate all valuation types(Type1, Type2 ) for your category(T)
    Goto MM01, enter materialu2026u2026u2026u20261st enter valuation category and save & again enter MM01 enter the Valuation type as Type 1 and maintain price for it and repeat the same for all the Types.
    When you create a PO for split valuated material it will ask for valuation type and you can enter your required valuation type and save.
    Regards
    Priyanka.P

  • Purchase info record does not exists in purchase organization 1000

    Hi experts,
              I have created a new enterprise structure in SAP. when i am creating a PO its picking the correct info record, but when i am doing GR, its giving the error as 'purchase info record does not exists in purchase organization 1000". I have maintained everything perfect. the only thing i have changed is I have moved the open and close period from 11-2002 to 12-2008 in MMPV.
             Please give me some suggestions, where it can go wrong.
    Thanks & Regards,
    Poorna.

    Hi Guys,
              Thanks for all yours responses, Actually what deepak said was right, but in my IDES system i am not able to create new entries in assign plant to std purchase org. I found the database view for that, V_001W_E its for table T001W. So i looked into that table i found that std purchase org was given as 1000. i made direct entries in that table, i thought the reason for this may be due to , that i copied plant from 1000. After making entries , i did not got the error message that was i am previously getting.
    Thanks & Regards,
    Ravi.

  • Error in CIF for Purchase Info Records

    Hi,
    I am trying to CIF Purchase Info record from R/3 to APO but its getting stuck during activation "generating delta Model".
    Can anyone please help in this regards, I have already read the link related to BD22 but which message type do we need to delete. Also what can be the other reason.
    I have CIFed Plant, material, vendor in the same sequence also I have extended material to vendor manually in APO.
    I have one more issue the vendor code 1000000 in R/3 is getting create as 0001000000 in APO can this cause a problem
    Thanks,
    sanjog

    Hi Sanjog ,
    Iam not sure why you are looking at tcode BD22. It is not relevant to PIR transfer .
    Also to CIF the PIR for a material from R/3 to APO, it is not necessary that the material should exist in the vendor location in APO. (You need to create the material at vendor location only if it is required specifically for your business scenario).
    Now , to identify what is causing the problem , you have to check the inbound queue in APO and outbound queue in R/3. The tcodes are SMQ2 and SMQ1. You can also use the queue manager /n/sapapo/cq in APO . Check what the error message is and correct the master data in R/3 accordingly. Then delete all blocked queue entries (/sapapo/cq can be used ) and then run the PIR CIF activation again.
    Thanks
    Saradha

Maybe you are looking for

  • Error in log file (WWC-41439)

    Hi, When i installed Oracle Portal, i had the error WWc-41439 when i tried log in Oracle Portal. I revised the log file and i saw the following error.(I have isntalled Oracle Portal 3.0., Oracle Database 8.1.7 on windows NT). STEP 24 : Installing SSO

  • I was offered an itunes update yesterday and said yes to install it. Now it won't open.

    I was offered an iTunes update yesterday and said yes to install it. It seems to have installed it. Now it won't open.

  • Employee Photo Upload through binary data

    Hi all, I know the Provision for Photo upload through OAAD Tcode, I know FM to upload the photos by giving path as input data. my requirement is I have picture in the form of binary data . i want to upload that into PA30. I have return the following

  • Can't Open a MySQL Database

    After downloading, installing, and starting the Xampp copies of MySQL and Apache, I created and loaded a small database, which I can see in a browser using localhost. In Dreamweaver I created and saved a PHP page on which I want to display database i

  • Has my computer got a virus or trojan?

    Hi, not sure how this works. Was wondering if my Macbook Pro has a virus. I am getting NAME coming up in finder attached to file groups. And if so, how do find out what it is and how do I get rid of it?