In me21n  valuation type & tax code  check

HI friends,
while po creation , if both valuation type and tax code is excisable then system should allow. if valuation type is non excisable and tax code is excisable then system should through an error message . So what should i do, please sujjest me.
points will rewarded .
with regards,
prasad

Hi prasad,
I have worked with a similar issue before.
Please try looking at user exit EXIT_SAPMM06E_012 under MM06E005. This is the user exit used for validation of PO before saving.
a. Create a project enhancement in tcode CMOD.
b. Create the include program ZXM06U43 used by EXIT_SAPMM06E_012
c. Activate the project enhancement
d. To successfully activate the project enhancment, you will need to create  dummy sub screens as stated in the enhancement documentation. Or else ME21 screen dumps.
    SAPLXM060101
    SAPLXM060111
    SAPLXM060201
    SAPLXM060211
    SAPLXM060301
    SAPLXM060311     
e. After activating the enhancement, place some test code in your ZXM06U43 include program. Put a breakpoint in there and then test run your ME21.
f.  The transaction should stop at the breakpoint, check if the fields that you will require to execute your validation are all provided. If yes, then you can continue creating your user exit logic.
Hope this helps.

Similar Messages

  • Condition type & tax code & does not exist

    Hi,
    I have a problem to find out the reason why i can not process documents which came via IDocs from Sales SAP system. The error is "Condition type & tax code & does not exist". Following places i have already checked :
    1. FTXP - tax code for which error exists the same in both systems
    2. Table A053 - Condition types for specific tax codes and country are created in both systems.
    The tax determination is under billing and in Sales system it is ok, document is posted and when comes to our FInance system via Idoc it is in error even we have the same entries in the table A053.
    Maybe someone knows what can be also checked ?
    Thanks
    Tomek

    Hi Tomasz,
    Please go to T.code WE02 and check the reason for the error.
    The failed IDocs will be in status "51" and will also give you the reason for errors.
    Regards,
    Shiv

  • IDoc error - Condition type & tax code & does not exist

    Hi,
    I have the problem with CANADA tax codes. I have a few documents sent from external SAP to different SAP. In the source system documents were posted. In the target system i have error "Condition type & tax code & does not exist". I have compared the tables A003 and A053 in both systems and the settings are the same for specific Condition type and tax code... So where to find the reason Idocs are in error ? The only thing which is different is validity from (in the source system is earlier than in the target but the docs are created after both validation start)...
    I would appreciate advice.
    Tomek

    Hi Tomasz,
    Please go to T.code WE02 and check the reason for the error.
    The failed IDocs will be in status "51" and will also give you the reason for errors.
    Regards,
    Shiv

  • Tax Code (check box)

    Hi FI Guru
    As per our requirement we have to make Tax Code check box Ticked in all FI Transaction codes and it should always be ticked and grey(display) mode so no one can change its ticked status.
        Kindly suggest how to make this field ticked and greyed.
    Thanks & Regards
    Keshav

    Hi
    You can do so by editing the necessary field status group and putting the tax check box as display only.
    However, you would not need tax calculation for all cases. Be sure that you know, why you want all accounts to be tax relevant.
    If I understand correctly, you will maintain the necessity of Tax Code in GL master through FS00 but you will keep it in display mode at document entry level.
    Please clarify your exact requirement.
    Please assign points if it meets your requirement.
    Regards
    Sanil Bhandari

  • Error with Material type/Tax code access sequence in Tax procedure

    Hi,
    I am trying to create an access sequence with Material type/tax code combination for my tax procedure. While I can generate the condition table successfully, I cannot create an access sequence. The access sequence gives me the pop up message " select a document field for MTART". I searched in the field catalog and its absent. However MTART exists in the table KOMG.
    How can I include the field MTART ( material type) in the field catalog. The tax code field is shown as green. Please help.
    Thanks and regards,
    Soumya.

    The field MTART was included as standard in the table . I didn't have to add anything. Further, i couldn't find any standard access sequence for tax procedures that include material type.
    I am really stuck with this!!
    Regards,
    Soumya

  • Update Tax Code Name for EU type Tax Code

    Hi Experts
    I would like to update the tax code name for Input Tax Codes which have the EU box checked.  The system always gives me the error message 'Value Must Be Empty - Tax Definition EU'.  Is there a way around this please? - it's only the Name that I want to update.
    Many thanks!
    Caroline

    Hi Caroline,
    It will not be possible to change the TAX CODE or TAX CODE NAME. You will need to remove the TAX CODE.
    But, It there are transaction against the TAX code you will need to create a new TAX CODE.
    Pls refer to SAP Note : 1032062 for the Error Message : 'Value Must Be Empty - Tax Definition EU'
    Thanks

  • Tax code check in ME59n

    Hi everyone,
    I have a requirement where while creating POs using the transaction ME59n i have to check for thetax code field and see if it is blank for particular company codes and item categories. If it is blank then i have to stop the creation of the PO and display and error message. I have written the code in User exit EXIT_SAPMM06E_016 and the transaction does not create the PO when tax code is left empty, but the problem is now i am getting an Update termination error after the transaction has completed executing. The update error occurs even when there is no tax code error below is the code i have written in the exit and also the update error. please advice on how to proceed, or if there is any other way to do this. Waiting for your replies.
    Thank you all.
    IF sy-tcode = 'ME59'.
    IF i_ekpo-bukrs EQ '0967' OR
    i_ekpo-bukrs EQ '0968' OR
    i_ekpo-bukrs EQ '1098' OR
    i_ekpo-bukrs EQ '1120'.
    IF NOT ( i_ekpo-pstyp EQ '2' OR
    i_ekpo-pstyp EQ '7' OR
    i_ekpo-pstyp EQ '6' ).
    *If tax code field is empty give error
    IF i_ekpo-mwskz EQ space.
    SET CURSOR FIELD 'EKPO-MWSKZ'.
    MESSAGE e000(ZTMM_FRTINV) WITH 'Please enter TAX Code'.
    ENDIF.
    ENDIF.
    ENDIF.
    ENDIF.
    update error
    Update was terminated
    System ID.... TB1
    Client..... 510
    User..... SHETTYVK
    Transaction.. ME59
    Update key... 48289310AFFC200B020000009974F230
    Generated.... 14.05.2008, 13:34:57
    Completed.... 14.05.2008, 13:34:57

    Hi,
    Thanks for the reply.I have already checked the mail and also checked the error in SM13 transaction. I had encountered the same problem once before and it was due to a commit statement somewhere in the program which was causing the problem. So i searched for a commit work statement and found one in another user exit which was getting triggered after my exit. This commit work was causing the update termination error and now i have to code such that it bypasses the commit work.
    Thanks for you help

  • PRRW - Displaying separate line items for separate Wage Type / tax Code

    Hi ,
    In the Travel trip PR05 after the trip is setteled, the trip no. need to run with the Posting run through Tcode: PRFI. Then we need to Run the Created Document using the Tcode: PRRW. My Requirement is that for some WAGE TYPE which are assigned with the Expense type which are assigned to the Same GL Account. While posting in FI we need to get the Different line items history for diffrent Expense type even though the expense type are assigned for the same Account Number.
    For Eg:
    EXPENSE TYPE: BUSB settelment amount -1.53
    BUSL settelment amount -2.67
    VERM settelment amount 50.00
    After Posting i need to get as Same Doc Number with different line items in the FBL1N while posting.
    I found the BADI for the same TRIP_POST_FI, but to get the soultion to my requirement i need the help on that.
    Please provide me with the sample code so that i can get over the issue.
    Best Regards
    Bhavana

    could u please share on how u found the resolution for this.
    It will be a great help.
    thank you,

  • Tax code linking with account mapped to condition type in vkoa

    Hi,
    I created two new discount condition types and mapped an account in vkoa as per client's requirements. There is no field for tax code in the condition record maintenance screen. However, on creation of billing document I am getting error 'No taxes on sales/purch. are allowed for account 416010 TCL, A4 is not allowed.' Message no. FS217. Is there any setting in FI linking the account with the tax code? Or should I check any SD settings?
    Thanks,
    Kasturi

    hi,
    according to the error message
      message e217(fs) with v_accrac-hkont
                            v_accrac-bukrs
                            v_accrac-acctax.
          MESSAGE e217(fs) WITH i_hkont i_bukrs i_mwskz
                  RAISING no_tax_code.
        MESSAGE e217(fs) WITH i_hkont i_bukrs i_mwskz
                RAISING no_tax_code.
    this are two programs which are affected with the respective TAX CODES.
    check FTXP for the same.
    please check and confirm
    balajia

  • Error-- Condition type MWST tax code A0 does not exist

    I have an Invoice and it didnu2019t pass for accounting entry.
    The error is promptu201D Condition type MWST tax code A0 does not existu201D, It never came at the time of Sales order creation.
    Diagonosis says the following
    When calculating tax, the system tried to determine the condition amount and the condition number from tables A003 and A053 using the specified condition type and tax code. However, no values were found there.
    Procedure says the following thing
    Check the Customizing settings for the specified tax code. Check whether the validity period (possible with tax jurisdictions) is defined.
    Please guide.

    Christiano,
    First let analyze the situation.
    1. Execute Tcode VA02 --> Item Details --> Conditions tab --> Click Analysis button. Try to find for condition Type MWST whether values are flowing.
    If it is not there then you have not maintained condition record.
    2. Tax Code.
        Execute FTXP Tcode , Check For A0 Tax code check whether you have maintained any value. if yes then check in condition record, whether you created record with Tax Code - A0
    If everything  above is perfect and correct
    3. Check Copy Controls and Pricing type
    Check the Validation period (it should not be the problem)
    Check and Revert
    Regards
    Sathya
    Edited by: Sathya Pavan Yedavalli venkata on Apr 21, 2009 2:06 PM

  • Different tax code for condition type

    Hello Gurus,
    I have defined a calculation schema for import POs.
    I would like to automatically determine the default tax code on the invoice verification depending on the condition type, for examle:
    Cond type                     Tax code
    ZF01 Freight            --> C0 0%
    ZS01 Custom agent --> C1 13%
    Any ideas?
    Regards,
    Nelson.

    If you wish to default the tax code for the planned delivery costs this must be obtained from an independent source which is OMR2 If you do not wish to default the tax code, then the only alternative is to select the tax code when in transaction MIRO.
    At least withing the standard I don't know any solution for that =/
    Sorry & good luck!
    Plauto

  • How many new tax type and tax code  are created for change in TDS

    Hello Gurus.
    we are using SAP since more than  one year.
    now tDS rate is change , so i would like to know How many new tax type  and Tax Code is created in our system
    and also like to know At what percentage  i will crete that  new tax code.
    we have pair of tax type and tax code as shown in Example( for Interest) below
    Tax type        Tax code           Name
    I1      IC      Sec 194A - Interest on deposits
    I1      IO      Sec 194A - Interest on deposits OT
    I2      IC      Sec 194A - Interest on deposits Surcharg
    I3      IC      Sec 194A - Interest on deposits EC& SHEe
    I3      IO      Sec 194A - Interest on deps EC& SHEe OT
    I4      IC      Sec 194A - Interest on deposits Pymt
    I4      IO      Sec 194A - Interest on deposits Pymt OT
    I5      IC      Sec 194A - Interest on dep Pymt Surcharg
    I6      IC      Sec 194A - Interest on dep Pymt EC& SHEe
    so  how namy  additional  reuire to create new tax type and code more.
    i am waiting your reply.
    Regard,
    Riten patel
    Edited by: riten patel on Oct 29, 2009 10:23 AM
    Edited by: riten patel on Oct 29, 2009 10:23 AM
    Edited by: riten patel on Oct 29, 2009 10:33 AM

    Hello Hansachechani
    we have  followinng   tax key
    115O     Dividend 115O(1)
    192B     Salary
    194A     Interest income other than securities
    194C     Payment to contractors
    194H     Commission
    194I     Rent
    194J     Prof/Technical services
    195     Payment to foreign nationals
    206C     Tax Collected at Sources (Scrap)
    ST     Service Tax
    and we have followig tax type
    C4     Sec 194H Commission Payment
    C5     Sec 194H Commission Pymt Surcharge
    C6     Sec 194H Commission Pymt EC & SHE Cess
    D4     Sec 115O(1) Dividend Payment
    D5     Sec 115O(1) Dividend Pymt Surcharge
    D6     Sec 115O(1) Dividend Pymt EC & SHE Cess
    F4     Sec 195 Foreign Prof fees Payment
    F5     Sec 195 Foreign Prof fees Pymt Surcharge
    F6     Sec 195 Foreign Prof Fees Pymt E&HS Cess
    G1     Service Tax on GTA
    G2     Service Tax on GTA E Cess
    G3     Service Tax on GTA S&HE Cess
    I4     Sec 194A Int on Deposit Payment
    I5     Sec 194A Int on Deposit Pymt Surcharge
    I6     Sec 194A Int on Deposit Pymt EC & SHE Ce
    L4     Sec 194C Contractors Payment
    L5     Sec 194C Contractors Payment Surcharge
    L6     Sec 194C Contractors Payment EC&S HE Ces
    P4     Sec 194J Professional Payment
    P5     Sec 194J Professional Pymt Surcharge
    P6     Sec 194J Professional Pymt EC & SH E Ces
    R4     Sec 194I Rent Payment
    R5     Sec 194I Rent Payment Surcharge
    R6     Sec 194I Rent Payment E Cess & SH E Cess
    So Is it necessary to create new tax key and tax type?
    wheather i create new tax code only?
    I ma waiting your reply.
    Regard,
    Riten patel

  • Discount Condition type is picking Tax Code(URGENT)

    Dear All,
    I have a very serious problem on Condition types and Tax codes.
    I have configured the pricing procedure with two taxes (China).
    Sr.No   Condition Type    TAX Code
    1               VAT                  V7
    2.             CONC                V6
    Now, If i will give some Customer discount Condition type then System is picking picking Tax code as V7.For that i have not maintanied any Condition records in VK11.
    What should be the reason for this?
    Since it is very Urgent Issue,Please Guide me on the same
    Thanks
    Vinay

    Have you run the country installation program before you started the customisation. This is supposed to install the entire information required to configure the tax scenarios for the particular country. If you are trying to create the tax codes and the procedureson the vanilla system, then you need to work very closely with FI because the posting for tax is done from the tax procedure in FI. As an SD or MM consultant we are only interested in the Taxes on sales and purchases and their customisation. The procedure and the Tax codes are created in FI.
    This is the first thing that is normally done after you copy client 000 to start your customisation. The coountry installation program does not run if you ahve made changes to the client.
    regards
    Jude

  • Tax Code and Tax Amount Fields are not appearing

    Hi to all,
    While making Downpayment Request (F-47) Tax Code and Tax Amount Fields are not appearing in the screen.
    for more clarity...
    suppose PO is 1150 include all taxes ( Amount 1000+ Tax Amount 150)
    as per agreement with vendor we need to raise DR for 1150 and based on DR we will make downpayment to vendor (F-48)
    But in F-47 screen Tax Code and Tax Amount fields are not appearing.
    Could any body help me on this??
    Thanks in Advance
    Regards,
    Schilukuri

    why you are looking for tax code field, pay gross amount as per PO, same amount will update in PO history as well as Vendor account.
    Even if you find the tax code field and check the tax code check box, system will not calculate tax  at the time of down payment or down payment request.
    Please remember that by default standard SAP provides the tax code field in f-47 or F-48.

  • PROBLEM AT THE TIME OF CREATION OF VALUATION TYPE(SPLIT VALUATION)

    Dear cons
      I want to create a valuation type ( t-code- OMWC) in configuration client. Then I will transport to quality as well as production. but it is a matter of great regret that at the time creation of valuation type no transport request no. is genereted. without TRansport request no. how can I transport to quality as well as production. pl. help me.
    nrk

    Hi,
    This is a client level configuration so Transport Requests are not getting generated directly. Here follow this procedure;
    Go to OMWC, Click on Global types. , Click on Types > Transport in the menu bar
    The sytem will prompt for a request, create the request. A new screen for selcection of Valuation cateogires & valuation types will come. You can select here & transport.
    Click on Save after selection, all the selcted items will be added to the request

Maybe you are looking for