Withholding tax details screen

Hi ! I've created a report to display vendor withholding tax details. Now, i want to open the Withholding Tax details screen as soon as the user clicks on the vendor code in the report.
Following code used to call the XK02 screen:-
FORM USER_COMMAND USING LV_UCOMM LIKE SY-UCOMM SELFIELD TYPE SLIS_SELFIELD.
  CASE LV_UCOMM.
    WHEN '&IC1'.
      READ TABLE IT_VENDOR INDEX SELFIELD-TABINDEX.
      CASE SELFIELD-FIELDNAME.
        WHEN 'LIFNR'.
          SET PARAMETER ID 'LIF' FIELD IT_VENDOR-LIFNR.
          SET PARAMETER ID 'BUK' FIELD IT_VENDOR-BUKRS.
          CALL TRANSACTION 'XK02' AND SKIP FIRST SCREEN.
      ENDCASE.
  ENDCASE.
ENDFORM.                    "USER_COMMAND
Please help.

Hi Dear
Check similar kind of reuirement i have done for FD33
CASE P_COMM.
Double Click Event
    WHEN '&IC1'.
IF LS_SELFIELD-TABINDEX > 0 AND LS_SELFIELD-SUMINDEX LE 0.
        READ TABLE PAYER_KNKK_1 INTO LS_PAYER INDEX LS_SELFIELD-TABINDEX.
        PERFORM BDC_DYNPRO      USING 'SAPMF02C' '0100'.
        PERFORM BDC_FIELD       USING 'BDC_CURSOR'
                                      'RF02L-D0210'.
        PERFORM BDC_FIELD       USING 'BDC_OKCODE'
                                      '/00'.
        PERFORM BDC_FIELD       USING 'RF02L-KUNNR'
                                      LS_PAYER-KUNNR.
        PERFORM BDC_FIELD       USING 'RF02L-KKBER'
                                      LS_PAYER-KKBER.
        PERFORM BDC_FIELD       USING 'RF02L-D0210'
                                      'X'.
        PERFORM BDC_DYNPRO      USING 'SAPMF02C' '0210'.
        PERFORM BDC_FIELD       USING 'BDC_OKCODE'
                                      '=UPDA'.
opt-dismode = 'E'.
opt-defsize = 'X'.
CALL TRANSACTION 'FD33' USING  I_BDCTAB OPTIONS FROM opt.
      ENDIF.
  ENDCASE.
FORM BDC_DYNPRO USING PROGRAM DYNPRO.
            I_BDCTAB-PROGRAM  = PROGRAM.
            I_BDCTAB-DYNPRO   = DYNPRO.
            I_BDCTAB-DYNBEGIN = 'X'.
            APPEND I_BDCTAB.
            CLEAR I_BDCTAB.
  endform.
    FORM BDC_FIELD USING FNAM FVAL.
    I_BDCTAB-FNAM = FNAM.
    I_BDCTAB-FVAL = FVAL.
    APPEND I_BDCTAB.
    CLEAR I_BDCTAB.
    ENDFORM.                    "bdc_field
May be helpful.

Similar Messages

  • Withholding tax details - mass change

    Hi All,
    We have the requirement of changing the customer/vendor master withholding tax details (tables LFBW / KNBW).
    we have tried using XD99. however XD99 does not update table KNBW. For vendors, we tried XK99 which can be used for changing fields of table LFBW. However it has following limitations,
    1. The new value can only be one value for all the records. We cannot update different values for different records.
    2. data can only be changed. It cannot be created or deleted.
    Can anyone let me know if there is any other method other than above.
    Thanks,
    Aman

    Hi,
    Even In LSMW you will have to use BDC method where you will use transaction FK02 while creating recording or BDC.
    Reference to the LSMW BDC method go to below link
    http://www.financialsexpertonline.com/downloads/0703.doc
    Regards,
    Chintan Joshi.

  • Mm related  withhold tax details

    hi all,
    MM related with hold tax details
    Regards,
    Parameshwar
    Please read Rules of Engagement, and Asking Good Questions in the Forums to get Good Answers*
    Please search the forums and read the appropriate documentation before posting.
    *Jürgen L
    MM forum Moderator
    Edited by: Jürgen L. on Mar 8, 2012 2:14 PM

    Hi Vishu,
    Check these:
    https://www.sdn.sap.com/sdn/collaboration.sdn?contenttype=url&content=https%3A//forums.sdn.sap.com/thread.jspa%3FforumID%3D132%26threadID%3D54617%26messageID%3D567413%23567413
    https://www.sdn.sap.com/sdn/collaboration.sdn?contenttype=url&content=https%3A//forums.sdn.sap.com/thread.jspa%3FforumID%3D133%26threadID%3D44833%26messageID%3D449907%23449907
    https://www.sdn.sap.com/sdn/collaboration.sdn?contenttype=url&content=https%3A//forums.sdn.sap.com/thread.jspa%3FforumID%3D133%26threadID%3D21462%26messageID%3D182125%23182125
    Bye
    Dinesh

  • Withholding Tax details

    Hi All,
    I am an ABAPper and am new to the FI module; so need guidance from you experts.
    We are printing payment document and need the Gross Amount, Withholding Tax amount and the Net Amount on the payment document. This is required as per the country's specifications.
    I checked in the document (FB03) for the withholding tax, and I see examples as below: Here I see that the Withholding Tax amount is calculated based on the Withholding Tax base. Please let me know which is the Gross Amount and the Net Amount paid? There might be other taxes also applied, but we are only displaying the Withholding Tax.
    Please guide.

    Hi Yusuf
    Withhoding tax is depends on conuntry basis..
    TDS on Net Amount 
    Gross Amount – 100
    Service Tax      - 12.36
    Net Amount  -  112.36
    TDS Deduction -  112.36 * 10 % = 11.24 ( TDS deduction on Net Amount )
    TDS on Gross Amount
    Gross Amount – 100
    Service Tax      - 12.36
    Net Amount  -  112.36
    TDS Deduction -  100 * 10 % = 10.00 ( TDS deduction on Gross Amount )
    Regards
    Sasi.S

  • Create withholding tax data subsequently for reconciled and open items in c

    Hi All,
    Mine is a US co code and I have a  vendor for which invoice and payment documents are posted. After posting the invoice i found that the vendor is subjected to classic withholding tax which i did not calculate when posting invoice, making payments.
    Now i have changed the vendor master data with relevant withholding tax details.
    I know the program RFWT0020 allows us to create withholding tax data subsequently for reconciled and open items in cases where vendors or customers become liable for withholding tax with a tax rate of 0 %.
    It is not working out for me.
    Can any body help me on this.
    Thanks in advance.

    Dear all,
    by se38 --> report documentation, You can read carefully the following:
    The auxiliary program makes it possible to convert both classic and extended withholding tax data. However, with classic withholding tax, ONLY VENDOR data can be converted.
    In addition, the program enables the withholding tax code to be changed for reconciled and open items with existing withholding tax data. For this, the tax rate of the existing withholding tax data as well as the tax rate of the new withholding tax code must be 0%. The new withholding tax codes are taken from the customer or vendor master data. In the case of extended withholding tax, the withholding tax code is only changed if the related withholding tax categories are the same.  The withholding tax base amount is not changed by this procedure.
    Recreating or changing the withholding tax data requires that the program first be executed for INVOICES and then executed for PAYMENTS in a subsequent step.
    I hope this helps You.
    Mauri

  • Withholding tax for open items posted from FI-TV-COS

    When the open item is generated from FI-TV-COS it is missing the withholding tax detail opposed to the manual creation of invoice for the same vendor in FI.
    What is the workaround to have withholding tax detail for such open items coming from FI-TV-COS?

    Withholding tax is not supported by SAP here...

  • Withholding Tax Certificate (Spain)

    Hi,
    One of the requirements in the project I am working at the moment is to generate the Withholding Tax Certificate and I can find out the way of generating the print out. The country where the report needs to be generated is Spain. Could anyone give me a hand? since I cannot find a standard form for this.. Do I have to generate a new form copying from an existing one? Is the WH Tax Certificate generated from the tr. S_PL0_09000447 and then this calls the form generated for this report?
    Thanks and regards in advance.
    F.

    Hi
    Symptom
    Your company code is in Spain and you work with classic withholding tax.
    This note is designed to help during the changeover from classic to extended withholding tax for Spain.
    Other terms
    Withholding tax, QSSKZ, customer, vendor, withholding tax changeover, withholding tax migration, WTMG, WTMIGRATION, classic withholding tax, QST, extended withholding tax, Spain
    Reason and Prerequisites
    The changeover from classic to extended withholding tax must be performed using a conversion tool (Transaction WTMG).
    Solution
    Since Release 40B, the extended withholding tax function has been available in the standard system. By changing to the extended withholding tax, it makes using withholding tax on the debit side possible. In addition it is possible to post different withholding tax categories in a document at the same time. You can find more information on the extended withholding tax function in the SAP Library.
    It is only possible to change from classic withholding tax to extended withholding tax using a conversion tool.
    On no account should you activate the extended withholding tax in your system without using this tool if you have been using the classic withholding tax up to now.
    Information concerning the changeover and the changeover tool can be found in Note 337267.
    This note describes the creation of the withholding tax types and withholding tax codes and the use of the changeover tool for the country Spain.
    However this note does not replace the documentation concerning the withholding tax changeover in the SAP Library (or the Word file during the transport from the SAPServ according to Note 186989), it simply provides additional information for Spain!
    1. The following is a list of the withholding tax codes used in classic withholding tax. If the withholding tax codes you are using are called differently, you must take that into account later during the assignment of the withholding tax codes of classic withholding tax to the type/code combinations of extended withholding tax.
                  Probably the specified withholding tax codes do not agree with those which have you used in classic withholding tax. Since the specified codes are the official ones, first change your Customizing for classic withholding tax such that the specified withholding tax codes are defined for the different withholding tax codes.
    2. Define the official withholding tax keys for the country ES in extended withholding tax under Financial Accounting Global Settings --> Withholding Tax --> Extended Withholding Tax --> Basic Settings --> Define Official Withholding Tax Codes:
    3. Create the following withholding tax types of extended withholding tax for the country ES:
    To create the withholding tax types, select Financial Accounting Global Settings --> Withholding Tax --> Extended Withholding Tax --> Calculation --> Withholding Tax Type --> Define Withholding Tax Type for Payment Posting in the Implementation Guide for Financial Accounting.
    Select 'Net amount' in the "Calculation/Base amount" screen area in each case
    Select 'W/tax comm. round' in the "Calculation/Rounding rule" screen area in each case
    Select 'C/disc pre W/tx' in the "Calculation/Cash discount" screen area in each case
    Set the 'Post w/tax amount' indicator in the "Calculation" screen area in each case
    Select 'No accumulation' in the "Accumulation type" screen area in each case
    Set the 'W/tax base manual', 'Manual w/tax amnt' and 'No cert. numbering' indicators in the "Control data" screen area in each case
    Select 'W/tax code level' in the "Define minimum/maximum amounts", "Base amount" screen area in each case
    Select 'W/tax code level' in the "Define minimum/maximum amounts", "Withholding tax amount" screen area in each case
    Select 'No centr. invoice' in the "Central invoice" screen area in each case
    Select 'Minimum Check at Item Level' in the "Minimum Check" screen area or 'No min. base check at item level' in the "Minimum base check" screen area in each case
    All the other fields in the withholding tax type must be left unselected.
    4. Create the withholding tax codes belonging to the withholding tax types:
    To create the withholding tax codes, select Financial Accounting Global Settings --> Withholding Tax --> Extended Withholding Tax --> Calculation --> Withholding Tax Codes --> Define Withholding Tax Codes in the Implementation Guide for Financial Accounting.
    Copy the names from the first list (under point 1).
    Enter the official withholding tax key (Off. W/Tax Key) in the corresponding field as specified above.
    Select the same percentage as defined in the corresponding withholding tax code of classic withholding tax under 'Calculation of the withholding tax base amount' for the percentage subject to tax in the "Base amount" screen area. (the percentage should agree with the above-mentioned percentage subject to tax (%sub.to tax)).
    Select the same rate as defined in the corresponding withholding tax code of classic withholding tax under 'Calculation of withholding tax' for the withholding tax rate  in the "Calculation" screen area (The rate should agree with the above-mentioned withholding tax rate (WT rate)).
    Set value '1' for the Post.indic. in the "Postings" screen area
    Select the corresponding settings as in the corresponding withholding tax code of classic withholding tax in the "Reporting information" screen area (The settings should agree with the above-mentioned specifications for region and income type (Inc.type)).
    All the other fields in the withholding tax code must remain empty.
    Create a withholding tax conversion run:
    Call Transaction WTMG
    Choose 'Create'
    Assign a name to the conversion run
    Select change 'Choose Company Codes' and enter the company code to be converted and country 'ES'
    Select change 'Type/Code Assignment' and assign the respective new withholding tax types and withholding tax codes of extended withholding tax to the withholding tax codes of classic withholding tax defined for country 'ES':
      Execute the 'Analysis'
    Select the option 'Several withholding tax types possible per vendor' under 'Master data settings'
    Carry out the conversion steps  (to start with in the test run).
    After the withholding tax changeover has occurred, create the following recipient codes for the country ES to complete Customizing:
      To create the recipient code, select Financial Accounting Global Settings --> Withholding Tax --> Extended Withholding Tax --> Reporting --> Define Recipient Code for Extended Withholding Tax in the Implementation Guide for Financial Accounting.

  • Withholding tax issue while doing Down payment Clearing - Help needed

    Hi,
    1. I have posted vendor downpayment  for 5000--> TDS was deducted here
    Bank Credit = 4500
    Vendor Debit =5000
    TDS Credit =500
    2. I have posted vendor invoice for 5000 --> TDS was calculated
    Material Debit = 5000
    Vendor Credit =4500
    TDS Credit =500
    3. Now i have transfer the down payment amount in F-54 (As per the above entry how much do i need to trasfer in this F-54 transaction???)
    Note: How much amount do i need to transfer as per the above scenario in F-54? Kindly advise me
    4. For testing i have transferred 5000 down payment for the invoice 5000. But while doing F-44,system is not allowing me with differance amount. In F-44,system is not showing any withholding tax details. Kindly help me on this..
    Thanks
    KB

    Dear
    TDS should have been deducted either at the time of Invoice posting (MIRO) or at the time of Advance Payment (F-48).  So you need to remove TDS code while doing  invoice or at the time of making advance payment in F-48.  If this is ensured there will not be any problem in clearing.
    When inovoice is posted debit will be to GR/IR Account and not to Material Account. 
    Regards

  • Vendor withholding tax

    Hello,
    I am trying to active the withholding tax accounting in the accounts payable master records.
    I am able to display the withholding tax accounting screen in FK01 transaction but when I create an invoice with FB60 transaction I am not able to display the vendor withholding tax that I had introduced before in the account payable master records.
    This is very important because I want to get the amount of this withholding tax before paying the invoice.
    I think that it is a customizing problem but I am not able to find it.
    Thank you very much
    Best regards

    Ok,
    I have done all the steps you have explained to me but it does not work.
    I can display in FB60 transaction the withholding tax screen, so I have activated and assigned the WHT to the company correctly, I suppose.
    The problem is that It appears the chart where must have been the code I had introduced in the master records corresponding field, but the chart is empty without any code and it is not possible to introduce any code (the chart is in display mode).
    The when I simulate the invoice it does not hold the corresponding amount because it does not have the withholding type.
    Thank you very much
    Best regards

  • Automatic withholding tax calulation in MIRO

    Hi Expert,
    Please help me .............
    How can I do configure the system to calculate withholding tax on MIRO?
    At present I entered withholding tax details in vendor master data
    but when I create MIRO the system don't calculate withholding tax .
    Thanks,

    Hi
    After maintaining withholding tax settings and in vendor master, you can decide when this tax is to be excluded from total amount (at time of MIRO or payment run). You can set this in financial accounting - withholding tax - extended withholding tax - calculation - withholding tax type - define tax types for invoice posting. If you do not maintain for IV and maintain for payment then you cannot withheld the amount. Check with your FI consultant.
    If everything is set right then choose tax type in IV under withholding tax data (you can change data here).
    Thanks

  • Withholding Tax on "On Account Payments"

    Hi Experts,
    I've an issue in the following scenario;
    In F-58 I select the indicator for "on account payments" and post the payment after entering the other details.  The payment is posted but without Withholding tax deduction.  In vendor master data withholding tax details are present but the tax is not deducted unlike normal payment of invoices.
    I know SAP transfers WHT code from vendor master to invoice and then it is deducted in payments, but the client wants WHT deductions on "On account Payments".
    I would be grateful if someone may tell me any a way to deduct WHT without ABAP modification  in this scenario.
    Regards,

    Many thanks to all you for the replies, and sorry for a little late response.
    Dear Marssel, I've checked all the configuration settings of Extended WHT.  I do have the documentation as well.  All the processes of WHT are working perfectly (WHT deductions on payments, Advance payments, exemptions, reporting, certificates, challans etc.) except for "On Account Payment" in F-58.
    Dear  Jigar,  I've checked the field status of all the relavent GL accounts and these are fine.
    Dear  Sanil, The WHT Type is off course assigned to the Company Code.
    I would appreciate if you guy's could check the following procedure in your system and give me your feed back, if WHT is deducted or not?
    In F-58 switch on the "on account payment indicator" and post the document.
    Thanks for the support.

  • Extending Withholding Tax & MIRO

    Hi gurus: I wanted to ask you guys whether the Extending withholding tax configuration affects MIRO. At present we dont have tax configured on our PO's and hence does not affect MIRO. We are only using MIRO in the US and not across the world.
    In another country I have configured Extending W/H Tax. When we do roll this out to that country, will I have to watch out for something that affects MIRO and Extending W/H Tax?
    Please advise
    thanks
    Brian

    Hi Brian,
    MIRO transaction supports Extended Withholding Tax. This extended withholding tax details are entered in Vendor master data , no where we will enter the data in P.O.
    If you use MIRO then Classic withholding tax doen't support.
    Hope this clarifies. If helpful please assign points as a way of thanks.
    Thanks & Regards
    D.K.Lakshmi Narayana

  • Withholding tax screen

    hi gurus,
    At the time of vendor in production server, iam not getting withholding tax screen for company code 530.
    Regards,
    kiran

    Hello Kiran,
    Once check whether you have activated WHT or not?
    Please check vendor account group for WHT
    spro-ar/ap-vendor accounts-master data-define account grops
    select particular vendor group and double click>company code data>find WHT. It may be suppressed Now you have to take optional entry and save it.
    try this if useful pl assign points
    venkat

  • Withholding Tax all Condtion table not appearing in Rebate Credit memo

    Hi
    I am finding issue in rebate credit memo.
    Issue: In Acces sequence I have table 397 and extended 397 with additional fields.
    In normel credit memo I am able to find all these table in sales order Pricing Analysis tab.
    But in rebate credit memo, I am not able to find all table. Credit memo is showing 397 table but not showing ztable.
    Please check below screen shot for details
    1. 397 and 988 are identical and its appearing in rebate credit memo.
    I created 988 just to verify if any thing wrong in ztable generation or any thing missing to map.
    987 is extended table with addtional field sales doc. Type, Item category and its not appearing in Rebate credit memo.
    2. Rebate credit memo showing 988 and 397 table
    3. Normel credit memo showing all three table
    Question : How to get all three table in Rebate Credit memo?
    If 988 is appearing than why 987 is not populating.
    Both are Ztable and created together.
    I tried many combination but extended ztable not coming in rebate credit memo
    Regards
    Neeraj

    Hi JP,
    Thanks
    Routine 923 created as per SAP note 178824. And I am finding this issue only for rebate credit memo request.
    This condtion type (withholding tax ) is not part of rebate condtion. It is part of standard pricing procedure same like MWST.
    In Normel credit Memo (CR) all access assigned to this access sequnce is visible in sales order pricing analysis.
    But rebate credit memo request (B3) not showing all access (as in above screen shot). It shows only 2 access out of 3 access.
    One more addition
    If I am maintaining condtion record for visible access in rebate Credt memo request i.e. country / Tax relevant classifcation.
    SAP disble it in rebate credit memo request order.
    But normel Tax (MWST) is appearing in rebate credim memo request.
    I am not sure if this is due to standard sap.
    For Thailand we require withholding tax for Rebate credit memo.
    Please advice if any one can give some input on this.
    Regads
    Neeraj

  • Where to customize the company's withholding tax ID in SAP

    Hello,
    I would like to get the 1099 report for US tax withholding to be displayed with the company tax ID in the header.
    When executing transaction for Generic tax withholding reporting, the system can display the company tax ID in the header (it is missing today) and the only way I have found to enter this information is in the extended withholding tax menu (Withholding tax > Extended withholding tax > Company code > Assign withholding tax types to company codes) which I do not want to use, as I am not using any withholding tax types.
    Does anyone know if the information can be customized somewhere else?
    Best regards,
    Ronan

    Hi,
    Go to OBY6, select your company code.
    On next screen, go to "Additional Details" button
    and there you can enter the withholding tax ID in the field "TDS No."
    Regards<
    SDNer

Maybe you are looking for

  • Dbms_job submit status

    Hi, I need to disable/hide the submit button after i submit the job using dbms_job submit process. Also after after completion needs to enable the button. Is there any background process i can run which enable or disable the button? Thanks, K

  • Text-only Pop-ups with linked Word docs in RH8 and links in general

    Procedures have been written in Word with several words to have pop-up definitions.  The Word-styles have been set up in my RH8 project.  I plan on linking the Word docs instead of importing them. What are the impacts to the pop-ups and links when th

  • Im trying to make my logo bigger for my website but it just keeps coming out small whatever i do. He

    I just learnt to use Adobe Illustrator , the basics anyway. I am able to manipulate the size of the logo to almost scale in Illustrator. However, when I save the logo in JPEG/PNG for the web its always coming out smaller than i would like it to and i

  • Laserjet 2200d used to work fine; now red light on and can't find problem

    I have a Laserjet 2200d.  It worked fine for years.  Suddenly, one day it just stopped working.  The red emergency light is on.  I can't find any problem.  I've tried the usual, like paper jam and shaking cartridge.  I recently found a user forum tha

  • Error message on Merge to HDR

    Hi - Whenever I use the Merge to HDR function (CS4, using XP, SP3) I get a strange error message at the end of the processing portion (just before the completed 32-bit image displays).  The error says something to the effect that it's possible that t