RPLCTRFB 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 RPLCTRFB 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.
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
DDIF_FIELDINFO_GET CALL FUNCTION 'DDIF_FIELDINFO_GET' EXPORTING TABNAME = TABNAME FIELDNAME = 'STAT2' TABLES DFIES_TAB = DFIES_TAB EXCEPTIONS NOT_FOUND = 1 INTERNAL_ERROR = 2 OTHERS = 3.
DDIF_FIELDINFO_GET CALL FUNCTION 'DDIF_FIELDINFO_GET' EXPORTING TABNAME = TABNAME FIELDNAME = 'KPR01' TABLES DFIES_TAB = DFIES_TAB EXCEPTIONS NOT_FOUND = 1 INTERNAL_ERROR = 2 OTHERS = 3.
HR_FR_GET_DATE_EFFECT_COTIS CALL FUNCTION 'HR_FR_GET_DATE_EFFECT_COTIS' EXPORTING im_pernr = pernr-pernr im_date = p0064-begda im_wpbp = wpbp[] IMPORTING ex_tab_decal = lt_decal.
HR_FR_TRACK_MODEL_CHANGES CALL FUNCTION 'HR_FR_TRACK_MODEL_CHANGES' EXPORTING p_regno = lt_regno p_begda = p0064-begda p_endda = p0064-endda iv_pernr = pernr-pernr iv_chkdt = ctrevp-paydt iv_vdate = ctrevp-fpend it_decal = lt_decal iv_addct = pfru0_yes IMPORTING p_tab_model_changes = lt_split CHANGING ct_p0001 = p0001[] ct_p0008 = p0008[] ct_p0016 = p0016[] ct_p0217 = p0217[] ct_wpbp = wpbp[] cs_p0064 = p0064 EXCEPTIONS invalid_regno = 1 feature_error = 2 OTHERS = 3.
DDIF_FIELDINFO_GET CALL FUNCTION 'DDIF_FIELDINFO_GET' EXPORTING TABNAME = TABNAME FIELDNAME = FIELD TABLES DFIES_TAB = DFIES_TAB EXCEPTIONS NOT_FOUND = 1 INTERNAL_ERROR = 2 OTHERS = 3.
CONVERT_DATE_TO_EXTERNAL CALL FUNCTION 'CONVERT_DATE_TO_EXTERNAL' EXPORTING DATE_INTERNAL = BEGDA IMPORTING DATE_EXTERNAL = DAT_DEB EXCEPTIONS DATE_INTERNAL_IS_INVALID = 1 OTHERS = 2.
CONVERT_DATE_TO_EXTERNAL CALL FUNCTION 'CONVERT_DATE_TO_EXTERNAL' EXPORTING DATE_INTERNAL = ENDDA IMPORTING DATE_EXTERNAL = DAT_FIN EXCEPTIONS DATE_INTERNAL_IS_INVALID = 1 OTHERS = 2.
HR_GET_ERROR_LIST CALL FUNCTION 'HR_GET_ERROR_LIST' TABLES ERROR = DISPLAY_ERR ERRORTEXTS = ERRTEXT_TAB EXCEPTIONS NO_ERRORS = 1 OTHERS = 2.
HR_DISPLAY_ERROR_LIST * call function 'HR_DISPLAY_ERROR_LIST' * tables * error = display_err * exceptions * invalid_linesize = 1 * others = 2.
HR_DISPLAY_BASIC_LIST CALL FUNCTION 'HR_DISPLAY_BASIC_LIST' EXPORTING BASIC_LIST_TITLE = SY-TITLE FILE_NAME = MYREPORT HEAD_LINE1 = HEADER1 * head_line2 = header2 * foot_note1 = footnote1 * foot_note2 = footnote2 * foot_note3 = footnote3 * lay_out = 0 * dyn_pushbutton_text1 = text-047 * dyn_pushbutton_text2 = text-048 * DYN_PUSHBUTTON_TEXT3 = * DYN_PUSHBUTTON_TEXT4 = * DYN_PUSHBUTTON_TEXT5 = * DYN_PUSHBUTTON_TEXT6 = * DATA_STRUCTURE = ' ' * HEAD_LINE3 = ' ' * HEAD_LINE4 = ' ' CURRENT_REPORT = MYREPORT * LIST_LEVEL = ' ' * ADDITIONAL_OPTIONS = ' ' * WORD_DOCUMENT = IMPORTING RETURN_CODE = RETURN_CODE TABLES DATA_TAB = ERROR_TAB FIELDNAME_TAB = FIELDNAMES ERROR_TAB = DISPLAY_ERR EXCEPTIONS DOWNLOAD_PROBLEM = 1 NO_DATA_TAB_ENTRIES = 2 TABLE_MISMATCH = 3 PRINT_PROBLEMS = 4 OTHERS = 5.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.