on ‎2014 Oct 02 8:20 AM
Hi Experts,
Is there a way to download multiple Candidate's Data Overview from E-recruitment into PC?
Regards,
TCL
Request clarification before answering.
Hi Luk,
I would like to call the smartforms(ZHRRCF_CANDIDATE_PREVIEW) that used in E-recruitment's Data Overview from ABAP. Is that possible?
What value need to pass to that smartform?
Regards,
TCL
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Luk,
Try something as below:
TYPES: BEGIN OF gty_obj,
PLVAR TYPE hrp1001-PLVAR,
OTYPE TYPE hrp1001-OTYPE,
objid TYPE hrp1001-objid,
END OF gty_obj.
TYPES: gtab_obj TYPE STANDARD TABLE OF gty_obj INITIAL SIZE 0.
DATA: gt_obj TYPE gtab_obj.
DATA: candidate type ref to CL_HRRCF_CANDIDATE_PREVIEW_BL.
CALL METHOD candidate->GET_PERSONAL_DATA
EXPORTING
CAND_OBJ = gt_obj.
But keep getting below error message:
"GT_OBJ" is not type-compatible with formal parameter "CAND_OBJ".
Pls help.
Hi,
For this, you will need to develop something.
Also note that you can only download one file at a time, so you will need to merge the OTF content of your generated smartforms before downloading, or package individual PDF documents into a ZIP file.
Both options can be performed in ABAP and do not require additional components.
Regards,
Luk
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
| User | Count |
|---|---|
| 8 | |
| 4 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.