cancel
Showing results for 
Search instead for 
Did you mean: 

Standard RFC for creating requisition and Position in SAP HR

Former Member
0 Kudos

Hi,

I want to know is there any standard RFC or Function module for creating Requisition and Position in SAP HR Ecc 5.0 in Background.

if I use the FM RH_CREATE_OBJS, it directing into dialog screen to enter the values for object name and object abbr. It is possible to give the values for object abbr and object name in FM import parameter itself.

Regards,

Gukan.

Accepted Solutions (0)

Answers (1)

Answers (1)

former_member181966
Active Contributor
0 Kudos

Try

CALL FUNCTION 'RH_CREATE_OBJECT_VIA_BOR'

EXPORTING

plvar = l6000_plvar

otype = l6000_otype

check_only = ' '

create_method = 'CREATE'

IMPORTING

new_object = l6000_hrobj

EXCEPTIONS

bor_otype_not_found = 1

cancelled = 2

create_failed = 3

internal_error = 4

OTHERS = 5.

Thanks,

Saquib Khan

Former Member
0 Kudos

Thanks for your reply.

Even this FM also I can not able to pass the values for object abbr and object name in import parameters.