Witholding information...

Witholding information not showing liability of TCS. But, actual liability is there.
t code: J1INMIS
so, how to resolve it in system???
I want information/ suggestions for standard and Z development both....
waiting.....
Regards,
Sachin

Hi,
What i feel is that somebody has changed the vendor master with holding tax keys.
What you can do is the track the changes made to Vendor master related to tax(master changes). Put it back the old settings. Clear the bills
then again change the vendor master.
Otherwise you have to reverse the documents
First one is better
Assign points if useful
Sunoj
Edited by: Sunoj Joseph on Apr 29, 2008 11:44 AM

Similar Messages

  • Outsource payroll. Split of master data among 2 system

    We run SAP for our HR master data and outsource our payroll system to ADP.
    We aim to input data in SAP opposite to input it in the ADP system. But we want to do that only if there is not a risk that the infotype to store the data in SAP might eventually need a Legal Changes update (to update logic or check tables) that would force us to apply the most up to date Support Package (or CLC...) to bring these legal changes into our system.
    In this context we want to asses what is the risk/probability that the use of the following infotypes could need at some point the "timely" application of legal changes for them to work (notice that infotype just need to be able to store the data; further processing of the data is to be done in ADP) Please provide an answer for each of the groups of infotypes as some of them can be moved to ADP while others stay in SAP:
    1) Infotype 207 and 208: Residence and Work tax area
    2) Infotype 210: W-4 witholding information
    3) Infotype 234: Withholding Overrides
    4) Infotype 161: IRS Limits
    Thanks

    Hi Sukhbold Altanbat,
    Though the operations are doing in multipule location but data will be saved in single Central data base.
    this central data base is placed in a secured location and will be tested properly before placing i.e. it will not impacted with calamities like cyclone... etc.
    Transaction data is done only at front end but data will entered in the frontend will be updated in back end data base.
    Note:  we may have 2 servers data bases which will placed in different loaction this will be used if once gowes down,other will start working with out any imact.
    With respect to Sync..  2 server data bases will be automatically where ever is some change in db1.
    Hope this helps you, kindly let us know if any further details required.
    Best Regards,
    Maruthi

  • Has anyone found the way to fix Mavericks from turning their MBP into a snail?

    I have an early 2011 MBP.  2.0ghz with 4gb of RAM.  I have plenty of space on my HDD(140GB) which is not "failing".  Just like about 90% of other users, my mac has slowed way way down since "upgrading" to Mavericks.  Easily half the speed it was since the upgrade.  Oh yeah, I upgraded over a week ago.  So it isn't the "give it 72 hours" line of BS.
    Any real answers?  Will Apple help anyone with this?

    Thanks for the info.  RAM on the way.  Just as a matter of opinion.  Why would Apple nearly force this operating system on me by popping it up on my updates list every other day?  After I finally gave in,(with great concern that it would do more harm than good, because frankly, my computer was running great already)  I might of seen a spinning balloon once a week, maybe for a second or two, and that was with a ton of things working.  Including Premiere Pro, Firefox, and maybe another adobe program open.  Switch to Mavericks, and I can't even open Firefox without havng to wait for atleast 5 seconds of spinning balloon. 
    Then when I looked up to see why I was having problems, I saw tons of people with the same exact problem.
    And this is months and months of the same exact complaints with absolutely no answers and no changes.  Kind of like an automobile company witholding information about defects while its customers die from them.
    Let me tell you what I think is actually happening.  The guy who loved the company the most, and wanted to provide a quality product, first and foremost, died.  I sadly predict we are watching Apple downshift its way into Microsoft Mediocrity.

  • Cannot find symbol: trying to index a method output

    The problem appears at the end of the code
    import java.util.*;
    public class Dreieck
      //Die Seiten des Dreiecks
      //Sides of triangle
       Object[] n= new Object[3];
       Object[] m= new Object[3];
       Object[] o= new Object[3];
      //Jede Seite erhält enthält 2 Eckpuckte und das anliegende Dreieck
      // Each side contains 2 corner ponts and the adjacent triangle
        Dreieck ( Punkt a, Punkt b, Punkt c, Dreieck e, Dreieck f, Dreieck g) {
        n[1]=a; n[2]=b; n[3]=e;
        m[1]=b; m[2]=c; m[3]=f;
        o[1]=c; o[2]=a; o[3]=g;
         int[] getside(Dreieck asker){
          if (n[3]== asker)
           return ((Punkt) m[2]).getposition();
         else if (m[3]== asker)
            return ((Punkt) o[2]).getposition();
         else if (o[3]== asker)
           return  ((Punkt) n[2]).getposition();
         // nur zum compilieren hinzugefügt
         else
          return ((Punkt) n[1]).getposition();
        int skaprod(int[] vec, int[] tor){
          return ((vec[1] * tor[1]) + (vec[2] * tor[2])) * Math.abs((vec[1] * tor[1]) + (vec[2] * tor[2])) /(((vec[1]*vec[1]) + (vec[2]*vec[2])) *((tor[1]*tor[1])+(tor[2]*tor[2])));
        int revskaprod(int[] vec, int[] tor){
          return ((vec[1] * (-tor[1])) + (vec[2] * (-tor[2]))) * Math.abs((vec[1] * (-tor[1])) + (vec[2] * (-tor[2]))) /(((vec[1]*vec[1]) + (vec[2]*vec[2])) *(((-tor[1])*(-tor[1]))+((-tor[2])*(-tor[2]))));
        void evertCheck(){
          int[] eins = ((Punkt) n[1]).getposition();
          int[] zwei = ((Punkt) n[2]).getposition();
          int[] drei = ((Punkt)  m[2]).getposition();
          int[] seiteA= {eins[1] -zwei[1],eins[2] -zwei[2]};
          int[] seiteB= {zwei[1] -drei[1],zwei[2] -drei[2]};
          int[] seiteC= {drei[1] -eins[1],drei[2]-eins[2]};
          int[] nachA1= {(e.asker(this))[1] -zwei[1],(e.asker(this))[2] -zwei[2]};
          //int[] NachB1=
          //int[] NachC1=
          //int[] NachA2=
          //int[] NachB2=
          //int[] NachC2=
    } Dreieck(triangle) is an incomplete class refering to the class Punkt(point):
    import java.util.*;
    public class Punkt
      int[] position = new int [2];
      LinkedList nachbarn = new LinkedList();
      Punkt(int a, int b){
      position[1]=a; position[2]=b; }
      int[] getposition() { return position; }
      void changeposition(int c,int d) {
       position[1]+=c; position[2]+=d; }
        }Anm: nachbarn = neighbours
    I am trying to calculate the vectors, to calculate the scalar products, to get the cos of the angle, to check for certain conditions occuring XD
    This class is part of an idea for a certain 2D physics system, basically instead of using collision checks or forcefields I connect the points with a network of lines
    and only let the points interact with their direct neighbours while also allowing "signals"to travel trough connections.
    Why do I do this? So that the O(n)= n (the needed processing power is only linearly dependant on number of points)
    Whats the challenge? Well its not easy to find conditions for reconnections so that points that are connected are relaitvely near to each other.
    Why such imprecision? Game phsysics does not always have to be precise besides when I operate with a large number of points things smoothen up statistically.
    Game physics? I have some interest in artificial life this system is part of me trying to write an artificial life simulation.
    Of course my current version is pretty clumsy but i hope it can be streamlined for processing power.

    I guess you interpreted "post" as this topic, when I meant the reply I gave you, then it would make sense you assume I have withold information.
    Cause there really is no specific information for me to provide, it was a simple forward problem of a cannot find symbol error.
    (I know that help can only be provided with enough information, thats why I gave you the whole code stated my intentions in the title as well as additional text etc., so you say thats the wrong "kind" of information?)
    As for your argument against compiling I must admit I do not understand it cause its a copy, paste and click action to compile the code.
    Ah but well thats not so important did not want to ruin your mood actually found the solution :)
    int[] nachA1= {(((Dreieck) n[3]).getside(this))[1] -zwei[1], (((Dreieck) n[3]).getside(this))[2]-zwei[2]};Edited by: casualPhilosoph on Jan 23, 2009 2:28 PM

  • Frustrated with K1_A301_03_03_110927_SG

    I encountered frequent force close with apps... random crashing e.g. pricess punt THD and clouds and sheep can't even run. How do I get an update to 04_04? or ice cream sandwich? 
    Thanks very much.

    There are no update details. Lenovo k1 is plaqued with problems, the absence of any update logs and updates detals is a clever way of lenovo of witholding information of the problems that seems to persist even with the updates and in someway protect them from legal liabilities

  • Witholding Tax Information system (J1INMIS) Not updating (FICA)

    Hi Experts,
       We are using ECC 6.0 recently we upgrated with EHP 5. And the current system (FICO) is working fine with TDS calculations and Witholding Tax Information system (J1INMIS) gets updated perfectly.
    We are implimenting FICA (student Accounting). FICA has a provision to calculate the TDS so all TDS Calculations done in FICA.
    While we transfer the data from FICA to FICO all GL's gets update even TDS GL also getting update. But when I Check the Report Witholding Tax Information system (J1INMIS) the TDS calculated from FICA is note appearing in this report. But appearing in TDS GL's.
    I assume  FICO system will not have any Vendor information because In FICO all vendor balances will get update to only reconciliation key as vendor are in FICA system.
    Another problem is how I can take TDS Certificates for vendors If the Tax Information system doesn't update.
    Please suggest.....
    Kind Regards,
    Shivaji

    To get TDS certificate we use T code J1INMIS, Pls dont go to This T code: Follow this:
    1. J1INCHLN
    2. J1INBANK---Bank no, will be Check Issue A/C.
    3. J1INCERT----In this document date should be end of the month date exampl=31/03/2011
    After giving all the details in J1INCERT
    select - Ctrl S (Save the document_
    you will see the below screen (Variant) give variant name XXX Description (Check Printing)
    save, you will get 16A Form.

  • Withholding tax information

    Hello Friends,
    With respect to withholding tax Iu2019m facing difficulty to map the below user requirement.
    User want to incorporate the withholding tax (WHT) information at purchase order level, but in the purchase order we can't find any such provision to input withholding tax information.
    Standard system behavior is that if vendor is subject to WHT, WHT can be calculated at invoice verification level.
    We have to cater the below 2 scenarios, guys please provide your expert advice on this:
    1. WHT information is to be maintained at PO so that the person making VIV will not commit any error in selecting the tax code or will not make the invoice without inputting the relevant WHT information to avoid invoice being created without WHT on invoices subject to WHT.
    2. In a purchase order there are more then one line items some are subject to WHT and some are not, we want to capture the WHT on the items liable for WHT.
    We know that WHT is not calculated on item level it is calculated at header level on vendor.
    Thanks

    Hi Sapref,
    1. WHT information is to be maintained at PO so that the person making VIV will not commit any error in selecting the tax code or will not make the invoice without inputting the relevant WHT information to avoid invoice being created without WHT on invoices subject to WHT.
    Ans : What you want to ensure at the P.O. level is actually controlled at the Vendor master level and whichever P.O. you use.. if it is maintained in the vendor master, it will deduct TDS at the time of Invoice.. so there is no chance of committing any mistake.. if it is once maintained in vendor master data. Further there is no provision in SAP to maintain TDS Tax codes at the P.O. level
    2. In a purchase order there are more then one line items some are subject to WHT and some are not, we want to capture the WHT on the items liable for WHT.
    Ans : You are correct, that TDS is at the vendor level and not at the line item level. But Suppose you have an Invoice, which contains two line items, one on which TDS is to be calculated and the other on which TDS is not to be calculated, then at the header level in MIRO, you can enter the Witholding Tax Base amount and the TDS amount manually, and it will get calculated accurately.
    Regards,
    SAPFICO

  • How to recover withholding tax information code that was deleted ....

    Dear Sirs,
    one person of our client have deleted witholding tax code information in their 2007 financial documents. As result of this error they are not able to generate legal witholding tax report that should be delivered to nationatal state authority until 29th of February.
    There is any report/program that we can run in order to modify the documents (and introduce the withholding tax code) or to generate this witholding tax report?
    Many thanks for your collaboration.
    Ricardo Ferrão.

    Dear,
    W Tax Creation r Delete is related to Configuration mater. where this delection happend plz. tell me is it in master data r configuration) if is configuration you con't re creat those items. after delete the data also you can get the details in J1INMIS. please check.
    regards
    radha

  • RPUQSTC0 - Witholding tax update

    Hi all,
    I need to update Swiss witholding tax information for 2007 and I find out that I can do it with the files from Cantonal Tax Office and the report RPUQSTC0.
    I have the files but I can't find documentation regarding the report.
    Where can I find more information?
    Regards.

    Hi,
    The reason could be, end user may entered the TDS line items manually, instead of automatic update.
    I will tell u the situation clearly.
    When we try to post an invoice, system will pop up for TDS data, if we press ok, it will calculate automatically. If it was posted automatically, then the same information will be updated in WITH_ITEM table. You can get this information, whether it was entered manually or automatically by using t.code:FB03
    Enter the relevant document no, then click on With holding tax  Tab available in menu bar.
    If you can find the data in that box, it was updated automatically, if that box was blank, then it is sure that end user entered that TDS line items manually.
    If you need any further clarification call me on mobile. We had this issue long back.
    If it was entered manually, the only solution is to reversal.
    Otherwise they has to issue to manual certificates to the vendor.
    All the best
    Prasad
    9848682357

  • Withholding tax report clarification: Witholding tax base not excluding VAT

    HI
    In witholding tax settings we have settings to to take NET amount as base.
    But for the entries where VAT is manually given Withhloding tax base is not excluding VAT?we are having an entry where we are inputting VAT manually using FB60.entry would be
    DrStock
    DrVAT
    Cr Vendor.
    WHY IS THIS?
    Where as it is taking net amount as base correctly for the cases where VAT is automatically calculated
    How is automatic calculated VAT is related to witholding tax base amt?
    rgds

    Hi,
    This thread has been created some time ago and recieved no response. Can you please close if you feel this issue/query has been resolved in the meantime. If it has not then please provide additional information in relation to your query. By providing updates to your thread it moves you thread to the first page of thread and increases visibility and possiblity for the multiptude of experts in SDN Forums to offer their support.
    Therefore please update with more information or close thread.
    Thank you for your assistance.
    Regards,
    Brendan.
    (ERP FI/CO SDN/WIKI Moderator)
    http://wiki.sdn.sap.com/wiki/display/ERPFI/ERP+Financials

  • Witholding tax report show "no record were selected". tcode S_P00_97000134

    Hello everyone.
    i need some help.
    i found some document that have witholding tax in document such as 5105620781 year 2011.
    in transaction code S_P00_97000134 that use for print witholding tax report and witholding tax certificate.
    when i run this transaction code for print witholding tax certificate or witholing tax report.
    system show "no recored were selected"
    i attached excel file to show you what document that cannot print witholding tax, and what document that can print witholding tax.(there are 2 tab in excel )
    please clarify why some document cannot print witholding tax certificate.
    below link ,you can see my example. (it's excel file)
    http://www.mediafire.com/?rokkgg3vtn1aw81
    Edited by: dittaporn nanasilp on Mar 22, 2011 6:34 AM

    Dear all,
    first of all the report runs if You posted some documents with the WIthholding tax.
    When You run the report You will insert the Output group.
    Please be informed that the report will extract the documents on the base of the following customizing:
    IMG --> Financial Accounting --> Financial Accounting Global Settings --> Extended Withholding Tax -->Reporting -->Generic Withholding Tax Reporting --> Define Output Groups
    choose Your output group double click -->
    You can choose among:
    Cleared vendor invoices, Credit memos, open Down payments
    all vendor documents
    all customer documents
    and so on.....
    Please check which documents with the Withholding tax data You need to extract.
    save and run again the generic report.
    Now It should work fine.
    I hope this helps.
    Mauri

  • TDS - Witholding tax

    Hi all!
       We are having a vendor who serve both as subcontracting vendor and normal purchase vendor . We are maintaining same vendor code for it. If it is subcontracting vendor we have to maintain witholding tax(TDS) details in vendor master record. So that it will be overviewed during MIRO. But this is not required for normal purchase.But sometimes when we  do normal purchasing for it the same details is overviewed during MIRO which is not at all required.
    The problem v is due to maintaining same vendor code for both. If it is different vendor codes for it then there will no problem. But my client is asking to maintain same vendor code for it.
    Now how to do this....
    Thanks in advance,
    Raj.

    Hi Raj,
    Assign tax codes for non- taxable transactions:
    Path: SPRO  Financial Accounting  Financial accounting global settings  Tax on sales/purchases  posting  assign tax codes for non taxable
    (Transaction code: OBCL)
    Select position button
    Give your company code:
    Enter
    For company code: AML: Assign input tax code:
                                                    Output tax code:
    Save
    Now you can do process through TDS or wothout TDS system will ask before saving the data so that you can choose TDS or Not'
    May be this information is useful to you
    Regards
    Surya

  • Vendor Witholding Tax Error

    Dear All,
    While doing entry in FBCJ for business transaction type  vendor payment i am getting the following error.
    "Witholding TAX  information  missing from line item" Message No:7Q301.
    Also on F-47 i am getting the same error.
    I have maintained Withholding tax details in vendor master.
    Kindly guide me.
    Girija

    Hi Gurus,
    I am having the same issue.
    My client will give the advances to vendors and they will deduct in instalment basis.
    The problem is at the time of advance payment tds is deducted at 2% Now the currrent rate is 3%.
    I changed the tax code in vendor master and posted invoices, Whenever i am going to clear the invoice it is given error Withholding tax incosistancy.
    I execueted RFwt010 program  Now i am able to adjust the advance.
    But it is not allowing to reverse the TDS.
    Regards,
    Prasad.

  • WHT (Witholding Tax / TDS) at PO line item level

    Hi
    There is one new functionality in SAP where i can enter WHT (Witholding Tax / TDS) at PO line item level. This functionality is introduced by SAP.
    I searched PO line item for WHT code field in PO. But i didn't got this field. Please let me know how can i activate WHT field in PO line item level itself.
    We are on SAP EHP5.

    Dear Deepak,
    WHT is basically add in vendor when you are creating. Goto XK03 select he WHT view.
    for more information please check following URL
    http://sapdocs.info/sap/fico/sap-extended-withholding-tax-configuration/
    Regards,
    PK.

  • TDS Information

    Hi
    In my client company we have uploaded vendors masters through LSMW  at that time we did not give TDS information(TDS codes and Type) in the master record
    Till now we have not uploaded vendor balances from legacy to SAP
    Now my client are giving onlynvendor final balances (i.e after deduction of TDS in legacy system)
    Now please suggest on below points,
    1) before uploading vendor final balances we have to give TDS information (TDS codes and Type) in the vendor master record or not
    2) without vendors final balances upload in the SAP they are making payments in F-53 is it correct or not?
    3) while entering payments in F-53 they want to deduct TDS,  without vendor invoice upload they are making payment in F-53
        If i will give TDS information in the vendor master is there any effect while uploading vendor final balances
    Please suggest me
    Regards
    Srini

    Hi Srini,
    1. In the cut over activities, you first need to upload vendor master. There are two ways it can be uploaded.
         - 1) Upload complete Vendor master even with witholding tax data and then upload Vendor balances. In this case, while uploading vendor balances, you can create a "ZZ" posting key and in that posting key you need to suppress all fields related to witholding tax. This posting key will only be used at the time of cut over and will not be used later on
         - 2) Second approach would be upload vendor master without Witholding tax data, then upload vendor balances and then upload Vendor master witholding tax data
    2. Even if they are making payment without creating/clearing off liability, the entry would be Vendor -Dr. To bank A/c..cr.. The subsequent clearing of Vendor is to be done in T-Code F-44
    3. You can deduct TDS at the time of Payment also.. You just need to have correct TDS Tax type and code for Payment in vendor master, but you said that balances are net of TDS, so if the payment is related to old Invoices, there is no need to deduct TDS again.. it will amount to duplication. But if they are fresh payments as advances, then use F-48 for Down payment and TDS can be deducted
    You need to sequence all the activities in the system..
    1. Upload vendor Master with TDS
    2. Upload Vendor Legacy balances with ZZ posting Key
    3. Even if Payments are made in SAP, Clear off Vendor DR. and CR. after uplaoding Vendor Legacy balances
    4. If fresh payments are being made and TDS need to be deducted, then you need to update TDS info in the master (Note in this case, you can use ZZ posting key to upload vendor balances where you do not want to give effect of TDS)
    Hope this helps.
    Regards,
    Kavita

Maybe you are looking for

  • Installing adobe photoshop 12

    I was installing Adobe Photoshop Element 12 and then I can't find it.  Says it didn't download.  I tried to install  it again and it wont let me.

  • How can i recover my account if im locked in a paradox?

    Its sounds confusing but here goes. So i purchased a $15 itunes cards to buy apps and such, note i dont have a credit card attached to this account. I can not download or install anything, because i have not verified my account, and when i request fo

  • Third party tool link for EDI 810

    Hi,   What is the third party tool for mapping EDI 810 and link. Thanks avi

  • Metadata displayed for Organizer photos in Elements 6?

    In the past when I used to use Elements 3 software, when I clicked on my photo thumbnails in the Organizer the metadata for that photo was displayed. In my newer software, Elements 6, I don't see the metadata in the Organizer, only when I open the ph

  • Slide Views and Completion

    I cap 2, in quiz manager reporting, I select Report Complete/Incomplete and then I select Report slide views only (set at 100%). Is this theoretically causing the SCO to be reported as complete if all slides are viewed? Help doesn't say about the sli