SD price condition with per mille

I need to calculate a value of 7,7/1000 + 15%, which is 0,008855. I am trying to configure the condition as per mille, but I cannot select neither "K" nor "J". The system says they are not defined for the application.
If I try to create the condition as a percentage, I have the problem that there are only 3 decimals, so I still have a problem.
Does anyone have an idea how to solve it ?
Michael

Hi all,
Checking the price condition in the invoice, i see these values:
Amount                    2.160- COP   / 33    UND
Cond.base value               71,000  UND
Condition value                4.647- COP
The result we need is Condition Value = -2.160 * 33, but, because this formula is calculated in a position of the invoice, this position has its own quantity that differs from the quantity calculated by the formula.
In simulation, SAP takes the result as we need, that is Condition Value = -2.160 * 33. But when the billing document is created, the value is calculated like this:
Condition value = (-2.160 / 33) * 71
Condition value = (KOMV-KBETR / KOMV-KPEIN) * KOMV-KAWRT
Maybe there is something that is missing in our condition value formula.
Can anyone please tell me where can I find a document that explain some details to have into account when we develop a condition value formula using transaction code VOFM?
I kindly ask you to give me any clue.
Thanks in advance.
Kind regards,
Daniel Reyes

Similar Messages

  • Price conditions changes - IDOC

    Dear all!
    We have price condition with key combination: Material group - Sales unit.
    When smb changes this condition, an IDOC WP_PLU should be generated for all materials for the changed group.
    As far as I know standard functionality can generate such IDOC only for price conditions  on material level. Am I right?
    How can we implement this task? Could you,pls, recommend  suitable exits/badi/extensions if it is the only way.

    Hi,
         Please refer below steps
    Please create partner profiles through WE20 for customer type KU for message type WP_PLU(under Outbound messages)
    Then activate change pointer for message type WP_PLU through tcode BD50
    Maintain condition type group by navigating Sales and Distribution -->POS Interface -> Outbound-->Maintain POS Condition Type Group
    Maintain profile for POS by navigating Sales and Distribution -->POS Interface -> Outbound--> Maintain Profiles for POS Outbound
    Maintain POS pricing procedure and assign using OVKK(for customer in this case site)
    You can schedule a daily job using Report RWDPOSAN(WPMA) or RWDPOSUP(WPMU)
    For more details please refer 733: Store Connectivity: Configuration Guide  ...
    http://help.sap.com/bp_retail603/BBLibrary/Documentation/733_BB_ConfigGuide_EN_US.doc
    Hope you will find it useful...
    BR
    Ajaya Kr Mishra

  • Price conditions in bid.

    Hi all,
    I have a simple question: it is possible to deactivate the range of validity in the price conditions of a bid.
    The price conditions is available for the vendor if the flag USE_CONDITIONS is set in the bid invitations, but I have to insert two price conditions with the same range of dates.
    Best regards,
    Norberto.

    Hi Muthu,
    Yes, i can. I have simulated the creation of on PO via me21n with the same conditions, and all works fine.
    Just to be clearer.
    The case that raise the issue was the follwing:
    SRM - Bid Offer
    1 Line item:
    Gross amount 15,17
    Discount %: 25%
    Then the PO is created in R/3 and we find the following:
    Gross Amount: 11,38
    Discount %: 25%
    Final price: 8,54
    The final price calculated is wrong, because the discount has been apllied two times.
    I hope this help to clarify the issue.
    Thanks & Regards,
    Valentino

  • Price condition from R3

    Hi all,
    I'm on SRM 5.0 ECS.
    My focus is the PO. I need the same price condition (with the same access sequence) of R/3 on SRM.
    There is a copy functionality or a direct relation with the backend?
    thanks
    enzo

    Hi
    To replicate new pricing conditions from R/3 to EBP run the program BBP_UPLOAD_PAYMENT_TERMS
    Payment terms you can see in IMG:
    Supplier Relationship Management -> SRM Server -> Cross-Application Besic Settings -> Create Payment Conditions
    made part of maitenance view BBPV_PTERM_LOCAL.
    This view is only to maintain local payment terms, that means created in SRM, not in R/3.
    If you replicate your payment terms from R/3 backend (using report BBP_UPLOAD_PAYMENT_TERMS ), there are stored in table BBP_PAYTERM as being backend dependent (those seen in BBPV_PTERM_LOCAL are also stored in this table).
    Concerning texts for those payment terms, there are in table BBP_PAYTERM_TEXT, for all languages in which they exist in R/3. Check in R/3 with view T052.
    Be careful, i saw for SRM 5.0 that in order to have entries in BBP_PAYTERM_TEXT, corresponding data must exist in R/3 view T052U.
    This means that, in R/3 transaction OBB8 (change view "Terms of Payment"), your payment term must have had field "Own explanation" filled-in at one moment in order to create row in T052U.
    If not, T052U-TEXT1 is not updated, so payment term will not be created for the concerned language in SRM.
    Regards
    Krish

  • Changing Price Conditions in Sales Order with SD_SALESDOCUMENT_CHANGE

    Hello there!
    I need to change the value of a price condition in a sale order ;I'm using the f.m.  SD_SALESDOCUMENT_CHANGE.
    It doesnt' work as I want, 'cause it creates an other price conditions instead of just changing the price value of the actual one.
    Waiting for your tips,
    thanks.
    This is how my code looks like:
    PARAMETER: p_vbeln LIKE vbak-vbeln.
    data: st_order_header_inx   TYPE  bapisdhd1x,
            st_conditions LIKE bapicond,
            st_conditionsx LIKE bapicondx,
            tb_conditions TYPE TABLE OF bapicond,
            tb_conditionsx TYPE TABLE OF bapicondx,
            tb_return TYPE TABLE  OF  bapiret2.
    st_order_header_inx-updateflag = 'U'.
      st_conditions-itm_number = '0010'.
      st_conditions-cond_type = 'PR00'.
      st_conditions-cond_updat = 'X'.
      st_conditions-cond_value = '100'. "Value I want to enter
      APPEND st_conditions TO tb_conditions.
    st_conditionsx-itm_number = '0010'.
      st_conditionsx-cond_type = 'PR00'.
      st_conditionsx-updateflag = 'U'.
      st_conditionsx-cond_value = 'X'.
      APPEND ls_conditionsx TO tb_conditionsx.
    CALL FUNCTION 'SD_SALESDOCUMENT_CHANGE'
        EXPORTING
        salesdocument                = p_vbeln
          order_header_inx          = st_order_header_inx
        TABLES
          return                           = tb_return
          conditions_in               = tb_conditions
          conditions_inx              = tb_conditionsx  .

    Get the conditions records first from the Sales Order with BAPI BAPISDORDER_GETDETAILEDLIST
    CALL FUNCTION 'BAPISDORDER_GETDETAILEDLIST'
      EXPORTING
        i_bapi_view          = lw_bapi_view
      TABLES
        sales_documents      = lt_order
        order_conditions_out = lt_conditions_out.
    Then populate the conditions internal table with the data that you get from the previous code
    move-corresponding lw_conditions_out to lw_order_conditions_in.
    lw_order_conditions_in-cond_value = '100'   " the value that you want to modify
    APPEND lw_order_conditions_in TO lt_order_conditions_in.
    CLEAR lw_order_conditions_inx.
    lw_order_conditions_inx-itm_number = lv_kposn.
    lw_order_conditions_inx-cond_st_no = lw_conditions_out-cond_st_no.
    lw_order_conditions_inx-cond_count = lw_conditions_out-cond_count.
    lw_order_conditions_inx-cond_type  = lw_conditions_out-cond_type.
    lw_order_conditions_inx-updateflag = 'U'.
    lw_order_conditions_inx-cond_value = lc_x.
    APPEND lw_order_conditions_inx TO lt_order_conditions_inx.
    You didn't populate the fields cond_st_no and -cond_count. Then just call BAPI SD_SALESDOCUMENT_CHANGE to change the Sales order.
    Hope that helps.
    Erwin

  • Sales doc copy control not working with price condition

    Here's the situation.
    For OR sales document I have  Procedure ZSALES and price conditions Z001
    For a QT Sales document I have Procedure ZQUOTE which does not have a Z001 condition in that procedure.
    If I create an OR (with the proper customer / matieral) the Z001 populates, based on it's defined record.
    If I then create another OR with reference to the original OR, the Z001 populates with no problem.
    Up to now everything's fine, now here's the probem......
    If I create an OR with reference to a QT, the Z001 does not populate in the OR order.I know there is no Z001 in the QT for it to copy from, but if I do [New Pricing] in the order it still does not come in.(I've tried [new Pricing] with Pricing type A..G)
    I have found OSS Note 413066, but this is in reference to 46c systems. we are on ECC 6.0
    any ideas ?

    Hi Bill,
    If PP assigned for both are different it's not going to populate field even if you are redertermining price, since it would be following the PP of Quotation (ZQUOTE), not Sales Order (ZSALES) because it's gonna copy the elements of that PP in order. Are your PP assigned are same or different?
    Hope this will answer your query
    Regards
    SD

  • Probleme with price condition

    hello,
    I have just created a info record for vendor 201031 and purchasing org Z001 and material 200000001 with price conditions (PB00, RA00, FRB1).
    when I have execute tcode MEKE (condition by vendor) for vendor  201031and the purchasing org  Z001 I had this message: “No condition types with access sequences found”.
    thank you to explain it to me what is  this problem ?  I owe acivre something? should I update vendor data ?
    NB: if you have examples of document “step by step” for price conditions, thank you to send it to me on: [email protected]
    in advance thank you .
    Said

    Hi ,
    Pl go through this link.
    http://www.sap-img.com/materials/steps-for-mm-pricing-procedures.htm
    Thanks
    Dipak

  • INVOIC01 with Price Condition

    Hi Experts,
    I need to create an iDoc of Invoice Receipt (MM) that put especifics Price Conditions or make the Invoice Receipt just with "Indirect Costes", like transportation, etc.
    I yet tryed to create the iDoc INVOIC01 with structure E1EDP05, but without sucessfull.
    Could someone help me about it ?
    Thanks in advance
    Regis

    Hi ,
    Pl go through this link.
    http://www.sap-img.com/materials/steps-for-mm-pricing-procedures.htm
    Thanks
    Dipak

  • How to limit the number of price conditions in a sales order

    Dear experts,
    We've created discounts in our pricing procedure, and they are added manually. They have a maximum.
    But the problem is that the user can add several discount price conditions in the sales order!
    Is there any customizing to limit the number of occurrences to 1 in the pricing procedure?
    Thank you for your help
    Marjolaine

    HI,
    You can make use of feature to maintain maximum and minimum limits per condition type.
    SPRO > SAP Implementation Guide > Customer Relationship Management > Basic Functions > Pricing > Define Settings for Pricing > Create Minimum/Maximum Limits
    In this activity you can restrict manual processing of pricing conditions in transactions using minimum and maximum limits per condition type.
    Kindly reward with points in case helpful
    Sharif

  • Determination of price conditions

    Hi all !!
    We have a problem with our price determination.
    The situation that is working wrong is the following:
    When we create a sales order which is giong to be delivered in several steps (For instance, 400 units of the material XXXX, delivering 100 units per month) our system calculate the price conditions using the date of the outbound delivery instead of the pricing date of the sales order. Taking this into consideration, when the billing documents are created, for each outbaund delivery we've got a different price, and we should have the same price for every outbound delivery.
    We've have been checking the copy control and everything is ok.
    Anyone can help us?
    Of course if you need more information, please let us know.
    Thanks a lot.

    Please check the copy controls (T-code VTFL, at the item category level field "Price Source", over there select the option "order" instead of delivery/order.
    All the prices relevant at the order level will be applicable in the billing document
    Plz reward points if this was useful to you.
    Regards,
    Sanjay

  • Create Shopping Cart to ref Price Conditions in SRM5 ECS

    Hi there
    I have a question about pricing conditions for ( my systems are MDM2.0, SRM5.0 , ECC 6,  Extended classic  ) 
    Price conditions has a limitation for ECS..meaning? Does this mean we cannot use pricing conditions on the shopping cart level for ESC
    I have a MDM catalog item that will be transfered to SRM. I want to show in my SRM shopping cart my catalog item plus 2 surcharges
    My approach is to apply a pricing condition to my item coming in from the mdm catalog.
    Example: catalog item (is for Services-labour resource): Jr SAP Basis, $90 from supplier XYZ.
    My item is a catalog item ..it has no material master.
    I have created, made entries in SRM server-> cross App basic settings->pricing->Process condition type and Process calculation schema
    I have created in SRM 2 custom condition types that are a percentage surcharge (so for my example it would be % of base price of  $90).
    These condition types are copied form SRM server-> cross App basic settings->pricing->process condition type (01RP u2013Discount%)
    Condition type 1: Z1RBu2026.Burden rate  (5% of $90) 
    Condition type 2: Z1RMu2026Markup rate (10% of $90)
    One of the fileds in Process Condition types is  u201CSource Systemu201D which can be local ie SRM or Other system like SAP R/3
    So my option is to reference the local SRM system( if this can be done here u2026where?) or ref the backend and create these same price conditions types.
    I cant find anywhere in SRM to create a condition table to enter the relationships of my Jr SAP Basis, $90 from supplier XYZ. So that I can associate this info with Burden and markup that changes per supplier
    Hope my scenario is clear and question too
    cheers
    alex
    Edited by: Alex Waiyaki on Sep 9, 2010 7:51 PM

    Hi Virender
    Thanks for you responce. I was going down this pasth of using a shoppingcart form the info on this SAP link below i thought it was possible...
    http://help.sap.com/saphelp_srm50/helpdata/en/72/f40f3c98ddaa4ce10000000a11402f/frameset.htm
    Pricing
    Use
    Pricing is a method of determining prices using the condition technique. SAP Enterprise Buyer uses Pricing when purchase documents are being created, for example, when a shopping cart or purchase order is created. The system automatically determines the gross price and any surcharges and discounts that apply to a specific vendor according to defined conditions. The system uses the gross price and these surcharges or discounts to determine the net price..
    Now handling this requirement on the MDM side...can i use Expressions to do the calculations of these to fields.
    i want 2 unique fields for these to values...that will mean 2 custom fileds to be passed on using the BAdI) BBP_CAT_CALL_ENRICH..
    cheers
    alex

  • Price Conditions for Long Term Agreement

    Hi,
    i need to extract the price conditions from long term agreements. For what i can understand i have to access the KONH table with a Varkey = EBELN&EBELP of the contract, and then see conditions on KONP and KONM tables. One thing I can't understand is how a record in KONH is marked for deletion. If I create another record with same validity period for same item. the other one is superceeded as if it was cancelled. Is there any other table with header condition master data?
    Furthermore, why the system lets me insert a new item with gross price, with same condition of an existing one, without having to flag for deletion the other. It seems that i can insert all the gross price (PB00) positions i want, and the last one i inserted is considered.
    Someone has any clue?
    thanks

    Loquat - That's not a good analogy.  Let me help you with your bank analogy:
    * You pay your mortgage payment on time faithfully for 24.5 years, and you want to REFINANCE your mortgage with your existing bank; however, your existing bank wants to charge you closing costs on your new loan AND a termination fee for the old loan.
    * HOWEVER, to solicit new business, your bank is telling other customers that they will pay the termination fees on their old mortgages if they do their refinance with the bank.  So why would the bank pay to get someone else's customer but not pay the same (OR EVEN MUCH LESS) to retain the customer that they already have?
    * By the way, thanks for the banking analogy.  As a 20+ year banker, I can tell you that a bank would never treat new, unproven customers better than their existing, long-time customers. 
    Thanks all for the lively debate, but nobody has been able to tell me how Verizon is better off by taking $130 now and letting $7,000 go to someone else.  That would be the equivalent of a 1.8% discount to make an existing customer feel like Verizon values their business.  But they would gladly give $600 ($150 per phone) to a new customer for bringing them the same business. 
    Loquat - by the way, that is not a "Special Privilege"!  That is the same privilege that they are offering to others that are not current customers!!  How is that "special privilege"?  And yes, it does sound fair.

  • Price condition equal to VPRS cost of goods

    I have a senario ,which we will create sales orders for customers with sales price equals to the MAP(moving average price) at the  time when the SO being input .And the sales price in sales orders should be copy to the billing whether  the MAP has changed or not .
    Now I have set up an pricing procedure ,which  use  VPRS  as the sales price condition type ,but here comes another question when I create billing according to the delivery . When I create the billing document ,the net value is defferent with the net value of the sales order ,because the MAP has changed during the goods issue.
    Is there any idea that can make sure the sale price equals to the MAP , and the billing net value is same as sales order net value?
    can you give me some advice ? thanks for you help!

    Hi,
    The pricing type (Copy control)  is an extremely important field. It is worthwhile keeping this entry
    in mind when creating your pricing condition types. As a rule of thumb, you should
    have all item categories for a particular sales document with the same settings.
    Generally, you may use pricing type B (carry out new pricing), G (copy pricing
    elements unchanged and redetermine taxes), or C (copy manual pricing elements
    and redetermine the others).
    When using condition B all manual pricing condition types are lost.
    If you want to copy the sales order to the invoice without changing the sales order
    conditions, use pricing rule G. This will copy the pricing conditions from the order into the
    invoice without changing them, but will redetermine the taxes.
    Regards...
    SBC

  • Price Condition Depending of Material Master Record

    Helllo Experts, I have an issue with a price condition on a price procedure  the user wants to be able to mantain the price condition manually only if the material used at item level of sales order is equal to one of 3 sku´s.
    This Price condition can not be mantained on VK12 because it´s calculated manually depending of several factors.
    For Example, let´s say the Material ID´s are  1122, 1123 and 1124 and the price condition is ZY01.
    If the Mateial ID used at item level of sales document, the manual condition ZY01 shouldn´t be shown to the user only if the material used is equal to 1122, 1123 or 1124
    To solve this issue I was thinking to use at price procedure the field requirement and use a pricing routine as  "2" Item with pricing and edit the routine. the Material used at item level of sales document
    I´m not quire sure this is going to work, And what´s the name of the field I should use to get that
    Any Suggestion how to adress this  issue is welcome.

    Hello, I create my own condition table to include material field, also a new access sequence has been created, to link this table on field material I only can specify one material number, I capture there my material for wich I want this price condition work, but when I create a Contract on VA41 using the material included on my price condition, I´m able to mantain the amount, but the same happen when I try to use another material number not included on my access sequence.

  • How to block post price conditions in purchase order

    I need to block post price conditions in the purchase order, after doing MIGO.
    The problem is that somtimes buyers people go to the purachse order with ME22N, even if MIGO has already been made for this purachse order. They change The amount of certain price conditions in some or all the posts of the purchase. when people of accounting receive the invoice, there are problems of price differences.
    i need help to do it
    Thank you in advance for your help

    The system will not allow to change the price once goods receipt takes place on that particular order.  It happens only when we reverse the reciepts and make the po open.  In such case the persons can change with ME22N.  Its simple that only authorised user to have this transaction code and other users should not have this transaction code authorization.

Maybe you are looking for