Price Lists in SD on Product Categories

Hi !
I have the following business scenario;-
Product Category: A with products:-
A1, A2 , A3 etc
Product Category: B with products:-
B1,B2,B3 etc
The basic prices(condition type:PR00) for the products in category A are in the range:
Rs 10,000 - Rs30,000.
The prices for the products in category B are in the range:
Rs 40,000 - Rs60,000
The products from both categories are supplied to the same set of customers.
Can we create price lists in SD to map this scenario, particularly based on the product categories?
Thanks.
Edited by: Shamik Sengupta on Jun 11, 2008 1:05 PM

Dear Shamik Sengupta
In material master under Sales: sales org.2 view, there is a field *"Material pricing group".* 
In IMG Path -- SD --> Basic Functions --> Pricing --> Pricing Control --> Mintain Price Relevant Master Data Fields --> Define Material groups.  Here create some group according to your requirement and assign it in the material master as cited above.
Now assuming that your condition is PR00, in V/07, maintain the table 029 so that your requirement can be met.
thanks
G. Lakshmipathi

Similar Messages

  • Subsequent addition to new product categories of supplier list

    Hi,
    Business Requirement:
    An existing supplier, for whom a contact person is already created and is having a valid user ID and password, now wants to send his requests to include him in the supplier list for some more product categories.
    Supplier selects some more product categories in a webpage of portal.
    System sends a link to supplier's email, which on clicking, will take him to a page where he can enter the answers to questionnaires assigned to the product categories(s) selected by him.
    Buyer verifies the answers and subsequently add him to some more product categories in the supplier list or rejects the request submitted by the supplier.
    Question:
    1. We would like to know, what is standard business process available in SAP which is "SOMEWHAT" similar to above requirement.
    2. If available, Which (SICF) service needs to be used for this? or what settings/configurations are required to achieve this.
    Thanks.
    Ganapathi
    Details: SRM7.0 SP07, ECC Ehp4, Using MM-SUS.

    Any update please.

  • How to create multiple price lists in indesign linking via ODBC/ SQL

    Hello,
    I'm hoping someone can help me as I am really not sure where to begin! We stock over 3000 product lines and have 2000+ customers who all have bespoke prices, all of this information is stored on our system. I am trying to find out if it is possible to create a price list that links to this information so that we can create bespoke price lists for each customer. We currently use excel but would like a more professional look to our price lists and to include product images etc. Whilst the price list product content will be the same for all customers we will need to periodically need to add new products to this price list. I anyone able to point us in the right direction for a solution to this?
    Many thanks
    Jen

    Hi Peter,
    Yes I think that this is the way we will be probably go but not sure what the correct terms are for what I am looking for. Not sure if you are allowed to post examples of specific commercial plug ins here but if not, what should I search for. I know if sounds daft but it's a real case of not knowing what it is I am looking for. I am a complete InDesign newcomer who uses it at the moment for simple flyers etc so more than happy to find someone who can do the more complex stuff for me. The price lists will need to be done inhouse and on a regular basis.
    thanks
    Jen

  • PRICE LIST LINE을 DELETE 하는 SAMPLE API

    제품 : MFG_QP
    작성날짜 : 2006-05-23
    PRICE LIST LINE을 DELETE 하는 SAMPLE API
    ========================================
    PURPOSE
    Price List Lines을 delete 할 수 있는 API가 있는지 알아보고 그 사용방법
    을 이해한다.
    Explanation
    아래 설명하는 script는 Price List Lines 만을 delete 하는 sample API
    script 이므로 고객사의 business needs에 맞게 고객사에서 script를 수정하
    여 사용하여야 한다.
    Oracle은 QP_LIST_LINES table에 있는 created_by, creation_date 등을 이용
    하여 관련된 records를 읽을 수 있는 cursor를 생성하영 사용할 것을 권장한
    다.
    QP_LIST_LINES table의 list_line_id를 읽어 delete를 위해
    qpr_price_list_line_tbl에 전달한다.
    참고로 각 1000이 반복될때 마다 commit 하는것을 권한다.
    /*$Header: QPPLXMP3.sql 115.3 2001/11/19 18:15:32 pkm ship $*/
    Sample script which deletes an existing Price List line and the product
    information for the line (Product Information is stored in pricing
    attributes table in product attribute columns).
    This sample price list does not have any qualifiers or price breaks or
    non product-information type of pricing attributes.
    This script must be modified by the user such that the
    qpr_pricing_attr_tbl(J).product_attr_value column is populated with a valid
    inventory_item_id from the instance where this script is run. Also, other user variables are noted within arrows, <>.
    Please read the Oracle Pricing User guide (Appendix A & B) to understand
    the flexfields and seed data.
    -- set environment variables
    set serveroutput on size 1000000
    set verify off
    set feedback off
    set echo off
    set autoprint off
    set arraysize 4
    set pagesize 58
    set term on
    set underline =
    set linesize 100
    declare
    gpr_return_status varchar2(1) := NULL;
    gpr_msg_count number := 0;
    gpr_msg_data varchar2(2000);
    gpr_price_list_rec QP_PRICE_LIST_PUB.Price_List_Rec_Type;
    gpr_price_list_val_rec QP_PRICE_LIST_PUB.Price_List_Val_Rec_Type;
    gpr_price_list_line_tbl QP_PRICE_LIST_PUB.Price_List_Line_Tbl_Type;
    gpr_price_list_line_val_tbl QP_PRICE_LIST_PUB.Price_List_Line_Val_Tbl_Type;
    gpr_qualifiers_tbl QP_Qualifier_Rules_Pub.Qualifiers_Tbl_Type;
    gpr_qualifiers_val_tbl QP_Qualifier_Rules_Pub.Qualifiers_Val_Tbl_Type;
    gpr_pricing_attr_tbl QP_PRICE_LIST_PUB.Pricing_Attr_Tbl_Type;
    gpr_pricing_attr_val_tbl QP_PRICE_LIST_PUB.Pricing_Attr_Val_Tbl_Type;
    ppr_price_list_rec QP_PRICE_LIST_PUB.Price_List_Rec_Type;
    ppr_price_list_val_rec QP_PRICE_LIST_PUB.Price_List_Val_Rec_Type;
    ppr_price_list_line_tbl QP_PRICE_LIST_PUB.Price_List_Line_Tbl_Type;
    ppr_price_list_line_val_tbl QP_PRICE_LIST_PUB.Price_List_Line_Val_Tbl_Type;
    ppr_qualifiers_tbl QP_Qualifier_Rules_Pub.Qualifiers_Tbl_Type;
    ppr_qualifiers_val_tbl QP_Qualifier_Rules_Pub.Qualifiers_Val_Tbl_Type;
    ppr_pricing_attr_tbl QP_PRICE_LIST_PUB.Pricing_Attr_Tbl_Type;
    ppr_pricing_attr_val_tbl QP_PRICE_LIST_PUB.Pricing_Attr_Val_Tbl_Type;
    K number := 1;
    j number := 1;
    begin
    oe_debug_pub.initialize;
    oe_debug_pub.setdebuglevel(5);
    Oe_Msg_Pub.initialize;
    DBMS_OUTPUT.PUT_LINE('Debug File = ' || OE_DEBUG_PUB.G_DIR||'/'||
    OE_DEBUG_PUB.G_FILE);
    --dbms_output.put_line('after get price list ');
    /* setup the list_header rec for update */
    gpr_price_list_rec.list_header_id := <price_list_header_id>;
    gpr_price_list_rec.name := <price_list_name>;
    gpr_price_list_rec.list_type_code := 'PRL';
    gpr_price_list_rec.description := '<price_list_description>;
    gpr_price_list_rec.operation := QP_GLOBALS.G_OPR_UPDATE;
    -- delete the price list line rec
    gpr_price_list_line_tbl(K).list_header_id := <price_list_header_id>;
    gpr_price_list_line_tbl(K).list_line_id := <price_list_line_id>;
    gpr_price_list_line_tbl(K).list_line_type_code := 'PLL';
    gpr_price_list_line_tbl(K).operation := QP_GLOBALS.G_OPR_DELETE;
    --dbms_output.put_line('before process price list ');
    QP_PRICE_LIST_PUB.Process_Price_List
    ( p_api_version_number => 1
    , p_init_msg_list => FND_API.G_FALSE
    , p_return_values => FND_API.G_FALSE
    , p_commit => FND_API.G_FALSE
    , x_return_status => gpr_return_status
    , x_msg_count => gpr_msg_count
    , x_msg_data => gpr_msg_data
    , p_PRICE_LIST_rec => gpr_price_list_rec
    , p_PRICE_LIST_LINE_tbl => gpr_price_list_line_tbl
    , p_PRICING_ATTR_tbl => gpr_pricing_attr_tbl
    , x_PRICE_LIST_rec => ppr_price_list_rec
    , x_PRICE_LIST_val_rec => ppr_price_list_val_rec
    , x_PRICE_LIST_LINE_tbl => ppr_price_list_line_tbl
    , x_PRICE_LIST_LINE_val_tbl => ppr_price_list_line_val_tbl
    , x_QUALIFIERS_tbl => ppr_qualifiers_tbl
    , x_QUALIFIERS_val_tbl => ppr_qualifiers_val_tbl
    , x_PRICING_ATTR_tbl => ppr_pricing_attr_tbl
    , x_PRICING_ATTR_val_tbl => ppr_pricing_attr_val_tbl
    IF ppr_price_list_line_tbl.count > 0 THEN
    FOR k in 1 .. ppr_price_list_line_tbl.count LOOP
    dbms_output.put_line('Record = '|| k ||
    'Return Status = '|| ppr_price_list_line_tbl(k).
    return_status);
    END LOOP;
    END IF;
    IF gpr_return_status <> FND_API.G_RET_STS_SUCCESS THEN
    RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
    END IF;
    dbms_output.put_line('after process price list ');
    for k in 1 .. gpr_msg_count loop
    gpr_msg_data := oe_msg_pub.get( p_msg_index => k,
    p_encoded => 'F');
    dbms_output.put_line('err msg ' || k ||' is: ' || gpr_msg_data);
    null;
    end loop;
    EXCEPTION
    WHEN FND_API.G_EXC_ERROR THEN
    gpr_return_status := FND_API.G_RET_STS_ERROR;
    -- Get message count and data
    --dbms_output.put_line('err msg 1 is : ' || gpr_msg_data);
    WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
    gpr_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
    --dbms_output.put_line(' msg count 2 is : ' || gpr_msg_count);
    for k in 1 .. gpr_msg_count loop
    gpr_msg_data := oe_msg_pub.get( p_msg_index => k,
    p_encoded => 'F');
    -- Get message count and data
    dbms_output.put_line('err msg ' || k ||' is: ' || gpr_msg_data)
    null;
    end loop;
    WHEN OTHERS THEN
    gpr_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
    -- Get message count and data
    --dbms_output.put_line('err msg 3 is : ' || gpr_msg_data);
    end;
    commit;
    --- exit;
    Reference Documents
    Note 362667.1

    Name: Chris Mentch
    Region: US/Americas
    Contact E-mail: chris.mentch at mentchconsulting.com
    Website: http://www.mentchconsulting.com
    Time working with BC: 1.5+ years
    Programming Languages: PHP, JSP, Javascript, Ruby/RoR, Jquery, .Net (if I have to), SOAP API
    Custom BC Client Applications: Integrating custom external applications with Business Catalyst through eCommerce and CRM APIs.
    Name: cindy radford
    Region: Americas Canada
    Contact E-mail: [email protected]
    Website: http://.com
    Logo: Link to your logo image (no larger than BC standard partner image, I will place this at the top of your listing)
    Time working with BC: new
    Programming Languages: Cobol and mainframe, starting web development
    Third Party API Experience: Cobol
    Custom BC Client Applications: None as of yet
    Name: eBridgeConnections
    Region: Americas, APAC, Europe, Africa
    Contact E-mail: [email protected]
    Website: http://www.ebridgeconnections.com
    Logo: http://www.ebridgeconnections.com/images/ebhome/logo.png
    Time working with BC: 1.5 years
    Programming Languages: n/a - Back-office integration with 40+ accounting/ERP systems
    Third Party API Experience: 20+ eCommerce platforms, CRM (SalesForce)
    Custom BC Client Applications: B.C. API integration
    Name: OneSaas (www.OneSaas.com) - Cloud Integrations Made Easy
    Contact E-mail: [email protected]
    Website: http://www.onesaas.com
    Time working with BC: 2 yeras
    Third Party API Experience: We integrate over 35 cloud platforms with BC. We know every API from almost every system.

  • Cannot see list of Product Categories in Shopping Cart entry screen

    Hi All,
    I would appreciate it if someone could help me with this issue.
    Although I appear to have sucessfully replicated the backend R3 Mat Groups into SRM Product Categories, as I can see them in the hierachy screen, i.e. Hierachy ID R3MATCLASS in trans code COMM_HIERARCHY, they are not appearing in my Shopping Cart entry screen Product Categories drop down.
    I have looked in Org structure maintanance and can see two things that may be the root causes:
    (a) In 'Exended Attributes', if I select the Source System, I do not get the option to list the product categories in the match code box
    (b). In the 'check' screem, the system is displaying the message 'Attribute ITS_DEST not yet defined'
    Any feedback on how I can pull in the groups during cart entry would be appreciated.
    Thanks,
    Steve

    Hi Kathirvel,
    I am not sure if this workaround is correct, but rather than using trans code BDLS as you suggested, I defined the logical system 'ABC' . This logical system was the assigned as a target system in 'Assignment of Logical Systems' under the product category customisation (table COMV_LOGSYS_MAP)
    These changes subsequently allowed the drop down on the Org structure when selecting a Product Category in extended attributes, therefore making the list available in the web front end.
    The IMG help text for COMV_LOGSYS_MAP says:
    Case 1
    You have created the categories in your test system. They therefore have the logical system <SYSTEM_TEST>. So that the categories can also be changed once they have been transported into the production system, the categories must have the logical system <SYSTEM_PROD> in the target system.
    Maintain the following entry:
    Source <SYSTEM_TEST>
    Target <SYSTEM_PROD>
    The logical system of the categories will be changed from <SYSTEM_TEST> to <SYSTEM_PROD>.
    This appears to have resolved the issue. I would be interested to hear what you think,
    Many thanks , Steve,

  • Mass Maint. of price list  categories

    Please explain the uses of  'Mass Maint. of price list  categories' option in PFCG -> utilities.

    Hello Keerti,
    I have never used the assignment of licenses via roles since it doesn't fit in our licensing concept,
    but:
    1) I think there will be now difference except the way how you assign the license
    2) I would prefere user licensing...
    For sap a user typically has one role that describes all his activities. But in our small company we have many user with acivities cross applications. So we cannot use sap standard role concept. Instead I have created a structure based on our company organization and use multiply roles to combine a end user role.
    Think also about DUMMY users (for example for background processing or mailing) - normally these users need permissions for the corresponding applications but you will license them as test users.
    3) when you look at the predefinied values you will see that there is not really a great number of preassigned roles
    4) you can add your own roles to the list of license/role assignment
    5) no idea, just try..

  • Download of Price List Categories from R3 to CRM

    I am not able to Download the Price List Categories present in R3 to CRM,I have searched for Filters to Download the same but couldnt find one Pls Guide for the same,ASAP.
    Thanking You,
    R S Kulkarni

    Hello Sir's and Madam's,
                           I hope i havent asked an unanswerable Question please provide some solution to this query as it shall solve lots of problem relating to Downloads and shall save lots of our efforts and time,
    Good Points shall be rewarded for perfect solution provider.
    Thanks and Regards,
    R S Kulkarni

  • Oracle Products Price List

    Where can i find the complete price list of Oracle Products ( Oracle 8i & Oracle 9i,developer6i etc.).
    thanks in advance

    Visit ,
    http://www.oracle.com/corporate/pricing/pricelists.html
    Simon

  • Where do I find the price list for adobe products

    where do I find the price list for adobe products

    Hi mikekuszla
    Which Product you want to purchase or Looking for ?

  • Object Navigation from Price Lists BEAD_CNPL_PL to Products CRMM_PRD_SALES

    Hi,
    On CRM 5.0, I want to make a simple customerization on the item data of price list, so that, when user views the price list detail, the item data shows product description.
    I want to make the product description as an Object Link and once user clicks it, product detail is shown.
    Thus, I make following configuration but the product description does not shown as Object Link, only a normal unclickable textfield. Please help on what I wrongly configured.
    <u>Step 1: Field Group Structure</u>
    <b>Field Group:</b> BEA_CNPL_PLI_DET
    <b>Field Name:</b> PRODUCT_DESCR
    <b>Object Type:</b> PRODUCT
    <b>CRM Method:</b> APPLICATION
    <b>Field ->Object ID:</b> PRODUCT_ID
    <i>All other inputs are left empty</i>
    <u>Step 2: Define Object type for navigation</u>
    <b>Object Type:</b> PRODUCT
    <b>Object Type:</b> BUS1178
    <b>Description:</b> Product
    <b>Standard Object Type:</b> X
    <b>Internal Key:</b> <i><empty></i>
    <u>Step 3: Method for object type (Navigation)</u>
    <b>Object Type:</b> PRODUCT
    <b>Method:</b> APPLICATION
    <u>Step 4: Assign Object Method to Role</u>
    <b>Role:</b> SAP_PCC_ACCOUNT_MANAGER
    <b>Object Type:</b> PRODUCT
    <b>Method:</b> APPLICATION
    <b>Priority:</b> 55
    <b>Implementation Type:</b> BSP as External Service
    <b>Application:</b> CRMM_PRD_SALES
    <b>View:</b> <empty>
    <b>ID Page/Service:</b> pcd:portal_content/com.sap.pct/specialist/com.sap.pct.crm/com.sap.pct.crm.roles
    /com.sap.pct.crm.accountmanager/com.sap.pct.crm.am.products/com.sap.pct.crm.prd.products
    <b>Portal Context:</b> <i><empty></i>
    <u>Step 5: Assign Portal Role to Single Role</u>
    <b>Role:</b> SAP_PCC_ACCOUNT_MANAGER
    <b>Portal Role:</b> pcd:portal_content/com.sap.pct/specialist/com.sap.pct.crm/com.sap.pct.crm.roles
    /com.sap.pct.crm.accountmanager
    <u>Step 6: Layout Generation</u>
    <b>Field Group:</b> BEA_CNPL_PLI_DET
    <b>View:</b> <i><empty></i>
    <b>Field Group Variant:</b> <i><empty></i>
    <b>Only Check Field Groups:</b> <i><empty></i>
    <b>Delete Layout Only:</b> <i><empty></i>
    <u>
    Execution Result:
    </u>
    Program CRM_BSP_LAYOUTC_GENERATE  
    Saved Layouts:                    
    BEA_CNPL_PLI_DET                  
    What's wrong or missed?
    Thanks!
    Tony Kwan

    Hello Thirumala,
    I checked my role under portal User administration > Identity Management > Assigned Roles, and found that I should already be a manager pcd:portal_content/com.sap.pct/specialist/com.sap.pct.crm/com.sap.pct.crm.roles/com.sap.pct.crm.accountmanager
    Then, I checked my R/3 role at SU01, and add the role SAP_PCC_ACCOUNT_MANAGER to my login.
    Finally, <b>$sync</b> ....
    After restarting the browser, I get the product description as an object link and jump to product detail directly!
    It works!
    Thanks for your help!
    Tony Kwan
    Message was edited by:
            Tony Kwan

  • Price list categories ..

    hi guru i just want to know it is possible just like this (Define price list categories for customers) .we can define price list categories for item level  .. in sale order ?we can take a vat at item level ?
    thanks in advanse
    THANKS & REGARDS
    vishal

    Hi Ankur,
    How can you maintain price list at item level ?
    I assume you are referring to the condition records maintained w.r.t price lists.
    Is there a way to get the price list get effected automatically at item level without manual change at item level of sales order ?
    Regards,
    Kishore

  • DTW Production tree headers - price list

    I have 2000+ production Bom's headers that I would like to update via DTW. I want to change the price list on the header. The field on the OITT file is PriceList but the DTW template for production trees does not have this field on it. I know the DTW production tree lines template has price list & price fields on them to update ITT1 but not the header. Does anyone know the field name to use to update the price list number on the headers by DTW please?

    Hi Gordon,
    Thanks for the reply. It wasn't the answer I would have liked but that's the way it is sometimes.
    Regards,
    Stuart J.

  • Issue for Production Price list field missing

    Hello all,
    I have a strange issue with a field missing in the issue for production window. When an issue for production is created, the Price list field is missing. Please see the attached screenshot. Does anyone know how to show this field? I have checked form settings and it's not an option there.

    Hi Chris
    Following is the SAP Note No: 1720071
    Symptom
    When opening "Issue for Production" from "Production Order", "Price List" field is missing.
    Reproducing the issue
    1. Login to SAP Business One.
    2. Go to Production->Production Orders, open a "released" production order document.
    3. Right-click a row whose "issue method" is "Manual", and choose "Issue Components". (If all the rows have "Backflush", you need to change one of them.)
    4. "Price List" field is missing on the left top of the new screen.
    5. If you click "Attachments" tab, the field will be showing correctly.
    Solution
    Current workaround is to click "Attachments" tab to make "Price List" showing.
    The issue is planned to be fixed in SAP Business One 9.0.
    With Regards
    Balaji

  • Oracle Product price list in Indian RUPEE

    Can you give me link where I get the
    Oracle Product price list in
    Indian Rupee.
    Thanks.

    Visit ,
    http://www.oracle.com/corporate/pricing/pricelists.html
    Simon

  • Product cost from Price List - PRM

    Hi All,
    I am using the PRM module. My requirement is for a user in the partner organisation to be able to pick a product onto a 'claim' - this can be aby object - and have the price of the product determined by the price list attached to the logged on user's account (a partner account). Is this possible, and if so, which object should I use?
    Thanks, let me know if this is unclear.
    M

    M, my understanding is that the only Product access will be found in 2 areas:
    -     in the Opportunity Product Revenue Related data on the Opportunity (for Forecasting), and there is no Price lookup in that function
    -     in the Special Pricing Authorization object, and there is a Price lookup there … I believe you can associate a default Price list with the Partner Organization … so any User creating a SPA record will be subject to their Partner Orgs designated Price List.

Maybe you are looking for