Redetermination of condition table for a condition type

Hai Friends,
I have a quiery regarding condition table redetermination from order to delivery.I have pricing procedure in which "ZMRP" is the mrp price for calculating other condition types.Here i have scenario While raising sales order ZMRP condition type is determining with the combination of "Distribution channel and material".But when it comes to delivery i want that(i.e.,ZMRP condition type) to determine with the combination of "Material and batch".How to do this
Thanks & Regards,
A.sudhakar

Hello Sudhakar,
As said above the pricing procedure for order and delivery documents are different, adding to that we can't transfer the condition value from order to delivery document and nor we use same pricing procedure in delivery document.
Order pricing procedure- calculates the prices for the material (price + tax - deduction)
Delivery pricing procedure - Calculates the prices for feright charges or postage charges.
the values for conditions in the billing document can flow from both order and delivery based on the copy control table.
price tax and deduction comes from order and feright comes from delivery document.
Note: we don't use delivery document pricing procedure to calculate the price i.e ZMRP in your case for the material.
Hopes this helps
Regards
Naveen K.

Similar Messages

  • Sales Order Unable to Use New Condition Tables for Tax Condition Type

    Dear All,
    I am currently working on SAP R/3 4.0. I have a new requirement for my tax where I need to create new condition tables other than the 4 standard SAP tables which are Customer/Material, Division/Customer, Departure Country/Destination Country, Domestic Taxes and Export Taxes. My new tables consists of Departure Country/Destination Country/Shipping Point/Tax Code. The requirement is that the tax code is based on the chosen destination country and shipping point. The problem I am facing now is that no matter what types of table I create or even I generate with reference to the standard table, the access sequence will only refer to the 4 standard SAP tables above. Even if I put my own table in the highest priority for the access sequence, the same thing happens. My sales order will only pick up date from the standard table.
    I wonder if anyone encountered the same problem as me.
    Kindly advise.
    Thank you.
    Regards,
    Yvonne

    Hi
    Yvonne
    I suggest fist check a simple thing ,whether u have successfully determined shipping point for each line item ,it is possible that just adding a line item will not trigger shipping point determination . So after u update the shipping point on line level u can rerun pricing and check agian if u r getting it .
    Secondly for tax purposes I suggest   Try to have Customer and material tax classification approach  this allows to u have long term flexibiliy and also reduces your maintenance activity . As if u change or add number of shipping points and business changes using the sequence of shipping point ,the logic of just using shipping point will not work.
    In Tax classification u cna add new condition table for each new tax category and use it in different access sequences.
    This information can be passed on to FI using Different Tax code for Different combination.
    I hope this helps
    Regards
    Mandar

  • Wrong condition table for condition type

    Hi,
    I have a big problem during pricing. while creating the sales order the system takes the wrong condition table for the specified condition type (I have created a new condition table and changed the access seq, did the initial load and in customizing everything looks fine). To picture the customing i have created ZXXX access seq with a 901 cindition table (sales org, dist ch. and product hierarchy 2 with a standard field PRODH2) unfortunately I had to change the field to ZPRODH2 I decided to create a new table 902 with the Z field. The new access seq has now 902 table in customizing. In CRM the two condition tables and view exists for 901 and 902. Acording to customizing the system should take the 902 condition table but insteed he takes the old 901 which shouldn't be used.
    Do anybody has some ideas why the system responds like that ? I have tried to delete the old table with the standard report and it didn't worked.
    What can I do ?
    Thanks for some ideas !!
    BR
    Tomasz

    Hi Tomasz
    Please check assignment of that new access seq to c.type in v/06
    That table might hv used somewhere in another acc.seq so unable to delelte
    Regards
    Sachin

  • New Condition TAble for Inbound Delivery

    Hello
    i want to maintain a new Condition table for the Inbound delivery picking with the combination of _Delivery type/Plant
    so that the Inbound created for the particular plant alone uses the particular output type.
    Where in IMG can i configure the new Condition table for this combination for the Inbound delivery ?

    Hi,
    Go to SPRO > Logistics Execution > Shipping > Basic Shipping Functions > Output Control > Output Determination > Maintain Output Determination for Inbound Deliveries > Here perform following;
    - Define Condition Table for Inbound Delivery
    - Define Output Types for Inbound Delivery
    - Define Access Sequence for Inbound Delivery
    - Maintain Output Determination Procedure
    - Assign Output Determination Procedures

  • Condition table for outbound delivery

    Hi guys
    Is it possible to create a new condition table for outbound delivery output type with a field „sold-to”, although this field is available in the field catalogue , it does not show up during a table creation in the FieldCatlg,why?
    Your quick response appreciated .
    Regards
    Dominik

    Hi Dominik,
    You need to Append the new fields which you want to see in the Field Catelog to create a condition table.
    Please follow the following process
    Got to T. Code SE11 andGive the Table name
    Then click on the Button Append Structure and
    Key in the name of you append starting with letter 'Z'.
    Add fields whcih you want.
    Activate the table.
    Hope this is clear.
    Reward if helpful.
    Thanks,
    Praveen

  • Maintain output condition table for billing documents

    Hi
    I need to create new output condition table for billing document with the key combination of "Billing type and Export Indicator". In Field catalog: Messages for billing documents I am able to find field Export Indicator but the same field i am not able to find creation of new condition table (V/63).. Kindly let me know is there any settings required to show the same in V/63.
    Thnaks
    Srinivas

    Hi Ram
    The filed already is there in in structure" KOMKBV3" ....
    Thanks
    RAO

  • To count number of records in an internal table for a condition

    Hello All,
            I want to count number of records in an internal table for a condition.
    For e.g. -- I have one internal table IT which having fields F1, F2, F3, F4, F5.
                     Now, I want number of records in itnternal table IT where F1 = 'ABC'.
    Is it possible to do..?? If yes, then how.??
    Thanks in advance...!!
    Regards,
    Poonam.

    Hi,
    If you mean an internal table, there are a few ways to do this.
    1 One would be to loop over the table with a WHERE clause and increment a counter.
    data: lv_counter type i.
    clear lv_counter.
    loop at itab where fld1 = 'ABC'.
    lv_counter = lv_counter + 1.
    endloop.
    lv_counter now has the number of rows per the condiction.
    2  Well, you may want to try this as well, and compare to the LOOP way. Not sure what kind of overhead you may get doing this way. Here ITAB is our main internal table, and ITAB_TMP is a copy of it. Again I think there may be some overhead in doing the copy. Next, delete out all records which are the reverse of your condition. Then whatever is left is the rows that you want to count. Then simply do a LINES operator on the internal table, passing the number of lines to LV_COUNT.
    data: itab type table of ttab.
    data: itab_tmp type table of ttab.
    itab_tmp[] = itab[].
    delete table itab_tmp where fld1  'ABC'.
    lv_count = lines( itab_tmp ).
    Thanks & Regards,
    ShreeMohan

  • Condition tables for PO

    Hello Gurus,
    I am creating a report for Input tax and Output tax calculation and I have been searching for condition tables for PO. I have tried KONV, KONP but i dont get any entry for taxes like VAT, Additional VAT, CST, etc. in that table related to PO. I do get tax entries for SO in KONV but not for PO. Its exactly the table for all the entries you get when you click on Taxes button, at the time of release PO by ME29n.
    So please let me know if you can help.

    Thanks Sanjay and Umakant,
    @Sanjay - I know how to get the condition no but i was not able to get tax entries for vat condition types there in KONV. Thanks for your help though.
    @Umakant - Yes i did get that value from BSET so its of really a help but how to recognize that its for particular item when particular invoice have more than one item??? Will i b able to find Excise , Cess and Higher Cess from BSET table???
    Thanks for your quick reply. Really appreciate that.

  • T-Code to update condition table for delivery & transport scheduling to SCM

    Hello,
    Could you tell the T-code to update condition table for delivery & transport scheduling to SCM system
    These are the some SAP fileds
    /SAPCN1/KOTABNR (Condition Table)
    /SAPCND/KAPPL(Application)
    /SAPCND/KSCHL(Condition type)
    /SAPCND/KOLNR(Access sequence)
    Thanks in Advance
    RK
    Edited by: RK on Jun 9, 2009 5:58 PM

    HI
    The TCODE for this is /SAPAPO/ATP_GCM.
    Regards
    Anurag.

  • Tax condition table for an access sequence

    Hi,
    I serched in the forums to find t.code or menu path for creating a tax condition table for MWST tax condition type, but no body has given any specific answer.  most of them have given the SD or MM related condition tables.
    My requirement is, I want to create a key combination for "MWST" TAX condition type.  Please let me know the process of creating the key combination for TAX condition type. 
    Thanks in advance.
    Anil

    Hi
    MWST is the standard progarm access sequence
    condition type  is base to calculation of main the tax procedure
    but the thing the access sequence and conition type are pure MM, SD Work,
    if you need to table :
    T685,T685A,T685T,
    are else you use Z table with the help of technical consultants'
    Thanks
    Madhu

  • Condition Records For Tax Condition types for SAP 4.7

    Dear Experts,
    What is the procedure to maintain condition records for tax condition types like CST , VAT and Service Tax. We are not using CIN. In MM01 and XD02 tax classifications i have maintained UTXJ condition Type and also maintained the above mention tax condition types.. But when i create condition records for UTXJ in VK11 the sysytem is asking for Tax code. In FTXP when i defined Tax code A1 for Tax ProcedureTAXIN1 where i maintained all the Tax condition types there.But i am unable to save the Tax % in FTXP.When i try to save the tax code it is not saving.
    Is there any other procedure to maintain Tax condition types for SAP4.7.
    My Pricing procedure that i maintained in V/08 is Z00001.
    Regards
    Jyoti

    Hi Jyoti
    Since you are not using CIN, you can do the follwing for tax conditions
    Check the assignment of the TAx procedure to country
    once u do this , you will be able to maintin the vendor and customer records for MWST  type for taxes
    then create condition records for MWSt with access sequence MWST in condiution type or design one suited to your needs
    alternatevely in the current procedure you can change access sequence for condition type UTXJ form the current one to MWST and then maintain condition records
    hope this helps
    thanks
    Akasha

  • Payment condition table for vendor

    Hi,
    where I can find payment condition tables for vendors ?
    Regards

    hi
    There is no such thing as you have asked, but if it is terms of payment related just check the below
    link.[Re: Table for Payment Terms]
    Regards
    Edited by: samuel mendis on Jun 8, 2010 3:11 PM

  • Condition table for account determination

    Hi,
    I would like to know if there is any generic transaction to create condition tables.
    Specifically, I would like to create a condition table for revenue account determination.
    Any help would be appreciated.
    Thanks,
    Aroop

    Aroop,
    Yes you can create IMG --> SD --> BF --> Revenue Account determination --> Define dependencies of revenue account determination --> Account determination create Tables OR Tcode V/12.
    Try to create Table above 500 number.
    Regards
    Sathya

  • How to maintain a condition record for a output type ?

    Hi All
    How to maintain a condition record for a output type ?

    Hi,
    Goto NACE and there is a button for maintiaining the Condition Reocrds.

  • Where  can i find table for field condition rating

    hi all ,
    where  can i find table for field condition rating& its decription, please help me
    thanks in advance to all

    Hi Jurgen
    thanks for the Quick reply and what shoud be the table for the field
    gopal

Maybe you are looking for

  • Report Preview Tab and data loading

    I have 2 questions: When I first started developing a report, when I opened the file I had both the design and preview tabs displayed. It seems after I downloaded and viewed 1 of the sample reports, the preview tab disappeared (tho, it's not obvious

  • Imac and Macbook pro can no longer see one another

    I'm not sure why, but all since I upgraded to Yosemite, I can no longer see my iMac on my Macbook Pro and vice versa. I could always see the computer that I needed to connect to in finder, or I could connect with my iCloud password. As of today, I ca

  • Connection Reset issue in Weblogic 8.1

    Hi, We have an application running on weblogic 8.1. Please let men explain the steps that we carried out: 1. A new user was being enrolled through the applciation. 2. To make the connection object the value of the properties DriverClass, ConnectionUR

  • G5 with a 30"

    I just installed a new Apple Cinema 30" on my Dual 2.5 PowerPC G5. The graphics card is an ATI Radeon 9800XT. The new display connects via the DVI port. The previous display used the ADC port. The previous Apple Cinema worked fine. The new display ca

  • Cannot download PC suite latest version and cannot...

    Model of phone E 61 Operating system Windows XP Pro SP2 installed Hi there, Can someone help. I tried to download the 6.83 version of PC sync, but each time it hung at around 10% installation when trying to load PC Sync manager. I have done all the o