cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Table Name for Text in E Recruitment

Former Member
0 Likes
469

Hi All,

I am working on E Recruitment and I have an issue with the table names. I have created created various activity types of which I is Interview feedback. The recruiter will initiate an approval process so that the panel can provide their feed back. The panel has an option to approve or reject the candidate and they can also update a note.

This approval and rejection of the candidate is available in Table HRP 5143. But the note entered by the panel is not available.

Can anyone help me from where I can get the note entered.

Thanks in advance.

Regards,

Vijay.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Likes

Hello,

The note is saved in KW and cannot be found in the infotype. What you will find in the infotype field is the pointer. To get the the text you can either open the activity screen and see the data or you can write your own logic. Check methods in class cl_hrrcf_hrkwf_storage.

Regards

Former Member
0 Likes

Hi,

Thanks for the reply. As you have mentioned I can view the text through an activity. But i am developing a report where in this text should appear. So how can I get this text and from which table in KW.

Thanks in advance.

Regards,

Former Member
0 Likes

Hi All,

Can any one help me to get the table name for the text maintained in E Recruitment.

Regards,

Vijay

Former Member
0 Likes

Hello,

I am not sure of your EREC version but if EHP4/5, you can check in class CL_HRRCF_ACTIVITY_MGMT_PL method READ_OVERALL_CNF_ACT or READ_INDIV_CNF_ACT. For example in READ_INDIV_CNF_ACT you can see

*--   NOTE_TXT
      IF NOT ls_record-note IS INITIAL.
        CALL METHOD lo_activity->read_text
          IMPORTING
            text = es_activity-note_txt.
      ENDIF.

which is used to retrive the note when you display the activity. It already uses the filedname as "NOTE" which is the docid. You could use the same logic to get the notes by using these methods through your report.

Regards,

Answers (0)