Value from a condition  type not to inventorize

Hi friends,
I have a Pricing procedure for Cross company stock transfers.
Supplying plant put some margin on the material price and will supply it.
Now My question is how to avoid the value of the margin getting inventorized(adding to the material price) in the receiving plant
As iam using Std price for this FERT material in the receiving plant , it is trying to inventorize.
I have assigned an Account key and accrual key , for this margin condition type in my pricing procedure.
many thanks
krishna

Hi Manish,
If you dont want it to add to your inventory make that condition stastical in pricing
Put stastical check box tick
Hope this will help you
BR
Diwakar
reward if useful

Similar Messages

  • Copy value of condition type to another condition type *Not Percentage*

    Hi SAP community!
    How can I copy the value of a condition type to another condition type in my pricing procedure?  The rules are that these conditions are not Percentage. The calculation type is Quantity for the two conditions.
    I want to copy the value of condition type PMIN (Minimum Price) to another Z condition type.
    Thank you all

    Hi Lakshmipathi;
    In fact, there are two Z conditions that I need to have with the same value of the PMIN. I 've maintained my pricing procedure this way:
    For the PMIN, the step is 320
    For the ZPV1, the step is 920 and I put in "From " field 320 and in the "To" field 320
    For the ZPV0, the steo is 925 and I put in "From " field 320  and in the "To" field 320
    But when I looked the Conditions Tab in the sales order there is no value copied to the Z conditions. 
    In order to do this, my Z conditions do not need an access sequence assigned, right?

  • Price was not picking from the Condition type for Item Category 'P'  in PO

    Hi Experts,
    I Created one condition type based on Material and WBS which price was fixed based on this
    I used the Purchase Order having Item <b>Category ‘P’ or ‘Q’</b> Price should pick from the condition type where I mapped the WBS Element and Material.
    The Net price was not picking from the Condition type Record.  Why? What should be the Problem?
    Whether my logic is correct or not?
    <u><b>
    The Scenario:</b></u> I want to fix the Material price base on each WBS Element for a Project. For each WBS Element the Price will be various for same material.
    Please help on this.
    Thanks
    Muthukumar

    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

  • Condition value of Tax condition type gets added to Total Value in Contract

    Hi All,
    I'm currently investigating an issue where there are 2 line items in an SAP Sales Contract. There is a human error in the second line where the billing end date is less than billing start date in the billing plan.  Consequently, the second line has null Outgoing target value.
    However, the header Total value in the Contract  gets wrongly calculated as Basic condition value of 1st line  + Condition value of tax condition type of line one due to this.   When I modify the billing end date for the second line item to be a date greater than the billing start date, the above problem disappears and the total value of the contract does not include the tax component.
    For eg.
    Normal Error free  Contract
    Total Value at Header =   700.00 EUR
                       Material          Outgoing Target val
    Item 0010    MAT1               450.00                          ( 450 + 50 (tax )  )
    Item 0020    MAT2               150.00   
    Contract with billing plan error in second line
    Total value at Header =   550.00 EUR 
                            MAterial       Outgoing target val          
    Item 0010         MAT1             450.00                    ( 450 + 50 (tax ) )
    Item 0020         MAT2              0.00         
    Any inputs would be most welcome.
    Regards,
    Venkatesh.
    Edited by: Venkatesh Gopalarathnam on Jan 24, 2012 9:48 AM

    No, i didn't.
    Actually, i enter condition type and amount in sales order manually.
    At that time my program which i modified at 'Define And Assign Pricing Procedures' in IMG should be run. 
    But the result of running is different from my purpose.
    To change Condition value of condition type in sales order, are there any solution?

  • Value of the condition should not added to NETWR filed of Item & Header

    Hi Experts,
    My clients has a specific requirement he wants header freight condition type should go to accounting but *it should not include in (NETWR field) net value field of header and line item of invoice (Table VBRK and VBRP)*
    I have done the configuration of pricing procedure and allocated ERF as account key to freight condition type and placed the freight condition type after net value condition type and tax condition type
    But unfortunately the value of freight condition type getting added to NETWR field kindly suggest how to handle this problem
    Thanks
    Krushna

    Dear Krushna,
    in the internal field komp-netwr are all conditions included which are non statistical and active.
    (taxes are excluded).
    This is the standard behaviour.
    But if you set a condition as statistical, this condition has no influence to the komp-netwr but it will be not transfer to FI. Because only all active condtions which are non statistical are transfer to FI.
    Maybe you can create your own formula to exclude this condition from the komp-netwr.
    I hope that the information are helpful.
    regards
    Claudia
    Edited by: Claudia Neudeck on May 28, 2009 3:25 PM

  • 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?

  • Pricing Error- Condition type not found.

    Hi Gurus,
    I have a issue with pricing.
    Scenario :
    For a pricing procedure i have 3 condition types ;
    For example :
    ZXED, ZXE1 & ZXE2.
    Of these ZXED is Manual, Mandatory & Statistical in nature.
    ZXE1 & ZXE2 are Manual.
    When i create a sales order my pricing procedure is getting determined correctly.
    The issue comes in when i try to key in the values at the item level condition in the sales order:
    If i see the options(F4) available for me to select the condition types i get have see only one condition type i.e ZXE1. but esentially i should get to see all the 3 condition types as an choice of code(condition type).
    Can any one help me to find out the possible reason why i get to have only one condition type for selection.
    Your suggestion is highly appreciable.
    Rgd
    VIVEK.

    Hi,
    1. Understand onething that a particular condition type if maintained "mandatory" in the pricing procedure then you will have to create the condition record for it using transaction code <b>"VK11"</b>. If it is manual then you can give the rate directly in the sales order after selecting it. Since you have maintained <b>"manual", "mandatory" & "statistical"</b> for the condition type <b>"ZXED"</b> at the same time that is why the system is giving you the error <b>"Pricing error" Mandatory condition ZXED is missing."</b>
    2. Also you want the system to show you all threee condition types <b>"ZXED', "ZXE1", "ZXE2"</b> to choose manually as per your requirement. Do one thing go to transaction code <b>"V/06"</b> - select the required condition type say <b>"ZXED"</b> - double click on it - in the <b>"changes which can be made"</b> section you will see a field for <b>"Manual entries"</b> - in this select <b>"no limitations"</b> and save the <b>condition type</b>. Similarly do it for the other 2 condition types and save it.
    <b>I tell you</b> you must have maintained there <b>"D-not possible to process manually"</b>. If this is maintained then the system will never show you the condition type to choose from the condition type list in the sales order.
    Note: You have maintained for <b>"ZXED"</b> manual/mandatory/statistical. Now as it is mandatory also you have to maintain the condition record for it in <b>"VK11"</b>. Now if you change the rate of this condition type in the sales order then when you will create the invoice in <b>"VF01"</b> the system will show that value only which has been maintained using <b>"VK11"</b> because in billing also the system fetches the condition record from <b>VK11</b> for the mandatory conditions.
    Hope this clarifies and solves your doubt.
    Reward points if solution helps.
    Regards,
    Allabaqsh G. Patil

  • Statistical condition types not getting displayed in invoice

    We  have configured the tax collected at source (TCS) condition types and make them as statistical in the pricing procedure. Now, the issue is when we are using them the values for these condition types are getting calculated correctly as the total value is correct but in the invoice their individual values are not getting displayed.
    In the analysis also we can see that the condition records are found but being statistical condition they should get displayed in the invoice as only the correct total value will not serve the purpose, please help
    Thanks & regards
    Puneet Agrawal

    Hi
    Keep a break-point (hard) in these program lines and debug and see that whether the condition type(KSCHL) related to Taxes is appearing here or not.
    If the condition type for taxes is coming then you can print the taxes.
    First check the related condition type for Taxes in T685 table and see here in the code.
    <b>Reward points for useful Answers</b>
    Regards
    Anji

  • VA00 condition type not getting determined for the returns order

    Hi All,
    I have a case where VA00 condition type not getting determined for the returns order that has been created with respect to the billing document.
    When the pricing conditions are being copied from invoice it is getting copied but later it is getting deleted in the include LV61AA42.
    Note:VA00 condition type is getting deleted from the  internal table tkomv[].
    If any one came across  this scenario can you please help me.
    Request your valuable inputs

    Hi,
    Please check the copy control setting in VTAA.
    Maintain the pricing type as "D" at item category level for the respective document type .
    Hope this will resolve your issue.
    Regards,
    Krishna O

  • Pricing Condition Type - Not visible to the customer

    Dear All,
    What all the config need to set up in the pricing procuder for a condition type to ensure customer did not wish to see the value for the particular condition type on the invoice. However it should have the ability to value in the condition type automatically post to the correct accounts at the time of invoicing.
    Thanks in advance.
    Victor

    Hi victor
    If nobody should change the condition type at billing level or sales order level also  means then go to V/06 and set the field  Manual Entries - D .
    Secondly, in VTFL change the pricing  type to C or D then changing the condition type manually is not possible
    Regards
    Srinath

  • Hide values for certain condition types in Quotation Saleorder and Invoice

    Hi All,
    I have written code to hide values for certain condition types in LV69AFZZ,
    this works fine in the ITEM LEVEL.
    But for the same condition types, I could not hide the values in the HEADER LEVEL.
    Unless I hide it at header level also, this is useless.
    Please guide me how to do it.
    Thanks & Regards
    Pradeep

    Hi,
    We have been using FORM USEREXIT_FIELD_MODIFICATION of LV69AFZz for item level & FORM USEREXIT_FIELD_MODIFIC_KOPF of LV69AFZZ for hiding heade level conditions.
    I hope this helps,
    Regards
    Raju chiutale.

  • VPRS condition type not getting computed while retro billing.

    Dear All,
    I have an issue while generation of Reto billing using the T.Code : VFRB.While running VFRB the values are getting computed correctly and the supplimentary debit / credit note gets created.
    But the values for the condition type VPRS is not getting computed and getting transfered to CO-PA.
    On pricing analysis agaist VPRS i am getting the message (Condition ignored (requirement 004 not fulfilled)).
    The Item category used is TAN and the Determine cost Indicator is marked.Also while doing a sales invoice the VPRS condition type is getting computed and the value is posted in CO - PA.
    What would be the reason for the error .Could some one suggest a solution .Kindlye help.
    Regards,
    K.Vivek

    Hello vivek,
    this is usually caused by userexit. Please check  userexit_pricing_prepare_tkomp userexit_number_range using in rv60afzz.
    Best regards,
    Ivano.

  • Condition type not determined

    Hello All,
    I am using COPY CONTROL to create contract through VA41.
    Problem i am facing is condition type not getting picked up at item level, though correct pricing procedure is getting determined. In that pricing procedure this condtion type is maintained but still it is not picking the condition type.
    Rushikesh

    Hi,
    Can you check condition type detailed screen"Manual entries" field,the value in that field is either B or D.
    Regards,
    Chandra

  • HM00 -Condition type not present in pricing procedure.

    I have included HM00 as manual condition type in pricing procedure attached to the sales order through prcing procedure detrmination. But in sales order when I am entering the value manually for HM00, the error is "HM00 -Condition type not present in pricing procedure", but actually it is present in pricing procedure.
    Any idea how to fix thie problem ?

    Hi Sunil,
    Just check in V/08 > <b>YOUR</b> pricing procedure and see if HM00 is included in it or not.
    Hope this will definitely solve your issue
    Reward suitably
    Regards
    SD

  • Deletion of Acc. Sequence from any condition type

    HI ,
    I just wanna know that how can i delete any acc. sequence from a condition type.
    Regards
    Ankur

    Hi Ankur,
    First delete the access sequesnce fromm desired condition type by V/06. It will serve your purpose that for that condition type that access sequeance willl not work.
    Now if if you want to delete the accesss sequence rom system (if it is cistomized access sequeance, don't go for deletion of system defined access sequeance)  first identify in which more condition types the same access sequeance is used , then withdraw the assignment from all and then finally delete the access sequeance by V/07.
    Regards
    Indranil

Maybe you are looking for

  • FM ARCHIVE_SCHEDULE_JOB giving dump as background job?

    Hello Everyone,                    I am scheduling a report in SM37 which consists of FM ARCHIVE_SCHEDULE_JOB.                    And based on the output of FM, some Ztables are updated and some jobs are created in sm37. Now, when i debugged the back

  • Not able to read/write Clobdomain when using weblogic server.

    Hi, We have a view and one of its attribute is ClobDomain. Earliar we were using OC4J and had no problems in reading/writing this attribute using the entity object. Now we have migrated to Weblogic and the same clobdoamin is written empty. Also two r

  • Pacman induces kernel panic (intermittent)

    Hello Archers, I've got a fresh Arch install. I'm working my way through syncing packages I want from pacman. Two times now, a call to "pacman -S" has resulted in a kernel panic requiring a hard reboot. I've booted into my Arch CD - it was still sitt

  • Is there a new armband for the ipod nano 7th generation?

    I dont find it in any stores.

  • Add fields LGORT and WERKS in table KOMBE1

    In case of inbound deliveries, I want to add fields LGORT and WERKS to structure KOMBE1.I want to create an (Header)access sequence that checks on this 2 fields in order to generate an output type. So I will add this two fields in structure KOMBE1. D