Processing class 59 for /101 and /110 wagetypes

Hello Gurus,
Can anyone give some explanation about wagetypes /101 and /110  Processingclass 59 setup. Can these be left to sap standard?. How does these impact Garnishments calculation ? Appreciate your help.

If this is for US Payroll, PCR UGGR is used to calculate the gross amount for garnishments.
Regards,
Howard

Similar Messages

  • Intercompany sales and sales process exc Duty for Netherlands and Belgium

    Can anyone explain me the sales and intercompany sales process where materials are excise Duty relevant for Netherlands and Belgium ? That means sales is done via the Netherlands for Netherlands and Belgium ? How are the different tax rates configured for the different countries ?

    HI Garima ,
    Plz check the following steps
    CONFIGURATION SETTINGS
    Assign Delivery Plant of the supplying company code to Sales Org + Distribution channel of the Ordering company code in the Enterprise Structure.
    DEFINE ORDER TYPES FOR INTERCOMPNY BILLING:
    Menu path: IMG/ SD/Billing/Intercompany Billing/Define Order Types for Intercompany billing
    Assign Organizational units by Plant:
    Menu Path: IMG/ SD/Billing/Intercompany Billing/Assign Organizational units by Plant.
    Define Internal Customer Number By Sales Organization:
    Menu Path: IMG/ SD / Billing/ Intercompany Billing/ Define Internal Customer Number By Sales Organization:
    Creating / Showing Ordering Sales Organization as Internal Customer for Supplying Company code:
    Transaction Code: XD01
    The ordering sales organization is represented as Internal customer of Supplying company code.
    We need to create customer master in Account Group - Sold to Party and maintain minimum required financial & Sales Area data.
    This internal customer number has to be assigned to the ordering sales organization. Hence, the system automatically picks up this Internal customer number whenever there is Intercompany billing.
    In the  above mention configuration steps you are missing  the second step in your confirguration 1.e the reason  your  getting that error
    Best regards
    Venkat

  • Process Class:How to give and get data from an exe file continuously???

    hi,,,
    I am trying to run an executable file from my program to give it input and read its output....
    And i am having problems...
    The exe file takes one input and appends to it "1235" (ITS A TEST CASE).
    When it is only for a single input , the program rums perfectly.. but when it is within a loop it does not
    Pls help
    Here is the code for that EXE file. (its in C)
    #include<stdio.h>
    int main()
    char a[10];
    int i;
    int k=1235;
    while(1){
    scanf("%s",a);
    if(a[0]=='s')
    break;
    printf("%s%d\n",a,k);
    }Note that when i remove the loop here, my code is able to get and give it data.
    My JAVA program::
    import java.io.*;
    public class Main {
      public static void main(String[] args) throws IOException {
            try {
          String line;
          Process p = Runtime.getRuntime().exec
            ("C:\\users\\Untitled3.exe");
           BufferedWriter   out=new BufferedWriter(new OutputStreamWriter(p.getOutputStream()));
              out.write("dfgsfs\n");
              time= java.lang.System.nanoTime();
              out.flush();
          BufferedReader input =new BufferedReader(new InputStreamReader(p.getInputStream()));
         while ((line = input.readLine()) != null) {
            System.out.println(input.readLine());
          input.close();
        catch (Exception err) {
          err.printStackTrace();
    }PLS HELP

    I see a problem in your C code. You're not flushing stdout after you printf and that usually means java is not seeing whats your C program is printing.
    removing the loop probably works because stdout is being flushed right before exit.
    I used a perl script to test your stuff and found that flushing made the trick
    #!/usr/bin/perl
    open(OUTFILE,">>./output.txt");
    $| = 1;
    while (<STDIN>) {
        if (m/.*error.*/) {
            print STDERR  $_;
        } else {
            print STDOUT  $_;
        print OUTFILE $_;
        if (m/exit/) {
            last;
    close(OUTFILE);
    exit;notice "$| =1;" that autoflushes in perl (just in case you were wondering where my flush call went)
    Enjoy!

  • Common class resource for loaded and loading swf

    hi,
    i have built a video player, and now i'm working on (sort-of) video editor.  both of them use a singleton class 'DataRepository', which - as it name implies - serves as a repository for all the data needed to play the video and/or edit it.
    now i want to add to the editor a preview functionality, so i simply load the player.swf into the editor.swf.  before doing so, i set a variable in the data repository to the id of the video i want to preview.  i found out that when i load the player using a relative path, it uses the same singleton instance of the data repository as the editor does, thus reading the video id variable and previewing it correctly.  however, when i load the player using absolute path it creates its own copy of the data repository, thus unable to read the video id and preview it.
    since the player and editor will eventually be on 2 different servers, using relative path is not an option.
    is there any way i can make sure the player uses the same instance of the data repository as the editor does?
    thanks in advance,
    eRez
    ps - in case it matters, the 'allowscriptaccess' property in the editor's html page is set to 'always'.

    This is how I eventually did this:
    Created 2 layers.
    Layer 1 has my existing image which I put a stop action to in the 1st frame.
    Layer 2 has a link to the external swf file with this action: loadMovieNum("top2.swf", 2); in the 1st frame.
    So the initial image stays up until the top2.swf is fully loaded. This is for people with dialup. A lot of the clients who will look at this particular web site are rural and only have dialup access to the internet. The animation loads quickly for high speed.
    Here's the web site if you wish to view the result.
    http://www.watertonbiosphere.com

  • How TM process is works for GR and GI ??

    Dear All,
    I am new in TM and I want to know how it works in real time and how I can configure this into SAP.
    Please anybody tell me.
    Thanks & Regards

    Hi Prateek,
    First I would recommend reading the Rules of Engagement (Getting Started link at the top right), then going to the Overview page of the SAP Transportation Management community.  There is a wealth of documents and guides there available for the reading.
    When you have digested enough to understand the basics of TM, come back and post specific questions in a new Discussion.  This thread has been locked.
    Regards, Mike (Moderator)
    SAP Customer Experience Group - CEG

  • Different family class used for input  and output when working with sockets

    I have seen more or less everywhere the following code to open a socket and to receive input and send output through it:
    Socket server = new Socket("anyservername", 25):
    OutputStream out = server.getOutputStream();
    PrintWriter pout = new PrintWriter (out, true);
    pout.println("Hello");
    InputStream in = server.getInputStream();
    BufferedReader bin = new BufferedReader (new InputStreamReader(in));
    String response = bin.readLine();
    What I do not understand is:
    Why the BufferedReader needs InputStreamReader as an argument whereas printwriter does not want the OutputStreamReader as an argument but it is OK with just the OutPutStream?
    I would tend to believe that they should be more or less at the same level and use the same arguments?.
    In that sense if I use BufferWriter instead of PrintWriter I bet It should be OK the following code?:
    OutputStream out = server.getOutputStream();
    BufferedWriter bout = new BufferedWriter (out);
    String myOut = bout.writeLine();
    Cheers
    Umbi
    Edited by: Imbu on Jun 2, 2008 2:40 PM

    1. Does it even compile?
    2. While there is a fair amount of symmetry between reader and writer classes, don't assume it's exhaustive. Your best friend is the API:
    [http://java.sun.com/javase/6/docs/api/]
    3. Those were just examples. Code it the way you feel is best. I would specify charsets to make sure the encodings were platform independent. Networking and all that, don't you know...

  • Processing class 10 and partial period factor specification /807

    dear experts,
    I want to know the difference in specification of /801 or /802 or 803 or /804 or /805 or /807 when we give or maintain processing class 10 for an y customised wage type in table v_t512w_d. there is no documetation for /806 or /807 wage types .can any one send me the documetation on this or explain

    Just go to X013 PCR.  There you can find the documentation.
    Open the PCR in display mode and press F1 for documentation.
    Reward the points.
    Venu

  • Processing classes , evaluation classes and cumulation classes

    Hi All ,
       Can anybody give the details of PCR in HR and how to use processing classes and evaluation classes in PCR.
    Regards ,
    Santosh.

    Hi,
    we have an operation VWTCL which checks the Processing class and its specification in PCR.
    go to T.Code: PE04 and check the operations documentation you will get clarity.
    Operation VWTCL VV reads the specification of processing class VV for the current wage type in table T512W, and enters this as a single-character entry in the variable argument of the personnel calculation rule. Function VWTCL is a decision operation.
    for example:
    X010 Determination of valuation bases INTERNATIONAL
            VWTCL 01   Processing class
                ERROR      Cancel processing
              0
                ADDWT *    OT   Output table
        1
            VWTCL 01   Processing class
              0
              1
                ADDWT *    OT   Output table
                ELIMI Z    Elim.time period ID
    Regards,
    mohammed

  • Wage Type listing based on processing class

    Hello -  
      How can I obtain a list of wage types based on a particular processing class?  For instance, I need to know which wage types within my system have processing class 92, specification 2 set.  Is there any way to search on that criteria?
    Thanks!!

    Run this report PC00_M99_DLGA20 - Wage Type Utilization
    without any wagetypes and select tree view for easy review.
    Page down to processing class 92 and expand it to see what Wtys listed under spec 2.

  • Processing class 10 documentation

    Hi Experts,
      Can any one give the over all idea about processing class10. How it will effect the payroll? What are the effects in /801 and so on? If i give 1 in P class 10, what will be the effect and if 2 and so on. I could not found any documentation on this.
    Thanks

    Hi Proseccing class 10 is for the Factoring your wage type. It will help to do factoring of the particular wage type.
    Factoring refers to partial pay period or partial month amount.It includes the PCR's like XPPF,XPP1,XVAL etc.
    For Ex: Employee salary is 3000$ per month and in the particular month ee has taken LOP leaves so the amount has to be deducted. How much amount it has to deduct that will be calculated by prc class 10 with the help of PCR's.
    When you run the payroll for the particular employee it will check any deviations are there like ee applied any unpaid absence or any basic pay change or joined in mid of the month / terminated in the mid of the month.
    All the above conditions will be checked in PCR XPPF if there are any condition succeeds then it will go and check in second PCR XPP1 that how much it has to deduct.
    If you see the PCR you can find KSOLL,ASOLL,DIVI,ADIVP,AAUX, etc.
    Go and login to PE02 -->XPPF and XPP1 you will get better idea.
    You can get documentation in processing class list for the WT.You can check in SPRO>payroll>country specific>First/Second node> Click on help docummet of that particular prc class.
    I hope you got some idea on prc class 10.
    Reg,
    Srini
    Or else you can go and check in the V_512W_D where for all WT Prc class are stored.

  • Custom class type for Plant material

    Is there any way to create a custom class type for plant and material? Any other way to use standard functionality to use classification in material master for specific plan will also work.
    thanks,

    Hi Rahul,
    The Classification data in material master can only be maintianed at Client level and not at plant level.
    The standard Class type 001 can be used to create your own classes. Create a class for each applicable plant. Add the applicable characterstics under every class. That way you will be able to maintain plant spceific details when you are adding Objects for the material master.
    Regards,
    kathir

  • Processing classes, cumulation classes and evaluation classes

    Hi Friends,
             What is the diff between  processing classes, cumulation classes and evaluation classes. where we see these three and what is the table no. for this?

    .) Processing Class - A wage type characteristic that controls processing during Payroll. There are different processing classes for the various processing steps that are performed within Payroll. During the payroll run, SAP R/3 processes a wage type in a specific processing step according to its individual specification in the respective processing class.
    Cumulation class - Cumulation class are used to cumulate the model wage types to generate the /1** technical wage types.
    Example - Processing class 20 is used for cumulation and processed by PCR X023. Now suppose you have set specifiction as 8. Now if you will check PCR X023 for spec 8, it says to cumulate wage type into cumulation class which are ticked. Like may be you want to cumulate a model wage type into /101, set PCL 20 as 8 and tick cumulation class 1.
    Evaluation Class - Wage type characteristic that controls processing when payroll results are evaluated and displayed. There are various evaluation classes for the different processing steps that are performed when payroll results are evaluated and displayed.
    Example
    In the standard system, the specifications for evaluation class 02 determine how a wage type is printed on a form  that is payslip.
    Specification 00: no printing on the form
    Specification 01: prints personal payments/deductions
    Specification 02: prints wage types included in the total gross amount
    Specification 03: prints wage types derived from time-based payments and included in the total gross amount

  • Report for finding wage types using a processing class.

    Hi All,
    Is there any standard report that gives a list of all wage types that use a processing class given as input?.
    Thanks,
    Krish

    You can use the wage type utilization for this.  Go to transaction PC00_M99_DLGA20.  Leave the wage type selection fields blank.  Select "Continuous list" as your output.  Click on the execute button.  You will see the meaning of processing classes and their values.  If you scroll down past this (should be page 3 if you look for the number to the right side of the screen), you will see a list of the processing classes and which wage types are assigned to the class by valuation.  I don't know of any other standard reports to get you this information.  I hope this helps.
    - April King

  • Smatrform and processing class

    Hi,
    I'm New to SAP CRM.
    My requirement is to send a the activity transaction details to a customer as a PDF in the smartforms.
    Here we can execute the action using a Smartform or Method call.
    How to go about it.
    How can we know the processing class for a gievn smartform. In which table can we find the entries or relationships between a smartform and processing class.
    Regards
    Lekha

    Hi,
    I am sorry. I am not able to understand ur question properly. Actually i did some smartfroms work in my organisation relating to CRM 2007.
    Here, our functional people first assign the standard method and class and smartform. Then take a sample data. Then i used to copy the std form to zform and apply my logic in program lines. I got success.
    The std methods and classes depend on the action type.
    in service area i used.
    cl_doc_processing_crm_order (processing class)
    crm_srvorder_exec_smart_form (method).
    if u goto std one u find a lot.
    u better get the details from the funtional team.
    hope this will help you.
    best wishes,
    mallik

  • What is Processing Method and Processing Class in Action Profile

    Dear all,
    I have defined an action for case management, to trigger an email after saving the case in Enterprise portal.
    Action is getting initiated in case document after saving, but after a while it is showing message 'Incorrect'.
    In the actions monitor report, error message showing that some problem in Processing Method.
    In my action I have maintained settings as below.
    Form name - SCMG_SMART_FORM_CASE
    Processing class - CL_SCMG_CASE_CONTEXT_PPF
    But I don't know what processing method should I give
    I could not find and values under F4 functionality.
    Please do advice me what method I can use here.
    and why we use processing method and processing class.
    your help will be highly appreciated.
    Thank you
    Raghu ram

    Hi
    DSD means Daily Salary Deduction for more check this table to understand abd DSD and the respective Processing class 77 V_T7INO1

Maybe you are looking for

  • BAdI........How are they used in the real time scenario.

    Im a rookie in ABAP development and i was wondering that how we use the BAdI enhancement technique in the real time scenarios. Like do we get create them or we have few already built BAdI's which we work on? Can any body please explain how this works

  • .log file in .metadata shows plugin "org.eclipse.core.runtime" error

    IDE 2.07  cannot restart. Suddenly I cannot restart my developer studio 2.07. The .log file in .metadata directory shows: !SESSION Sep 14, 2004 05:48:05.972 - java.version=1.4.2_04-er java.vendor=Sun Microsystems Inc. BootLoader constants: OS=win32,

  • Nokia Lumia 920 Home button not working

    I was using my phone as usual and suddenly the home button stopped working.  I was on Facebook, wanted to go to the start screen because I had just received a text message and I realized the home button was completely unresponsive.  I tried a soft an

  • Preview.app - not functioning? Lost? How to update a recovered version?

    Dear Apple community! I upgraded my MBP from Leopard to SnowLeopard (finally). Everything went fine, but I found two versions of preview.app in my programs directory afterwards (yes, one in the specific folder where I once put it to). Both were versi

  • Authentication for user weblogic denied

    I am unable to start node managerd server from command prompt. I installed WebLogic Server Version: 12.1.2.0.0 on Windows 2008 R2 EN Sp1 I started Administration Server succesfully. C:\Weblogic\Oracle\config\domains\wl_server\bin\startWebLogic.cmd I