J_1BEFD_PRE_PROCESSING 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 J_1BEFD_PRE_PROCESSING 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: EFD: pre-processing routines
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
DP_GET_FIELDS_FROM_TABLE CALL FUNCTION 'DP_GET_FIELDS_FROM_TABLE'"#EC * EXPORTING tabname = 'J_1BNFCPD' TABLES data = gt_data fields = gt_rfc_fields EXCEPTIONS dp_invalid_table = 1 OTHERS = 2.
DP_GET_FIELDS_FROM_TABLE CALL FUNCTION 'DP_GET_FIELDS_FROM_TABLE' EXPORTING tabname = 'J_1BNFDOC' TABLES data = gt_data_j_1bnfdoc fields = gt_fields_j_1bnfdoc EXCEPTIONS dp_invalid_table = 1 OTHERS = 2.
DP_GET_FIELDS_FROM_TABLE CALL FUNCTION 'DP_GET_FIELDS_FROM_TABLE' EXPORTING tabname = 'J_1BNFLIN' TABLES data = gt_data_j_1bnflin fields = gt_fields_j_1bnflin EXCEPTIONS dp_invalid_table = 1 OTHERS = 2.
DP_GET_FIELDS_FROM_TABLE CALL FUNCTION 'DP_GET_FIELDS_FROM_TABLE' EXPORTING tabname = 'J_1BNFE_ACTIVE' TABLES data = gt_data_j_1bnfe_active fields = gt_fields_j_1bnfe_active EXCEPTIONS dp_invalid_table = 1 OTHERS = 2.
J_1BEFD_BADI_READ CALL FUNCTION 'J_1BEFD_BADI_READ' IMPORTING et_j_1befd_badi = lt_badi_list EXCEPTIONS no_entries = 1 OTHERS = 2.
RS_REFRESH_FROM_SELECTOPTIONS CALL FUNCTION 'RS_REFRESH_FROM_SELECTOPTIONS' EXPORTING curr_report = sy-repid TABLES selection_table = gt_seltab EXCEPTIONS not_found = 1 no_report = 2 OTHERS = 3.
FIRST_DAY_IN_PERIOD_GET CALL FUNCTION 'FIRST_DAY_IN_PERIOD_GET' "#EC * EXPORTING i_gjahr = ld_year i_periv = ld_periv i_poper = ld_period IMPORTING e_date = ld_datum_low EXCEPTIONS input_false = 1 t009_notfound = 2 t009b_notfound = 3 OTHERS = 4.
LAST_DAY_IN_PERIOD_GET CALL FUNCTION 'LAST_DAY_IN_PERIOD_GET' "#EC * EXPORTING i_gjahr = ld_year i_periv = ld_periv i_poper = ld_period IMPORTING e_date = ld_datum_high EXCEPTIONS input_false = 1 t009_notfound = 2 t009b_notfound = 3 OTHERS = 4.
LDB_PROCESS CALL FUNCTION 'LDB_PROCESS' EXPORTING ldbname = 'SDF' field_selection = lt_fields TABLES callback = lt_callback selections = lt_seltab EXCEPTIONS ldb_not_reentrant = 1 ldb_incorrect = 2 ldb_already_running = 3 ldb_error = 4 ldb_selections_error = 5 ldb_selections_not_accepted = 6 variant_not_existent = 7 variant_obsolete = 8 variant_error = 9 free_selections_error = 10 callback_no_event = 11 callback_node_duplicate = 12 callback_no_program = 13 callback_no_cbform = 14 dyn_node_no_type = 15 dyn_node_invalid_type = 16 OTHERS = 17.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.