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

ABAP-HR

Former Member
0 Likes
461

HOW TO INTEGRATE ABAP-HR SUBMODULES ( I.E TIME MANAGEMENT,BENIFITS,PAYROLL ) TO ONE OTHER.

THANKS,

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
432

All submodules data are stored in various infotypes tables. <b>PERNR</b> is the key field which links all these tables. So, by this all sub modules are inter linked as such.

HOW TO INTEGRATE ABAP-HR SUBMODULES ( I.E TIME MANAGEMENT,BENIFITS,PAYROLL ) TO ONE OTHER.

THANKS,

2 REPLIES 2
Read only

Former Member
0 Likes
432

Hi,

All are related in the HR.

say take the example of an employee.

He applies a <b>Leave</b> for 2 days. that goes to <b>time managment</b> module

He receives his <b>salary</b> at the end of the month. Which comes from <b>Payroll</b>and he receives some<b> bonus</b>, or some<b> DA</b> once in a Year or at the time of retirement he receives some <b>Gratuity</b> which is his <b>benefit.</b>

So all are interlinked with an Employee

And in all the related Infotypes PERNR employee number is the key field.

So with the hlp of it you can fetch the linked data and use.

Only thing is that each sub module data is stored in different types/number of infotypes.

Like Tim data in infotypes starting PA2000 onwards

Pay roll data stored in PCL1, PCL2 clusters.

in different methods/ways we fetch the data from the relavent tables.

hope you understood.

reward points if helpful

regards,

ANJI

Read only

Former Member
0 Likes
433

All submodules data are stored in various infotypes tables. <b>PERNR</b> is the key field which links all these tables. So, by this all sub modules are inter linked as such.