IStore: Customer account sites with multiple price list

Hi,
We have an account with many sites, each site uses different price list. Say 1 site uses FR price list other uses GR price list.
Users are suppose to use specific price list only. How can we have the users use their specific price list.
Thanks in Advance

Hi,
For iStore you can setup specialty site based price lists and/or customer account level price lists.
To setup the customer account level price lists -
Set the profile option "IBE: Use Customer Account Price List" at the site level to Yes.
Link the customer to the price list -
1. Login to Oracle Forms and select Receivables Manager responsibility.
2. Navigate to Customers > Standard.
3. Select an account based on Customer Name, Account Number, or Organization Number.
4. Press the Find button and select an address from the popup window; select Ok.
5. Select the Order Management tab.
6. Enter the appropriate price list in the Price List field, and save the form.
7. Bounce the middle-tier and Web Cache servers.
Reference:
Oracle iStore Implementation and Administration Guide Release 12.1 (Part No. E13575-06)
Chapter 10 Implementing Pricing
Page 10-21
Section Implementing Customer Account Price Lists
OR
You can setup modifiers for Customer (ie Customer Name) and Store (Minisite_ID) on the price list(s)
For this setup you would need to set both "IBE: Use Customer Account Price List" and "IBE: Use Price List Associated with Specialty Site" to No.
Thank you,
Deborah
Edited by: user702249 on Apr 10, 2013 6:56 PM

Similar Messages

  • Multiple Price List

    Hi,
    Can we have multiple price list customer site wise in iStores. Please provide your inputs and share relevant links or documents if any
    Thanks

    Hello,
    We have the profile option to allow customer based price list pricing -
      IBE: Use Customer Account Price List -
    Implementing Customer Account Price Lists       (see full details in the documentation link http://docs.oracle.com/cd/E18727_01/doc.121/e13575/T349071T350278.htm#2657210)
    Use the following steps to implement customer account price lists:
    Step 1 - Set Profile Option
    Step 2 - Link Customer to Price List
    Step 1 - Set Profile Option
    The profile option, IBE: Use Customer Account Price List, controls whether the customer account price lists feature is available to the runtime catalog.
    Set at site level to Yes to use the feature. The default value is null, which is treated as No.
    If this will not meet your requirements, then please provide more details.
    Thank you,
    Debbie

  • Error While Creating Customer Account Site.

    Hi ,
    I am creating a customer thru API's.
    I am succesffuly creating location,party,party site,party site use,customer account.But unable to create customer account site. I am getting the below error:
    Unable to process your transaction. The operating unit is either invalid or it cannot be derived. Please verify your Multi-Org profile options.
    Could anyone help me to resolve out this issue.

    Hi,
    What is the application release?
    Did you set the Application/Multi-org context properly before using this API?
    Note: 732671.1 - 'Change PO API' Errors with 'Multi-Org profile options' as Org Context Is Not Set Correctly
    Note: 420787.1 - Oracle Applications Multiple Organizations Access Control for Custom Code
    Note: 209185.1 - How To Set the Applications Context (FND_GLOBAL.APPS_INITIALIZE)
    Regards,
    Hussein

  • Error while creating customer account sites

    I am creating Customer Account Sites using the TCA API from Toad.
    I am getting the following error
    The operating unit is either invalid or it cannot be derived. Please verify your Multi-Org profile options.
    The Operating unit has been defined.
    I am using the following code:
    DECLARE
    p_cust_acct_site_rec hz_cust_account_site_v2pub.cust_acct_site_rec_type;
    x_return_status VARCHAR2(2000);
    x_msg_count NUMBER;
    x_msg_data VARCHAR2(2000);
    x_cust_acct_site_id NUMBER;
    BEGIN
    p_cust_acct_site_rec.cust_account_id := 9462;
    p_cust_acct_site_rec.party_site_id := 5473;
    --p_cust_acct_site_rec.language := 'US';
    p_cust_acct_site_rec.org_id := 126;
    p_cust_acct_site_rec.created_by_module := 'TCA-EXAMPLE';
    hz_cust_account_site_v2pub.create_cust_acct_site(
    'T',
    p_cust_acct_site_rec,
    x_cust_acct_site_id,
    x_return_status,
    x_msg_count,
    x_msg_data);
    dbms_output.put_line(SubStr('x_return_status =
    '||x_return_status,1,255));
    dbms_output.put_line('x_msg_count = '||TO_CHAR(x_msg_count));
    dbms_output.put_line(SubStr('x_msg_data = '||x_msg_data,1,255));
    IF x_msg_count >1 THEN
    FOR I IN 1..x_msg_count
    LOOP
    dbms_output.put_line(I||'. '||SubStr(FND_MSG_PUB.Get(p_encoded =>
    FND_API.G_FALSE ), 1, 255));
    END LOOP;
    END IF;
    END;
    Thanks and Regards,
    K tanna

    Hi,
    Please mention the application release along with the database version and OS.
    Please see if ('Change PO API' Errors with 'Multi-Org profile options' as Org Context Is Not Set Correctly [ID 732671.1]) helps.
    More details about setting the application context can be found in these docs.
    Note: 209185.1 - How To Set the Applications Context (FND_GLOBAL.APPS_INITIALIZE)
    Note: 420787.1 - Oracle Applications Multiple Organizations Access Control for Custom Code
    Note: 462383.1 - SQL Queries and Multi-Org Architecture in Release 12
    Note: 165042.1 - FAQ - Multiple Organizations Architechure (Multi-Org)
    Thanks,
    Hussein

  • Create Contact details @ Customer Account Site

    Hi guys
    After loads of efforts I managed to create a contact @ Customer Account Site level using below API Call
    DECLARE
    p_cr_cust_acc_role_rec HZ_CUST_ACCOUNT_ROLE_V2PUB.cust_account_role_rec_type;
    x_cust_account_role_id NUMBER;
    x_return_status VARCHAR2(2000);
    x_msg_count NUMBER;
    x_msg_data VARCHAR2(2000);
    BEGIN
    -- NOTE:
    -- must be unique CUST_ACCOUNT_ID, PARTY_ID,ROLE_TYPE
    -- must be unique CUST_ACCT_SITE_ID, PARTY_ID,ROLE_TYPE
    p_cr_cust_acc_role_rec.party_id := 2126134; --value for party_id from step 8>
    p_cr_cust_acc_role_rec.cust_account_id := 999059; --value for cust_account_id from step 2>
    p_cr_cust_acc_role_rec.primary_flag := 'Y';
    p_cr_cust_acc_role_rec.role_type := 'CONTACT';
    p_cr_cust_acc_role_rec.created_by_module := 'TCA_V2_API';
    ---For attaching the contact to a particular site
    p_cr_cust_acc_role_rec.cust_acct_site_id := 29422; --Value for x_cust_acct_site_id from step >5
    HZ_CUST_ACCOUNT_ROLE_V2PUB.create_cust_account_role(
    'T',
    p_cr_cust_acc_role_rec,
    x_cust_account_role_id,
    x_return_status,
    x_msg_count,
    x_msg_data);
    dbms_output.put_line('***************************');
    dbms_output.put_line('Output information ....');
    dbms_output.put_line('***************************');
    dbms_output.put_line('x_cust_account_role_id: '||x_cust_account_role_id);
    dbms_output.put_line('x_return_status: '||x_return_status);
    dbms_output.put_line('x_msg_count: '||x_msg_count);
    dbms_output.put_line('x_msg_data: '||x_msg_data);
    dbms_output.put_line('***************************');
    IF x_msg_count >1 THEN
      FOR I IN 1..x_msg_count
       LOOP
        dbms_output.put_line(I||'. '||SubStr(FND_MSG_PUB.Get(p_encoded => FND_API.G_FALSE ), 1, 255));
      END LOOP;
    END IF;
        IF x_return_status = FND_API.G_RET_STS_SUCCESS THEN
    COMMIT;
    ELSE
    ROLLBACK;
    END IF;
    END;
    Now I want to attach "Address/Email/Phone number" to this contact @ the Account site level. Please let me know how and which APIs I need to call
    Regards,
    Raj

    Okay I found the solution.
    Reference material : How to Create Contact,Phone, Email under Communication tab for Customer Account Site using API [ID 985500.1]
    docs.oracle.com/cd/B34956_01/current/acrobat/120hztig.pdf
    Repeat Run --3. Create a physical location with customer account site level Address (ie, Specific contact address details). Note down x_location_id value
    GET "x_party_id: " from "--8. Create a relation cont-org using party_id from step 7 and party_id from step 2"
    Now Run "--4. Create a party site using party_id from step 2 and location_id from step 3" passing "x_party_id" from Step 8 & x_location_id from Step 3
    Commit the changes and you will able to populate the account site specific contact person details
    Regards,
    rajesh

  • Create Customer Account Site fail ORA-01400

    When creating customer account site in Oracle EBS r12.0.4, Error occur:
    The following SQL error occurred: ORA-01400: cannot insert NULL into ("AR"."HZ_CUST_ACCOUNTS_M"."CUSTOMER_MERGE_HEADER_ID").
    Can anyone help me solve this problem?
    Thanks in advanced!

    How do you create the customer account? From the application (if yes, mention the Navigation Path) or using an API (mention the API)?
    The following SQL error occurred: ORA-01400: cannot insert NULL into ("AR"."HZ_CUST_ACCOUNTS_M"."CUSTOMER_MERGE_HEADER_ID").Does this happen when creating any customer account or with specific ones only?
    Are you passing all the mandatory fields when creating the custom account?
    Obtain the FRD log for details about the error.
    Thanks,
    Hussein

  • Customer Account Sites page behavior

    Hi
    I am novice to OAF. I will take my best shot to explain the problem.
    Oracle Applications : 12.0.4
    Problem : Customer Account Sites page is displaying account sites in DESCENDING order of PURPOSES instead of ASCENDING.
    All the times, account sites were displayed in Ascending order of purposes. This will list Bill-To sites first and then 'Ship-To'. All of a sudden, account sites are started showing in reverse order listing 'Ship-To' first and then 'Bill-To'.
    There are no customizations, patches, personalizations applied to this form.
    Same form works in all other instances other than Production as expected (listing Bill-To sites first).
    What could be the reason so that sorting order of data element PURPOSES to change from Ascending to Desending? How to fix it?
    Please help.
    Regards,

    This is happening for all users.
    As a work around... User are using either clicking on Purpose column to sort again or filtering out 'Bill-To' sites. This is causing them irritation.
    Regards,

  • VENDOR/GL/CUSTOMER  ACCOUNT STATEMENT WITH OPENING BALANCE

    Can anybody  tell me the tcodes in SAP for Vendor/Gl/Customer Account Statement with opening balance.
    Best Regards,
    Sudhanshu Dang
    0124-3081015

    hii
    As per my knowledge no such reports  for GL are there in sap.. we also had a same requirement but could not find it... we wanted reports with opening and closing balalnces...
    u can go to SAP1 and check all the standard reports available. check wheather any report fulfills ur need or else go for abap reports...
    Check f.42 T code for Vendor Report. and s_alr_87012172..for customer.
    thanks
    sejal

  • Error while creating customer account sites from backend

    I am creating Customer Account Sites using the TCA API from Toad.
    I am getting the following error
    The operating unit is either invalid or it cannot be derived. Please verify your Multi-Org profile options.
    The Operating unit has been defined.
    I am using the following code:
    DECLARE
    p_cust_acct_site_rec hz_cust_account_site_v2pub.cust_acct_site_rec_type;
    x_return_status VARCHAR2(2000);
    x_msg_count NUMBER;
    x_msg_data VARCHAR2(2000);
    x_cust_acct_site_id NUMBER;
    BEGIN
    p_cust_acct_site_rec.cust_account_id := 9462;
    p_cust_acct_site_rec.party_site_id := 5473;
    --p_cust_acct_site_rec.language := 'US';
    p_cust_acct_site_rec.org_id := 126;
    p_cust_acct_site_rec.created_by_module := 'TCA-EXAMPLE';
    hz_cust_account_site_v2pub.create_cust_acct_site(
    'T',
    p_cust_acct_site_rec,
    x_cust_acct_site_id,
    x_return_status,
    x_msg_count,
    x_msg_data);
    dbms_output.put_line(SubStr('x_return_status =
    '||x_return_status,1,255));
    dbms_output.put_line('x_msg_count = '||TO_CHAR(x_msg_count));
    dbms_output.put_line(SubStr('x_msg_data = '||x_msg_data,1,255));
    IF x_msg_count >1 THEN
    FOR I IN 1..x_msg_count
    LOOP
    dbms_output.put_line(I||'. '||SubStr(FND_MSG_PUB.Get(p_encoded =>
    FND_API.G_FALSE ), 1, 255));
    END LOOP;
    END IF;
    END;
    Thanks and Regards,
    K tanna

    Duplicate post.
    Error while creating customer account sites
    Error while creating customer account sites

  • IWeb 09 Multiple sites with multiple MobileMe accounts

    Hi guys, one more for you,
    i have my MobileMe account and my website, i also create to more small sites just for testing purpose, i want to know if i can have multiple websites on iWeb and each one with their own MobileMe account.
    (e.g)
    -- site1 ( [email protected])
    -- site2 ( [email protected])
    -- site3 ( [email protected])
    i have only One Mac computer and i have to work on 3 different sites with only this computer.
    Help please... I am new to Mac world ( but i love it )

    Do you really have 3 separate users or just want to publish 3 separate sites? If it's the latter then you can do all of them with just one MMe account. In your domain file with three sites the top size will be the "alpha" site in that if you enter the minimum URL, http://web.me.com/YourMMe_AccountName/, the top site will come up. To go to the other two sites you'll need to add the site name on the end of the URL above, i.e. http://web.me.com/YourMMe_Account_Name/Site_1name/.
    In this economy if you can do what you want with one account that's saving some $$$$.
    OT

  • How to publish custom web site with own domain name?

    Hey out there. I wonder if anyone can give me any tips on how to publish a web site with my own domain name.
    I have a web site I'm building and I want to purchase a domain name and then publish the site using that domain name.
    I know how to buy a domain name. I have a .mac account so I'm hoping that .mac can host the site. What I don't quite understand how to do is get .mac to host the site using that domain name. I looked through Apple Support but couldn't find what I was looking for. Just wondering if anyone has been in this situation. Thanks in advance.
    Dave
    [email protected]

    Dave ~ Welcome to the discussions. .Mac was re-branded as MobileMe last July. If you're not building your site with iWeb, it's considered to be a "custom" website. These Apple docs may help:
    MobileMe: How to publish a custom website
    iWeb ’08: Using your own domain name
    ...Use this search page to find such documents:
    http://support.apple.com/kb/index?page=search
    Note that you don't need to have iLife '08 to be able to direct your domain name to your custom website published to MobileMe. As someone wrote on another thread:
    "My personal domain is linked to my MM but i don't even have ilife on my mac. When you go to the options in MM to link your personal domain to your MM it provides directions that will guide you with setting up your godaddy settings."
    ...Where "MM" is MobileMe here:
    http://me.com/account
    ...+Personal Domain+ tab, and "godaddy" is wherever your domain name is registered.

  • Service Contract with Multiple Prices

    Dear Experts,
                                We are using a periodic billing plan for our  service contracts and have an issue regarding pricing. The billing docs are created directly from the contracts using the billing plan. The contracts are multi-year contracts where billing to the customer is done, say @ price1 for year 1, @ price2 for year 2, and so on.. Even though we have maintained price condition PPSV for each of the years,we are still getting only one price(the current price) in the billing plan in the contract. Is it possible to get a billing plan in the service contract to appear as follows:
    Year 1 - Price 1
    Year 2 - Price 2
    Year 3 - Price 3
        We are  aware that the system will pick up the correct billing price/amount in the billing doc based on the validity of the pricing condition(PPSV) and using suitable copy controls between contract-->billing doc, but is there a way to get the billing plan appear with multiple billing prices/amounts for each year of the contract?
    We would appreciate your inputs.
    Many thanks.
    Regards,
    Shareeq

    [Useful info|http://www.sapfans.com/forums/viewtopic.php?f=7&t=314620]

  • FI Customer Account Statement with Debit and Credit Columns

    Hi SAP Expert,
    We are using form (developed from T-code: SE71) to send customer account statment for only open items this is working fine.
    Now My wants customer account statement for all transactions but with debit and credit in a separate columns. is there any way we fulfill these kind of request?
    if any particular logic then let me know please.
    thanks in advance
    b/r
    prashant rane

    Dear Vivek,
    You logic is helpful can I apply this in SE71 form development?
    Below is my customer layout format
    Document # | Document Date | Reference | Debit Amt | Credit Amt |
    In bottom toal Debit / credit balance figure
    can I use any code/login is SE71 form or I will need to create any development report which involves user exit?
    I am looking for SE71 optios first
    thanks in advance
    Prashant Rane

  • Vendor master data - Single material with multiple price

    Hi Gurus,
    Per our set-up, we have 1 purchasing organization to handle the central procurement function for purchases to various countries/destination.  As such, whenever we seek for quotation from a single vendor, the vendor will provide their price for a single/same material, e.g. ABC, with various price by locations. for example:
    1. Material: ABC
    - Price: $83 (EXW)
    - Price: $85 (FOB, Tianjin)
    - Price: $100 (CFR Port Klang)
    - Price: $120 (CFR Mumbai)
    - Price: $160 (CFR Jabel Ali)
    Is there a way I can use any of the vendor master records (e.g. outline agreement / info records) to capture a single material having multiple price?  At the same time, this infomation is available during our PO creation (e.g. via ME57).
    Thanks in advance.

    Dear
    For Condition Type PB00, SAP has some standard requirements in Pricing Schema.For one material different location one requirement is there.But as per your requirements you need to put logic through ABAP and it will definetely work.The exact requiremnt i'm not remembering.
    Just go through all the requiremnt and respect to PB00, put the requiremnt and put the logic.
    Revert me for the result.
    Thanks & Regards
    PKB

  • 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

Maybe you are looking for

  • FI-AA Maximum Useful Life

    Is there a way to set a maximum useful life that can be inputted in the asset master or at least a validation that the useful life cannot be higher than the defined default useful life per asset class?

  • 11g Upgrade Issues and Questions

    Hi, I am upgrading database from 9.2.0.6 to 11g in EBS, Apps version is 11.5.10.2. I have performed 11.1.0.7 patch set installation tasks & Apply additional 11.1.0.7 RDBMS patches Now my query is that I have to copy InitSID.ora from 9i to 11g before

  • Activator request error

    I've tried from two different computers to access downloaded ebooks through Digital Editions (after having authorized the computers through Adobe) and always get this message: Adobe DRM Error System: 7 State: 4 Class: 15 Code: 31 Message: Error on re

  • Ldap group lookups very slow

    We are currently testing Solaris 11 on one of our servers. We are encountering the problem that ldap group lookups are very slow. This didn't occur under Solaris 10. The ldap information is held in Active Directory with all unix information held in a

  • Suddenly can't tab bullets

    Hi Everyone, Let me say up front, I am not a word processor guy. I know very little about them, but generally find Pages very easy to use. I've been working on a document using bullet points and indenting the bullet points using the tab key. Suddenly