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
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.
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
INCLUDE RPTREQ_ALV_UTILS.
No SAP DATABASE tables are accessed within this REPORT code!
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.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.