‎2006 Nov 06 8:51 PM
How to get the data from 6 different infotypes for a pernr in ABAP HR?
‎2006 Nov 06 8:55 PM
Hi,
Either use Logical database and Use Get PERNR to extract the data.
OR
Use Select intelligently.
Regards,
Amit
‎2006 Nov 06 8:57 PM
hi Vicky,
you can use function modules
1. HRIQ_READ_INFTY
2. HRIQ_READ_INFTY_NNNN
to read infotypes for PERNR.
you need to pass the required infotype number and the structure each time you call.
Hope this helps.
SAjan.
‎2006 Nov 06 9:05 PM
HI,
HR_READ_INFOTYPE is mainly used to get the required data
YOu can use one more thing.
YOu can say GET PERNR
and then say
Provide * from P0001
P0002
......
......
(with a condition or without one that is your wish).
In Provide statements the join automatically takes place according to the logical database.
Prince