Ovidiu Pocnet
Ovidiu Pocnet

Reputation: 589

Employee Qualification Infotype 0024

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

Answers (2)

PATRY Guillaume
PATRY Guillaume

Reputation: 4337

As I recall, some qualifications can be stored in the PD tables.

  • Qualifications are objets type 'Q' stored in HRP1000.
  • Relations between an employee and its qualifications are stored into HRP1001. The field ADATANR of this relation is the key for an entry in table HRPAD31 (I think) which contains the rating of this employee for this qualification.

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

Mikael G
Mikael G

Reputation: 742

Using the learner as input, you can execute LSO_LEARNER_GET_CPROFILE_C to get the different qualifications.

Upvotes: 1

Related Questions