Reputation: 589
In transaction PA30
after you enter a Personnel Number and select Infotype 0024, it will display all the qualifications of that employee (if they have any).
I want to create a report with 3 parameters ('Qualification group', 'Name' , 'Proficency' ) and after the user inserts data, to display all employees that have those skills. If I access table PA0024, it has no entries, so my question is:
In which table (or where) can I find all employees with their qualifications? Any other suggestions on how to make this report would help.
Upvotes: 0
Views: 3096
Reputation: 4337
As I recall, some qualifications can be stored in the PD tables.
Others tables are T77TS (holds the Qualification IDs and text) and T77TP (holds the Qualification Scale IDs and Texts)
There are also function module in the function group "RHPP", such as RHPP_Q_PROFILE_READ (using P objects in the OBJECTS parameter)
Upvotes: 2
Reputation: 742
Using the learner as input, you can execute LSO_LEARNER_GET_CPROFILE_C to get the different qualifications.
Upvotes: 1