Purchase Order - COndition Record

Hi
I like to know (IMG Settings) where we have to maintain Condition Records for Purchase order ?
Please help me on this issue
Thanks & Regards,
senthil.

Steps for MM Pricing Procedures
Can anyone please help me on the Pricing Procedures?
I have read it many times but fail to understand.
Pricing Procedure :
In MM module, pricing procedure is used during RFQ and PO creation. Total value of material based on all addition and subtraction like discount, surcharge, tax, freight, etc. In this we are defining pricing procedure and linking to vendor and purchase department through the virtual schemas. 
Following steps for pricing procedure as,
1. Define conditions.
2. Define pricing procedure.
3. Define virtual purchase organization and vendor.
4. Info Record.
Customization for Pricing Procedure : 
1. Definition of Conditions :
/NMEK0-condition typeu2026condition types- definition (define for basic price, net price, discount, surcharge, tax etc.)
2. Defining pricing procedure :
/NMEK0- calculation schema-calculation schemasu2014New entries (Define procedure and put the conditions like formula so that final price will be net price / total value as per company requirement)
3. Linking pricing procedure to independent condition types.
/NMEK0-condition typeu2026condition types- definition for position for defined conditions (Enter the defined pricing procedure in the each independent conditions u201CPricing Procedureu201D box)
4. Defining Schema group for Vendor :
/NMEK0- calculation schema-schema groupsu2014vendoru2014New Entries.
5. Defining Schema group for Purchase Organization--- New entries.
/NMEK0- calculation schema- schema groups---- purchasing organization--- new entries.
6. Linking Virtual Purchase Organization to actual Purchase Organization.
/NMEK0- calculation schema- schema groups----- Assign P.Org. (in actual P.Org, enter virtual P.Org)
7. Linking Pricing procedure to virtual P.Org and virtual vendor :
/NMEK0- calculation schema- Determine Schema--- -Standard --- New entries (Enter virtual schema and P.Org. along with pricing procedure)
8. Linking virtual vendor to actual vendor-- /NXK02   then  enter schema group vendor in Purchasing Data )
9. Info Records (/NME11)---- click on u201CPurch. Org. data1u201D and enter condition types and pricing procedure
Anand
What are the steps in pricing determination in MM? Condition, Access sequence and schema.
In the SAP MM Pricing is more important. Just yesterday I have completed the Pricing as I am doing the SAPMM now. I can give some light on this Topic, not 100%. After 2 days definitely some more I can share.
The Basic thing is Condition Technique. In which there are
1. Access Sequence 2. Condition Record 3. Condition Type 4. Condition Table.
A Access Sequence access a Condition Record of a Condition Type in a Condition Table is a  Condition Technique.This is a simple logic
Here the Condition Type is very important like PB00, PBXX,RA01 etc.
In the background every Condition Type has its own defition means the purpose of the Condition Type  like, is it for Pricing or Percentage, Quntity base, Accrual Feilds etc is to be defined to work this functions.
Normally we use the existing ones without any risk. But some cases, we have to Create a New Condition Types as per the organisation requirement.
The Pricing Schema is useful to minimise condition types while mention prices for Vendor on the basis of Pricing Schema which we defined according to organisation requirement.
The Pricing Schema means the calculations procedure of Condition Type.
Ex.  RA01 - Discoount % is caclulated on PB00 - Gross Price  means
RA01 is based on PB00  like that we have to define in the Pricing Schema
which makes easy to use in realtime. 
Here PB00 has the Access Sequence - 0002. 
But RA01 does not have the Access Sequence.Why because it is a dependent on PB00. But both are Condition Types.
In the system, by default some standard  Scheme will be there at Vendor Schema Group in the Vendor Master Screen means the standard one is assigned which is very lengthy which may fullfil our requirement. But some cases which may not fullfil our requirement, in such we have to define.
For the configuration, I may not able to explain properly through here but will give some Idea.
Configuration: SPRO-IMG-Material Management- Purchasing- Conditions-Define Price Deternmination Process
1. Define Access Sequence
2. Define Condition Type
3. Defince Calculation Schema:- Here you have to define the Schema 
Define Schema group
1. Define Schema Group vendor
2. Define Pricing Schema group
3.  Schema group for Purchase Organisation
4. Assign Schema group to Purchase Organisation 
Define Schema determination
1.define calculation schema for Standard purchase organisation
After completion of the Schema Group, we have to assign it to Vendors.
Then whenever we use any transaction with this Vendor, the concerned  Schema will work as configured by us.
I think this will help you. Actually the Pricing is a vast. Becuase each Condition have its own importance and each Access Sequence have its own importance. So  you need not bother about this. First you learn how to define the Calculation Schema through the above.
Here we can create many Calculation Schemas which can assign one schema to Local vendors
another schema to out side vendor one more schema to foreign vendors like that we can classify.

Similar Messages

  • Retrieve the Purchase Order Condition Records Table

    Hallo!
    I have found this code right here:
    http://www.sap-basis-abap.com/sapab025.htm
    It is very useful particular for purposes which I need. Please can somebody
    try to fix the error to get it working. There is an internal table missing.
    Regards
    Ilhan
    Retrieve the Purchase Order Condition Records Table
    select * from ekko.
           select * from konv where knumv = ekko-knumv
               "Get all the condition records for the purchase order
           endselect.
    endselect.
    * Get the info record conditions record
    * First declare the record structure for the key
    data: begin of int_konp,
                 txt1(5),
                 lifnr(5),
                 matnr(18),
                 txt2(4),
                 txt3(1),
            end of int_konp.
    clear: konh, konp, int_konp.
    * data for the record key konh-vakey
    int_konp-txt1    = '00000'.
    int_konp-lifnr    = ekko-lifnr+5(5).
    int_konp-matnr = ekpo-matnr(18).
    int_konp-txt2    = 'ALL'.
    int_konp-werks = ekpo-werks.
    int_konp-txt3    = '0'.
    select * from konh where      kschl = 'PB00'            "Conditions (Header)
                                         and datab => p_datum.       "valid from date
          if konh-vakey = int_konp.                                  "Conditions (Item)
                 select single * from konp where knumh = konh-knumh.
                 continue.
          endif.
    endselect.

    Hi flora
    Just get through the sequence .
    see the table fields ...
    1. From EKKO table take an entry which is having pricing conditions.
    Now in the fields list check out for field EKKO-KNUMV(document condition number).
    2.Take this condition number and now goto table KONV.
    Give the document condition number in the field  KONV-KNUMV and execute .
    This will lead to a list of document condition numbers and some other fields .
    3.Now check for field KONV-KNUMH ,KONV-KAWRT(quantity) and note the value KONV-KWERT  .
    (Remember this is at header level).
    This is ur condition record number.
    **comments
    Now from document condition number we got the condition record number (KNUMH).
    4. now since u want the item level tax procedure go to table KONP and give the condition record number and execute .
    This will give u a list of details .
    Now concentrate on KONV-KAWRT (scale quantity) KONP-KBETR(rate) as this table will store “Pricing  per UNIT “ so product of these two will give u the total pricing tax, for a particular condition type say PR00  .
    For that particular condition item .
    Check the pricing procedure .
    See t-code VK13 and check the pricing procedure .
    From me23 check the same PO num select the item and check the pricing conditions applicable .
    Select a particular pricing and goto condition->analysis->analysis pricing  ,
    Better take help of a SD functional consultant in the process.
    regards,
    vijay.

  • Sales & purchase output condition records

    Hi ,
    I am asked to develop a query for the sales output condition records and the purchase output condition records.
    Can someone help me with the details like tables and the selection I can make to test them ?
    Please help me with the transaction code for the same too.
    Thanks in advance.

    You can use transaction NACE to display condition records.
    Execute NACE > Select Application V1 - Sales from list > then select button 'Condition Records' > select output > select key conbination > then report will occur with Slection.
    You can do the same steps for Application EF - Purchase Order
    If you wants to find out tables you can go to respective reports and find tables given in program under statement TABLE
    For sales there are tables for different key combinations like B001, B915, B520, B511 etc. for Purchase Order tables like B025, B504, B027 etc basically tables starts with B*
    I am not sure why you need to develope query because these reports gives list of condition records maintained for particular output.
    Hope it helps !!

  • GL Configuration Purchase order condition

    Gurus,
    Kindly let us know T-code to see GL Configuration of Purchase order condition.
    Condition type...is as under
    ZDEC
    ZJWC
    JEXC
    SKTO
    JEXS
    Condiation Use "The condition type indicates, for example, whether, during pricing, the system applies a price, a discount, a surcharge, or other pricing elements, such as freight costs and sales taxes. For each of these pricing elements, there is a condition type defined in the system"

    Hi,
    Check in account key OB40 and OBYC settings
    Regards,
    JA

  • Extracting Purchase Order condition data

    Hi All,
    I have requirement where as i need to pull the purchase order condition data, but i haven't found any datasources regarding that, can somebody guide me how to pull that data to BW.
    thanks
    Neel

    Hi Neel,
    Create view of EKKO ( Purchasing header ) and KONV  (Conditions (Transaction Data)) and link it on EKKO-KNUMV to KONV-KNUMV.
    Create Generic Extractor based on the View.
    Hope that helps.
    Regards
    Mr Kapadia
    Assigning points is the way to say thanks in SDN.

  • Purchase Order Condition values

    Hi Friends ,
                 I'm facing a problem in identifying a data source for  Purchase Order's. On searching in SDN Forum i came to know that there is no standard Datasource for Purchase order conditions.
                 Can some one give me little clue of how to pick up the conditions from R/3 to my biw system.
    Thanks and Regards,
    Vijay

    Hi Anil ,
             Thanks for your response.
             On analysing the condition table KONV in R/3 one thing striked my mind.
             Either it's Purchase order or Sale Order the condtion table is one , that is KONV. So if the condition number is available for a PO i think very well we can pick it for po's.
             Can you give me your suggestion on the above...please.
    regards,
    Vijay

  • Purchase order Condition control tab?

    Hi,
    Here in the purchase order condition control tab I need to get Price Date and Price date category. Presently they are not appearing in my purchase orders. When I go to screen layout, I am not able to get those fields to configure.
    Could please anybody help me urgently?
    Thanks,
    Bhairav

    Hi
    GOTO----> OLME--> PO -> Define Screenlay out at Document level -> There Choose your Field Selection ( NBF  and ME21N)... and go into to details--> And select the field selection group  Quantity and Price and Double Click--> There you choose the field  <b>PRICING DATE CONTROL</b>    and  Check it as a Required Entry or Optional Entry and save . <b>DO IT FOR BOTH NBF and ME21N FIELD SELECTION.</b>
    Now when ever you make PO in ME21N.....You will get Pricing Date Category and  Price Date Fields in  PO-> Item Details---> Condition Control Tab.
    Reward if useful
    Regards
    S.Baskaran
    Message was edited by:
            baskaran srinivasan

  • Purchase Order Condition Data

    Hi,
    Can anybody please explain what is Purchase Order Condition Data ( KONV ).
    What is the use of it in the report.
    Thanks,
    JB

    .

  • Regarding Purchase order info records

    Hi,
    How do I read the text maintained against purchase order info records, transaction ME12. What is the key that I should use for reading the text maintained.
    Regards,
    Vijay

    it may differ from system to system, so i will tell you how i determined this, rather than what i determined.
    In your development or test system, make a change to the text.
    now, use SE16 and look at table STXH. Put todays date in the TDLDATE selection (and your id for TDLUSER, if you want)
    You should see the changes you made, and the keys associated with the texts. you can then use the FM READ_TEXT to get the text...
    Hope this helps

  • Table name for WBS Element & Purchase Order Conditions

    Dear All,
    I need a table which stores WBS Elemnt No. & Purchase Order Conditions ( Like Excise Duty, Sales Tax, Packing & Forwarding etc.)
    Thanks & Regards,
    Sandeep N.Theurkar

    Hi ,
    It is not possible to get all this information from one table. But you can get the data by writing ABAP , or by creating a query.
    As Amit posted WBS table is PRPS.
    You can get the account assignment of a purchase order (whether it is network or WBS element) from table :EKKN.
    Pass PO number into EKKN and get the following:
    WBS No - PS PSP PNR
    Network -NPLNR
    Activity - AUFPL
    Hope all the postings together will provide an integrated picture.
    Regards
    Muraleedharan.R

  • Purchase Order condition isn't calculating the value of refundable tax

    Hello Experts,
                          When i am inputting tax in invoice tab at item level footer in Purchase Order, and after that when i am calculating the taxable and the total amount the condition tab isn't displaying the tax value, the condition type is NAVS of tax in condition tab. Kindly suggest me i want to calculate tax.
    Thanks
    Harmandeep

    Hi flora
    Just get through the sequence .
    see the table fields ...
    1. From EKKO table take an entry which is having pricing conditions.
    Now in the fields list check out for field EKKO-KNUMV(document condition number).
    2.Take this condition number and now goto table KONV.
    Give the document condition number in the field  KONV-KNUMV and execute .
    This will lead to a list of document condition numbers and some other fields .
    3.Now check for field KONV-KNUMH ,KONV-KAWRT(quantity) and note the value KONV-KWERT  .
    (Remember this is at header level).
    This is ur condition record number.
    **comments
    Now from document condition number we got the condition record number (KNUMH).
    4. now since u want the item level tax procedure go to table KONP and give the condition record number and execute .
    This will give u a list of details .
    Now concentrate on KONV-KAWRT (scale quantity) KONP-KBETR(rate) as this table will store “Pricing  per UNIT “ so product of these two will give u the total pricing tax, for a particular condition type say PR00  .
    For that particular condition item .
    Check the pricing procedure .
    See t-code VK13 and check the pricing procedure .
    From me23 check the same PO num select the item and check the pricing conditions applicable .
    Select a particular pricing and goto condition->analysis->analysis pricing  ,
    Better take help of a SD functional consultant in the process.
    regards,
    vijay.

  • Purchase order -Conditions tab

    HI
    Any one can explain me in detail about Conditions tab in Item Overview of Purchase Order in that we have 3 tabs like
    1. Condition record
    2. Analysis
    3. Update
    please explain me which tabs are used in what conditions ?
    Thanks & Regards,
    senthil.

    Hi
    1) Condition Record: keep the cursor in the condition type PB00 and click the condition record it will take you  to the detail condition record were you can check whether scales exist (or) Not
    2) Analysis :In this you can check all the condition type and whether automatic entry (or) manual entry can be seen
    3)UPDATE
    Hi,
    YActivate button in the condition tab.
    The purpose of this activate button is to activate the price in the P.O.
    Eg : You have created a P.O (04.07.2008) with Purchasing info record(PIR) and the price has flown from PIR say Rs 100.00
    After sometime you have changed the price to Rs 150.00
    In the P.O if you have not received any goods you go to ME22N and press the activate button the price Rs 150 will be flow from the PIR for the same P.O ,you do not need to raise New P.O.
    Please try.
    G.Ganesh Kumar

  • Import Purchase order-Condition type and pricing procedure

    In purchase order (IMPORT) has 500 line items. For each line item having customs condition type (BCD, cess, HScess, CVD, cess, HScess, Additional duty). For this manual entry is very difficult to entry.
    By default condition type can pick default % or value like as
    BCD 5%
    Cess 2%
    HScess 1%
    CVD 10%
    Cess 2%
    HScess1%
    Additional duty 4%. at the time of PO creation level by default this values come to in PO
    For this anything maintain in condition type level or calculation schema level.
    Pls explain step by step.

    create a acess seq in tcode  M\07 with say table 044 for vendor
    assign this acess seq to ur condition type of customs ecess cvd etc
    create a cond record in MEK1 for all import vendor
    so when ever u create PO for any import vendor u will get all the value for all condition type from cond record.
    u can create acess seq as u woulds like to maintain  cond record may be on purchase org if u have created seprate for Imports
    or vendor plant comb etc
    hope this solves ur issue

  • In purchase order condition tab is not appearing

    Dear Mentors
    when i am opening purchase order in me23n, we are not able view
    condition type in standard screen
    I provided authorizations following
    M_BEST_BSA
    M_BEST_EKG
    M_BEST_EKO
    M_BEST_WRK
    M_EINK_FRG
    parameters are maintained for user profile
    EFB  = PO
    ME_USE_GRID =X
    SCL = X
    Please find attached screen shot for more details.
    THANKS
    REGARDS
    SUDHEER K

    Check OMET settings.
    First check your user profile from t-code SU3, what is value set for parameter EFB
    Then go to t-code OMET. The display condition should be maintained for Function Authorization.

  • GL account deletion from Sales Order Condition record

    Hi,
    Please experts guide me on this! what do i have to do and where to look for it.
    The GL account 200000 , 1200001 , 00002 are all directly mapped to sales order in the condition record. When a sales order is raised the entry are directly posted in this accounts which further hits the Profit & Loss Account.
    1) The said 3 GL accounts are to be discontinued from condition record in sales order
    2) The entry which are till date recorded in the said accounts needs to be reversed. There are some manual entry also made by the user which are correct, only the entry which have happened due to automatic posting needs to be deleted
    Thanks and regards.

    Hi,
    Please make the necessary changes in the pricing procedure for those condition types. I am not sure what you mean by condition record.
    Check under Basic Function for Accoutn assignment & make the necessary changes to the GL accounts determination/ assignment.

Maybe you are looking for

  • How to use a constant defined as a concat of char values in an IN clause

    Greetings, I defined a CONSTANT as a concatenation of values and attempted to use it in an IN clause without success ... CREATE OR REPLACE PACKAGE PKG_TEST AS Q_IDS CONSTANT VARCHAR2(25) : = '''3'''||','||'''14'''||','||'''16'''||','||'''18'''||','||

  • Does SQL Azure charge cross region traffic cost?

    Say, I have a SQL DB on West US, and have two cloud services, one hosted on West US and the other hosted on East US. Assume two cloud service have exactly same read/write throughput on the DB, is the cost same? I am wondering, if East US service cost

  • Why do I have the number one on my desktop icon?

    My App Store desktop icon has the number one red circle... How can I remove it?

  • Run form error

    Hi, I tried to run form but got error sayng that the form fmx file is made in older version of forms builder... How can I overcome this issue and is it possible? I am now using developer version : Forms [32 Bit] Version 10.1.2.0.2 (Production) Hope s

  • Nokia 701 - GPS Signal Lost (Never get it to work...

    I'm having trouble using the GPS on my 701. After a minute it will say  "GPS signal lost" all the time. And moreover the current position it is indicating is wrong.(I'm using it outside) I've tried positioning method Wi-Fi/Network and Network Based.