Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

HR

Former Member
0 Likes
617

HI all,

what is wage type in HR? how do check infotypes IT0001, IT0002 and all in SAP. any particular transactions?

please reply as soon as possible.

thanks in advance.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
555

Hi

Wage Type is a Number like thing with which we get the amount related to some benefit

for example an employee salary consists of Basic salary, TA, DA,Nedical allowance, CCA, and other many allowances

so all these each components of employe benefit is assigned to a wage type and with that wage type we will fetch the related amount from infotypes

See the info type <b>PA0008</b> for these wage types

The master tables for wage types is <b>T511</b> and wage type texts are stored in <b>T512T</b>

General things about HR

HR:

HR deals with the INFOTYPES which are similar to Tables in General ABAP.

There are different ways of fetching data from these infotypes.

There are different areas in HR LIKE Personal Admn, Orgn Management, Benefits, Time amangement, Event Management, Payroll etc

Infotypes for these areas are different from one another area.

storing of records data in each type of area is different

LDBS like PNP are used in HR programing.

Instead of Select.. we use some ROUTINES and PROVIDE..ENDPROVIDE.. etc

and in the case of Pay roll we use Clusters and we Import and Export them for data fetching.

On the whole Normal ABAP is different from HR abap.

For Personal Admn the Infotypes start with PA0000 to PA1999

Time Related Infotypes start with PA2000 to PA2999.

Orgn related Infotypes start with HRP1000 to HRP1999.

All custom developed infotypes stsrat with PA9000 onwards.

In payroll processing we use Clusters like PCL1,2,3 and 4.

Instead of Select query we use PROVIDE and ENDPROVIDE..

You have to assign a Logical Database in the attributes PNP.

Go through the SAp doc for HR programming and start doing.

http://www.sapdevelopment.co.uk/hr/hrhome.htm

See:

http://help.sap.com/saphelp_46c/helpdata/en/4f/d5268a575e11d189270000e8322f96/content.htm

Reward points if useful

Regards

Anji

3 REPLIES 3
Read only

suresh_datti
Active Contributor
0 Likes
555

You can verify an employee's infotypes using Tcode PA20 & maintain the same using PA30.

<a href="http://help.sap.com/saphelp_erp2005vp/helpdata/en/84/cb04c8cd6811d28ed5080009b6ab29/frameset.htm">Wagetypes</a>

~Suresh

Read only

Former Member
0 Likes
556

Hi

Wage Type is a Number like thing with which we get the amount related to some benefit

for example an employee salary consists of Basic salary, TA, DA,Nedical allowance, CCA, and other many allowances

so all these each components of employe benefit is assigned to a wage type and with that wage type we will fetch the related amount from infotypes

See the info type <b>PA0008</b> for these wage types

The master tables for wage types is <b>T511</b> and wage type texts are stored in <b>T512T</b>

General things about HR

HR:

HR deals with the INFOTYPES which are similar to Tables in General ABAP.

There are different ways of fetching data from these infotypes.

There are different areas in HR LIKE Personal Admn, Orgn Management, Benefits, Time amangement, Event Management, Payroll etc

Infotypes for these areas are different from one another area.

storing of records data in each type of area is different

LDBS like PNP are used in HR programing.

Instead of Select.. we use some ROUTINES and PROVIDE..ENDPROVIDE.. etc

and in the case of Pay roll we use Clusters and we Import and Export them for data fetching.

On the whole Normal ABAP is different from HR abap.

For Personal Admn the Infotypes start with PA0000 to PA1999

Time Related Infotypes start with PA2000 to PA2999.

Orgn related Infotypes start with HRP1000 to HRP1999.

All custom developed infotypes stsrat with PA9000 onwards.

In payroll processing we use Clusters like PCL1,2,3 and 4.

Instead of Select query we use PROVIDE and ENDPROVIDE..

You have to assign a Logical Database in the attributes PNP.

Go through the SAp doc for HR programming and start doing.

http://www.sapdevelopment.co.uk/hr/hrhome.htm

See:

http://help.sap.com/saphelp_46c/helpdata/en/4f/d5268a575e11d189270000e8322f96/content.htm

Reward points if useful

Regards

Anji

Read only

Former Member
0 Likes
555

thanks a lot for ur answers.