RERCH_DOC_EXTR_EXPFRM 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 RERCH_DOC_EXTR_EXPFRM 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: Include RERCH_DOC_EXTR_EXPFRM
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
FILE_GET_NAME CALL FUNCTION 'FILE_GET_NAME' EXPORTING LOGICAL_FILENAME = 'ERCH-DOC-EXTRACT' parameter_1 = xy_params-file IMPORTING file_name = xy_params-dset EXCEPTIONS FILE_NOT_FOUND = 1 OTHERS = 2.
OWN_LOGICAL_SYSTEM_GET CALL FUNCTION 'OWN_LOGICAL_SYSTEM_GET' IMPORTING OWN_LOGICAL_SYSTEM = WA_EERCH_DOC_EXTR-SYSTEM_ID EXCEPTIONS OTHERS = 2.
BAL_LOG_CREATE CALL FUNCTION 'BAL_LOG_CREATE' EXPORTING I_S_LOG = HEADER EXCEPTIONS LOG_HEADER_INCONSISTENT = 1 OTHERS = 2.
BAL_LOG_MSG_ADD CALL FUNCTION 'BAL_LOG_MSG_ADD' EXPORTING I_S_MSG = MSG EXCEPTIONS LOG_NOT_FOUND = 0 OTHERS = 1.
BAL_DB_SAVE CALL FUNCTION 'BAL_DB_SAVE' EXPORTING i_save_all = 'X' EXCEPTIONS log_not_found = 1 save_not_allowed = 2 numbering_error = 3 OTHERS = 4.
BAL_DSP_LOG_DISPLAY CALL FUNCTION 'BAL_DSP_LOG_DISPLAY' EXCEPTIONS PROFILE_INCONSISTENT = 1 INTERNAL_ERROR = 2 NO_DATA_AVAILABLE = 3 NO_AUTHORITY = 4 OTHERS = 5.
ISU_DB_ERCHZ_SELECT_BILL CALL FUNCTION 'ISU_DB_ERCHZ_SELECT_BILL' EXPORTING X_BELNR = LC_ERCH_SHORT-BELNR TABLES T_ERCHZ = IT_ERCHZ EXCEPTIONS OTHERS = 1.
ISU_DB_ERCHC_SELECT_BILL CALL FUNCTION 'ISU_DB_ERCHC_SELECT_BILL' EXPORTING X_BELNR = LC_ERCH_SHORT-BELNR TABLES T_ERCHC = IT_ERCHC EXCEPTIONS OTHERS = 1.
FILE_GET_NAME CALL FUNCTION 'FILE_GET_NAME' EXPORTING LOGICAL_FILENAME = 'ERCH-DOC-EXTRACT' PARAMETER_1 = Y_DS IMPORTING FILE_NAME = Y_DS EXCEPTIONS FILE_NOT_FOUND = 1 OTHERS = 2.
FKK_FUNC_MODULE_DETERMINE CALL FUNCTION 'FKK_FUNC_MODULE_DETERMINE' EXPORTING I_FBEVE = 'R911' I_APPLK = CO_APPLK_ISU TABLES T_FBSTAB = T_FBSTAB EXCEPTIONS ERROR_MESSAGE = 1.
ISU_SAMPLE_R911 CALL FUNCTION 'ISU_SAMPLE_R911'.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.