BR 100 for Advanced Pricing

Hi,
I could not find BR 100 template for Adanced Pricing.
Would appreciate if any one could points me towards the same...
Thanks,
Dinakar.

Hi,
Please see this thread.
BR 100 ( Setup Document )
BR 100 ( Setup Document )
Regards,
Hussein

Similar Messages

  • Hi Any body guide me for Advance pricing setups and implementation manual with screen shots

    Hi Any body guide me for Advance pricing setups and implementation manual with screen shots
    Regards
    Guru

    Hi,
    Please <b>read the rules of engagement</b> before posting.
    <b>- Do not ask to send you an email.</b>
    The question you ask and the solution to it is often also interesting for other users of the community. If you ask somebody to send you the answer per email, you deprive others of also learning to know the answer. Therefore any requests for sending material or answers to an email address will be modified by the forum moderators.

  • Need Help for API Modifier in Advance Pricing

    Dear Gurus, i've problem when i run API create modifier there is an error message:
    "err msg 1is: Attribute list_type is invalid. Please re-enter."
    can u help me solve this problem ??
    Thx,
    Dedy
    my example script is :
    ===============================================================================
    CREATE OR REPLACE PROCEDURE AAA is
    --SET VERIFY OFF
    --WHENEVER SQLERROR EXIT FAILURE ROLLBACK;
    --set serveroutput on
    --declare
    /* $Header: QPXEXDS3.sql 115.3 2002/05/31 22:24:21 mkarya noship $ */
    l_control_rec QP_GLOBALS.Control_Rec_Type;
    l_return_status VARCHAR2(1);
    x_msg_count number;
    x_msg_data Varchar2(2000);
    x_msg_index number;
    l_MODIFIER_LIST_rec QP_Modifiers_PUB.Modifier_List_Rec_Type;
    l_MODIFIER_LIST_val_rec QP_Modifiers_PUB.Modifier_List_Val_Rec_Type;
    l_MODIFIERS_tbl QP_Modifiers_PUB.Modifiers_Tbl_Type;
    l_MODIFIERS_val_tbl QP_Modifiers_PUB.Modifiers_Val_Tbl_Type;
    l_QUALIFIERS_tbl QP_Qualifier_Rules_PUB.Qualifiers_Tbl_Type;
    l_QUALIFIERS_val_tbl QP_Qualifier_Rules_PUB.Qualifiers_Val_Tbl_Type;
    l_PRICING_ATTR_tbl QP_Modifiers_PUB.Pricing_Attr_Tbl_Type;
    l_PRICING_ATTR_val_tbl QP_Modifiers_PUB.Pricing_Attr_Val_Tbl_Type;
    l_x_MODIFIER_LIST_rec QP_Modifiers_PUB.Modifier_List_Rec_Type;
    l_x_MODIFIER_LIST_val_rec QP_Modifiers_PUB.Modifier_List_Val_Rec_Type;
    l_x_MODIFIERS_tbl QP_Modifiers_PUB.Modifiers_Tbl_Type;
    l_x_MODIFIERS_val_tbl QP_Modifiers_PUB.Modifiers_Val_Tbl_Type;
    l_x_QUALIFIERS_tbl QP_Qualifier_Rules_PUB.Qualifiers_Tbl_Type;
    l_x_QUALIFIERS_val_tbl QP_Qualifier_Rules_PUB.Qualifiers_Val_Tbl_Type;
    l_x_PRICING_ATTR_tbl QP_Modifiers_PUB.Pricing_Attr_Tbl_Type;
    l_x_PRICING_ATTR_val_tbl QP_Modifiers_PUB.Pricing_Attr_Val_Tbl_Type;
    mll_rec qp_list_lines% ROWTYPE;
    pra_rec qp_pricing_attributes% ROWTYPE;
    Begin
    OE_MSG_PUB.Initialize;
    /* Create a Modifier header of type 'DLT' (Discount List) */
    --l_MODIFIER_LIST_rec.currency_code := 'IDR';
    l_MODIFIER_LIST_rec.list_type_code := 'DLT';
    l_MODIFIER_LIST_rec.start_date_active := sysdate;
    l_MODIFIER_LIST_rec.end_date_active := trunc(sysdate) + 10;
    l_MODIFIER_LIST_rec.source_system_code := 'QP';
    l_MODIFIER_LIST_rec.active_flag := 'Y';
    l_MODIFIER_LIST_rec.name := 'TEST01';
    l_MODIFIER_LIST_rec.description := 'Latest New Description of HALLOWEEN 2000';
    l_MODIFIER_LIST_rec.version_no := '9.4';
    l_MODIFIER_LIST_rec.pte_code := 'ORDFUL';
    l_MODIFIER_LIST_rec.operation := QP_GLOBALS.G_OPR_CREATE;
    /* Call the Modifiers Public API to create the modifier header and a modifier line */
    QP_Modifiers_PUB.Process_Modifiers(p_api_version_number => 1.0,
    p_init_msg_list => FND_API.G_FALSE,
    p_return_values => FND_API.G_FALSE,
    p_commit => FND_API.G_FALSE,
    x_return_status => l_return_status,
    x_msg_count => x_msg_count,
    x_msg_data => x_msg_data,
    p_MODIFIER_LIST_rec => l_MODIFIER_LIST_rec,
    p_MODIFIERS_tbl => l_MODIFIERS_tbl
    --,p_QUALIFIERS_tbl => l_QUALIFIERS_tbl
    p_PRICING_ATTR_tbl => l_PRICING_ATTR_tbl,
    x_MODIFIER_LIST_rec => l_MODIFIER_LIST_rec,
    x_MODIFIER_LIST_val_rec => l_MODIFIER_LIST_val_rec,
    x_MODIFIERS_tbl => l_MODIFIERS_tbl,
    x_MODIFIERS_val_tbl => l_MODIFIERS_val_tbl,
    x_QUALIFIERS_tbl => l_QUALIFIERS_tbl,
    x_QUALIFIERS_val_tbl => l_QUALIFIERS_val_tbl,
    x_PRICING_ATTR_tbl => l_PRICING_ATTR_tbl,
    x_PRICING_ATTR_val_tbl => l_PRICING_ATTR_val_tbl);
    if l_return_status = FND_API.G_RET_STS_SUCCESS then
    --success;
    COMMIT;
    DBMS_OUTPUT.put_line('success');
    else
    --failure;
    ROLLBACK;
    DBMS_OUTPUT.put_line('failure');
    end if;
    IF l_return_status FND_API.G_RET_STS_SUCCESS THEN
    RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
    END IF;
    EXCEPTION
    WHEN FND_API.G_EXC_ERROR THEN
    l_return_status := FND_API.G_RET_STS_ERROR;
    -- Get message count and data
    dbms_output.put_line('err msg is : ' || x_msg_data);
    WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
    l_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
    for k in 1 .. x_msg_count loop
    x_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: ' || x_msg_data);
    end loop;
    WHEN OTHERS THEN
    l_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
    for k in 1 .. x_msg_count loop
    x_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: ' || x_msg_data);
    end loop;
    END;
    ========================================================================================

    Do you have Advanced Pricing installed?
    select status from fnd_product_installations
    where application_id=(select application_id from fnd_application
    where application_short_name='QP');
    I is Advanced Pricing and S is Basic Pricing.
    I don't think you can use the API if you are on Basic pricing (unless you have transportation execution implemented and it is called for that purpose).
    Thanks
    Nagamohan

  • Pricing: Condition type for advance "ZADV" can be enterted twice

    Hello,
    I have defined condition type for advance as ZADV in pricing procedure.
    Issue: Now teh end user is able to enter the advance conditype types "ZADV"  in the sales order, is it any way possible that it should not allow the condition type to be entered twice.
    Regards
    Suvin.S

    HI,
    Issue: Now teh end user is able to enter the advance conditype types "ZADV" in the sales order, is it any way possible that it should not allow the condition type to be entered twice.
    1*.Suppose Condition type ZADV having Condition Class "Discount or Surcharge " system will allow to enter manually second time also*
    2. Suppose Condition Type ZADV is mandatory to few customer and also customers then do the some changes in the condition Type under the Tab "Changes which Can be made " we can find out the Manual Entries fields in that try to mentioned "D      - Not possible to process manually "
    Regards,
    Prasanna
    Edited by: prasanna_sap on Sep 6, 2011 8:35 AM

  • Advance Pricing -- For Diwali Offer

    How to give advance pricing for the this diwali offer
    1. For a stores, any thing worth more or equal to Rs 1000, INR purchasing bill (say Bill A) , a coupon will be issued which can be used only once for the next purchasing bill (say Bill B) which has to be more equal to Rs 200 INR, and discount of 20% is applicable for purchasing Bill (that is BIll B). No Coupon will be issued for Bill B, even if the purchasing amount be more or equal to 1000 INR after discounting.
    regards
    adarsh

    Hi,
    I dont see, you would be able to use promotional modifiers with PO's.
    Recently we logged an ER with Development to incorporate the same
    14736855 - NEED TO USE PROMOTIONAL MODIFIER ON PURCHASE ORDERS
    Another ER 4584793: LIMITED FUNCTIONALITY OF ADVANCED PRICING (MODIFIERS, PROMOTIONS, DISCOUNTS, CON too exists.
    Please review this
    Oracle Purchasing Integration with Oracle Advanced Pricing – Release 11.5.10 (Doc ID 394490.1)
    In this white paper you can see this
    Promotional Goods (Buy x, get y at n%)
    X Not supported
    Regards,
    Paarthy

  • Advance Pricing for Purchasing - Setup a Promotion

    Hi. Its possible to setup a Promotion (buy one get more free) in Advance Pricing and refer it in a Purchase Order?
    We are working on R12.1.3.
    Thanks
    ALejandra

    Hi,
    I dont see, you would be able to use promotional modifiers with PO's.
    Recently we logged an ER with Development to incorporate the same
    14736855 - NEED TO USE PROMOTIONAL MODIFIER ON PURCHASE ORDERS
    Another ER 4584793: LIMITED FUNCTIONALITY OF ADVANCED PRICING (MODIFIERS, PROMOTIONS, DISCOUNTS, CON too exists.
    Please review this
    Oracle Purchasing Integration with Oracle Advanced Pricing – Release 11.5.10 (Doc ID 394490.1)
    In this white paper you can see this
    Promotional Goods (Buy x, get y at n%)
    X Not supported
    Regards,
    Paarthy

  • Advance pricing Query

    No.     Price Range      ListPrice     No$al Price     Nett Price     Special Deal     Special Deal 2
         Qty/Value Range     -     0 - 10pcs     11 - 99pcs     100 - 149pcs 150pcs & above
    No.1     ABC Part number     10.00      $10 - 10%     $10 - 12%     $10 - 15%     $10 - 20%
         Qty/Value Range (Group Discount)     -     100 - $399     $400-$799     $800 & above
    No.2     7441-1 Swivels     1.00      -     $1 - 10%     $1 - 15%     $ 1 - 20%
         7441-2 Swivels     1.00      -     $1 - 10%     $1 - 15%     $ 1 - 20%
         7441-3 Swivels     1.00      -     $1 - 10%     $1 - 15%     $ 1 - 20%
         7441-4 Swivels     1.00      -     $1 - 10%     $1 - 15%     $ 1 - 20%
         7441-5 Swivels     1.00      -     $1 - 10%     $1 - 15%     $ 1 - 20%
    https://docs.google.com/spreadsheet/ccc?key=0ArZGkcAMROWFdG81R09xNjBTNDNOS0doakE1aVgxamc
    Hi All,
    Advance pricing Query- my client requirement is as above... for each part number for each range they are giving different discount and for some parts they are giving discount based on Amount as mentioned above.
    for same part numbers they have different discount ranges like Customer Group A , B, C, D (location, nation and export order customer) different discounts.
    Is it possible to achieve this Qualifers, modiers are need to create sepearte price list for each group...
    Kindly advise.
    highly appreciate quick responses.
    Edited by: 949067 on 14-Aug-2012 23:09
    Edited by: 949067 on 24-Aug-2012 02:43

    Let us go through the steps involved in integrating Advanced Pricing with Purchasing so that we know if we have missed anything.
    1. Create Price Lists in Advanced Pricing.
    2. Setup Profile Options in System Administrator responsibility:
    QP: Licensed for Product - at Application: Purchasing level = Purchasing.
    QP: Pricing Transaction Entity - at Application: Purchasing level = Procurement
    ( Site level - ‘Order Fulfillment’ )
    Profile option can be set at site, application, and user levels.
    QP: Source System Code – at Application: Purchasing level = Oracle Purchasing
    ( Site level -- ‘Oracle Pricing’ )
    Profile can be set at site and responsibility levels.
    QP: Item Validation Organization - at Application: Purchasing level = null
    ( Site level -- specified in Financial Options )
    Profile option can be set at site and responsibility levels.
    3. Add item to the Price list Advanced Pricing ->Price Lists -> Price List Setup.
    Enter the item/price/dates etc.
    4. Create Contract Purchase Agreement.
    5. Create Approved Suppliers List. In the Source Documents, select the Type as Contract and reference the Contract Agreement Number.
    Create the Sourcing Rule and add the Rule to the Assignment Set.
    6. Create the Standard Purchase Order referencing the Contract Purchase Agreement in the Reference Documents.
    The Price listed should be defaulted from the Price Lists.
    Cross-Check the following steps and let me know if it still fails and we can try to resolve from then on :)

  • 11.5.4 Advanced Pricing Scenario

    Looking to see if anyone has created a way for the Pricing Engine to handle the following type of promotional discount.
    "... On a single order, you can order any quantity combination of Item A, Item B, and/or Item C. If the total order quantity of A, B, and/or C is greater than 100, apply a 10% discount to any line with A, B, and/or C ..."
    Thanks in advance.

    We have done almost similar setup using Advanced Pricing. This is what you need to do. First, identify the items that qualifies this condition. They should fall under specific item category(or categories). You then need to create new pricing context in Advanced pricing (say COMBO QTY) and write a custom code that will sum the quantities for all qualified (based on item category) items on a order. Setup a price list with regular price and also with discounted price using this pricing context. Hope this helps

  • Query regarding Advanced Pricing

    Hi All,
    I have an issue in setting up for a requirement,
    There is an offer provided to the customer.
    e.g customer buys ITEM A and ITEM B in the deal, then customer may be eligible for 10% discount on both ITEM A and ITEM B or customer is eligible for 20% discount on ITEM B only.
    How to handle this in Advanced Pricing module.Provide the setup details.
    Appreciate your help me in this regard
    Thanxs & Regards,
    Saiprasad.N

    Hi,
    You can set this up using the 'Other Item Discount' modifier in Advanced Pricing.
    Requirement 1
    Modifier Header - Promotion
    Modifier Type Line - Other Item Discount
    Item - Item A
    Enter the following details in the 'Details Page'
    Additional Buy Product - Item B
    Get Item - Item A and Item B with 10% discount
    Requirement 2
    Modifier Header - Promotion
    Modifier Type Line - Other Item Discount
    Item - Item A
    Enter the following details in the 'Details Page'
    Additional Buy Product - Item B
    Get Item - Item B with 20% discount
    Regards
    Pradeep

  • Any provision to configure Custom Duty or Excise Duty in Advanced Pricing

    Hi,
    Any provision to configure the 'Custom Duty' or 'Excise Duty' in Advanced Pricing ?
    Thanks!

    hi,
    For this either you can cancel your Invoice doc...
    Or
    CAn Post the GR asit is and then make a credit memo for req. amount....
    hope it helps...
    Regards
    Priyanka.P

  • Is Verizon reducing $100 for the first generation iPad?

    Is Verizon reducing $100 for the first generation iPad?

    Hi Manaka,
    We are not currently aware of any price reduction of $100.00 on the current Ipad. Please check the Verizon Wireless website for current pricing and discounts as pricing is subject to change without notice. I am providing a link for further information.
    http://www.verizonwireless.com/b2c/store/controller?&item=phoneFirst&action=viewPhoneOverviewByDevice&deviceCategoryId=11
    Thank You,
    edw@vzwsupport

  • BAPI or FM for Condition Pricing

    Hi All
    I need to develop a report that shows all the condition pricing (SD).
    It is necessary to show the same fields of the pricing screen (VA03) -  it would be a kind of simulation.
    I would like some function that gives me a report similar to the screen of pricing condition - transaction VA03 - SD module.
    I am trying to use the BAPI  BAPI_SALESORDER_SIMULATE, but I am  getting only the aliquots of the taxes.
    I am using 4.7.
    Could you please advise?
    Thanks in advance.
    João Gaia

    Hi,
    Bapi for creating Pricing conditions is BAPI_PRICES_CONDITIONS.
    In this u need to pass value to the below parameters:
    bapicondhd-table_no
    operation
    applicatio
    cond_type
    or
    It seems the RV_CONDITION* function modules only supports to change or create a new price condition by copying an existing one.
    else use
    BDC.
    I think, It helpful to you.

  • Purchasing and Advance Pricing

    I need the following
    1. Define a List Price for Supplier X item a (price 10)
    2. Define a List Price for Supplier Y item a (price 20)
    Is there a some way that PO when I put the item in a Purchase Order detected the best price for the item? In other way, is there a some way to purchasing select the best price by the pricing engine, without insert the supplier in the purchase order?
    Best Regards
    Alejandra Martin
    Message was edited by:
    alemar

    Alemar,
    Yes it is possible. If you are on R12, take a look at PO_ADVANCED_PRICE_PVT and PO_CUSTOM_PRICING_PUB.
    You can use setups in Advance Pricing to do a lot more.
    Thanks
    Nagamohan

  • Issue Coupon in Advanced Pricing

    hi,
    i have to issue coupon to the customers using the issue Coupon functionality in Advanced Pricing.For this i have created Modifier List Type of Promotion.And created two Modifier Lines of Discount and Coupon issue under this Modifier List.While Assigning the Discount Modifier Number to the Coupon moifier number field in the Coupon issue line iam getting the error "Coupon issue must have either 'Discount' or ' Promotional Goods' as its benefit modifier".help out to solve this problem.
    regards
    yesukannan

    Hi Yesukannan -
    I think you have the wrong forum. Your question is about Advanced Pricing, but this forum is for Advanced Planning.
    Rgds,
    Keenan Gangewere
    [email protected]

  • Issue Coupon Modifier Line Type in Advanced Pricing

    hi,
    i have to issue coupon to the customers using the issue Coupon functionality in Advanced Pricing.For this i have created Modifier List Type of Promotion.And created two Modifier Lines of Discount and Coupon issue under this Modifier List.While Assigning the Discount Modifier Number to the Coupon moifier number field in the Coupon issue line iam getting the error "Coupon issue must have either 'Discount' or ' Promotional Goods' as its benefit modifier".help out to solve this problem.
    regards
    yesukannan

    Hi Yesukannan -
    I think you have the wrong forum. Your question is about Advanced Pricing, but this forum is for Advanced Planning.
    Rgds,
    Keenan Gangewere
    [email protected]

Maybe you are looking for

  • HTML Email 3

    anbody can tell me how to send an Html email from Dreamweaver to Outlook 2000 ??? i have probleme to insert it , because i don t want it to be an attachment but to appear like a news letter ... Thanks

  • HT1349 Want to get the same iPad 2 that I have for my grandson but forgot how many gb I have 16 or 32, where can I find this info

    Where do you find how many gb you have...

  • Installing Oracle on windows XP

    hi frens I have just installed the trial version of oracle 10g in my machine with OS windows XP. I have finished installing however I cannot access the database. During installation, I just put the password (in the Universal installlation wizard), te

  • Rollup 14 installation failure

    Hi I recently tried to install rollup 14 to a CRM 2011 deployment but it failed due to the following error : Install exception.System.Exception: Action Microsoft.Crm.Setup.Common.Update.DBUpdateAction failed. ---> System.Data.SqlClient.SqlException:

  • Exc_bad_access outlook 2011 in Mountain Lion

    May I find out anyone the same issue on Outlook 2011 in Mountain Lion? Below is my error: Microsoft Error Reporting log version: 2.0 Error Signature: Exception: EXC_BAD_ACCESS Date/Time: 2012-08-23 04:53:25 +0000 Application Name: Microsoft Outlook A