Inbound NR2CLNT300: No IModel active for cat. Purchase Orders and Purch.R

Dear ,
Please i got this error  "Inbound NR2CLNT300: No IModel active for cat. Purchase Orders and Purch.R"
Appreciate your Effort
Regards
Rami

Hi Rami,
Just check whether the purchase order contains one of the item in
IM and the other not.  In such case, you will face the error.
When you exclude two items from IM, check whether IMs already
exists for those items initially and later you had excluded it.  In
such case, you need to delete all master data and transactional
elements from APO before excluding the items from model
Regards
R. Senthil Mareeswaran.

Similar Messages

  • Automatic account postings (for Intercompany Purchase order and Sales order

    Hi all,
    I need some help related to the automatic account postings (for Intercompany Purchase order and Sales order)which i can set for the follwoing scenarios. I have looked on the forms and searched alot but not able to a single solution to solve both the pupose. if one scenario works the other doesnt. Please advise.
    I have created the master data
    Customer receiving--G001
    Sales Org.--GXIN
    Distr. Channel- 01
    Division - 00 
    Company code receiving - G1
    customer supplying- V001
    company code for supplying- V1
    2 different scenarios
    1- Intercompany Purchase order in which a Customer receiving- G001, gets stock replenishment NB purchase order from supplying company V1- GI  and GR of stock is done. Biling document for customer receiving G001 is created. But now I need a way to do the opposite side posting at the supplying customer -V001-- this I do using an Idoc which creates a Invoice receipt for creditor(supplying customer) V001.
    2. Sales order-- A customer X001 of company code G1 buys stock from the company code V1. the customer G001 of company code G1 bills the customer X001, but the intercompany billing doc/ invoice is created for the customer G001 by company code V1.  then now i want an automatic account posting to be created at the supplying customer V001 via idoc.
    Can this be achivable via Idoc with automatic account postings.   
    Please let me know if it doesnt make sense. thanks to all in advance
    cheers
    Jasmeet

    Hi all,
    For the Sales order and automatic posting we have created an output type ZR4N- this is creating a batch input session which can be triggered to be processed autmatically.
    For the intercompany Purchase order -from Invoice we are creating a different output RD04 (sap standard) which creates invoice receipt at the vendor side.
    Rest of the settings are defined using SAP standard functionality within transaction OBCA, OBCB, OBCC, OBCD,OBCE
    thanks for viwing the post
    Cheers
    Jasmeet

  • Documentation for Asset Purchase orders and Servicess

    Hi,
    Plz give me documentation for Asset Purchase orders and Servicess

    Hey check it in Building block library
    http://help.sap.com/bp_bblibrary/600/BBlibrary_start.htm
    Regards,
    Raman

  • Table for open Purchase order and pending invoices for vendors

    Hi,
    Are there any table to know open Purchase orders and pending invoices for vendors.
    Quick response will be appreciated.
    Thanks & Regards

    hi,
    Purchase Order:
    S011:(PURCH: Purch. Group Statistics)
    Statistics (SSOUR)
    Version (VRSIO)
    Month (SPMON)
    Day (SPTAG)
    Week (SPWOC)
    Posting Period (SPBUP)
    Purchasing Org (EKORG)
    Purchasing Group (EKGRP)
    Vendor No (LIFNR)
    S012: (PURCHIS: Purchasing Statistics)
    Statistics (SSOUR)
    Version (VRSIO)
    Month (SPMON)
    Day (SPTAG)
    Week (SPWOC)
    Posting Period (SPBUP)
    Purchasing Org (EKORG)
    Purchasing Group (EKGRP)
    Material No (MATNR)
    Plant (WERKS)
    Info Record Category (ESOKZ)
    Material Group (MATKL)
    Info Record (INFNR)
    Country (LAND1)
    EINE: (Purchasing Info Record: Purchasing
    Organization Data)
    Info Record (INFNR)
    Purchasing Org (EKORG)
    Info Record Type (ESOKZ)
    Plant (WEKS)
    EKET: (Delivery Schedules)
    Purchasing Doc (EBELN)
    Item (EBELP)
    Delivery Schedule (ETENR)
    EKPO: (Purchasing Document Item)
    Purchasing Doc (EBELN)
    Item (EBELP)
    EKKN: (Account Assignment in Purchasing
    Document)
    Purchasing Doc (EBELN)
    Item (EBELP)
    Account Assignment (ZEKKN)
    EKKO: (Purchasing Document Header)
    Purchasing Doc (EBELN)
    EORD: (Purchasing Source List)
    Material No (MATNR)
    Plant (WERKS)
    Source List No (ZEORD)
    thx,
    Ganpat

  • Down Payment for Assets Purchase Order and depreciation

    I have created one purchase order for assets now when i am making down payment against purchase order it pick up asset and post down payment correctly without depreciation. But when i am clearing down payment against the vendor invoice it is reversing downpayment in asset explorer [AW01N] with Transaction Type 180 and calculating depreciation on reversal amount. I am using down payment spl G/l indicate "M" even i tried with "A".
    Can anyone tell me why it is reversing depreciation on downpayment cleared against invoice when original down payment is not calculating depreciation.

    Hi,
       As per as my knowledge is concerned, you should treat the cost element as " Category 90 " , this is a balance sheet account.
       Please check at your end.
    Thanks
    Dasa

  • Version Management active for Release Purchase Orders

    Hi Friends
    We activated Version Management for Purchasing documents. Version 0
    activates automatically when we create PO / contract. After final
    release version will be closed automatically.
    When ever new version is active we could able to make release orders.
    When we make message no.MEDCM014 to error, we could not to do. But we
    want release orders should be make up to old value.
    Can we do with some user exit or BADI for this purpose.
    Regards,
    Sai Krishna

    Hi,
    I think there is no std. way to solve this
    Regards,
    Sai Krishna

  • Open Purchase Orders and Open Sales Orders

    Hi,
    Please let me know the table names for open purchase orders and sales orders.
    Regards,
    Prii

    HI Priti,
    EKPO-ELIKZ  "Delivery completed" indicator, This tell if the given PO line items has any open quantity or not.
    Logic to find out if a given PO has Open Quantity or not is do the following:
        " select the PO Qunatity.
        SELECT SINGLE MENGE FROM EKPO INTO PO_QTY WHERE
        EBELN = ITAB_PO_LN-EBELN AND
        EBELP = ITAB_PO_LN-EBELP.
        " select the GR qunatity which has been received.
        SELECT SUM( MENGE ) FROM EKBE INTO GR_QTY WHERE
        EBELN = ITAB_PO_LN-EBELN AND
        EBELP = ITAB_PO_LN-EBELP AND
        BWART = '101'.
        " select GR Quantity which has been reversed.
        SELECT SUM( MENGE ) FROM EKBE INTO GR_REV_QTY WHERE
        EBELN = ITAB_PO_LN-EBELN  AND
        EBELP = ITAB_PO_LN-EBELP AND
        BWART = '102'.
        POSTED_QTY =   GR_QTY - GR_REV_QTY .
        OPEN_QTY = PO_QTY - POSTED_QTY.
    Regards,
    -Venkat.

  • HOW WE FIND OUT OPEN PURCHASE ORDER AND CLOSED PURCHASE IN THE TABLE?

    HI,
    PLZZ HELP ME.
    what are fields names for open purchase order and closed purchase order
    thanks

    Hi param,
    Go to mseg table, pass the purchase order number and purchase order item. if the mseg-menge = ekpo-menge for the corresponding purchase order then consider the purchase order is close, else it is still open. even check if the entries are not there for corresponding purchase order in mseg table then also it is open.
    select mblnr zeile matnr menge from mseg into it_mseg where ebeln = it_ekko-ebeln
    and    ebelp = it_ekpo-ebeln.
    if sy-subrc <> 0.
    then consider the purchase order is open.
    This is the first case.
    even u can consider like this
    if sy-subrc = 0.
    if it_ekpo-menge > it_mseg-menge.
    then also the purchase order is open.
    Regards,
    Santosh Kumar M.
    Award points if it is useful.

  • Purchase Orders and Invoices

    Hi all
    Is there a report I can run that will show me all Purchase Orders and the Invoices posted against these P.O.'s. If there isnt can I create areport via SQVI and wjat tables must I join together.
    Thanks
    Vishnu

    Hi Vishnu,
    The simplest SQVI you can define for showing purchase orders and their invoices is with tables <b>VBRP</b> and <b>VBFA</b>. VBRP shows the basic information about the invoice items, and VBFA (document flow) shows basic info about the documents in the chain up to the invoice (for instance PO's.) You can later expand your report with EKKO and other tables.
    I hope this tip was useful to you.
    Best regards //Georg

  • Add restriction while create item by "Old Purchase Orders and Templates"

    We are consider to add restriction while create shopping cart item by "Old Purchase Orders and Templates".  After implement such restriction, create item by copying old shopping cart item is not allow for particular matereial group number.
    Is there any BADI can be used in our case?  If there is no, could modify HTML template the only solution?
    Regards,
    Donald

    Hi,
    If the restriction is for certain group of people,then you  have 2 options:
    1.Make the link invisible for those group of people by implementing the BADI BBP_SC_MODIFY_UI.In the BADI,first check the user attributes like particular role and based on that make the link invisible.
    2. Assign certain role to the  group of users who should not see the link "Old Purchase order and templates".You can hide this link in the MENU by removing this from the lits of trasctions in that particular role.In PFCG,go in that role and then under MENU tab,remove the entry for "OLD PURCHASE ORDER AND TEMPLATES".
    BR,
    Disha.
    Do reward points for useful answers.

  • FM / BAPI Inbound delivery creation for a Purchase Order without material

    Dear All,
    I have a requirement to create a Inbound Delivery for a Purchase order without material number. The Purchase Order has only Material text and no material number. Please let me know a BAPI or FM to create inbound delivery in this case where there is no material defined on PO. I require BAPI / FM  since I have to make a web-service for the same.
    Thanks in advance!
    Abhishek

    Hi I did a coding in one of the userexit. If ekpo-matnr is empty then fill
    KOMDLGN-UMVKZ = 1
    KOMDLGN-UMVKN = 1
    KOMDLGN-MEINS = EKPO-MEINS
    This parameters i.e. Qty conversion are necessary and since MATNR does not exists it has to be filled.

  • GR for Imported Purchase order vide Inbound delivery

    When I do Good Receipts for Imported Purchase Order using Inbound delivery and 101 movement type ,sometimes CENVAT clearing account gets hit and sometimes it does not get it .
    Please let me know the criterion based on which CENVAT clearing account gets hit .

    Hi Joseph,
    Just check whether the newly created delivery type is assigned to the Confirmation Category LA under the below path:
    SproMaterials ManagementPurchasingConfirmationsDefine Internal Confirmation Categories
    Regards
    Ramesh Ch

  • Creating inbound delivery for the purchase order line items

    Hi Experts,
    Please let me know how can I create inbound delivery for the purchase order line items?  Say, I have a purchase order with 5 line items in it.  I wanted to create an inbound delivery for only 2 line items at this point of time.  Which SAP Standard transaction I have to use and what all  data I need to populate?  I would appreciate any help on this and will reward the right answer.  Please let me know.
    Thank you in advance.
    with regards,
    Muthu Ganapathy.

    Hi,
    While creating the inbound delivery (VL31N), intially all the items will be shown, see the advance shipping notfication - from the vendor for which he has send confirmation & rest items you can delete simply & save. & next time when the vendor sends rest advance shipping notifcation (confirmation), you can receive them.
    Hope this answers your query.
    Regards
    Irfan.

  • Report for Purchase orders and deliveries

    Hi all,
    Is there any report in SAP that gives me the list of purchase orders and the deliveries associated with those PO's.
    Please advise.
    Thanks in advance
    Sruthi

    Hi,
    What kind of delivery are you looking for ??
    If it's inbound delivery, use VL06I tcode & for outbound, try VL06O
    Thanks & Best Regards,
    Devendra Gaware
    PS - Reward if found useful.

  • Delta CIF activation for the sales orders

    HI,
    I am running in the background all teh master data models between R3 and APO, and updating the stocks for the new items as well.
    Should I run (generate and activate delta) periodically the sales order integration model?
    Thanks a lot

    You'll need to execute /CFM1 and /CFM2 whenever you have NEW RELEVANT MATERIALS for the SCM.
    When you have this, you can generate a new version of the already active IM and activate it via /CFM2. This will transfer only the newly created materials.
    After this, you'll need to run the same operations for your transaction data, since the existing /CFM1 selection and active IM do not include these materials.
    My recommendation is that you schedule a daily or weekly job for the involved objects. This is the sequence SAP recommends you to run:
    Suggestion for the Structure of the Master Data Integration Model
    The following objects should each be grouped together in a separate integration model and activated in the sequence given:
           1.      ATP Customizing and product allocation Customizing
           2.      Plant (plant + distribution centers)
           3.      Classes and characteristics
           4.      Material masters
           5.      Networks
           6.      Maintenance orders
           7.      MRP areas + material masters for MRP areas
           8.      Planning product (this is a special case, see 'Transfer of Data Changes' for more information)
           9.      Availability check
       10.      Product allocation
       11.      Customer and vendor data (these may need to be separated. See below, Suggestion for the Structure of Transaction Data Integration Model, Stocks)
       12.      Work centers (this is a special case, see 'Transfer of Data Changes')
       13.      Production process model (this is a special case, see 'Transfer of Data Changes')
       14.      Delivery schedules, contracts, and purchasing info records (this is a special case, see 'Transfer of Data Changes')
    Suggestion for the Structure of the Transaction Data Integration Model
    The following objects should each be grouped together in a separate integration model and activated in the sequence given:
           1.      Stocks (if you hold special stocks at the customer or vendor, the relevant customer or vendor must be contained in the same integration model)
           2.      Sales orders (contains sales orders, deliveries, scheduling agreements, quotations, and customer independent requirements)
           3.      Purchase orders and purchase requisitions
           4.      Production/process orders + planned orders (these may need to be separated). These have to be activated before production campaigns
           5.      Manual reservations and planned independent requirements
           6.      Production campaigns + process/planned orders
           7.      Shipments
    This was extracted from the following help.sap.com address: http://help.sap.com/saphelp_scm50/helpdata/en/74/d67237902ae147e10000009b38f842/content.htm
    Create a new job in /SM36.
    Steps should include, for each object:
    a) RIMODGEN - IM creation
    b) RIMODAC2 - IM activation
    Since you'll be running this job periodically, it's nice to also add to your job report RIMODDEL, that delete the useless old inactive versions of the IMs from table CIF_IMOD.
    I hope this answered your question!
    Will

Maybe you are looking for

  • What are the tables for PS datasource.

    HI ALL, I am new to PS module , I got the Data source , infocube and details from help.sap.com but i want to know the exact flow on the r3 side. which table values come to data source . for eg : 0ps_dat_ntw is the data source for network dates ,so wh

  • Calling Recursive function with Powershell to list all documents in the document library under a SIte collection

     function Recurse($RootFolder,$List) {                         $Context.Load($RootFolder)                         $Context.Load($RootFolder.Folders)                         $Context.ExecuteQuery()                         foreach($folder in $RootFolde

  • Clicking on a link opens a broken window that never completes?

    When clicking on some links (for example, a list of links to pages in a newsletter email), a few will open, then I get dead windows. Sometimes the window will have just a title in the top bar and not go any further. More recently, I've been getting t

  • Forums linking to other forums

    When I am in the Photoshop Windows forum I notice there is a link (on the right side of the screen) to the Photoshop Windows FAQ forum. Great, but why is there not also a link to Bridge Windows and Adobe Camera Raw forums? These products are most cer

  • Additional condition check in using Substitution method...

    Hi All, We are using Substitution method to replace offsetting entry FRE with custom transaction key ZFR for all Finished goods for Purchase account active company codes. But our requirement is to replace FRE only when it is an off setting entry for