Condition type to be hidden

I wanted condition type EK02 to be hidden from the sale order, I dont want this condition type to be removed from the pricing procedure. Please suggest.
Prasad

Hi,
Since you don't want to remove the condition type from your pricing procedure, you can create a new requirement routine and add it to your condition EK02.
Let's say you want to hide that EK02 condition only for sales orders where sales document type = OR, then create a pricing requirement routine to check the sales document type.
To create a requirement routine, transaction is VOFM. From the menu option, select "Requirements / Pricing"
There you can create a new routine, Enter number between 600 to 999.
Code:
SY-SUBRC = 4.
CHECK: KOMK-AUART EQ 'OR' OR KOMK-AUART_SD EQ 'OR'.
SY-SUBRC = 0.
Once generate that, add it against your condition type EK02 in the pricing procedure.
Then it will be hidden in the pricing procedure only for order type = OR.
You can use it as you require.
Best regards,
Anupa

Similar Messages

  • VPRS condition type not to display

    Hi all
    I have condition type VPRS in my pricing procedure but my client wants it should not be display to the all user while creating sale order. Is there any way.
    Kindly replay urgently.
    Vinod

    Hi Vinod,
    Specific condition types can be hidden on pricing screens; we did the same for VPRS condition type.
    In include LV69AFZZ there is a user exit - USEREXIT_FIELD_MODIFICATION; here you need to add code as follows. 
    if <whatever conditions in which you want to hide it>
    CASE SCREEN-NAME.
    WHEN 'KOMV-KBETR'.
    IF KOMV-KSCHL = 'VPRS'.
    SCREEN-ACTIVE = 0.
    ENDIF.
    WHEN 'KOMV-KWERT'.
    IF KOMV-KSCHL = 'VPRS'.
    SCREEN-ACTIVE = 0.
    ENDIF.
    WHEN 'KOMV-KWERT_K'.
    IF KOMV-KSCHL = 'VPRS'.
    SCREEN-ACTIVE = 0.
    ENDIF.
    ENDCASE.
    ENDIF (for conditions in which the field has to be hidden)
    However we found that this happened only at item level; header still showed the condition type. Smart users can proportionately allocate the header condition amount to arrive upon the item level values. But you may investigate along these lins to determine if it is possible at header too.
    Please reward with points if useful.
    Cheers,
    KC
    SAP SD

  • How to hide the Condition types in item condition screen in Sales Order ?

    Hi Experts,
    We got new requirement from the Client. Pricing Condition types  are ZZBG, ZPBG, ZPBA, ZFSG, ZBDG and ZBHG part in Pricing Procedure. These condition types have Condition records. These need to be hidden in Item conditions screen in Sales Order but other status of the conditions remain unchanged. Pleas provide me the solution earliest  How this we can achieve in a best way.
    Best Regards,
    Srikith

    Hi Srikanth,
    You can achieve this using CONDITION EXCLUSION.
    Maintain Condition exclusion for first condition type its Exclude the condition types which are below to that.
    You must set a condition exclusion indicator for the price. You can do this in two ways:
    If you want to set the condition exclusion indicator a follows then you specify it:
    1..for all condition records of a condition type (e.g. with condition type PR00) when defining a condition type in SD Customizing
    2.for an individual condition record (e.g. only for material 4711) in the detail screen of a condition record (in the Condition exclusion field)
    Hope this will helps you
    Dasaradha

  • Pricing condition type not visible

    All,
    I have a condition type which is visible in SPRO> Sales and Dist> Basic Functions> Pricing Control> Maintain Condition types.
    But when i go to VK11 to create record for this condition type, it doesn't exist there. Seems like its hidden or something.
    What would make it not show up in VK11 ?
    thanks

    Hi,
    Make sure it is not a header condition.
    Also check if you have assigned an access sequence to it.
    If you have created it from scratch, generate your condition table again.
    Regards,
    Amit

  • Inactive Condition Types

    Dear Sapients,
                I need ur valuable solution in solving an issue. I have created a pricing procedure for domestic sales and in tht some condition types r in inactive mode. I have verified the settings in condition types n also checked the condition records, n its fine as well. I dont know whats the hidden object in this issue. Pls help me in solving this. Advance thanks for all.

    hi Can you give more details when u say INACTIVE? what do u mean by inactive?
    I have scenario like suppose there are 2 condition types ABCD and WXYZ
    Both the Condition Types ABCD & WXYZ are Condition Types related to Price. Both the Condition types will ahve the same Step number with a different counter.
    WXYZ is a manual Condition Type and will not have any Access Sequence assigned to it. It can be entered only manually in the Purchasing document.
    ABCD is an Automatic Condition type and an Access Sequence will be assigned to it. whenever a Condition record is maintained, then it will be updated in the document with the price from the Condition Record.
    If there is no Valid Condition record founds, then ABCD will not be included and you can enter WXYZ manualy.
    (i belive you mean condition type is not appearing / considered in calculation in pricing procedure thought it is maintained and having condition record)
    still you think this information is not sufficient, then you can check CONDITION EXCLUSION for the condition type is which is INACTIVE
    Alos, possibility is that there is Requirment assgined to condition type which is not getting fulfilled hats why not shoing condition type in pricing procedure
    Regards

  • Textarea with Read Only Condition Type

    A have a textarea (database field with Varchar2(4000) with the Read Only Condition Type set to Request != Expression 1. Works fine, except that data presented as a long 1 line text (like a Displayed text) when condition meet (no vertical scrollbar).
    Am i missing some additional settings.

    the easiest way to get the read-only version of your textarea item to appear more like your read/write version is to add some style specifications into the "Read Only Element Table Cell(s) Attributes" field that's right below where you specified your read-only conditions ("Expression 1" and "Expresssion 2"). as the name suggests, values entered into that field end up in the table data tag for the cell in which your read-only content is placed. added style specifications for height and width would help you control how the text is spread across your page. you can/should also consider using background and color style attributes to color the table cell the way we're used to seeing read-only data ("grayed out"). so though my colors are way off, a string like this...
    style="width:16px;height:30px;background:#C5D5C5;color:666666;font-weight:bold;font-size:12pt"
    ...in that "Read Only Element Table Cell(s) Attributes" field would format your read-only data closer to what you're going for. at the least, it'd give you an idea for the type of control you have.
    for extremists, there's also another approach: if you want absolute and total control over the way your textarea item's data is displayed, you could display your item's data in an HTML region instead of as the item directly. for instance, you mentioned you liked that scroll bar. you could achieve the scroll bar by defining your table, the scroll bar class, and table cell in an HTML region. say we saved your textarea item's data to a hidden item called P1_MY_TEXTAREAS_DATA. i'm pretty sure this html would let you show that data in that scrollable non-updatable format you're shootin' for...
    <style type="text/css">
    .scrollarea{
    font-size: 10pt;height:250px;width:100%;text-align:left;
    background-color:#ffffff;color:black;padding:0px 0px 0px 0px;margin:0px;overflow: auto;
    float:left;}
    </style>
    <div class="scrollarea">
    <table summary="" width="100%"><tr>
    <td style="width:16px;height:300px;border:4px;margin-left:4px;margin-right:9px">
    &P1_MY_TEXTAREAS_DATA
    </td></tr></table><div>
    ...see? by defining your own table, you get the easy opportunity to wrap it in those div tags that call the scrollarea class. also note that i just referenced the content of your textarea item with that ampersand syntax (&P1_MY_TEXTAREAS_DATA). you could, of course, keep things cleaner by defining your scrollarea class in a css, but that's your call.
    hope this helps,
    raj

  • Condition Type Event for button doesnt fire after Tab Change?

    Hi,
    I have 3 Tabs (Interactive Reports) and when I change between these Tabs (without submit) my parameters getting null values, which is OK. For this situation my "condition type" of a button doesn't fire (button should disappear when parameter is null)?
    cheers,
    Bernhard
    Edited by: boffman on 05.07.2010 17:12

    IR reports use all the bells and whistles of DHTNL and Ajax. So without the Submit evnt you do not reload the page but only reload relevant regions (PPR).
    Net result is that the other items that have already been loaded when the page was loaded remain as they are, hidden or dispayed as the case may be.
    One could theoritically use Javascript to hide/show ($x_Hide and $x_Show) to toggle the buttom. But I am not clear how one would trigger that! which event on which HTML element? The tabs are generated by Apex as DHTML and that I believe is a black box.
    If a eent to trigger JS can be found then it will work.
    Regards.

  • Updating Condition Type based on pricing type in Sales order

    Hi ,
           I've created a sales order using BAPI. Now I want to update the condition type using pricing type 'Z' customer reserve . I'm using BAPI_SALESORDER_CHANGE.
    I'm passing the values as:
      condition-itm_number = '000000'.
          condition-CONDTYPE = 'Z'.
          condition-cond_count = '01'.
          condition-currency = w_temp_itab_so-currency.
         condition-CALCTYPCON = 'Z'.
          APPEND condition.
          conditionx-itm_number = '000000'.
          conditionx-cond_count = '01'.
          conditionx-updateflag = 'I'
          APPEND conditionx.
    But its not getting updated.
    Thanks and regards,
    Jyoti Shankar

    Hi G's
    Iam trying to get my fields hidden based on the conditon type i give, and not in a position make that hidden so, how can be that done,,
    The actual instance is:
    I am having different plants for the company and two plants have different taxation procedure and rest differemt and if i select plant with different taxation procedure the condition type should be supresses only for the particular plant...
    All your Support is Appreciated

  • Hiding Condition types in Sales order

    Hi everyone,
    we have a requirement in which one of the condition type in the header of sales order must be hidden. we are trying to use OSS notes 105621. Did anyone already implement this notes for similar purpose? if so can u give me some tips on how to code?
    thanks and regards
    Mark

    Hi mark,
    look at the below link , you will get information on the Note as well as the code
    http://www.saptechies.com/hiding-condition-type-vprs-oss-note-105621/
    Thanks
    Sudheer

  • How to prevent consecutive entries of same condition type in a sales order

    Hi,
    My client is using manual condition type for the basic price "ZBPR". Now system allowing multiple entry against this condition type in the pricing screen during order creation i.e in the first line if we put Condition Type "ZBPR" and putting some value as amount, then again if I put "ZBPR" as condition type and give some other value as amount then system is allowing this and doing all the subsequent calculation.This is not acceptable by the client.
       The functional person regarding this is saying this can be done by using routine.Can some body tell me which routine should I take for this if that is possible by routine and the required code.Also say if there is other way to solve this.
    Thanks,
    Manas.

    Hi ,
    u can do it thru VOFM(tcode)--->Menu -> Formulas>condition value , but in this case u need to derive the value of this condition type by using ur own logic.
    Re: vofm-routine
    Regards
    prabhu

  • How to restrict duplicate condition type in sales order

    Hi All
    Is there any standard method to restrict user for adding a particular discount condition type more than once in sales order. condition type is manual and its records are also being maitained manually.
    Else would I will have to create userexit at sales order level or a routine in pricing procedure. I doubt on creating a rotuine in pricingprocedure because in pricing procedure there is already a restirction to add similar condition type more than once.
    Thanks

    create a routine and add this routine to the discount condition type only.

  • Creation of New Condition Type

    Hello SAP Folks,
    I have one issue related to pricing. See the case is i have to produce an extra cost in the Sales Order which is actually depended
    upon the net price. This condition type is percentage based and calculation works in the following way:
    Let the new condition type be Z123 and Net price be PR00.
    So for year variation 1-2 year, the condition type Z123 will be 1.5 times of PR00
                                      2-3 year, the condition type Z123 will be 2.0 times of PR00
                                      3-5 year, the condition type Z123 will be 3.0 times of PR00
    Can anyone throw light on how to configure this condition type ???
    Regards,
    Sarthak

    Hi,
    For Z123 Condition type make (V/06)
    Cond. class A Discount or surcharge
    Calculat.type A Percentage
    Plus/minus A Positive
    and all other settings are same as Discount condition Type
    For making Z123 customize an Discont Condition Type (EX:K004,)
    Then while creating the condition record give the percentage as 150% 1-2 yearin valid from and to date,
    give the percentage as 200% 2-3 yearin valid from and to date, give the percentage as 300% 3-4 yearin valid from and to date, and save the record. (VK11)
    In the pricing procedure For step z123 condition type from which you want the % that is step of PR00 should be mentioned in the FROM and TO column.(V/08)
    This will result as per your requirement

  • In import Pricing Proceedure,  Some Condition types added to Material Cost

    HI,
    In Import Pricing procedure, Some condition types (Like Basic Customs Duty,Edu Cess & Hier Edu Cess) are added to material cost. The remaining are not added. What is the configuration to add condition types to Material cost?
    Note -  we have added FR3 account key for all condition types. Then why few condition types are added to material cost and why others are not added to material cost?
    Can any one please help me on this..
    Thanks
    KB

    Assign key "NVV" to those condition types which are to be loaded to material cost.
    Hope this resolves ur problem

  • Condition type freight is not getting displayed in print preview

    Hi,
    I created PO, and while seeing its print preview:
    Condition type freight is not getting displayed.
    Where i missed?
    Uts

    hi,
    Inddition to M/08...(As given above)...
    Also do check the smart form or SAP script...used for the output...check it with the ABAPer...whether the field is liable for o/p or not??
    Smart form is attached at message type of message determination..
    Regards
    Priyanka.P

  • Pricing: New condition type not getting listed in options in product master

    Hi,
    I have created a new pricing procedure and also created a new condition type for it. I am trying to create a condition record in the product master for this  condition type but the condition is not there in the list of conditions. How can I inlcude it in the condition list?
    Even the new condition type I have created by copying 0PR0 is not getting listed in the options, whereas 0PR0 is getting listed.
    Regards,
    Meenakshi
    Edited by: Meenakshi Sawhney on Sep 9, 2010 8:27 AM
    Edited by: Meenakshi Sawhney on Sep 9, 2010 8:29 AM

    Hi Meenakshi,
    you need to enhance the condition maintenance group in the customizing, which is assigned to the product master. Please check: IMG: Customer Relationship Management -> Master Data -> Products -> Special Settings for Sales Operations -> Assign Condition Group to Application CRM and IMG: Customer Relationship Management -> Master Data -> Conditions and Condition Technique -> Condition Technique: Basics -> Create Maintenance Group.
    Best Regards,
    Michael

Maybe you are looking for

  • How can I export a compressed mp4 file from iMovie (mavericks)?

    Hello everyone, I had just downloaded the new version of iMovie. I'm very amazed to see that the funcion "Export movie with QuickTime" is not available. I used this funcion to customize parameters of exported videos; How can now customize parameters?

  • How do I transfer photos from iPad mini to my Macbook Pro?

    I have about 30GB of photos on my iPad mini (which were added from a SD card through the SDcard cord with the lightning cable end) and i am trying to take them off my iPad mini to free up space, but still need to keep the photos. I tried importing th

  • What is wrong with this program?

    When I run a get these messages: ^ MULTIPLYIMP.java:25: 'class' or 'interface' expected ^ MULTIPLYIMP.java:7: cannot resolve symbol symbol : class UnicastRemoteObject location: class MULTIPLYIMP UnicastRemoteObject implements multiply { ^ MULTIPLYIMP

  • How to put parental block on

    i dont know how to put it on my 7 year old keeps going on youtube

  • Handling RFC errors

    When an RFC calls fails I get the standard Rails page with the dump; how to detect and handle rfc errors (like subrc check); thanks