FGBBGE07 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 FGBBGE07 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!
G_VSR_GET_EXITPOOL_NAME CALL FUNCTION 'G_VSR_GET_EXITPOOL_NAME' EXPORTING arbgb = l_arbgb mandt = g_mandt IMPORTING poolname = l_filename EXCEPTIONS no_entry = 1 bad_arbgb = 2.
G_FIELD_READ CALL FUNCTION 'G_FIELD_READ' EXPORTING fieldname = field table = table IMPORTING field_attr = dfies EXCEPTIONS not_found = 01.
CONVERT_DATE_TO_INTERNAL CALL FUNCTION 'CONVERT_DATE_TO_INTERNAL' EXPORTING date_external = l_data accept_initial_date = 'X' "Note 992335 IMPORTING date_internal = l_data EXCEPTIONS date_external_is_invalid = 1 OTHERS = 2.
CONVERT_TIME_INPUT CALL FUNCTION 'CONVERT_TIME_INPUT' EXPORTING input = l_data IMPORTING output = l_tims EXCEPTIONS plausibility_check_failed = 1 wrong_format_in_input = 2 OTHERS = 3.
G_CONVERT_INPUT CALL FUNCTION 'G_CONVERT_INPUT' EXPORTING convexit = dfies-convexit datatype = dfies-datatype input_value = l_data length = dfies-outputlen IMPORTING converted_value = l_data EXCEPTIONS date_does_not_exist = 01 date_format_unrecognized = 02 illegal_length = 03 input_is_not_numeric = 04 OTHERS = 05.
TR_TADIR_INTERFACE CALL FUNCTION 'TR_TADIR_INTERFACE' EXPORTING wi_test_modus = ' ' wi_tadir_pgmid = 'R3TR' wi_tadir_object = 'PROG' wi_tadir_masterlang = sy-langu wi_tadir_obj_name = t_tadir-obj_name wi_read_only = 'X' EXCEPTIONS OTHERS = 01. "Assume the worst, it does not exist.
G_VSR_GET_SYSTEM_TYPE CALL FUNCTION 'G_VSR_GET_SYSTEM_TYPE' IMPORTING x_fi = g_fi EXCEPTIONS OTHERS = 0.
TR_APPEND_LOG CALL FUNCTION 'TR_APPEND_LOG' TABLES xmsg = protocol EXCEPTIONS file_not_found = 1 wrong_call = 2 OTHERS = 3.
CHECK_EXIST CALL FUNCTION 'CHECK_EXIST' EXPORTING iv_pgmid = c_program_id iv_object = c_object_id iv_obj_name = object_name IMPORTING e_exist = exist_flag EXCEPTIONS tr_no_check_function = 1 OTHERS = 2.
TR_APPEND_LOG CALL FUNCTION 'TR_APPEND_LOG' TABLES xmsg = protocol EXCEPTIONS file_not_found = 1 wrong_call = 2 OTHERS = 3.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.