Pricing Condition Type for Break down discount (zbdo)

Hello Members ,
Business :  Suppose you create order on 16/07/2010 then the ZBDO = 5%, but after the 18/07/2008 then ZBDO = 10 %, it activate automatically in the pricing procedure.
I am doing :
Change in the Condition type in *Scale basis = Time period scale - Days ; Check value = None ; Scale type = Base-scale,
and Condition Record : we Choose access sequence = Price Group / material Pricing Group, then goto scale and maintain the data , but the value is not getting at the time of order creation...
Please give the solution

hi rajesh,
where the price is changed? is it in billing doc or in sales order?
price is determined by pricing date. pricing date is available in sales order and billing.
just maintain ur cond record for ZBDO:
Material A     5%      16/7/2010 - 17/7/2010
Material A     10%    18/7/2010 - 31/12/2010
when you create sales order in 16/7/2010, cond type ZBDO will be 5% (as pricing date 16/7/2010). but when you do billing in 18/7/2010, see pricing date in billing, if pricing date in billing 18/7/2010, cond type ZBDO will be 10%.
Hopefully it helps you,
Hendry

Similar Messages

  • 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

  • How to change exchange rate type for specific pricing condition type

    Hello every one,
    I have a requirement for billing ie VF01.
    currently  all the exchange rate are being calculated with exchange rate type 'M' by default.
    but now client want it should calculate exchange rate with type 'E' for two pricing condition type for all others it should calculate with type 'M'
    Please any body can help me with the exit and code which i can use.
    I have checked exits SDVFX008.
    but how to change exchange rate with type 'E' only for two conditions.
    as changing exchange rate at document header will change exchange rate for all condition type.

    You need to assign KOMK-KURST = 'E', for those two condition types. If it had been item number specific, you could have used USEREXIT_PRICING_PREPARE_TKOMK(RV60AFZZ).
    Do one thing, put a breakpoint on FM 'PRICING' and then do selective runtime analysis.
    Check whether any user exit/BADI/ explicit enhancement are available when condition types are processed in a loop. If nothing is available, try implicit enhancement.
    Link to refer for selective runtime analysis - Runtime Analysis for VOFM
    Also try with VOFM requirements ( not sure whether changing KOMK-KURST is permissable in requirement as normally  we only set sy-subrc values to suppress/allow condition types ). Don't forget to assign requirements against condition types in pricing procedure.

  • Function module to change the value for pricing condition type

    Hello experts,
    I want to change the value for pricing condition type for an item in the transaction CRMD_ORDER.
    I used many function modules but none are working.
    Please kindly suggest a function module that will change the value for a condition type .
    I have used the following function module but its not working, please correct the coding if anything needs to be changed or added. Please help me .
    Thank you.
    CLEAR PRCD_COND.
         SELECT SINGLE * FROM PRCD_COND WHERE KPOSN = WA_ORDERADM_I-GUID AND
                                              KSCHL = COND_TY.
      IF SY-SUBRC = 0.
    *    MOVE-CORRESPONDING PRCD_COND TO L_COND_CHG.
    *    CLEAR L_COND_CHG-KBETR.
        L_COND_CHG-STUNR = PRCD_COND-STUNR.
        L_COND_CHG-KBETR = COND_PRC.
    *    L_COND_CHG-KSCHL = COND_TY.
        INSERT L_COND_CHG INTO TABLE T_COND_CHG.
    L_HEAD_GUID = CRMD_ORDERADM_H-GUID.
    L_ITEM_GUID = WA_ORDERADM_I-GUID.
    INSERT L_HEAD_GUID INTO TABLE HEAD_GUID.
    INSERT L_ITEM_GUID INTO TABLE ITEM_GUID.
        CALL FUNCTION 'CRM_ORDER_READ'
         EXPORTING
           IT_HEADER_GUID                    = HEAD_GUID
           IT_ITEM_GUID                      = ITEM_GUID
         IMPORTING
           ET_ORDERADM_H                     = LT_ORDERADM_H
           ET_ORDERADM_I                     = LT_ORDERADM_I
           ET_PRIDOC                         = IT_PRIDOC_RD
           ET_DOC_FLOW                       = T_DOC_FLOW
    *     CHANGING
    *       CV_LOG_HANDLE                     =
    *     EXCEPTIONS
    *       DOCUMENT_NOT_FOUND                = 1
    *       ERROR_OCCURRED                    = 2
    *       DOCUMENT_LOCKED                   = 3
    *       NO_CHANGE_AUTHORITY               = 4
    *       NO_DISPLAY_AUTHORITY              = 5
    *       NO_CHANGE_ALLOWED                 = 6
    *       OTHERS                            = 7
        IF SY-SUBRC <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.
    MOVE-CORRESPONDING LS_PRIDOC_RD TO L_PRI_COND.
    INSERT L_PRI_COND INTO TABLE PRI_COND.
    LOOP AT IT_PRIDOC_RD INTO LS_PRIDOC_RD.
    MOVE-CORRESPONDING LS_PRIDOC_RD TO L_PRIDOC_CHG.
    L_PRIDOC_CHG-PRIC_COND = PRI_COND.
    L_PRIDOC_CHG-REF_GUID = LS_PRIDOC_RD-GUID.
    L_PRIDOC_CHG-COND_CHANGE = T_COND_CHG.
    INSERT L_PRIDOC_CHG INTO TABLE PRIDOC_CHG.
    ENDLOOP.
    LOOP AT LT_ORDERADM_H INTO LS_ORDERADM_H .
    MOVE-CORRESPONDING LS_ORDERADM_H TO L_HEADER.
    INSERT L_HEADER INTO TABLE HEADER.
    ENDLOOP.
    LOOP AT LT_ORDERADM_I INTO LS_ORDERADM_I.
    MOVE-CORRESPONDING LS_ORDERADM_I TO L_ITEM.
    INSERT L_ITEM INTO TABLE ITEM.
    ENDLOOP.
    L_FIELD-FIELDNAME = 'STUNR'.
    INSERT L_FIELD INTO TABLE FIELD.
    L_FIELD-FIELDNAME = 'KBETR'.
    L_FIELD-CHANGEABLE = 'X'.
    INSERT L_FIELD INTO TABLE FIELD.
    L_INPUT-FIELD_NAMES = FIELD.
    L_INPUT-REF_KIND = 'E'.
    L_INPUT-REF_GUID = LS_PRIDOC_RD-GUID.
    L_INPUT-OBJECTNAME = 'PRIDOC'.
    INSERT L_INPUT INTO TABLE INPUT.
        CALL FUNCTION 'CRM_ORDER_MAINTAIN'
         EXPORTING
           IT_PRIDOC                     = PRIDOC_CHG
         IMPORTING
           ET_EXCEPTION                  = EXCEPT
         CHANGING
           CT_INPUT_FIELDS               = INPUT.
        IF SY-SUBRC <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.
    REFRESH EXCEPT.
    CALL FUNCTION 'CRM_ORDER_SAVE'
      EXPORTING
        IT_OBJECTS_TO_SAVE         = HEAD_GUID
    *   IV_UPDATE_TASK_LOCAL       = FALSE
    *   IV_SAVE_FRAME_LOG          = FALSE
    *   IV_NO_BDOC_SEND            = FALSE
    *   IT_ACTIVE_SWITCH           =
    IMPORTING
       ET_SAVED_OBJECTS           = SAVED
       ET_EXCEPTION               = EXCEPT
       ET_OBJECTS_NOT_SAVED       = UNSAVED
    * CHANGING
    *   CV_LOG_HANDLE              =
    * EXCEPTIONS
    *   DOCUMENT_NOT_SAVED         = 1
    *   OTHERS                     = 2
    IF SY-SUBRC <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    COMMIT WORK AND WAIT.

    Hi,,
    To be able to call a function module in an update work process, you must flag it in the Function Builder. When you create the function module, set the Process Type attribute to Update with immediate start
    Alternatively u can use this function module.
    CRM_STATUS_DATA_SAVE_DB
    BAPI_CUSTOMERCRM_CHANGE (If u wish to use a bapi for this).
    Also , Let me know what error you got when implementing other function module.Does the function module didnt return any error but still the value is not changed for pricing condition type?

  • New Condition type for pricing

    Hi,
    I have a requirement wherein I want to create new condition type for add on cost of material with manaual entry . this condition is to be given in inforecord.
    How to proceed? also, this contion type to be inserted in pricing schema??

    Dear Smitha,
    You may ask what is the condition type?
    For example:
    - discounts, surcharges or tax taxes add to net price
    - delivery costs, cash discounts add to effective price
    Discounts or surcharges may be percentage based, quantity dependent, or absolute.
    Best Regards,
    ian, Wong Loke Foong

  • Table for existing PO/Sch.Agg pricing condition types

    Hi Experts,
    Which table will have PO / Sch.Aggrement  - pricing condition types with values as maintained in PO (like freight / P&F etc). I have the input of PO/Sch.Agg ref, plant, vendor & material.
    We have created Z condition types for freight/ P&F and using the same in PO/Sch.Agg.
    Thanks,
    Jeeva

    HI,
    Same status.
    In table EKKO also field "Doc. condition no." is updating for PO only, which is same as we find in EKKI. For Sch.Agg it it not updating the Doc.Condition no and remains blank.
    Any way i have gone thro a different route. since I am looking for delivery condition for a completed GR, I can pick the conditions  from EKBZ table.
    Thanks.
    Jeeva.

  • Condition types for import pricing

    hi,
         the conditions types for import pricing procedure are not appearing.
    please suggest all the notes from where i can take reference and create the condition types for import process.
    please also suggest what are they?
    with regards

    Hi anitha,
    In case of import purchase. u have to configure the conditions in pricing procedure.  The condition types are as follows:
    1)jcdb               basic customs
    2)jcv1               CVD
    3) jec1               ECS on CVD
    4)jed1              cess on customs
    5) j1cv                secess on cvd
    6) jsdb               secess on customs
    Go to the master note no 1032295 for recent budget changes.
    award points if found useful
    chintu

  • List of sales condition types for a material

    Hi,
    I have a material and maintained pricing and discount condition types for that material. I guess VK33 helps to view what condition types maintained for that material.
    However when I tried VK33 and selected the material from the conditions from the node on the left hand side and entered the sales org, dist. channel and material and executed after I clicked on the display icon on the condition type, Sales org, Dchl material no conditions are displayed.
    Please let me know how I can view the list of sales condition maintained for a specific material.
    Thanks.

    Hi Giri,
    Thanks for the response.
    In VK13 I should enter the condition type then I can hit condition information so that the details of all records maintained for a specific condition type will only be displayed but not for other condition types.
    In V/LD, I am getting the list only for individual prices. If I insert 17 u2013 Discounts and surcharges by customer or 18 u2013 Discounts and surcharges by material, I am unable to get the list. Is it anything because of the u2018release statusu2019?  We had not checked the u2018release statusu2019 field for the tables assigned to access sequence for the condition types.
    As per the requirement business wants to view the list of u201CDiscounts and surcharges by customer/materialu201D. I think this is possible if I run the report provided by inserting values 17 or 18 but the unable to view the list. Any config settings required to activate?
    Please let me know how to view the list of condition types.
    Thanks

  • MM Pricing Condition Type values in Condition Tab updation while CHANGE PO.

    Hi,
    The process of PO creation and PO change is through inbound IDOC posting.
    I created a PO with configured MM pricing procedure.
    While creating PO, the PO is created as required with different Condition Type value break-ups [PBXX, Discount, Surcharge etc] in the PO as required via Inbound IDOC processing.
    While CHANGING the same PO, the Condition Type break-ups [i.e. pricing related values] in the PO are NOT changing in the PO via Inbound IDOC processing.
    What needs to be done to update the Condition Type break-ups in the PO while changing PO through IDOC processing process?
    This problem is not occured while manual / on-line changing of PO valueS and saving the PO & exists through IDOC processing method ONLY.
    Thanks in Adv,
    RK

    Hi
    Try this function module
    FM RV_CHECK_CONDITION_VALUE
    Regards
    Hareesh Menon

  • Condition types for Import Vendor not getting in Contract

    Hi,
    In Contract Document if Import Vendor selected, for the Line items we are not getting the Import Pricing Condition types. Instead, we are getting the Local pricing condition types even if Import vendor schema maintained in Vendor Master.
    We have found that Gross Price PB00 and PBXX are maintained for both Local and Import Pricing Procedures. In PB00 condition type configuration, Local Pricing Procedure is assigned in the field Pricing Procedure (V_T685A-KALSM).
    But while creating the Purchase Order we are not facing this problem & we are getting respective Pricing Condition types based on the Vendor schema assigned in Vendor Master. And already till now more than 4 Lakhs of Purchase Order created.
    Please let me know the solution to get Import Pricing Condition types in Contract for the line items.
    Thanks & regards,
    Datta

    In Contract only basic price will be shown, other conditions and pricing procedure do not appear, becayse eventually the contract has to be released, which is nothing but creating a PO.
    SAP Standard practice, Outline agreements (Contract and Scheduling areement) will not have pricing procedures, they will have only basic price and discounts conditons.
    Hope this anwers your question.
    Thanks & regards
    Hameed Parvez.

  • Condition types for Insurance and Duties - Export sales

    Hi Friends,
    Please let me know the condition types i can make use of for capturing the Insurance and duties paid during export salesand also the condition type for capturing the commission.
    Thanks
    Ivy

    Dear ivy
    You can create zee condition types on your own and maintain the required datas.  I am just give you one example for insurance.
    Go to V/06, copy some standard discount condition type and rename it as ZEIN and maintain the following:-
    Cond. class:::::::::::::::: A
    Calculat.type::::::::::::::: A
    Cond.category::::::::::::::C
    Rounding rule::::::::::::::::Commercial
    Plus/minus::::::::::::::::::::blank
    Manual entries:::::::::::::::D
    Amount/percent::::::::::::::X
    Value::::::::::::::::::::::::::::X
    In V/07, you can maintain the following tables
    033:::::::::Incoterms
    307::::::::Customer with Release Status
    So in VK11, either you can maintain the insurance percentage for Incoterm or Customer, so that whenever you generate sales order with multiple line items, this condition will automatically bifurcate the insurance percentage.  Also the most important is that in your pricing procedure, against this condition type, you have to assign EIN as Account Key.
    thanks
    G. Lakshmipathi

  • Pricing condition type not working

    Hi all,
    A pricing condition type is present which is supposed to make the netvalue to zero after the order reason is changed to rejection using va02. But even after the order reason is changed to rejection and we tried to genrate new pricing document, the netvalue is not becoming zero. How can I debug this? The condition type is not determined by using condition records.
    Thanks in advance.

    Hi Smith
    This should be working in the following ways.
    1) Order Reason/Rejection Reason being a field in the Key combination with 100% Discount triggering Zero Net Value
    if this the case, then you should check in Condition Analysis wheather the value has conrrectly flown in the condition table , if not why it has not flown in to the condition table (It could be missing value in the condition record or a prblem in the field catalogue user exit-  you need to take Developer's help as suggested by others)
    2)  Using a Requirement and changing the Net Value Zero without any condition table field.
    If so, put a break point in the requirement and check why this has not been successful in this scenario.
    I hope the replies would help you to some extent in solviing the issue.
    Thanks
    Subbu

  • Pricing Condition Type should split the Value

    Hello Gurus,
    I am working on Billing Plan for Contracts. In the contract I enter the condition type with Rs.24000. The same net value should split in the  billing plan by months for 12 months as Rs2000.00. Any inputs on this?
    Regards
    Venkat

    Hello,
    In v/06 make a new condition type for 'Monthly Value'.Eg.  ZP00
    Cond. class   A Discount or surcharg
    Calculat.type A Percentage         
    maintain vk11 for ZP00 as 8.333%
    In the pricing procedure , add the new condition type after main price condition as below.
    STEP    CNTR  CTyp         DESCRIPTION                     FROM    TO    MAN MDT             STAT  
    100             0     PR00     Price                                                               CHECK         CHECK
    200          0     ZP00     Monthly Value     100                                      
    please check the same and revert back.
    Thanks & Regards,
    Hegal

  • Use of conditino category in pricing condition type

    Hi,
             Can anybody please guide about the exact use of condition category in the pricing condition  type. In text it is mentioned that it is used for grouping of similar condition types but what exactly is the requriement for this? Does it have any control function like the feild condition class has( like for example grouping in this is used in redeterminations etc) ?
    Please guide about the use of this feild and if maintained or not maintained then how will it matter?

    Hi,
    It serves some purposes.
    1. It is used for the classification of condition types. During implementations, consultants classify the condition types into condition categories (Prices, Discounts, Taxes) and later use these categories to print the value of condition types in the forms. Coding based on condition categories reduces the effort instead of hardcoding on the condition type.
    2. They also have some inbuilt property for some of the condition types like VPRS, SKTO etc where the categories are important for the behaviour the condition type, the way they are expected to behave.
    3. Some of the condition categories will be applicable only for some specific processes and not for all the processes. for example e during downpayment.
    But the complete function of this field can be only learned over a period of time when we implement new functionalities for the business.

  • Pricing Condition Types

    Hello Experts,
    I am using the Condition types -  2 condition type for  Discount and 3 condition types for Freight but these are manual condition types.i have create condition typs with Z but when i try to check my pricing in SO system is not picking the condition type in the pricing...i mean to say tat user should not manually select the condition type.The condition type for above should exists blank in pricing so that user can put any value if required.
    For testing purpose i have assigned the condition table 350 which has only field sales org in the access seq PI02 and assigned the access seq to above condition types and maintained condition record for sales org..
    I can able to view the condition record coz system is able to find the sales org.
    but my major issue is when i created the customer with USD system is system is picking the currency of condition record of sales org which i maintained.
    Is ther any other alternative way without maintaining the access seq i wil able to get the condition types in the pricing so tat user will able to put the value.
    Plz give your input.
    Thanks
    Shri..

    Hello,
    Firstly, without Access Sequence it would not be possible to get the Condition Record Automatically in Pricing Procedure in Sales Order.
    What you can do is assign the general most Access Sequence (with Condition Table as Sales Organisation). But in this ase you will have to maintain Condition Record with some minimum Amount, which the Users can change while Creation Sales Order.
    In V/06, changes can be made maintain as "Manual Entry has Priority".
    Hope this helps,
    Thanks,
    Jignesh Mehta

Maybe you are looking for

  • I want to REMOVE the 4th & 5th line (from the top) of the home page

    The following information, in the page header area, is as follows: Line 4: Most Visited-..Getting Started-..Latest Headlines-..Lufthansa-.Buses – Mexico-.My Mexico Vacation-..Travel Line 5: AVG--Type your search here!.......Search-..Identity Guard Wi

  • Dock fails to go away during QT full screen

    I've noticed that since installing Snow Leopard my dock will occasionally hang on the screen (I have it on the left right now) when I am entering full screen for, say, a quicktime trailer. The mouse is in the middle of the screen, yet the dock won't

  • Can the new ipod nano do the "on the go" playlist?

    I have a 4th gen nano and I had to make my own playlist folder, call it "on the go" and then I could use it by holding down a song title to put it in there, you know how it works. I'm hoping that the brand new ones can do the same thing, but I see th

  • Transferring music to my replacement ipod mini

    Hi i've just got a replacement for my ipod after battery trouble. When I connect to iTunes (which was already installed on my PC) it recognises my iPod & says that it is updating it, but when update is complete there is no music on my iPod. Do I need

  • Accessing "Windows Sharing" with root account

    I have a problem with my account in OS X Tiger v.10.4.11. Probably NIDB is damaged and I can only get access to the 'root' account. Before I start trying solving the problem I need to make a backup. My only option right now is to backup all my files