‎2014 Sep 01 8:41 PM
Good Afternoon.
I'm working with abap hcm and i have one question:
When i use :
CALL FUNCTION 'HR_READ_INFOTYPE'
EXPORTING
pernr = e_employee-key-personnel_number
infty = cc_0006
TABLES
infty_tab = t_0006
EXCEPTIONS
infty_not_found = 1
OTHERS = 2.
He returns only a valid record or return all historic?
he make a distinction the subinfotype?
thanks
‎2014 Sep 01 8:49 PM
Hi Ronaldo
This FM has BEGDA and ENDDA as importing parameter, if you don't pass de dates, the default will be from 01.01.1800 to 31.12.9999, in the case that you post the result will be all the records available.
For subtype selection you can use HR_READ_SUBTYPE
Regards,
Felipe
‎2014 Sep 01 8:49 PM
Hi Ronaldo
This FM has BEGDA and ENDDA as importing parameter, if you don't pass de dates, the default will be from 01.01.1800 to 31.12.9999, in the case that you post the result will be all the records available.
For subtype selection you can use HR_READ_SUBTYPE
Regards,
Felipe
‎2014 Sep 01 8:52 PM
‎2014 Sep 01 9:29 PM
Yes, the fm HR_READ_SUBTYPE reads the valid infotype and subtype records according to the date range provided.
‎2014 Sep 03 10:26 PM