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

Getting Data

Former Member
0 Likes
442

How to get the data from 6 different infotypes for a pernr in ABAP HR?

3 REPLIES 3
Read only

amit_khare
Active Contributor
0 Likes
405

Hi,

Either use Logical database and Use Get PERNR to extract the data.

OR

Use Select intelligently.

Regards,

Amit

Read only

Former Member
0 Likes
405

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.

Read only

Former Member
0 Likes
405

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