Withholding tax code and Withholding tax type relation

Hi All,
Here is my requirement:
I need to get the WT code description for the tax codes I get in BSIS (BSIS-QSSKZ). The problem is when I try to get the same from T059ZT, I need to have the two key fields WITHT (Indicator for withholding tax type) & WT_WITHCD (Withholding tax code).
But from BSIS I am having only the field QSSKZ (Withholding Tax Code)and not the WT type.
I need to know, how can I get the WT type based on WT code? I tried WITH_ITEM but its of no use, as it has both these fields as key fields.
Thanks in advcane.
Anand

Hi,
Hi,
I am working on an enhancement for withholding tax.
The withholding tax base has to be calculated in the exit.
I found that MRM_WT_SPLIT_UPDATE is the badi which can be implemented and can contain the logic for the calculation.
The transaction MIRO calls this BADI.But I need to call the BADI even for FB60,FB65,F-43,F-41 and F10.Is this part of configuration.Please let me know how to enhance the withholding tax calculation.
Thanks,
guest

Similar Messages

  • MM-SUS: SUS invoice creation without default tax code and no tax amount

    Hello All:
    When i create SUS invoice based on accepted GR(GR is transfered form MM per program RPODDELVRY and my system has implemented note#1351489) , the SUS invoice tax code in item is default from SUS customizing, but not from MM-PO item tax code.  On the other hand, the tax amount is always zero even if  i change the tax code and press "update price".
    So then i press "send" to transfer SUS invoice to MM, system jump following 2 error messages:
    Errors:Error in parameter transfer ( Item 1 )
    Errors:Active status of document SUS Invoice 5000000035 is Incomplete . No changes are possible.
    My SRM Server release 701, and business scenario is MM-SUS
    In MM: customizing OBCA/OBCD/OMRY  is completed
    In SUS:customziing SRM server -> cross application basic settings -> tax calculation is completed.
                1.determine system for tax calculation --> R/3 tax calculation occurs in backend
                2.enter tax code --> I1 = 17% default sales tax, I2 = 13% sales tax
                3.Assign enterprise buyer tax code to FI system -->  I1 = MM J1 , I2 = MM J2
    Please advise what's the sulotion, thanks.
    Regards
    Joseph Chen
    Edited by: chshix_1980 on Mar 30, 2010 5:56 AM
    Edited by: chshix_1980 on Mar 30, 2010 6:05 AM

    Hello ALL,
    I am also facing same problem, although on different version SRM 7.0 SAPKIBKV06
    We are having issues as stated below....
    1) Tax code in PO line item should be defaulted while processing SUS Invoice.
    As per the current behaviour SUS invoice tax code in item is defaulted from SUS customizing, but not from MM-PO item tax code.
    2) In SUS Invoice the tax value is not getting populated even though the setting in IMG is R/3 tax calculation occurs in backend and for this all relevanat attributes related to purchasing org. BUK and ACS are maintained under PPOMA.
    3) Finally when I try to post the invoice in SUS system get the below error message
    Errors: Error in parameter transfer ( Item 1 )
    Errors: Active status of document SUS Invoice 5000000XXX is Incomplete . No changes are possible.
    All the relevant config is maintained
    In MM: customizing OBCA/OBCD/OMRY  maintained
    In SUS:customziing SRM server -> cross application basic settings -> tax calculation maintained.
    Appreciate your quick reply,
    Thanks,
    YR

  • Problem with "Tax Code" and "Calculate tax automatically" fields

    Hi again.
    I have made a program which posts account documents through the BAPI_ACC_DOCUMENT_POST function module, and, since there were some fields which weren't available for me to fill having the FM by itslef, I have implemented the AC_DOCUMENT BAdI.
    All document data is provided by means of an SAP XI interface, through a Z IDoc.
    When I create the Account Receivable (and/or Payable) structure, I fill, through the BAdI, the BKPF-XMWST (Calculate tax automatically) and BSEG-MWSKZ (Tax code) fields. However, even the resulting posted document does have the Tax Information fields completed (the ones in the BSET table), the BAPI doesn't create the tax position automatically (just like the FB01 or FB60 transactions do). Note that the amounts are sent in their gross value by the interface (that's why the debit and credit sides remain consistent and the document is posted correctly).
    How can I have that position created? Is there a function module which I can call or something?
    Thanks a lot in advance.

    Hi
    I only use the fm CALCULATE_TAX_FROM_NET_AMOUNT or CALCULATE_TAX_FROM_GROSSAMOUNT in order to get all information I need to transfer to the BAPI. Both fms return the data by table parameter T_MWDAT.
    U can read this table and get all information u need, these code is from my old program, I hope it can help you:
    - Calculate tax data:
    CALL FUNCTION 'CALCULATE_TAX_FROM_NET_AMOUNT'
            EXPORTING
              I_BUKRS           = BUK_TO
              I_MWSKZ           = T_BASE-MWSKZ_OUT
              I_WAERS           = _BKPF-WAERS
              I_WRBTR           = T_BASE-WRBTR
            TABLES
              T_MWDAT           = T_MWDAT
           EXCPTIONS.
          IF SY-SUBRC <> 0.
          ELSE.
    * Load tax item
            LOOP AT T_MWDAT.
              CLEAR W_GL_ITEM.
              W_GL_ITEM-HKONT   = T_MWDAT-HKONT.
              W_GL_ITEM-MWSKZ   = T_BASE-MWSKZ_OUT.
              IF T_BASE-KBETR = T_MWDAT-KBETR.
                W_GL_ITEM-WRBTR   = T_BASE-FWSTE.
              ELSE.
                W_GL_ITEM-WRBTR   = T_MWDAT-WMWST.
              ENDIF.
              W_GL_ITEM-IVA   = 'X'.
              W_GL_ITEM-KTOSL = T_MWDAT-KTOSL.
              W_GL_ITEM-TXJCD = T_MWDAT-TXJCD.
              W_GL_ITEM-KSCHL = T_MWDAT-KSCHL.
              W_GL_ITEM-TXJCD_DEEP = T_MWDAT-TXJCD_DEEP.
              W_GL_ITEM-TXJLV = T_MWDAT-TXJLV.
              W_GL_ITEM-BASE  = T_BASE-WRBTR.
              COLLECT W_GL_ITEM INTO GL_ITEM.
    - Append GL or Tax item for the BAPI
    LOOP AT GL_ITEM INTO W_GL_ITEM .
        ITEMNO_ACC = ITEMNO_ACC + 1.
        IF W_GL_ITEM-IVA = SPACE.
    * GL item
        ELSE.
    * Tax item
          ACCOUNTTAX-ITEMNO_ACC = ITEMNO_ACC.
          ACCOUNTTAX-TAX_CODE   = W_GL_ITEM-MWSKZ.
          ACCOUNTTAX-ACCT_KEY   = W_GL_ITEM-KOSTL.
          ACCOUNTTAX-COND_KEY   = W_GL_ITEM-KSCHL.
          ACCOUNTTAX-TAXJURCODE = W_GL_ITEM-TXJCD.
          ACCOUNTTAX-TAXJURCODE_DEEP  = W_GL_ITEM-TXJCD_DEEP.
          ACCOUNTTAX-TAXJURCODE_LEVEL = W_GL_ITEM-TXJLV.
          APPEND ACCOUNTTAX.
          PERFORM FILL_AMOUNT USING W_GL_ITEM-WRBTR W_GL_ITEM-BASE.
        ENDIF.
      ENDLOOP.
    Max
    Edited by: max bianchi on Nov 25, 2009 7:43 PM

  • Tax amount and sales tax code fields not visible in tcode MIR4

    Hi,
    A workflow has been cretaed for cretaing the invoices. Here in SRM invoice, the tax code and Sales tax code fields are not visible in tcode MIR4 though data has been passed while creating it.
    When i am checking the "calculate tax" check box, am able to see these two fields on the MIR4 page.
    Am not able to find the reason for this behaviour. As its working fine for other invoices. This is the case with only SRM invoice.
    Kindly provide your inputs.
    Thanks!
    Regards,
    Razia Shaheen.

    Hello,
    What you are saying is that the Invoice coming from SRM (Via Idoc i supose) is not bringing the tax code? is that it?
    Cheers !

  • In vendor line item not showing withholding tax amount and withholding base

    Hi Gurus,
              When i am using T,code FBL1n for details clear item,in line item doesn't showing withholding tax amount and withholding base amount for some vendors when i am using FB03 there showing tax amount and base amount,in option is there.plz help me,its very urgent.
    Thanks & regards,
    Dharma.

    Im not sure but may be its because in the config. of 1099 Withholding tax we usually say that the with holding is to be posted only after payment of the open items.
    So, lets try this. Look at if the documents which are showing withhld tax in FBL1N if they are paid or not.
    this would give us some help or hopefully the answer..
    regards

  • Diff. between Tax Code and Condition Types

    Hi,
    What is the diff. between Tax Code and Condition Type???
    Why we maintain Tax Codes under Invoice Tab in PO, when Condition Types are available for Calculation Procedure...???
    Please guide..

    hi..
    Tax code : Tax code in some what more specific for calculating the tax...some material is having 2% tax..some having 3 % tax..etc..and these are input tax...so..these tax code will be of type input tax..
    now..based on the nature of tax type amount will be calculated....
    suppose tax code is calculation of 2 condtion type so ..we can do it in tax code conditon record fv11 also..
    so..tax code can be a combination of cond type...
    where as through cond type also we can also achieve this..by using one statistical cond type...
    Cond Type :  cond type is for the daily pricing configuration..how system will calculate the price for a centain material we can make define the rules here...
    Try this out..
    Thans

  • Bapi_Acc_Document_Post - E 018 : Invalid tax code and company code combination

    Hi All,
    I need the help of this forum once again.
    I am using bapi Bapi_Acc_Document_Post to create KR documents in SAP. The bapi works absolutely fine except for one scenario:
    For a particular type of invoice coded to Company "XXXX" with lines having tax code "I0", the bapi returns error message "E 018 : Invalid tax code and company code combination". The tax code "I0" and the company code "XXXX" has been mapped in SAP and if I try to create the invoice manually in SAP using the GUI, the invoice gets created without any issue.
    I have tried searching the forum but could not find any post on this topic.
    Therefore, requesting the masters to please help me out on this.
    Best Regards
    Sutirtha Roy

    Hi Gowthami,
    how have you solved your problem, because I am facing the similiar issue and trying desperately to post the following combination with BAPI_ACC_POST_DOCUMENT:
    001 40       490100     Aufw. aus Marge PP              R2                 15,92
    002 31       10000003   Kreditor                                R2                 15,92-
    003 50       175060     Abzugsverfahren USt            R2                  3,18-
    004 40       154060     Abzugsverfahren Vst             R2                  3,18
    THANX!
    Regards
    Marko

  • Deafult tax code and tax jurisdiction per vendor

    Hi,
       We are using tax jurisdiction in Process,  now while creating Po every time according to vendor we have to enter the tax jjurisdiction and tax code ,  i s there any mwthod  with which we can set default tax code and tax juridiction code as per vendor  means we want to maitain as per vendor code, so that  for eah item i n that PO , tax code and jurisdiction code will come automatically.
    I have also check by making the tax jurisdiction code mandatory in Vendor master , in vendor master i have added tax jurisdiction for the vendor  but while creating PO, system is not selecting the tax jurisdiction automatically.
       regards,
        zafar
    Edited by: zafar_karnalkar on Jun 4, 2010 6:18 AM

    Hello,
    Tax Jurisdiction code will be determined from the plant. Please check your Plant/Site Master. SAP provided a BADI  ME_TAX_FROM_ADDRESS also to redetermine Tax Jurisdiction code based on custom logic.
    For Tax codes, you have to maintain condition records for condition type NAVS using MEK1. There are many standard access sequences available to maintain this. You may also build custom one if needed. 
    Thanks,
    Venu

  • Tax code assignment to condition types

    Hi,
    We have created one tax code for service tax assigned to one service condition type (JSER).
    But there are another condition types for Ecess & H cess for service tax.
    So tell me how to assign tha same tax code for another two Ecess & H ecess Condition types.
    We are using TAXINN procedure.
    Thanks in advance.
    Regards
    Gitesh

    Hi
    Check whether Cess & Scess is included in the Tax pricing procedure, if no then create a new condition type for both and assign in the Tax pricing procedure.
    If yes create new tax code and assign the account key as per Tax pricing procedure
    create condition record for new tax code(FV11)
    Test the tax code
    Regards
    Prasanna

  • Tax Code and amount is not showing in one AR invoice print

    Hi Folks,
    When I print AR invoice # 444 the VAT amount appears on the invoice. however when I print AR invoice 555 the VAT amount does not appear on the invoice.
    What determines whether or not the tax code and amount will appear on the invoice? Is there something in the invoice template that determines this?
    Could any expert help me in this, please? BTW, we are in 11.5.10.2 ver.
    Thanks in advance.

    Hi,
    Check whether the recipient type CO or OT is updated in With_item table for the line items that are missing in J1INCHLN.
    If Recipient type is not maintained in vendor master, at the time of posting the entry, then it does not get picked up in J1INCHLN. Even if you maintain in Vendor master later on, the With_item table does not get updated. This is one of the reasons why the line items does not get picked up in J1INCHLN. Check this, as you are confirming that Business Place, Section code etc.. are all present in line items and also that it is appearing correctly in With_item table.
    Regards,
    SAPFICO

  • AP - Supplier Sites Invoice Tab - Diff Btwn Tax code and Line Level

    Hi All,
    In paybles options setup, the Invoice Tax calculation is set to LINE Level and Allow Tax Calculation Override check box is checked.
    While Defining the supplier, in the Invoice Tab of Supplier Sites, I changed it from LINE Level to Tax Code and unchecked the Allow Tax Calculation Override and Distribution Amounts Include Tax check box is Checked.
    How will this change Impact on while creating the Invoices. What will be the Diff when we change the Tax Calculation from LINE Level to TAX CODE.
    Help Appreciated.
    Thanks

    user449960,
    Your scenario is a functional issue, follow Sumit's advise. If you feel there is something related to OAF, put your thoughts here.
    --Shiv                                                                                                                                                                                                                                                                                                                       

  • Can we maintain diff tax codes for one tax condition type in creating CRs

    Hi Gurus,
    Can we maintain diff tax codes for one tax condition type during maintaining of Condition Records. (Taxes)
    For example in VK11 screen for different combination of tax classification for customer and tax classification for material and
    tax codes like P0, P1, P2 etc. If so which tax code will be picked during creation of sales order? Pls help me........
    Regards.......Divakaran

    Hi Karan,
    Yes we can.
    For example you have three tax code
    P0 -- 0% (Fully exempt)
    P1-- 5% (Half tax)
    P2 -- 10% (Full tax)
    Now when you create the condition record then you have to create the three condition record for one condition type
    MWST
    Country -- tax classification of customer -- tax classification of material -- Tax % -- Tax code
    IN  -
    >  0 (Tax exempt) -
    > 1 (Full tax) -
    > 0 -
    >  P0
    IN  -
    > 1 (half Tax ) -
    >1  (Full tax) -
    > 5% -
    >  P1
    IN  -
    > 2 (Full Tax ) -
    > 1 (Full tax) -
    > 10% -
    >  P2
    Hope it helps,
    Regards,
    MT
    Edited by: M T on Mar 23, 2010 4:19 PM
    Edited by: M T on Mar 23, 2010 7:27 PM

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

  • Tax Code and Description

    Hello All,
    We are making a customized report based on vendor invoices.
    1) Need to know tables or logic where we can find/pull out tax codes and its description.
    2) When invoice is posted value goes to GR IR account, from which table i can get the GR IR value.
    Regards
    Himanshu Nijhawan

    Hi Himanshu,
    1) Need to know tables or logic where we can find/pull out tax codes and its description.
    You can find the Tax code in RSEG Table for the Vendor Invoice. Specify the Document No & Year, you will get the tax code in the field RSEG - MWSKZ
    Tax code Description can be obtained in the Table T007S. Specify Tax Code and Language as well to get the description
    2) When invoice is posted value goes to GR IR account, from which table i can get the GR IR value.
    For this, first you should get the Account document corresponding to the Invoice. So, Query table BKPF with the following fields to get the accounting document
    Company Code
    Year
    Object Key (AWKEY) = Your Invoice No + Year (Concatenated Value for eg., 51000000002012
    you will get the Accounting Document No in the field BKPF-BELNR
    WIth the Accoutning Document & Year, query the table BSEG to get the GR/IR accounting posting. Generally the GR/IR is posted with Posting Key 86 (BSEG-BSCHL)
    Regards,
    Rama

  • Reg Tax Codes and Plants

    Hi Gurus,
    1) I am creating a PO. It doesnt have a Material as it is a text req converted to PO. I am having 10 plants which uses various Tax codes which will auto populate according to the plants. Now my requirement is i want to populate a tax code (XX) for 8 plants i am using and (YY) for 9th Plant and (ZZ) for 10th Plant.
    I dont have a material number. But i am having a Vendor Number, a Plant. We are not creating the PO's manually. This will be done by a Batchjob, so manually entering is also not possible.
    2) Also i want to overwrite the Tax code which is populating automatically with the Tax code from PIR. Please advice where we will be maintaining the Config for Tax Code and Plant/Company code.
    Please advice on this issue and how to proceed further.Thanks for your help in advance.
    Thanks,
    Sakkithyan

    Hi,
    If you want to default the tax code in the purchase order then create info record using transaction ME11..
    If you want to default tax code in MIRO then do it using transaction OMR2..
    Regards,
    Chintan Joshi

Maybe you are looking for