Condition Type entered twice per item

Dear SAP Guru's,
I have an issue. In the sales order discount condition types can be entered manually. I want to restrict the condition type to enter once only, system should not allow to enter the same condition type for more than once (per item). Can anybody through some light on this.
Thanking you,
Rajam

Dear Rajam,
Do the following:
1. Mark exclusion indicator for all the tables in access sequence for the discount condition type.
2. Go to V/06 for discount condition type & there is a field for manual entry, change it to not allowed.
Regards,
Ravi

Similar Messages

  • Same condition type on header and item level = printing problem

    Hi
    I have a customer using some condition types on both item level and header level in quotations, orders, invoices ...
    In the pricing procedures it is customized (V_T683S-DRUKZ) that the conditions must be printed on header level (that is at the bottom of the documents).
    My job is to make the Smartform to print the documents, and I want it of course to be as close to SAP standard as possible.
    SAP standard will print these conditions on header level even if the conditions are at item level, but my customer wants the conditions created on header level to be printed on header level and conditions created on item level to be printed on item level.
    I'm no pricing expert, so my question is:
    Will it be fair if I tell the customer that using the same condition types on header and item level is bad practices - or at least bad karma?
    Best regards
    Thomas Madsen Nielsen

    Hi Shiva Ram and Madhu
    I have no problem understanding header vs. item conditions, so I really don't see anything in oss note 876617, that is relevant in this case.
    Madhu - I do not agree that everything is fine. My issue is that I want to stick as closely to SAP standard customizing as possible. In SAP standard customizing of a condition type you can use the flag V_T683S-DRUKZ to determine if the condition should be printed on header OR item level - you can not choose both header AND item level.
    I have a SAP standard smartform using two functions modules for reading header and item conditions. RV_PRICE_PRINT_ITEM and RV_PRICE_PRINT_HEAD. These function modules are based on the DRUKZ customizing flag and a condition marked for printing on header level will be supplied by RV_PRICE_PRINT_HEAD even when the condition is on item level.
    My point is: SAP standard customizing does not support printing of same condition on both header and item level. I can of course write tons of code to work around this problem, but that would be bad practices

  • Condition Type for Service PO Items

    Hi all expert,
    May i know that where to define the condition type for Service PO items?
    For item of service PO, there have Service Tab, under this tab, there may have few items and each of the item have condition type. thus, i would like to know that where to define this condition type. it is because i found that this condition type is different with PO condition type.
    Hope can get ur reply soon.
    Thanks~

    Hi,
    Appreciated for your reply:)
    I am confusing on "Variable Condition Schema For External Service" Step, as i view from the table, it seem look like a access sequence and assign to which document type to use pricing procedures.
    If let's say i assigned this pricing procedures to PO category and normal PO document type, then does it crash with condition type which config for normal PO (Condition Tab of PO)? 
    if i assigned my procedures at "Variable Condition Schema For External Service" Step, where i can view my config result?
    Waiting for your reply.
    Thanks:)

  • How get the condition type of PO's item

    Dear All,
    I want to get the condition type of PO's item.
    I have checked the EKPO, there is Purchasing Info Record but no Purchasing info record category(esokz) that is the key of in table A017.
    How can i get the Purchasing info record category(esokz) of PO's item?
    Thank you in advance.

    Hi,
    Purchase info records are stored in EINA and EINE table. The field you are looking for is in table EINE.
    Hope this helps.
    ashish

  • Condition Type appear twice in PO Header in Change mode

    Hi Gurus,
    I have done the following steps:
    1. I have created an import PO and added few Freight Conditions in the header, and Customs Condition in Line item
    2. I have booked a customs invoice against the PO. (MIRO posted for Planned Delivery Costs)
    3. Now when I go to the change mode of the PO, then in the header I can see same condition type twice, one with the value maintained earlier and another with value 0.
    Issue:
    I should not be seeing the condition type twice in header.
    Please help me resolve the issue as early as possible.
    Thanks in Advance.
    Regards,
    Ankush

    Hi Ankush,
    Make sure that header conditions are marked as header only and same for item condirions in m/06
    try creating a new PO after making these changes
    Reg
    Dheeraj

  • Making condition type unmandatory for free item categories

    Hi all,
    I've created a form routine in RV64ANNN the requirement is when we create or change sales order....we have few item categories were in we need to make a concern condition type unmandtory if items with those item category is created...else if make the condition type mandatory.........example...............this is done for only one pricing procedure......in V/08 tcode and there i've assinged our routine number for that condition type which needs to be changed dynamically.
    say we have Sales doc type ZXXX for this sales doc type lets say we have item category ZITE1 and ZITE2.......and lets say the Condition type is ZCOND(whether the condition type is required or not is done by checking in tcode V/08 and this is always checked).now when the user enters creates a item 1 with item category ZITE1 and leaves the amount field blank it will however ask to enter the amount.......now here is the problem............if user creates second line item with item category ZITE2 its againing asking to enter the amount for that condition type.............this is happing even after i've desinged the below code.............
    DATA: l_kobli TYPE kobli.
    IF komk-kalsm = 'ZINFAM'.
    *Sale Doc ZORA
    IF komk-auart = 'ZORA'.
    IF komp-pstyv = 'ZTAN'.
    l_kobli = 'X'.
    ELSEIF komp-pstyv = 'ZZNN' OR
    komp-pstyv = 'REN'.
    l_kobli = ' '.
    ENDIF.
    *Sale Doc ZORB
    ELSEIF komk-auart = 'ZORB'.
    IF komp-pstyv = 'TAN'.
    l_kobli = 'X'.
    ELSEIF komp-pstyv = 'REN' OR
    komp-pstyv = 'TANN'.
    l_kobli = ' '.
    ENDIF.
    *Sale Doc ZRE
    ELSEIF komk-auart = 'ZRE'.
    IF komp-pstyv = 'REN' OR
    komp-pstyv = 'RENN'.
    l_kobli = ' '.
    ENDIF.
    *Sales Doc ZCOR
    ELSEIF komk-auart = 'ZCOR'.
    IF komp-pstyv = 'KRN' OR
    komp-pstyv = 'RENN'.
    l_kobli = ' '.
    ENDIF.
    *Sales Doc ZCI
    ELSEIF komk-auart = 'ZCI'.
    IF komp-pstyv = 'KEN'
    l_kobli = 'X'.
    ELSEIF komp-pstyv = 'TANN'.
    l_kobli = ' '.
    ENDIF.
    ENDIF. "Sales Doc Check
    READ TABLE xt683s WITH KEY kvewe = 'A'
    kappl = 'V'
    kalsm = 'ZINFAM'
    kschl = 'ZPOR'.
    IF sy-subrc = 0 .
    xt683s-kobli = l_kobli.
    MODIFY xt683s INDEX sy-tabix.
    UPDATE t683s SET kobli = l_kobli WHERE
    kvewe = 'A' AND
    kappl = 'V' AND
    kalsm = 'ZINFAM' AND
    kschl = 'ZPOR'.
    ENDIF.
    ENDIF. "Pricing Procedure check
    CLEAR: l_kobli.
    The table which has this mandatory checked is T683S and the field is KOBLI........i've debugged it the routine come up well with item category ZITE1 and the table gets updated with KOBLI = 'X' but when i navigate the screen in VA02 or in VA01 to second item created with item category ZITE2...the table logic does'nt goes and updates the above table............Suggest me with some solution........
    Thanks in Advance.....

    I've resolved it by myself

  • On VA01 transfer an value from Condition type Z000 from sub-item to main it

    Hi,
    I want to create a sales order and I have one main item an one promotion  (sub-item) item without determination price. I want to transfer cost price from VPRS form sub-item to an Z000 contidion to main item for tranfer this value to CO_PA for a field value different from VPRS field value.
    How can i do this?
    Thanks in advance.
    Catarina Alves

    Hi,
    In copy controls of Del to Bill - VTFL .... in the item screen copy control.... u have a button called cumulate coast set this for the item u need to transfer i.e to item category of subitem u have.
    Reward if helpful
    Please find the help for this "Cumulate Cost" below -
    Cumulate cost
    This field is used in the main item to control whether the cost value (usually condition type VPRS) is to be copied from the relevant sub-items. The following cases are taken into account:
    Free of charge sub-items (free goods)
    Batch split items
    Bill of material components
    This function is needed especially if the sub-items involved are not relevant for billing. In this case the costs of these sub-items do not appear in CO-PA or the statistics.
    Reward if helpful
    Krishna

  • New condition types as per item category

    Hello All,
    I want to determine two new condition types for one particular item category.
    Is there any standard way to determine it.
    Regards
    Amit

    Hi Amit,
    If you are using the formula for calculating the values then you  have two options:
    1. If  calculation routine is sap std. then create the new requirement routine and assign to the conditions in the pricing procedure.
    2.If calculation routine is developed by you then put the  required checks in the same.
    Hope this will help you.
    Thanks and Regards,
    Atul

  • Condition Type for item calculated from delivery date

    Dear Experts,
    We need that the condition type MWST for PO item will be calculated from Item delivery date ,
    But we see that always in Analysis pricing the efected date is PO date and not item delivery date .
    Please advise how we should configure the condition ?
    Thanks,
    Moshe

    Hi,
    In standard configuration you cannot set item delivery date as a pricing data.
    Maybe you shoud look at SAP enchancement - in dedicated structures you can pass additional item data (structure KOKMP).
    IMG link:
    Materials Management -> Purchasing -> Conditions -> Define Price Determination Process -> System Enhancements
    hope it helps.
    regards,
    wojciech

  • Posting condition type as noted item through RERAPP

    HI Experts
    I want to post a condition type as a noted item through RERAPP.
    Can this be done. I see that there is only a provision for advance payment. My requirement is that the condition should be posted as a noted item which will then be used as a reference for incoming payment in Finance.
    Awaiting your expert opinion.
    Regards
    n_nn
    Edited by: n_nn on Oct 8, 2009 2:52 PM

    Hi,
    it is not possible to post noted items with RERAPP.
    Regards, Franz

  • Sales order item details with condition types

    Hi Guys,
    I am uploading the sales order details using DIRECT INPUT method in LSMW, one line item having 5 condition types, but in the item level structure BVBAKPOM, I can able to MAP  only four condition types.
    Is there any way to map more then 4 condition type in the ITEM level structure? Or do we need to loop the item level structure.
    Waiting for your valuable replies
    Thanks,
    Gourisankar.

    Hi Harish,
    INOB table key is CUOBJ, At run time the VBAP-CUOBJ is not generated yet. Its value is now "999999999999990001".
    I guess once the order is created we will get an entry in INOB.
    Do you have any other way with which INOB entry can be selected ?
    Thank You.

  • Duplicate condition type at item and header level

    hi all,
    please help me to implement this
    issue:
    PO condition type for header and item should be checked for duplication.
    atanu

    Hi
    I am not sure whether we can do this with IMG.
    Need to use User exit MM06E005 (do not be confused with the description of this enhancement..you can use it)
    Best regards
    Ramki

  • Determine new conditions as per item category

    Hello All,
    I want to determine two new condition types for one particular item category.
    Is there any standard way to determine it.
    Regards
    Amit

    Hi Amit,
    If you are using the formula for calculating the values then you  have two options:
    1. If  calculation routine is sap std. then create the new requirement routine and assign to the conditions in the pricing procedure.
    2.If calculation routine is developed by you then put the  required checks in the same.
    Hope this will help you.
    Thanks and Regards,
    Atul

  • Question for condition type

    I have a condition type that doesn't have an access sequense.
    The condition type is both header and item condition and I allow mannual changes.
    Though when I use it, I have the following problem.
    I want the user to enter manually the condtion type in header. There are case though where for a specific line the condition type should be changed. At that point I am not able to change the amount of the condition type since it is only in display mode.

    Dear Stilianos,
    As per my knowledge, you cant have a condition type for header as well as for item. In the sense you can make it so but, as you know header condition would be distributed proportionately at item level. Moreover, you wont be able to change the same at item level.
    As already told by our friend you can either have additional manual condition type for such cases or you can enter the same condition type for that specific item so that earlier price would be inactive.
    > For a specific reason the last item of the sales order that has a discount of 20% due to the condtion type set at header level, I want to make it 30%
    In this case, you can enter the same condition type with new value i.e. 30% for that specific item so that earlier discount i.e. 20% would be inactive.
    Or enter additional new manual condition type with the variation i.e. 10%
    Hope you get some inputs
    regards,
    Sagar

  • Fixed amount condition types

    hello, friends.
    i have a condition type which is a fixed amount, and which i enter at item level.  the amount is $1,000.00.  the order quantity is 100, so that SAP distributes the fixed amount among the quantity, so that it comes out as $10 per unit.
    i create a delivery with reference to the sales order, but since the configuration allows a delivery quantity greater than order quantity, i edit the delivery quantity as 150 units.
    now i create an invoice.  but the fixed amount condition type, instead of showing as $1,000.00, is calculated as $1,500.00 instead.  it takes the 10$/'unit in the sales order and multiplies it with the invoiced quantity.
    the current settings for the condition type is entry at item level only.  we considered entering this at header level but i don't think this will help.  i am thinking the fixed amount will still change according to the invoiced quantity (also when considering multiple partial deliveries, invoiced collectively or partially).
    would there be settings in the copy controls or in the condition type, or maybe in the pricing procedure to make the amount truly fixed?
    many thanks.

    Hi,
    > how this is distributed can either be per line item quantity, or by value. 
    System will distribute the amount proportionately amongst the item according to their qty.
    I think you should make the condition as header manual condition or you can use std header manual condition type HM00.
    Enter this condition in the header of Sales Order. The amt  will be distributed amongst all the items according to qty.
    Now even if you change the qty in the delivery, if you have maintained pricing type as D / G system will copy old amount from the Sales Order unchanged because it is Header Condition and not the Item condition.
    > so with pricing type D, what does not change?  the entire fixed amount or the per unit (distributed) amount?
    As per my knowledge, if you have maintained condition record for any condition type and you have used pricing type as D and when there is any change in the condition record after creation of Sales Order that times, that time system copies all the pricing from the sales order unchanged into invoice. It will take old pricing from the sales order.
    Hope you get some idea.
    regards,
    Sagar

Maybe you are looking for