on ‎2011 Sep 17 11:21 AM
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.
Request clarification before answering.
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
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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,
| User | Count |
|---|---|
| 8 | |
| 7 | |
| 4 | |
| 2 | |
| 2 | |
| 2 | |
| 2 | |
| 2 | |
| 1 | |
| 1 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.