HR- Calculate Gross salary  - fn Module

Hi
  I need to find the gross salary of every personnel number  including ERA 
                           actual LSA(Long service award)
                           projected LSA .. It would be helpful if anyone suggest any function module to extract these information.
Many Thanks
Arunachala .G

Hi,
Please Have a look at the following Threads hope will help you out.
[How to get Gross Salary for spacific periods?|How to get Gross Salary for spacific periods?]
[Function module to return employees gross salary|Re: Function module to return employees gross salary]
Kind Regards,
Faisal

Similar Messages

  • /616 Add gross salary Issue

    HI,
    We have an issue in /616 wage type (Add Gross salary)
    1. How do we calculate /616 wage type value manually?
    2. /616 wage type is difference between grass salary that including arrears payment i guess. but i don't know how do we calculate manually. /616 wage type has some amount .I need to find out the break up of this value.
    How do we do that and what are the wage type to be considered for /616 wage type.
    3.How does the DT wage type form?
    Regards,
    Prasath

    Ideally speaking, /616 WT contains the arrears of previous financial year that were given in current financial year (For eg DA and TA arrears of Jan to March 2010 in our case).
    In my case I am getting correct values (as calculated manually) for most of the cases but for few it is giving other amounts which we are unable to trace.
    Did you found the method of calculation in SAP?
    Although you can remove the effect of /616 using model wagetype M89G.
    Please find below the process flow of M89G series wage type:
    1. Maintain relevant wage type (For example to adjust /616 use M89G and so on).
    2. Maintain amount with opposite sign in the amount field.
    3. Maintain the year for which you are performing the adjustment with
    unit as year.
    4. Maintain date of origin as current month date(any).
    Save the entry and execute the payroll.
    Regds,
    Astha

  • Gross Salary Calculation

    Hi,
    I need to calculate the gross salary of a given employee. Please suggest me the easiest way to calculate the salary from the infotype 8.
    Good solutions will be rewarded.
    Best Regards
    Renjan

    Hi,
    I need to calculate the gross salary of a given employee. Please suggest me the easiest way to calculate the salary from the infotype 8.
    Good solutions will be rewarded.
    Best Regards
    Renjan

  • Income tax gross salary projection

    Hi,
    Income tax calculations upto Jan 2012, i.e 10th period gross salary calculations is calculating correctly, but the calculations for February 2012 shows the Gross salary only for three months ( i.e Jan 2012, feb 2012, Mar 2012).
    Tax exemptions and all exemptions are taking the same.
    Please help me in resolve this issue.
    Regards,
    Madhu

    Hi Madhu,
    Do you have any rehiring or company code change for the pernr? Please go through the explanation below:
    /416 is calcualted with the following logic as mentioned:
    /416 = /4VA + /4V1 + /4VJ + /4VK + /410/411/413-/414 + (S89-/616)
    1. In normal cases, /410 is formed as follows:
       /410 = /124 (CRT) + /124 (RT) + current /124 * projection factor
    2. However, the logic does not remain same in case of company code changes. For company code changes scenarios, the calculation will happen as follows:
       /410 = /124 (RT) + current /124 * projection factor.
    /124 from CRT will not be considered in such a scenario. Instead once, /410 is formed and /416 is to be arrived, previous employment details would be considered (/4V* wagetypes).
    Can you please review the SAP note 941288 projection of income,and check the settings as available in your system. Let me know if it still doesn't work.
    Regards,
    Nishtha

  • ESI IS CALCULATING ON GROSS SALARY AS WELL AS INCENTIVES,IS IT RIGHT?

    Hi  Friends,
    I have one problem regarding ESI Issue. ESI is calculating on gross salary as well as incentives,is it right or Not?
    In Our company they are calculating on gross only,but in sap it is including incentives.
    For example:
    Employee having  gross salary Rs 6000 and incentives - Rs 4500,petrol allowances - Rs 1500 and mobile allowances -Rs  500
    In Our company they are deducting ESI Rs-102 ,but in SAP It is not deducting .if it is deducting on Gross salary ,then how can i do modifications in table v_512w_d.
    Please give me advice for this issue.
    Thanks in Advance.

    Hi Lakshmi Ram,
    Have you checked whether these are checked for /101 i.e., Cumulation Class 01.
    These should not be checked in the check box, means not included in the gross salary.
    And also check
    Processing Class: 20.  Cumulation at the end of the Gross Part.
    These should not be included in Gross part.
    Check once.
    Regards
    Venu

  • Break up of /416 gross salary.

    Dear Experts,
    I want to know the break up of gross salary (/416)i.e. which wagetypes are included in the Annual Regular Income(/410),Annual Irregular Income(/411) and Annual Perk(/413). how do i get to see what all wagetypes come under the above mentioned technical wagetypes.
    Thanks
    Salil Bagwe.

    Dear Sikindar,
    Thanks for your early reply,I want to see the actuals under/124,/125 & /128,how can i achieve this thru adhoc query. please do let me know.
    Thanks
    Salil Bagwe.

  • Gross salary from previous employer

    Dear SAP users
    Can you please tell me where to store Gross salary from previous employer data in PA.Is there any infotype other than 580 where we can store the above mentioned details
    Regards
    Sambit

    Did you try Infotype 0694?
    ~Suresh

  • Deactivated "Calculate Gross Profit"

    Hello everyone. I've searched in the notes and in the forum for this topic but couldn't find it. I would be happy to be redirected to answer of my question below:
    We have a client who migrated from 2007A to 8.8 PL 20. The "Calculate Gross Profit" was not activated during that time. This resulted to a blank GP in the marketing documents. Is there a way to recompute or show it (the GP) to the earlier documents in which "Calculate gross profit" was previously deactivated?

    Hi,
    Welcome you post on the forum.
    For your question, I believe you can only create your own report to calculate them by yourself. The historical documents may not be editable.
    Thanks,
    Gordon

  • Calculate Monthly Salary Without Refresh

    hi,
    i have to calculate salary .i have two select list one for emp_id and second for month.
    when i select emp_id then Emp_name and Salary are coming into text field.
    i want to calculate Advance Salary of Employee ,which is he take in between month and also calculate per day salary .
    i have done this by using code
    i use That code for calculate per Day SALARY
    declare
      l_var   number := 0;
    BEGIN
    IF :P65_MONTH ='JAN' THEN
       l_var := :P65_SALARY1/31;
    RETURN ROUND(l_var,2);
    ELSIF :P65_MONTH ='FEB' AND MOD(TO_CHAR(SYSDATE,'YYYY'),4)!=0 THEN
       l_var := :P65_SALARY1/28;
    RETURN ROUND(l_var,2);
    ELSIF :P65_MONTH ='FEB' AND MOD(TO_CHAR(SYSDATE,'YYYY'),4)=0 THEN
    l_var := :P65_SALARY1/29;
    RETURN ROUND(l_var,2);
    ELSIF :P65_MONTH ='MAR' THEN
    l_var := :P65_SALARY1/31;
    RETURN ROUND(l_var,2);
    ELSIF :P65_MONTH ='APR' THEN
    l_var := :P65_SALARY1/30;
    RETURN ROUND(l_var,2);
    ELSIF :P65_MONTH ='MAY' THEN
    l_var := :P65_SALARY1/31;
    RETURN ROUND(l_var,2);
    ELSIF :P65_MONTH ='JUN' THEN
    l_var := :P65_SALARY1/30;
    RETURN ROUND(l_var,2);
    ELSIF :P65_MONTH ='JUL' THEN
    l_var := :P65_SALARY1/31;
    RETURN ROUND(l_var,2);
    ELSIF :P65_MONTH ='AUG' THEN
    l_var := :P65_SALARY1/31;
    RETURN ROUND(l_var,2);
    ELSIF :P65_MONTH ='SEP' THEN
    l_var := :P65_SALARY1/30;
    RETURN ROUND(l_var,2);
    ELSIF :P65_MONTH ='OCT' THEN
    l_var := :P65_SALARY1/31;
    RETURN ROUND(l_var,2);
    ELSIF :P65_MONTH ='NOV' THEN
    l_var := :P65_SALARY1/30;
    RETURN ROUND(l_var,2);
    ELSIF :P65_MONTH ='DEC' THEN
    l_var := :P65_SALARY1/31;
    RETURN ROUND(l_var,2);
    END IF;
    END;That code are used for Advance Payment to Employee in beetween month.
    select nvl(sum(RECEIPT_AMT),0) from EMP_SLRY_DTL where month=:P65_MONTH and emp_id=:P65_EMP_ID group by MONTH,to_char(sysdate,'yyyy'),emp_idHere Emp_name and Salary Comes without refresh into text field when i select Emp_id from select list.
    but when i select Month from select list then page is refresh because i have to select Select list with submit .When page is refresh then Advance amount and per dat salary comes in to text field.
    I want this without refresh ,when i select month then advance salary and Per Day salary shound Come in to text Field.
    How Can i do this,
    Thanks

    You can do this by using Ajax, and possibly even Dynamic actions.
    1. Onchange on the Select List calla JS function and pass the EMP_ID to the function
    2. Write an Application process that fecthed the name and salary. You can concat the two values with a ':', or use JSON , and return it using htp.p from the application process (On Demand)
    3. In the JS function in step 1 make an ajax call to the OnDemand process
    4. Use $s API to write the returned values into the Pafe Items.
    Regards,

  • Get gross salary

    Hi All,
    this is Naresh.
    i need to get Gross salary but not from any payroll cluster table.
    i am using 0008, 0015 infotypes.
    is it possible to get gross salary only from Infotypes?
    i need Yearly Salary even.
    thanks,
    naresh.

    Hi Ketul,
    thanks for your reply.
    i want to perform some calculations based upon basic salary and gross salary.
    i have basic from 0008 infotype, as a same way is it possible to get gross salary from infotype level only?
    regards,
    naresh.

  • Steps to Customize the Self-Service HRMS Gross Salary form(urgent)

    Hi,
    We are using 11i(11.5.10.2) with oracle 9i as database. We Implemented HRMS(AE) localization. When we open the Gross salary Self-Service form on the top right its coming oracle Logo. Instead of that i want to change into Client Logo.
    As per my knowledge i installed J Developer and configured to our test instance to customize that form. can any body guide me from end to end process to customize this form.
    Regards,
    Nag.CH

    Hi Hussein,
    We downloaded the .gif file from $OA_MEDIA for gross salary self service form and we override the image and uploaded into same position. We logged out login the application. But its not showing any effect. Its showing older Oracle logo only.
    Please suggest .
    Thanks,
    Nag.CH

  • Gross Salary Download ?

    Hi Pals,
            I need to download the gross salary, post adjustment, salary currency,
           pay grade level of employee in a flat file. pls let me know how can i do.
            if you can then help me with step by step process.
           Help me a clear view how to retrive the data from Infotypes and PCL2.
    Regards,
    Sens

    Use the enhancement in Payroll reconcilation report and prepare the FS GIve to the Ababper
    Or Develop as fresh custom report.
    The are lot of thread in SDN on how to read payroll clusters. Please refer to that.
    Note: Please search the SDN in both SAP HCM Form (id: 142) or SAP ERP HCM - Payroll US (id:399) before opening a new thread.

  • How to calculate the salary of the employees when they are differentiated by monthly and hourly basis

    Hi all
    How to calculate the salary of the employees when they are differentiated by monthly and hourly basis
    How can we write the logic though sql
    Thanks in advance

    (case when pay_basis like 'HOURLY'
    then PROPOSED_SALARY_N*pay_annualization_factor
    when pay_basis like 'ANNUAL'
    then PROPOSED_SALARY_N*pay_annualization_factor
    end )
    I was actually trying to write the logic in this way but it was not calculating in correct format for hourly paid employees

  • List of employees with gross salary

    Hi Experts,
    I need to know about a standard report in which i can get employees list with their gross salary.
    Regards,
    Hammaadullah Virk

    Hi. try to use RPLPAY00 via SA38 or transaction S_AHR_61015608

  • Personel number and gross salary.

    Hello experts,
    Which table-field are Personel number and gross salary of an employee stored in?
    Regards,
    Sumit

    Hi,
    You can ind the master data tables of each infotype maintained.
    It starts with PA followed by 4 digit infotype number.
    For eg: Action(Infotype 0000)  table is PA0000
    Personal Data(Infotype 0002)  table is PA0002
    Basic Pay(Infotype 0008)  table is PA0008
    Thanks,
    Sutapa

Maybe you are looking for