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

Download Candidate's Data Overview

Former Member
0 Likes
212

Hi Experts,

Is there a way to download multiple Candidate's Data Overview from E-recruitment into PC?

Regards,

TCL

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Likes

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

Luk11
Active Participant
0 Likes

Sure, everything in e-recruiting is done from ABAP 😉

Check out the old BSP controller class to get the candidate dataoverview CL_HRRCF_CAND_DOVR_NEW_A for inspiration

Former Member
0 Likes

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.

Luk11
Active Participant
0 Likes

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