RPCSRDB2 is a standard ABAP INCLUDE available within your SAP system (depending on your version and release level). Below is the basic information available for this SAP report including which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC. Also check out the submitted Comments related to this SAP report or see any standard documentation available.
If you would like to execute this report or see the full code listing simply enter RPCSRDB2 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.
Title: SRD-specific subroutines for output
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
HR_99S_DISPLAY_ALV CALL FUNCTION 'HR_99S_DISPLAY_ALV' "#EC * EXPORTING p_tab_fieldcat = tab_fieldcat p_report = myrepid p_pf_status = 'SET_PF_STATUS' p_user_command = 'CALLBACK' TABLES p_tab_alv =
p_tab_error = gt_error EXCEPTIONS error = 1 OTHERS = 2.
HR_99S_DISPLAY_ERRORS CALL FUNCTION 'HR_99S_DISPLAY_ERRORS' TABLES p_tab_error = pt_error.
POPUP_TO_DECIDE_WITH_MESSAGE * CALL FUNCTION 'POPUP_TO_DECIDE_WITH_MESSAGE' * EXPORTING * diagnosetext1 = text-p01 * diagnosetext2 = lc_temse->name * diagnosetext3 = text-p02 * textline1 = text-p03 * text_option1 = text-p04 * text_option2 = text-p05 * titel = text-p06 * IMPORTING * answer = answer.
HR_99S_DISPLAY_EDITABLE_ALV CALL FUNCTION 'HR_99S_DISPLAY_EDITABLE_ALV' EXPORTING p_tab_fieldcat = tab_fieldcat p_layout = ls_layout p_report = sy-repid * p_pf_status = 'SET_PF_STATUS_EDITABLE_ALV' p_event_receiver = g_event_receiver CHANGING ch_tab_alv =
ch_tab_error = gt_error.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.