Reading US PCL4 W2 tax results

I have to make changes to a program that reads US W2 tax results as stored in the PCL4 cluster.
For a given employee, the existing program chooses the results that it wants by examining the contents of the TXTF[] table and AMTF[] table.
Simple enough, but the AMTF[] table has a variety of value types in it, such as
AMTF-FIELD = T102
AMTF-FIELD = T102_01
where the corresponding amount for both these entries is the same.  Can anyone tell me what the meaning of "T102_01" is, as opposed to "T012"?
In another case, the TXTF field values are
TXTF-FIELD = T104_01
TXTF-FIELD = V001_01
where the corresponding texts are the same.
In some cases the existing program code looks at the TXTF values that start with T, and at other times the program looks at the V entries.  In making new changes to the program, I do not know whether my new logic should be looking at the T* values, or the V* values.  Can anybody tell me anything about these tables & entries, or tell me where I could find SAP documentation on this?
Thanks
Gord

Hello Gordon,
T102 and T102_01 may not be same value, you need to see it from the PDF form where it is used. Kindly review the document available in WIKI which I have explained how to find what is the tax field used for Boxes. You can use those tax field in your program to get the value
https://wiki.sdn.sap.com/wiki/display/ERPHCM/StepstofindparticularBoxvalueinTaxReporter
With Regards,
S.Karthik

Similar Messages

  • [svn] 1978: Bug: vendors. properties file which is used in vendor specific login commands was not being read properly and as a result some login related error messages were not being displayed correctly .

    Revision: 1978
    Author: [email protected]
    Date: 2008-06-06 08:05:34 -0700 (Fri, 06 Jun 2008)
    Log Message:
    Bug: vendors.properties file which is used in vendor specific login commands was not being read properly and as a result some login related error messages were not being displayed correctly.
    QA: Yes - we need automated tests to make sure that errors.properties and vendors.properties in BlazeDS/LCDS are loaded properly.
    Doc: No
    Modified Paths:
    blazeds/branches/3.0.x/modules/common/src/java/flex/messaging/util/PropertyStringResource Loader.java
    blazeds/branches/3.0.x/modules/opt/src/jrun/flex/messaging/security/JRunLoginCommand.java
    blazeds/branches/3.0.x/modules/opt/src/tomcat/flex/messaging/security/TomcatLoginCommand. java

    I have a lot of grief with this version of Windows Media Player.
    It is very buggy and frustrating to use.
    I have my Music library on a QNAP NAS, which is as reliable as they come.
    System notifications make it not save changes.  It also does not do a good job of interpreting albums and artists from folders.  Changes to track names are not saved, nor are tracks moved to other albums, renamed albums, changes to genre, artist
    or date.  It separates and merges albums/tracks without sense or reason.  Some changes I've made up to 4 times, then closed WMP and re-started my machine to check if it has/hasn't saved the changes.  Often it has not.
    This is the first time I've used WMP in this capacity, and I do not recommend it.
    New service pack please.

  • Could not read administrative data for payroll result

    Hi Experts,
    I am trying to extract data from ECC6.0 for datasource 0HR_PP_REC_51 and getting error:
    "Personnel No. 00100062 : Could not read administrative data for payroll result    HR_BIW_PP"     
    Can any body tell me the relevant solution for that.
    Thanks in advance!
    Sapna

    Hi Sapna,
    Please can you tell me how to fix this error, I have the same problem now.
    Thanks in advance.

  • Want to read a Query list of results into a defined variable "as Collection" for later use (ie create reports)

    The following code works great (Functions Main and OpenThisFile ) to select files from a folder and read into defined variable "FileToProcess As Collection" (I guess then renamed fil) and use that list of files to run through
    an import process defined in a function "StartMe". 
    What I want to do is read the results of a query into a similar collection variable and then use in a function like "StartMe" to run a series of reports.  The functions to do that below (PrintCKListTables and ReadQueryOfSDGs) currently
    don't work erring out "For Each s In .selectedQuery".  I would appreciate any help guiding me how to fix function
          ReadQueryOfSDGs() As Collection
    Thank you very much in advance for your help!
    Public Function Main()
    Dim FilesToProcess As Collection, fil
    Dim initialFilePath As String
    initialFilePath = CreateObject("WScript.Shell").specialfolders("C:\temp")
    Set FilesToProcess = OpenThisFile(initialFilePath)
    For Each fil In FilesToProcess
    StartMe fil
    Next fil
    End Function
    Public Function OpenThisFile(initialFilePath As String) As Collection
    'Requires reference to Microsoft Office 12.0 Object Library.
    Dim fDialog As Office.FileDialog
    Dim varFile As Variant
    'Clear listbox contents.
    'Me.FileList.RowSource = ""
    'Set up the File Dialog.
    Set fDialog = Application.FileDialog(msoFileDialogFilePicker)
    With fDialog
    'Allow user to make multiple selections in dialog box.
    .AllowMultiSelect = True
    .InitialFileName = initialFilePath
    'Set the title of the dialog box.
    .Title = "Please select one or more files"
    'Clear out the current filters, and add our own.
    .Filters.Clear
    .Filters.Add "XML Files", "*.XML"
    'Show the dialog box. If the .Show method returns True, the
    'user picked at least one file. If the .Show method returns
    'False, the user clicked Cancel.
    If .Show = True Then
    'Loop through each file selected and add it to the list box.
    Dim s
    Set OpenThisFile = New Collection
    For Each s In .SelectedItems
    OpenThisFile.Add s
    Next s
    Else
    MsgBox "You clicked Cancel in the file dialog box."
    NotContinue = True
    End If
    End With
    End Function
    Public Function PrintCkListTables()
        Dim FilesToProcess As Collection, fil
        Dim ListSDGs As String
        Set FilesToProcess = ReadQueryOfSDGs(ListSDGs)
        For Each fil In FilesToProcess
            fNameExportpdfReport (fil)
        Next fil
    End FunctionPublic Function ReadQueryOfSDGs() As Collection       DoCmd.OpenQuery "y_qs_DataIn_All_SDGList"
           Dim s
           Set ReadQueryOfSDGs = New Collection
           For Each s In .selectedQuery
           ReadQueryOfSDGs.Add s
           Next s
    End Function

    There are a few problems here. In function PrintCkListTables() you define a string variable ListSDGs and then use that as an argument to the function ReadQueryOfSDGs(), but ReadQueryOfSDGs() as written does not accept any arguments.  It's also not clear
    what ListSDGs represents...a list of files, names of queries? Also, the line
    For Each s In .selectedQuery in
    ReadQueryOfSDGs()
    references something called .selectedQuery which is undefined. 
    Is it that you want ReadQueryOfSDGs() to loop through the records returned by a query and add a field from each record to a collection?  If so, something like the following might better serve you:
    Public Function ReadQueryOfSDGs() As Collection
        Dim C As New Collection
        Dim rst As DAO.Recordset
        Set rst = DBEngine(0)(0).OpenRecordset("y_qs_DataIn_All_SDGList", dbOpenForwardOnly, dbReadOnly)
        Do Until rst.EOF
            C.Add rst!MyField ' where MyField is the field in y_qs_DataIn_All_SDGList you want to add to your collection
            rst.MoveNext
        Loop
        rst.Close
        Set rst = Nothing
        Set ReadQueryOfSDGs = C
    End Function

  • Read cluster PCL4 .. takes lot of time

    Hi guys,
      Though I Know this is a functional related forum, i would want to post  techincal question related HR ABAP.
    I have a report that needs to read data from PCL4 cluster and display master data changes for an employee. Developed a big program to simulate "RPUAUD00" that displays the logged data.
    My concenr is the program that i developed is taking minutes to execute. I am using the 2 function modules "HR_INFOTYPE_LOG_GET_LIST" and "HR_INFOTYPE_LOG_GET_DETAIL" for this purpose. 
    The function module "HR_INFOTYPE_LOG_GET_LIST" takes lot of time to get executed as it checks all the personnel number with hanges even if there was only one personnel number that was changed. Assuming that my personnel area and personnel sub area has 2000 employees, even if one employee's data is changed, the function module reads the cluster for all the employee and takes a few minutes to comeback, before the function module "HR_INFOTYPE_LOG_GET_DETAIL" is executed to  get the exact details changerd. This is irritating the client. Any idea how to reduce the time as i am severely short of ideas as how to.
    regards
    Sam

    Unless you pass the exact pernr, the function cannot determine without looking at all the pernrs for changes..If your program tied to PNP, you can improve the run time passing the pernr list to the function call HR_INFOTYPE_LOG_GET_LIST..
    ~Suresh

  • Hi i use adobe reader for SARS efiling through firefox and SARS says not compatible with Firefox to open adbobe reader and file my Tax returns via SARS website

    I,m having problems trying to file my SARS tax returns via SARS efiling on their website sarsefiling.co.za .They use adobe reader to open their documents ie EMP201 PAYE and EMP501 VAT returns
    it won,t open the document in order for me to capture the company information on their website . I have mozzilla firefox as my protection for sites and emails I go through mozzilla to open adobe documents /attachments . it seems with SARS website doesn,t like this .So how do i go around trying to do my job at work . Thanks linda Desperate now ...........

    I think I found a Windows setting that is causing the issue. I'm using
    my LCD HDTV as the monitor for this computer, and in order to see the display easily, I have the following setting in Windows 7: Control Panel > Appearance and Personalization > Display > Make text and other items larger or smaller > 150%.
    When I change this to the default of 100%, the problems with Reader X in Firefox and IE disappear. Reader 9, however, works perfectly at 100% and 150%.
    Is this a known bug in Reader X? Since the problem only appeared when moving from Reader 9 to Reader X, it seems it's not an unsolveable incompatability or something that's too difficult to work around.
    Do any others with their displays magnified have this problem? Or does it work perfectly? Would anyone (preferably with Windows 7 64-bit) be willing to set their display magnification to 150% and see if they can replicate the problem?

  • Mac pro 13'' harddisk makes noises when writing and reading data, but Techtool scanning result shows no bad blocks in the disk, that is normal?

    I bought my Mac pro 13 inch, i7 processor and 750G storage 20th November 2012. But I found when copy into or out the Mac, the harddisk makes noises, like bitting something. I thought there are bad blocks in the disk, but the result of Techtool scanning is no bad blocks in disk, and giving a passed conclusion.
    I went the apple store for testing, and the repairmen told me there are two choices available for me:1) replace the harddisk 2) back to the store i bought machine from for a new one. i think that the machine only bought few days, it had better not be disassembled, so i went back for a new one. unfortunately, the new one makes more noises than my old one. i don't know why like apple named brands notebooks have such problems.  did you undergo this experience ?

    All of the HDDs, be they in my MBPs or enclosures are barely audible.  I would say the you deserve no less.  I suggest that you do not leave until you are satisfied with a near silent HDD.
    Why you got two in a row is a puzzle, but then some people beat the odds and win the lottery.  In your case the results are not exactly positive.  All HDDs eventually fail, and some fail sooner than others.  At least you should start with a quiet one.
    Good luck.
    Ciao.

  • My mac mini won't read or load Turbo Tax 2012 cd.

    My Mac mini will not read or load the CD for TurboTax 2012.  Any suggestions?

    Just ran into this Turbo Tax 2012 requirement with a friend's 2008 iMac running 10.5.8. She only had 1GB memory in the iMac, which is the Snow Leopard minimum requirement.
    After full install of 10.6.3, and (free) software updates, it was a 10.6.8 machine. With just the operating system running, there was 300 MB of the 1 GB memory remaining. Turbo Tax 2012 requires 512 MB of memory, and until the memory was upgraded on this machine, Turbo Tax was erratic due to limited memory. Upgraded to 4GB of memory and the both the iMac and Turbo Tax performance improved substantially.

  • Reader X: ProtectedModeWhitelistConfig.txt entry results in error

    Hi,
    to make a plugin work again in the Reader X 10.1.1 i added a policy file.
    Nearly everything is working however i can't use the 'REG_ALLOW_ANY' key.
    The logging output is e.g.:
    <snip>
    [09:22/16:23:40] NtCreateKey: STATUS_ACCESS_DENIED
    [09:22/16:23:40] real path: \REGISTRY\MACHINE\Software\Adobe
    [09:22/16:23:40] Consider modifying policy using this policy rule: REG_ALLOW_ANY
    [09:22/16:23:40] NtCreateKey: STATUS_ACCESS_DENIED
    [09:22/16:23:40] real path: \REGISTRY\MACHINE\SOFTWARE\Adobe
    [09:22/16:23:40] Consider modifying policy using this policy rule: REG_ALLOW_ANY
    <snip>
    -> I tried the following keys however always get an 'Custom policy syntax error' :
    REG_ALLOW_ANY= \REGISTRY\MACHINE\Software\Adobe*
    or
    REG_ALLOW_ANY= \REGISTRY\MACHINE\Software\Adobe**
    or
    REG_ALLOW_ANY=HKEY_CURRENT_USER\SOFTWARE\Adobe*
    or
    REG_ALLOW_ANY=HKEY_LOCAL_MACHINE\SOFTWARE\Adobe*
    Any ideas?
    Thanks

    ashutoshmehra wrote:
    @ToM_1st: To create a registry policy that allows writing to any area of HKCU\Software\Adobe, write the following rule:
    REG_ALLOW_ANY = HKEY_CURRENT_USER\Software\Adobe*
    into a file called ProtectedModeWhitelistConfig.txt and copy it right next to AcroRd32.exe (in your Program Files directory).
    Already tried that but it didn't work. (Probably due to your next comment)
    Also note that on Win7/Vista, due to UAC restrictions, even when running as admin, processes don't get access to write to HKLM. So adding a rule for HKEY_LOCAL_MACHINE would probably not work. And anyway, the sandbox doesn't need to write to HKLM anyway, so that rule is unnecessary.
    This doesn't make sense?! What's the policy file and that specific key for if i can't access the registry? But this would be an explanation why it doesn't work. Strange though why it gives me the 'Custom policy syntax error' and not a 'your key is probably right but i don't have the rights to access the registry' error...
    thanks

  • Booting from USB Flash Memory Card Reader on RS480M2-IL (Test Results)

    I just completed testing my USB Flash Memory Card Reader (see profile) as a boot device and wanted to provide feedback to the Forum.
    A UBS Flash card will show-up on the Advanced Bios Features menu, Hard Disk Boot Priority list, when a Flash card is physically present in a card slot.  It showed as "USB-HDD0 : AFT PRO -8MX CF 0" with a 256MB Compact Flash (CF) card for my test.  Using the enter key on the Hard Disk Boot Priority list allows for ordering priority, which was necessary to place the CF Drive before my real Hard Drive for the card to boot.  When the card is removed, it drops from the list.
    I initialized my CF card as a DOS system disk using HP's USB Disk Storage Format Tool v2.0.6 for the test.
    Since it is recognized as a Hard Drive, it boots as the C: drive, not A/B Floppy alternative.
    I also ran a quick test to see if XP Pro Setup would see the drive.  It does show as my D: drive partitioned FAT.  Too small (256MB) obviously for XP Pro install, but it does present opportunity for larger size flash modules.  My Flash Reader actually has 4 different disk functions/slot groups, so XP Setup acknowledge the presents of those empty three slot groups as "Unknown Disk" on the drive list.
    I hope the information is useful for anyone planning a build or looking for alternative boot methodolgy with the board.
    This board just gets better and better.   
    Danno

    So with a nice size flash memory u could start your box with a key drive and lock up your computer when you leave it unattended.

  • Make application to read from excel and give result after query form the same excel file

    Hello everyone!
    I am newcomer to LabView 8.6, with previous programming experience.
    My problem is next:
    I need to make a query for example one type of machinig, one parameter which need to be adressable (mapped) to specific value and bring report of that value in application. Those values are specified in excell table with various worksheets (each worksheet represent on type of machinig i.e. milling, drilling, etc.), every worksheet is pupulated with values like material in rows (tool steel, specific material) and columns with specific parameter of the machining. To make it short, query from application should be select material, select type of machinig and select parameter of specific previously selected machining and the output should be the speed (m/min) which is specified in the that very column and row.
    I would highly appreciate any kind of help since i am new to LabView.
    Thank you for your assistance in advance!
    Regards,
    Vedran Galeta

    It looks like to get the LVOOP object for your existing XLS file, you need to use "New Report.vi" and wire the path to your existing file into the "template" input.
    LV Help:
    "template (Report Generation
    Toolkit) specifies a path to a Word document or Excel worksheet that acts
    as a report template. Enter the path to an existing Word document or Excel
    worksheet to open and edit an existing report for a template. The VI ignores
    this input for HTML and standard reports."
    I think the documentation on this vi could be worded a bit better.
    Gregory Osenbach, CLA
    Fluke

  • Read TAX Value in PO

    Dear All,
    I have an issue, I want to read tax value from PO.
    I can read the tax percentage, but not the value.
    Is there any table where from I can read the tax value? Or any function.
    Regards
    H P Singh

    Dear Friend,
    You are right, but I want to read condition type value which are displayed in Tax Procedure.
    By Calculate_Line_Item we can read total tax value whcih display below Net Value.
    My requirement is to read line items in Tax procedure. Like I want to read condition value of J1TX in tax procedure.
    Thanks & Regards
    H P Singh.

  • Taking 401k deductions on gross up result.

    We have a bonus wage type which is grossed up for taxes.  The gross amount is eligible for 401k contributions.  However, the system is taking the 401k amount from the original bonus amount, not the grossed up amount.
    Example:
    1,000.00  Original Bonus Amount
       603.86  Gross up Tax Result
    1,603.86  Bonus Grossed up Result
         20.00  2% 401k contribution - This is the current result.
         32.08  2% 401k contribution - This is the result we are trying to get.
    Any ideas on how to get the 401k contribution based on the gross up amount?
    Thank you,
    Cheryl

    I just checked in the standard payroll schema:
    1st 401K is calculated in P0169 function and that time
    2nd the taxes are calculated
    3rd after this the Gross up wagetype's amount is generated
    Thats the reason when 401k gets calculated at the first step, the second wagetype which has grossed up amount is not calculated yet.
    At my current client we have customized it.

  • Adobe Reader Malfunction

    I have just installed Adobe Reader XI. Although it tells me that the install was successful whenever I try to open Reader it is unresponsive and then shuts itself down after about 10 seconds. I have tried this twice, I have tried Adobe Reader X with the same result, I have tried in another browser and also the IMI download!
    I have a lenovo W520 laptop using Windows 7 Pro 64bit
    Any suggestions please?

    Go to: C:/Programs/Adobe/Reader 11/Reader
    Look for a file named eula.exe (or just eula)
    Double click it and accept the agreement.
    Launch Reader

  • How to send quiz results to a web page?

    Okay, this should have taken 2 minutes, not 2 hours. Very frustrating. Here is the situation:
    * Downloaded Captivate 5 Trial Version
    * Created based quiz (which took forever to figure out how to set the correct answers -- HORRIBLE user interface for setup, but that is another issue)
    * I want the results sent to a web page. I will code the web page & database calls, etc. to handle the information (I am a web developer). Just need the information sent somewhere!
    Several big issues here:
    1. When setting up a URL for the "Pass or Fail", nothing happens. User not taken anywhere. No "Post Results" button shown. The Captivate file just ends and that's it. ??
    2. Finally figured out that I needed the "Internal Server" option chosen to have a Post Results button shown. Okay.
    So when I click Post Results (after answering the 5 questions correctly), I am shown a login box. Why? What is this for? This is not needed. I am going to an INTERNAL SERVER. It is none of Adobe's business what this person's name/email is. What gives? Okay... anyways, I enter my own Adobe login information. It then says "Connecting..." then I get a Status Message that says "Unknown Error". Keep in mind this will be used by a general audience, of which approximately 99.9% will not have an Adobe ID, nor should they need one.
    How I can easily have the Captivate file redirect the user to pages like this: Confirm.aspx?pass=yes or Confirm.aspx?pass=no.
    I don't need anything fancy. But I do need something that works. This is terribly frustrating and I'm about to say it just doesn't work. Please tell me I am wrong.
    Thank for your time and for reading this.
    -Randy

    The Quiz Results slide's Continue button actions are set under Quiz Preferences > Pass or Fail > If Passing Grade etc. By default, the Continue button is set to just continue on to the next slide after the Quiz Results.
    After the user clicks the Continue button on the Quiz Results slide any Pass/Fail actions you've set up there will be evaluated and executed.
    So if the user achieved a passing score, and you set up an action such as Go to URL in Current Window for that case, then the user should find themselves redirected to that URL.  If there was a different action for Failure, and the user failed, then that should happen.  But either of these will only happen after the Continue button is clicked.
    I tested this by setting www.google.com as the go to URL and it worked.  To see if the URL is the issue, try using another URL that you know everyone can get to.  If that works, try to find out why the URL you want to use is not working.  If no URL works, something else is interfering with the action.

Maybe you are looking for

  • How to implement a General Ledger in Dynpro

    Has anyone tried to implement a general ledger in Dynpro using a table? In a general ledger, you want the time dimension going across the top in separate columns, and tracked items going down the left hand side. The trouble is, the Dynpro table only

  • Python script to parse 'iwlist scan' into a table

    Hi, I've written a small python script that parses the output of the command "iwlist interface scan" into a table. Why ? Like many arch linux users I think, I use netcfg instead of something like network manager or wicd. So the most natural way to sc

  • 3 topics in  Dev Cons SAP Netweaver 2004 u0096 Enterprise Portal

    Hi All, I read that the following topics form a part of the devlopment consultant EP certy exam. Please take a look at them below and let me know: <i>Are these just theoritical concepts for the exam? In KM you can do stuff through wizards as well as

  • How to set proxy information in JAVA.NIO framework MINA or Netty?

    Hi all, THERE IS NO PROXY SUPPORT VIA JAVA.NIO. How to use MINA or Netty,other framework support proxy? Thanks in advance!

  • Snmp traps will not stop

    We are getting a ton of snmp "cold start" traps. About every minute or less. I even took the statement out of the configuration to stop the device from sending those traps but they're still coming. I used the "no snmp-server traps enable snmp coldsta