Needs maintain Quality testing condition type in order

Hi,
There is  a scenario for maintaining the quality testing charges after PGI. in cash sales customer. after they are updating in the invoice. so there is difference in order value and invoice value,
This difference needs to avoid.
This condition type (like ZQTC) needs to indicate the user at the time of sales order processing.
Please help me for configure the same,
Note: this condition type should be maintained only for Quality testing charges applicable for cash sale customer.
Thanks and Best regards,
Muralidharan S
9841381700.

resolved by self

Similar Messages

  • Error While maintain VK11 Create Condition Type

    Dear All
         Due to I created new sale area in system and user want to maintain condition type "MWST" for new sale area . In config I set criteria for maintain condition type "MWST" is Sale Org / Channel /Division
         When I access tcode VK11 for set tax code of new sale area , System show error "Conditions cannot be created in division 30"
         Message no. VK078
          Diagnosis
         You have attempted to create condition records for division 30. This
              function is not allowed because in sales organization 2301 no division
              was assigned to division 30, which is used in a sales document.
         System Response
          It is not allowed to create conditions for division 30 (sales
              organization 2301).
         Procedure
         Check whether you have selected the right division and whether the
              divisions have been assigned correctly in Customizing.
         First time I think that config wrong about new sale area but I test in create sale order for new sale area so It can create normally
         Could you please help to fix this issue ?
    Best Regards,
    Nontan

    Conditions cannot be created in division 30
    You need to assign the Division 30 to Cross Division 00 in VOR2.
    thanks
    G. Lakshmipathi

  • Need to add new condition type using   BAPI_SALESORDER_CHANGE

    Hi all,
    I am using BAPI_SALESORDER_CHANGE to add new condition type for an order item.
    I am able to add it, but problem here is, that i want that condition type to be manually changable. Here, in BAPI, after execution, condition type field becomes disable.
    My code is as follows:
                    MOVE 'B' TO wa_logic-pricing.
                      MOVE 'X' TO wa_logic-cond_handl.
                      wa_cond-itm_number = wa_vbap-posnr.
    *                  wa_cond-cond_st_no = it_konv1-stunr.
    *                  wa_cond-cond_count = it_konv1-zaehk.
                      wa_cond-cond_type =  it_discount-kschl.
                      wa_cond-CONDORIGIN = 'C'.
                      APPEND wa_cond TO i_cond.
                      CLEAR: wa_cond.
                      wa_condx-itm_number = wa_vbap-posnr.
    *                  wa_condx-cond_st_no = it_konv1-stunr.
    *                  wa_condx-cond_count = it_konv1-zaehk.
                      wa_condx-cond_type =  it_discount-kschl.
                      wa_condx-updateflag = 'I'.
                      wa_condx-COND_VALUE = 'X'.
                      APPEND wa_condx TO i_condx.
                      CLEAR: wa_condx.
    FORM f_update_order .
      CALL FUNCTION 'BAPI_SALESORDER_CHANGE'
        EXPORTING
          salesdocument    = salesdocument
          order_header_in  = wa_headerdata
          order_header_inx = wa_headerdatax
          logic_switch     = wa_logic
        TABLES
          return           = it_return
          order_item_in    = i_itemdata
          order_item_inx   = i_itemdatax
          conditions_in    = i_cond
          conditions_inx   = i_condx.
      IF NOT it_return[] IS INITIAL.
        PERFORM f_commit_or_rollback.
      ENDIF.
    ENDFORM.
    Please let me know, if it could be achievable.
    Best regards,
    Meena
    Moderator Message: Corrected the code tags. You need to use flower brackets.
    Edited by: kishan P on Aug 25, 2010 6:04 PM

    Hi,
    This is the demo code i am writing:
    Even Change manual entry field in BAPI did not helped me.
    [code]REPORT  ZTESTM1.
    data: l_knumv type knumv.
    DATA: it_return        TYPE STANDARD TABLE OF bapiret2,         "Internal table for t_txt_ret
           wa_return        type  bapiret2.
    data: begin of it_konv occurs 0.
           include structure konv.
           data: end of it_konv.
    data: logic_switch type standard table of    BAPISDLS,
          wa_logic type BAPISDLS.
    data:itemdata type STANDARD TABLE OF BAPISDITM,
          wa_item type   BAPISDITM.
    data : salesorder type BAPIVBELN-VBELN.
    data:itemdatax type STANDARD TABLE OF BAPISDITMx,
          wa_itemx type   BAPISDITMx.
    data: wa_header type BAPISDH1,
          wa_headerx type BAPISDH1X.
    data: i_cond type STANDARD TABLE OF BAPICOND,
          wa_cond type BAPICOND.
    data: i_condx type STANDARD TABLE OF BAPICONDX,
          wa_condx type BAPICONDX.
    move '0060008601' to salesorder.
    move '000010'  TO wa_item-itm_number.
    append wa_item to itemdata.
    move ' '  to wa_header-BILL_BLOCK.
    move   'U'  to wa_headerx-UPDATEFLAG.
    move  'X' to wa_headerx-BILL_BLOCK.
    MOVE: 'U'  to wa_itemx-UPDATEFLAG,
         '000010'  TO wa_itemx-itm_number.
         append wa_itemx to itemdatax.
    move 'B' to wa_logic-PRICING.
    move 'X' to wa_logic-COND_HANDL.
    select single knumv from vbak into l_knumv where vbeln = '0060008601'  .
    select * from konv into table it_konv where knumv = l_knumv  and kposn = '000010'.
          wa_cond-ITM_NUMBER = it_konv-kposn.
          wa_cond-cond_type = 'Z550'.
          wa_cond-CONDCHAMAN = 'X'.
           append wa_cond to i_cond.
           clear: wa_cond.
    wa_condx-ITM_NUMBER = it_konv-kposn.
    wa_condx-COND_TYPE = 'Z550'.
    wa_condx-UPDATEFLAG = 'L'.
    append wa_condx to i_condx.
    clear: wa_condx.
    CALL FUNCTION 'BAPI_SALESORDER_CHANGE'
      EXPORTING
        salesdocument               = salesorder
       ORDER_HEADER_IN             = wa_header
        order_header_inx            = wa_headerx
       LOGIC_SWITCH                = wa_logic
      tables
        return                      = it_return
       ORDER_ITEM_IN               = itemdata
       ORDER_ITEM_INX              = itemdatax
       CONDITIONS_IN               =   i_cond
       CONDITIONS_INX              =   i_condx
      EXTENSIONIN                 =
    CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.[code]
    Thank you.
    Meena

  • Condition types in orders

    Hi,
          I want to find out in what all sales orders a particular condition type was used.
    For example there is a condition type k005, now i want to find out in what all sales orders this condition type was used.
         Useful responses are highly appreciated.
    Thanks & Regards
    Sadhu Kishore

    you have to write a custom program:
    start from table KONV looking for KSCHL = K005
    find out the KNUMV value and then go to VBAK to find out the order number.
    You could use a query too, based on an Infoset created with the logical database VAV.
    Pls. reward if this help you
    Roberto Mazzali

  • Maintain value for condition type

    Hi All
    How can i maintain fix value for any condition type so that while creating PO it will automatically picked in PO.
    e.g I want to maintain CVD as 16%
    usefull ans will be rewarded
    rajesh

    Hi,
    You maintain the condition record for CVD in FV11 for combination of Tax code etc
    Make sure you maintain "Changes to be allowed" manual entries as C auto entry
    has priority in customizing OBQ1
    The condittion value will flow auto
    BR
    Diwakar
    reward if helpful

  • Need to delete duplicate condition types from ME22N

    Hi Experts,
    I have a requirement to delete duplicates from ME22N, header and item.
    Scenario : On adding condition in header the same will be reflected in items and vice versa.
    I tried using ME_PROCESS_PO_CUST and userexit RV61AFZB.but not resolved.
    Kindly suggest.
    Regards,
    Mohammed Samiuddin.

    Hi -
    The CHECK method gets triggered when you click 'SAVE' and 'CHECK' in ME21N / ME22N but may not trigger when you press 'enter'.
    PROCESS_HEADER triggers incase any change to header details but not (always) for change in header conditions. PROCESS_ITEM get triggered when change in item data for a particular item.
    If you to use CHECK method.
    You can get the header as well as item conditions, you can get in this method.
    DATA:   lw_header_data       TYPE mepoheader,  
                  li_items            TYPE purchase_order_items,
                 lw_items             TYPE LINE OF purchase_order_items,
                   lw_item_data         TYPE mepoitem,
                li_item_data        TYPE STANDARD TABLE OF mepoitem,
                  li_item_conditions  TYPE mmpur_tkomv.
       IF im_header IS NOT INITIAL.
          CALL METHOD im_header->get_data
            RECEIVING
              re_data = lw_header_data.
          CALL METHOD im_header->get_items
            RECEIVING
              re_items = li_items.
          LOOP AT li_items INTO lw_items.
            lv_items = lw_items-item.
            CLEAR lw_items-item.
            CALL METHOD lv_items->get_data
              RECEIVING
                re_data = lw_item_data.
            APPEND lw_item_data TO li_item_data.
            CLEAR lw_item_data.
    CALL METHOD lv_items->get_conditions
              IMPORTING
                ex_conditions = li_item_conditions.
        ENDLOOP.
    ENDIF.
    But I am not sure if you will able to set the conditions in the check method. You can try.

  • Condition Types display in a Sales Order

    Dear Gurus,
    In our Pricing Procedure we have 2 condition types ZFR1 (Freight) and ZINS (Insurance) which are always Header type and should be entered manually. So according to normal procedure, I inserted them in the pricing procedure and maintained them as 'Manual' and selected them as Header conditions in Details of condition types with no Access Sequence and also selected them as 'No Limitations'.
    Now my requirement is that these condition types ZFR1 & ZINS should be available by default in a Sales Order under 'Conditions' tab and under 'CnTy' column and their values should be in Editable mode under 'Amount' column, when we go to the Header data view, but should be greyed out in Item data view, since they are Header conditions belonging to the whole document.
    Here my problem is that what ever combination I do in V/06 or V/08, system is not displaying the condition types by default. That is, I have to or the end user has to remember to enter the condition types and enter the values. But if I can display them as default when we go the Header view, Conditions tab,. end user will see them and will remember to enter values in them.
    The one problem I have is, I cannot make them as 'Mandatory, as they are not always required in all Sales Orders, so there are times when we dont have to enter any values there.
    I went through the search forum but didnt find any useful material, kindly help me out here.
    Regards
    Venkat - Hyd

    Dear Lakshmipathijee,
    Thanks for your answer, I have indeed maintained both the condition types at Header level. Normally when we do this kind of settings, the conditions screen is like the following:
    10....0....PR00....Basic Price...........1000.....(this 1000 is from condition record)
    Now if the end user needs to add values for ZFR1 or ZINS, he needs to remember the Condition types and enter them to be able to enter values in the document.
    But suppose there is a way of displaying the Condition Types with out values as shown below, then the end user will not have to remember to fill them up, he can simply come to the conditions screen and they are visible there and he will just fill them up with values. The following is how I would like the conditions screen to be seen:
    10....0....PR00....Basic Price...........1000.....(this 1000 is from condition record)
    20....0....ZFR1....Total Freight.........._____...(this should be a blank field)
    30....0....ZINS.....Total Insurance......_____...(this should be a blank field)
    In these editable fields of Freight and Insurance, the end user will enter the values in case they are neccessary or leave them blank.
    If I maintain the condition types as mandatory and manual, header condition screen is not displaying the Condition types??!!!!
    If I maintain the Header conditions as Item conditions also in V/06, then the header conditions screen is displaying the conditions in grey mode, without any value (as they are manual conditions) and in the item screen, they are in editable mode, but system is not allowing me to input any value, saying these condition types are not item level condition types and they are to be maintained at header level, but like I said, at Header level, the fields are greyed out !!!!
    So, any help plz..
    Regards
    Venkat - Hyd

  • Condition type not determine in sales order

    I have condition record maintained for the condition type as per the order reason. When I create the sales order system is not reading the condition record so no condition type is getting determined. Pricing date from the sales order is within the validity period of condition record.Parmeters are also matching but still in the sales order condition type is not getting determine.
    Thanx
    PNU

    In that case, do update of pricing.
    To do that, Sales Order - Item data - Condition Tab - Click Update button and choose option B - Carry out new pricing.
    To know who manually remove this.
    Choose Enviroment from menu bar in sales order - choose Change for display of change in the doc.
    Regards
    JP

  • Condition type in sales order - enhance extractor

    Can anyone help me in enhancing field condition type for sale flow. I need to filter sales orders with condition type 'minimum order surcharge' in BI.
    There is KONP table having condition type field.
    Do I need to enhance VAHDR or VAITM. Please help.
    Thanks

    If orders are to be filtered then both Order Header (VAHDR) and Order Item (VAITM) should be enhanced.
    But I'd strongly recommend not to filter out the orders at the time of extraction/loading (in info-pkg).
    It is better to do the filtering in the report itself.
    Hope this helps.

  • Sales Order creation of adding new condition type to Item

    Hi Expert,
    The sales order has been created and need to add new condition type (Z601) to the first item(10). While adding the condition I am getting warning message like
    "Item 000030 exists already; the entry will be ignored".
    Where item 030 will be the last item.
    I have cheked but it's a standard report SAPFV45P, we can't modify. Please let me know can we set any field in the sales order so that we wont be getting this message.
    Regards,
    Mahesh

    Hello,
             If you would like to add the Condition Type automatically for a specific Item based on some condition (Lets say, Item Category), then you can code a Pricing Routine in VOFM Transaction and it will be automatically assigned.
    Thanks and Regards,
    Venkat Phani Prasad Konduri

  • To display condition types in sales order

    Hi Gurus,
    When the condition records are maintained for the condition types they are displayed in the sales order,here user has to create the condition records, without knowing the condition types he cannot create the records.
    One method is creating condition records for all materials with zero amount. other than this method is there any possibility to display cond types in the sales order.
    Thanks
    Chetan

    Dear Chetan,
    Goto order - item - condtion - analysis
    As soon as you have gone inside , on right side you will find overview which will give you all condition type
    Now , you can decide which has to be maintained and which not required.
    saravanan

  • Domestic Freight Condition type in Purchase Order

    Hi Gurus,
    We calculate the Domestic Freight based on zip codes from source to destination. Recently we implemented Goods supplier functionality which will determine the Goods supplier in the purchase Order only at the time of saving when there are multiple Goods suppliers assigned to the main vendor. In Goods supplier case the system should consider goods supplier zip code and plant zip code for calculaing freight. At the time of creation of P.O the system is determing the Goods supplier at the time of saving the Purchase Order so sytem is not able to identify the source zip code at the time of P.O creation...So system is picking main vendor zip code instead of goods supplier zip code.
    Did anyone encountered this situation before..Is there any setting we need to do on condition type of the pricing procedure. Any inputs are appreciated.

    Hi,
    You might have have developed some custom funcationality...
    If you are expecting always goods supplier zipcode...code has to check LFM1-goods supplier vendor code it is available in Parterns tab  ...and needs to put this vendor into the table ADRC...
    And try to explore function modules BAPI_VENDOR_GETDETAIL, ADDR1_EXTRACT_TABLES...
    Hope it helps you...
    Kuber

  • EDI1 Condition type not determined automaitcally in ORDERS process

    Hi Experts,
             We are in the process of creating the Sales order by receiving EDI data from customer and converting in to IDOC format and trying to create the sales order. While executing the ORDERS IDOC message type sales order is getting created successfully. But Condition type EDI1 is not getting activated even after maintaining the value in E1EDP01-VPREI.
                       During foreground mode, if we maintain the EDI1 condition type manually then, its accepting without any issue. But during IDOC process its not getting added automatically.
    Please give your suggestion on this.
    Warm Regards,
    Nag

    Problem with the IDOC FM. We identified and rectified the issue. Thank u

  • Condition type value not update in sales order

    Hello Guru's
    As per the  sales order in VA01 the condition type value i.e surcharge value is not updating in sales order.
    But I have maintain the condition record(Surcharge)also and in Condition technique I have checked every thing is correct .
    please find below I have attached the Screen short .
    Please give me solution Asap.

    Hi Sukdev,
    Have you checked the respective pricing procedure for From and To reference step maintained against the condition type ZSUR?
    Regards,
    T.R.S.Praveen

  • Purchase order one particular condition type vale should not inventorised

    Dear All,
                       I have a scenario in the purchase order particular one condition type value should not get inventorised that should goes to a seperate account. it should not added with material cost
    i have created a seperate condition type  ZZ01
    with condition class  : A - Discount or surcharge
    calcualtion type : A - Percentage
    and i have attached this condition type to pricing procedure in accurals i have maintained a seperate posting transaction.
    the amount is getting posted against the accural transaction event key.
    but its getting inventorised with material cost it should not get inventorised..
    what is the procedure...
    Regards
    Anand.
    Edited by: Anandhakumar Palanisamy on Mar 24, 2010 1:17 PM

    Hi..
    I have maintained for this condition type Accurals in M/06
    and i have maintained the Statistical tick mark in pricing procedure..
    but its getting inventorised...
    it should not inventorised...
    any other solution...
    Regards
    P.Anandhakumar

Maybe you are looking for

  • Can I boot my F30 from an external floppy drive?

    I use Norton Ghost to clone a copy of my harddrive on my PC for use in disaster recovery and it requires a m/c boot from a floppy hard drive when I use Ghost. I want to do the same on my F30 but have no idea if I can can configure the F30 to boot fro

  • New Motherboard Is It Ok to Use?

    Hi everyone, I'm not sure where the best place to find out if my motherboard will be supported under Linux so though maybe someone here could point me to the right direction or might know. I have a ASUS M4A78LT-M-LE which according to the specs is ru

  • Moving playlists

    I've just transferred iTunes over to a new computer, but my playlists didnt travel with it. How can i get my playlists onto the new iTunes on the newcomputer? I'm with Windows

  • Getting repeated "unreponsive script" messages

    I've been using Firefox for a number of years but in the last month or two I have been receiving numerous "unresponsive script" errors to the point where I am totally unable to use the browser at all. Usually happens first thing in the morning and se

  • How to get object?

    Hi, I have a generic question on how to get the object if the all known is the name of the object (string). For instrance, if the name of the user is given, how can I get the DirectoyObject of that user so that I can call removeMember(DirectoryObject