SAP Reports / Programs

RPTREQACTOR SAP ABAP Report - Create Actor ID







RPTREQACTOR is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Each employee that is involved in a leave request or clock-in/clock-out correction (or approval thereof) requires an actor ID...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 RPTREQACTOR into the relevant SAP transactions such as SE38 or SE80


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 RPTREQACTOR. "Basic submit
SUBMIT RPTREQACTOR AND RETURN. "Return to original report after report execution complete
SUBMIT RPTREQACTOR 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: DISP = Display Only New Data Records
Selection Text: UPDATE = Test Run
Selection Text: MAX_UPD = D .
Title: Create Actor ID
Text Symbol: 001 = Database
Text Symbol: 002 = Log
Text Symbol: T01 = Personnel Number
Text Symbol: T02 = Actor ID
Text Symbol: T03 = New


INCLUDES used within this REPORT RPTREQACTOR

INCLUDE RPTREQ_ALV_UTILS.


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:

ENQUEUE_E_PTREQ_ACTOR CALL FUNCTION 'ENQUEUE_E_PTREQ_ACTOR'.

DEQUEUE_E_PTREQ_ACTOR CALL FUNCTION 'DEQUEUE_E_PTREQ_ACTOR'.

HR_TMW_BUFFER_FREE CALL FUNCTION 'HR_TMW_BUFFER_FREE'. "1742266

HR_INITIALIZE_BUFFER CALL FUNCTION 'HR_INITIALIZE_BUFFER'. "1750636

REUSE_ALV_GRID_DISPLAY CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY' EXPORTING i_callback_program = 'RPTREQACTOR' is_layout = layout it_fieldcat = fieldcat TABLES t_outtab = per_act_tab.

RH_GET_PLVAR CALL FUNCTION 'RH_GET_PLVAR' EXPORTING no_message = 'X' IMPORTING plvar = im_plvar EXCEPTIONS no_plvar = 1 OTHERS = 2.

P_EMPLOYEE_CHECKEXISTENCE CALL FUNCTION 'P_EMPLOYEE_CHECKEXISTENCE' EXPORTING object_id = im_objid date = sy-datum EXCEPTIONS employee_not_found = 1 OTHERS = 2.



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 RPTREQACTOR or its description.