Application Development 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: 

HR ABAP Retrieving data from IT0008

Former Member
0 Kudos

Hi Gurus,

I want to retrieve the data from infotype 0008 on the basis of I Val date(which is at the end of IT 8 beside Total. Like the record in infotype 8 is with some date but in between there may be changes in some components of the employee. So on the basis of I Val date only i want to retrieve the data of an employee.

Can any one tell me how to retrieve the data from IT 8 using I Val Date.

Regards,

Srinath

1 REPLY 1

Former Member
0 Kudos

Hi,

Please try HR_READ_INFOTYPE.

or else try

DATA: T_PPBWLA LIKE PBWLA OCCURS 0 WITH HEADER LINE.

CALL FUNCTION 'RP_FILL_WAGE_TYPE_TABLE'

EXPORTING

BEGDA = sy-datum -

ENDDA = sy-datum

INFTY = '0008'

PERNR = pernr

TABLES

PPBWLA = T_PPBWLA.

Here begda and endda you can put as per your logic.

Hope it helps.

Regards

Hiren K.Chitalia