Prices conditions, minimum quantity and multiple

Hello,
I am currently working on SRM 5.0 on which I am going to plug MDM 2.0.
I was wondering 2 things:
1. Is it possible, in standard SRM, to specify price conditions for full catalogs items (there is no Material Master managed in SRM). For example:
   - If someone orders a quantity of pens between 1 and 10, he will pay 1€/pen
   - If someone orders a quantity of pens between 10 and 100, he will pay 0,8€/pen
   etc
If it is not possible, do you know if we can do it in MDM?
2. Is it possible, in standard  SRM, to force user to order a minimum quantity of items, and to force him to only orders multiples of this order quantity?
If it is not possible, do you know if we can do it in MDM?
Thanks for your help,
Patrick

Hi Patrick
1) Is possible in MDM Catalog
2) Not standard. You can achieve this using BBP_DOC_CHECK_BADI.
Best regards
Ramki

Similar Messages

  • Quantity Contracts for minimum quantity and above

    Scenario:
    1.     Customer Can order materials which are mentioned in the list of materials provided by him.
    2.     The company has agreed to give customer bonus on quantity ordered. The bonus will also be in terms of quantity as free   goods. (for e.g 0-100 mtonnes, free good will be 10 mtonnes)
    3.     The bonus quantity can be adjusted among the materials ordered. (It can be adjusted using one material or using all the materials (no percentage distribution defined)
    Is there a scope in SAP Contracts to configure this type of contracts?

    Hello Will,
    You can configure a Common Distribution Channel and a Common Division and assign them to all the sales orgs in the system and maintain customer master data in this common sales area
    then you can create a sales order with reference to a contract maintained in any sales area
    but I'm not sure how you are maintaining the pricing condition records and its behaviour when you create a sales order
    please let me know whether you succeed by this configuration
    regards,
    Santosh

  • Customer Expected price::Condition type EDI1 and EDI 2

    what is the trigger point when you enter a customer expected price in a sales order
    Is there any enchancement/ routine that runs when you enter customer exepected price in a sales order.

    Routine 8 is used is for these condition type to compare, say, when ever the EDI1 price is is higher then expected in compare to base price. Then system will blocked the sales order.
    FYI - For automatic determination of these condition type in sales order you get inbound iDoc from customer.
    You use condition segment E1EDP05 under E1EDP01 for IDOC ORDERS04, price field VPREI.
    As I already mention in absence of IDoc, you can manually maintain the same.
    Regards
    JP

  • Required quantity and multiple drawing documents in the work centers

    Hi Gurus
    I have created BOM, which contain item - drawing document, quantity 1 pc.
    Irrespective of the total quantity of finished product the drawing document should be only one pc, as we use one document per work center.
    However, output of "Required Quantity" using CS03 shows as multiple drawing documents instead of just one drawing document.
    Please throw some light on this.
    Thanks in advance.
    Akshay N.
    SAP PP certi.

    Hi
    In the item details update fixed quantity indicator for the drawing item
    so it will be always fixed to 1.
    Regards
    Abhishek

  • Minimum and Multiple Order Qty attributes by product

    What are the options for managing Sales Order Multiples. Would like to have the option of setting required or optional quantities. For example, Product A is shipped on a pallet with 12 units. Would like orders to be managed as 12, 24, 36 etc. In other words, the 12 would also become an order minimum. In some cases this should be mandatory. Is this an item master field? If not, how is it normally managed? As an added bonus, the ability to flag these multiples as mandatory for only certain customers or sales channels would be better still. Any ideas?
    Thanks,
    Chris

    Hi,
    This is the definition of your questions:
    Order Multiple u2013 you can set a multiplication factor for ordering the item e.g. in
    case you define 5 in this field and14 items are required, the MRP will recommend to
    order 15 items (3X5=15). If 18 items are required, the recommendation will be to
    order 20 items (4X5).
    Minimum Order Qty u2013 you can type a minimum quantity for ordering items by the MRP.
    The planning data is apply when there is a requirement (sales order, forecast, production orders (for the child item) and reserve invoice.
    JimM

  • How to update multiple Price conditions in FM CRM_ORDER_MAINTAIN

    Hi All,
          need to update multiple price conditions in a contract Thru FM CRM_ORDER_MAINTAIN.
    please see the piece of code that am using...
      am able to update single price condition...but not able to populate 2 or more .......i,e..ADD A Condition
    i,e...DATA : ls_cond TYPE prct_cond_external_input,
           lt_cond TYPE prct_cond_external_input_t.
    DATA : ls_con TYPE PRCT_COND_DU,
           lt_con TYPE PRCT_COND_DU_TAB.
    Create Condition Type
    *ls_con-KNUMV = lv_header_guid.
    *ls_con-KPOSN = lv_item_guid.
    ls_con-stunr  = '134'.
    IF Y EQ 1.
      ls_con-ZAEHK = '001'.
    ELSE.
       ls_con-ZAEHK = '002'.
    *ENDIF.
    *ls_con-kschl = 'ZFP1'.
    **ls_cond-waers = 'CNY'.
    *ls_con-kbetr = '0.00'.
    *ls_con-kpein = '1'.
    ls_cond-kschl = 'ZFP1'.
    ls_cond-waers = 'CNY'.
    ls_cond-kbetr = '0'.
    ls_cond-kpein = '1'.
    ls_cond-knumh = lv_item_guid .
    CLEAR ls_Price_doc.
    ls_Price_doc-ref_guid = lv_item_guid.
    ls_Price_doc-ref_kind = 'A'.
    IF Y EQ 1.
    ls_Price_doc-ref_handle = '000000001'.
    ELSE.
      ls_Price_doc-ref_handle = '000000002'.
    ENDIF.
    *ls_price_doc-PRIC_COND[] = lt_cond[].
    *INSERT ls_con into table ls_price_doc-PRIC_COND.
    INSERT ls_cond into table ls_price_doc-COND_ADD.
    INSERT ls_price_doc INTO TABLE lt_price_doc.
    ls_input_fields-ref_guid    = lv_item_guid.
    ls_input_field_names-fieldname = 'KNUMH'.
    INSERT ls_input_fields INTO TABLE lt_input_fields.
    ls_input_field_names-fieldname = 'KPOSN'.
    INSERT ls_input_fields INTO TABLE lt_input_fields.
    ls_input_field_names-fieldname = 'KSCHL'.
    INSERT ls_input_fields INTO TABLE lt_input_fields.
    ls_input_field_names-fieldname = 'KPEIN'.
    INSERT ls_input_fields INTO TABLE lt_input_fields.
    ls_input_field_names-fieldname = 'STUNR'.
    INSERT ls_input_fields INTO TABLE lt_input_fields.
    ls_input_field_names-fieldname = 'ZAEHK'.
    INSERT ls_input_fields INTO TABLE lt_input_fields.
    ls_input_field_names-fieldname = 'WAERS'.
    INSERT ls_input_fields INTO TABLE lt_input_fields.
    ls_input_field_names-fieldname = 'KBETR'.
    INSERT ls_input_fields INTO TABLE lt_input_fields.
    CLEAR ls_input_fields.
    Ls_input_fields-ref_guid    = lv_item_guid.
    ls_input_fields-ref_kind    = 'B'.
    ls_input_fields-objectname  = 'PRIDOC'.
    *ls_input_fields-logical_key = '0001'.
    ls_input_fields-field_names = lt_input_field_names.
    INSERT ls_input_fields INTO TABLE lt_input_fields.
    CLEAR ls_input_fields.
    CLEAR ls_Price_agreement.
    Clear ls_cond.
    I kept this under code. loop, for item records.....
    Though the internal table lt_price_doc. is holding all the records, it is updating only one record. can you any one pls guide me ,

    This example works fine for me. Modify it according to your needs...
    Price
                  IF it_item-value IS NOT INITIAL.
                    ls_cond-kschl = 'PR00'. " add price
                    ls_cond-kbetr = it_item-value.
                    ls_cond-waers = st_head-currency.
                    INSERT ls_cond INTO TABLE ls_pridoc_com-cond_add.   
                    index_2 = 1.
                    CLEAR: ls_cond.
                  ENDIF.
    Discount
                  IF it_item-discount IS NOT INITIAL.
                    ls_cond-kschl = 'ZPPP'. " add discount
                    wa_procent_calc = it_item-discount * 10.
                    ls_cond-kbetr = wa_procent_calc."it_item-discount.
                    ls_cond-waers = '%'."st_head-currency.
                    INSERT ls_cond INTO TABLE ls_pridoc_com-cond_add.   
                    index_2 = 1.
                    CLEAR: ls_cond, wa_procent_calc.
                  ENDIF.
                  IF index_2 = 1.
                    ls_pridoc_com-ref_handle = counter.
                    ls_pridoc_com-ref_kind = 'B'.
                    INSERT ls_pridoc_com INTO TABLE gt_pridoc_com.
                    CLEAR: index_2,ls_pridoc_com.
                  ENDIF.

  • Quantity and Price Totals on Sale Order and Delivery Order

    Dear ABAP Gurus,
    I want to add totals of line items (Quantity and Price) in sale order and delivery order screens. Can you please guide me how to do this. The price can be any from pricing procedure ie exclusive or inclusive price of sales tax.
    regards,
    RSA
    Moderator message : Requirements dumping not allowed, show the work you have already done, thread locked.
    Edited by: Vinod Kumar on Jan 28, 2012 9:23 PM

    Hi,
    Try this :
    IF @transaction_type in ('A','U') AND (@OBJECT_TYPE='22')
    BEGIN
    If exists (SELECT t3.docentry FROM OWOR T0  INNER JOIN WOR1 T1 ON T0.DocEntry = T1.DocEntry left join POR1 T2 on T2.[U_JONum] = T0.[OriginNum] and  T0.[ItemCode] =  t2.U_SubConItem] INNER JOIN OPOR T3 ON T2.DocEntry = T3.DocEntry WHERE T1.[PlannedQty] <> T2.[Quantity] and  T1.[ItemCode]  = 'subcon' and  T3.DocEntry = @list_of_cols_val_tab_del )
    Begin
    SET @error = 10
    SET @error_message = 'Not allowed to add more than planned'
    End
    End
    Thanks & Regards,
    Nagarajan

  • Restrict new price conditions in the return order and credit note

    Dear Expert
    We are facing a scenario where we make return order; the Price is copied from the invoice. And it is working perfectly. The system does not allow us to change the price.
    The issue we are facing here is that user can input new condition like discount /premium and change the net value for the return order pricing, and this will reflect in the credit note for returns.
    Is there a way to restrict the user from entering any pricing condition in the header or item conditions tab.
    although we cannot change the original price coming from invoice referenced for return order, but the user can input new price conditions as below. This must not be allowed.
    The price must come according to the Qty being referenced.
    While making the credit for returns, the user has a chance of further making changes to the net value by adding new conditions. Hence this must also be restricted for any changes.
    Thanks

    Hi
    Firstly,In copy control maintain anyone of the pricing types
    D: Copy pricing elements unchanged
    E: Copy pricing elements and values unchanged
    To avoid all these things go with  USEREXIT_FIELD_MODIFICATION but before going with the user exit,also check with transaction variant SHD0.
    Regards
    Srinath

  • R12: Disable Field Quantity and Unit Price in Line Item (AR)

    Hello,
    Is there a setup in Oracle Receivables - Transactions where I can disable the field "Quantity" and "Unit Price" on the form for line item?
    I don't have Order Management nor Inventory setup in this environment.
    Note: In AP invoices, these field are disabled.
    vik

    Hello.
    I don't think that is possible because the system uses those fields to calculate the Amount field, which cannot be filled in directly.
    Octavio

  • Block Purchase Order quantity and price based on BOM and Production quantity respectively

    Hi Everyone,
    Hope you can help in my first project in sap b1.
    My client requires that when a purchase order of subcon materials has been created it will get the 'price' from BOM row level unit price and 'quantity' from Production order row level quantity. My questions is if i there is a way to limit(block the document from addition) when does values has been changed greater than the reference document value? if ever, how?
    I'm new with SAP B1 and still learning.
    Im using SAP B1 9.0 PL 7 with Australian localization
    Thank everyone in advance!

    Hi,
    Try this :
    IF @transaction_type in ('A','U') AND (@OBJECT_TYPE='22')
    BEGIN
    If exists (SELECT t3.docentry FROM OWOR T0  INNER JOIN WOR1 T1 ON T0.DocEntry = T1.DocEntry left join POR1 T2 on T2.[U_JONum] = T0.[OriginNum] and  T0.[ItemCode] =  t2.U_SubConItem] INNER JOIN OPOR T3 ON T2.DocEntry = T3.DocEntry WHERE T1.[PlannedQty] <> T2.[Quantity] and  T1.[ItemCode]  = 'subcon' and  T3.DocEntry = @list_of_cols_val_tab_del )
    Begin
    SET @error = 10
    SET @error_message = 'Not allowed to add more than planned'
    End
    End
    Thanks & Regards,
    Nagarajan

  • Price Base Quantity and PBQ UOM on Detailed VIEW of item

    Dear MDM Experts,
    we use MDM Catalog 2.0 SP1. How can be appeared Price Base Quantity and Price Base Quantity UOM on Item Details screen and on Compare screen?
    If I set in Configuration UI on General tab - Item Display Criteria: Show Price Base Quantity to YES, I see no change.
    Thanks and regards,
    Ádám Horváth

    Are you still looking for answer. plz let me know.
    Regards,
    SK

  • Quantity and Price block on MM docs not appearingin MRBR list

    Hi Gurus
    Even if there are quantity and prices blocks in the MM doument , the MRBR list doesnot display the blocked documents.
    As a result we are not able to release the documents and remove the block.
    What could be the possible reason for this?
    And is there any other way to remove the block on MM document without going through MRBR.?
    Early Response is highly Appreciated
    Thanks a Lot
    Rgds

    hi,
    If you do not want to check the Invoice for tolerance keys like quantity variance and price varaince then tick on don't check .In this case system will not block any invoice and invoice will post Automatically without any error.
    Please check other tolerance keys in SPRO: OMR6
    One more blocking is defined in the vendor master also under payment transactions accounting screen.There you are defining the tolerance group for Invoice Verification.
    Regards,
    Amit

  • Increase decimal places in the PO quantity and Price

    Hi All,
    Can the decimal places in the PO( ME21N) creation be increased more than 3 decimal places in quantity and price?
    I did changes in UOM's in CUNI, I increased the decimal places upto 14 but still it does not take more than three i-e., 0.001 maximum.
    Is there any other way to handle this?
    Request inputs on this.
    Note 569326 - ME9F: Customized decimal places are not taken into account........ found this OSS but this correction instruction is not for our pack level ECC 6.0
    Best regards,
    Sridhar

    hi
    In case if you are already working in production remember that decimal places should not change. It will affect all previous data.
    For your problem best solution is make order unit as 1000. So that your problem will solve
    e.g. instead of 2.009 inr for 1 Unit use 2009 inr for 1000 unit.

  • Price condition display in VA01 and VA02

    Hi Friends,
    In our organization, we want that some of the users could not change the price conditions in t. code VA01 and VA02.
    Please help us.
    Thanks
    Ganesh

    Dear Tiwari,
    As Lakshmipathi mentioned, if you want to restrict the access to all users, then goto V/06; there you uncheck the value field.
    If you wan to restrict the access to specific users, then make use of the authorization objects available in the Tcode SU21 (preferably, V_KONH_VKS). or create the custom one; check with your basis team and your ABAPer to do the same.
    thanks
    Venkatesh SP

  • Control on quantity and price between version 2 and version 0

    Hi,
    My client works on scenario where the cost planning (boq upload)  is done in version 2 and operative is version 0, now the requirement is that, when they want to create a reservation the system should trigger error if change in quantity and price
    for eg: 'X' material quantity is 10 nos. in version 2 (plan) and in the operative version 0 if the reservation is put for 11 nos then the system should trigger an error.
    Also, if "X" item price is 10 rupees each and at the time of reservation after 1 year if it 20 rupees each then the system should prompt an error for change in price (NOT AVAC for budget exceed)
    Kindly suggest if this can be done.

    Harsh Saxena wrote:
    Hi,
    >
    > For price check, AVAC will do the job, no need to go for different solution....
    > else,
    > you will need development for both price and quantity checking while creating reservation.
    > or
    > reservations can be generated automatically from the project if you attach the same materials as in BOQ to in activities in project. This way reservation will be created only for the required quantity only. For price either use AVAC or go for development.
    >
    > Regards,
    > Harsh.
    Hi,
    AVAC will check the budget, they want a control on change in price.
    Development has to be done from two different version please clarify how this can be done.
    Boq can be uploaded  in the operative project but they can even add a extra  quantity or raise a new PR...kindly correct
    Regards,
    Reena

Maybe you are looking for