SAP Reports / Programs

RCF_CREATE_USER SAP ABAP Report - Create Internal Users and Candidates for SAP E-Recruiting







RCF_CREATE_USER is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Users of the SAP E-Recruiting application require other application attributes in addition to the technical object USER...see full standard documentation available for this report. Also check out the submitted Comments related to this SAP report and the details below to see which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC.

If you would like to execute this report or see the full code listing simply enter RCF_CREATE_USER into the relevant SAP transactions such as SE38 or SE80


Transaction Code(s):

Below is a list of transaction codes which are relevant to this SAP report

OO_HRRCF_CREATE_USER - Create User for E-Recruiting


ABAP code to call this SAP report using the submit statement

This report can be called from another progam/report simply by using the ABAP SUBMIT statement, see below for example ABAP code snipts of how to do this.






SUBMIT RCF_CREATE_USER. "Basic submit
SUBMIT RCF_CREATE_USER AND RETURN. "Return to original report after report execution complete
SUBMIT RCF_CREATE_USER VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


Selection Text: P_EMAIL = D .
Selection Text: P_FIRST = D .
Selection Text: P_LAST = D .
Selection Text: P_PERNR = D .
Selection Text: P_PLANS = D .
Selection Text: P_USER = D .
Title: Create Internal Users and Candidates for SAP E-Recruiting
Text Symbol: 002 = Candidate Already Exists for This User
Text Symbol: 003 = A candidate already exists for the employee number
Text Symbol: 004 = Candidate Already Exists for E-Mail Address
Text Symbol: 010 = User for E-Recruiting Application Was Created Successfully
Text Symbol: 011 = Assign Appropriate Authorizations to User
Text Symbol: 012 = Change Password of User If Necessary
Text Symbol: 020 = User Name:
Text Symbol: 021 = Employee Number:
Text Symbol: 022 = Candidate ID:


INCLUDES used within this REPORT RCF_CREATE_USER

No INCLUDES are used within this REPORT code!


TABLES used within REPORT and the associated SELECT statement:





No SAP DATABASE tables are accessed within this REPORT code!


Function Modules used within report and the associated call statement:

BAPI_USER_EXISTENCE_CHECK CALL FUNCTION 'BAPI_USER_EXISTENCE_CHECK' EXPORTING username = p_user IMPORTING return = ls_return.

BAPI_USER_CHANGE * call function 'BAPI_USER_CHANGE' * exporting * username = p_user * ref_user = ls_ref_user * ref_userx = ls_ref_userx * tables * return = lt_return.

BALW_BAPIRETURN_GET2 CALL FUNCTION 'BALW_BAPIRETURN_GET2' EXPORTING type = ls_errors-msgty cl = ls_errors-msgid number = ls_errors-msgno par1 = ls_errors-msgv1 par2 = ls_errors-msgv2 par3 = ls_errors-msgv3 par4 = ls_errors-msgv4 IMPORTING return = ls_return.



Contribute (Add Comments)

Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.







The contribute/comments section below therefore offer's an opportunity for anyone to add additional information. This can be anything from useful hints, tips and screen shots to relevant SAP notes or anything else you feel is relevant to this report.

This will then be available for everyone to easily find by simply searching on the report name RCF_CREATE_USER or its description.