MGSBMF14 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 MGSBMF14 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_SET_DECRYPT_SETID CALL FUNCTION 'G_SET_DECRYPT_SETID' EXPORTING setid = single_int-setnr IMPORTING shortname = single_int-shortname.
G_SET_TEXT_READ CALL FUNCTION 'G_SET_TEXT_READ' EXPORTING setname = single_int-setnr table = rgsbs-table IMPORTING settitle = single_int-title.
G_SET_MAINTENANCE_CHECK_USAGE CALL FUNCTION 'G_SET_MAINTENANCE_CHECK_USAGE' EXPORTING setid = u_setid IMPORTING used_in_reports = specialset-used_in_rep used_in_predef_col = specialset-used_in_dse used_in_vsr = specialset-used_in_vsr.
G_GENERATE_SINGLE_SET CALL FUNCTION 'G_GENERATE_SINGLE_SET' EXPORTING set_header = rgsbs ref_set = setnrref_save TABLES set_lines = setlines_single set_lines_basic = setlines_basic formula_lines = formtab.
G_SET_DECRYPT_SETID CALL FUNCTION 'G_SET_DECRYPT_SETID' EXPORTING setid = rgsbs-setnr IMPORTING setclass = loc_setclass kokrs = l_kokrs ktopl = l_ktopl eccs_dimen = l_eccs_dimen eccs_itclg = l_eccs_itclg eccs_sityp = l_eccs_sityp lib = loc_lib rname = loc_rname EXCEPTIONS OTHERS = 0.
G_SET_GET_ID_FROM_NAME CALL FUNCTION 'G_SET_GET_ID_FROM_NAME' EXPORTING tabname = rgsbs-table fieldname = rgsbs-field shortname = u_shortname setclass = wf_setclass old_setid = l_setid lib = loc_lib rname = loc_rname IMPORTING new_setid = l_setid set_info = my_info EXCEPTIONS no_set_found = 1 no_set_picked_from_popup = 2 wrong_class = 3 wrong_subclass = 4 OTHERS = 5.
G_SET_ENCRYPT_SETID CALL FUNCTION 'G_SET_ENCRYPT_SETID' EXPORTING setclass = loc_setclass shortname = u_shortname kokrs = l_kokrs ktopl = l_ktopl eccs_dimen = l_eccs_dimen eccs_itclg = l_eccs_itclg eccs_sityp = l_eccs_sityp IMPORTING setid = l_setid EXCEPTIONS OTHERS = 0.
G_SET_GET_INFO CALL FUNCTION 'G_SET_GET_INFO' EXPORTING no_set_title = 'X' setname = l_setid use_table_buffer = ' ' IMPORTING info = my_info EXCEPTIONS OTHERS = 2.
G_SET_GET_INFO CALL FUNCTION 'G_SET_GET_INFO' EXPORTING no_set_title = 'X' setname = u_setid IMPORTING info = my_info EXCEPTIONS set_not_found = 1 OTHERS = 2.
G_SET_DYNAMIC_CHECK CALL FUNCTION 'G_SET_DYNAMIC_CHECK' EXPORTING setid = u_setid EXCEPTIONS set_not_found = 1 set_contains_dynamic_set = 2 OTHERS = 3.
G_SET_AUTHORITY_CHECK CALL FUNCTION 'G_SET_AUTHORITY_CHECK' EXPORTING actvt = activity-display authgr = my_info-authgr.
G_SET_INSERT CALL FUNCTION 'G_SET_INSERT' EXPORTING setname = u_setnr table = rgsbs-table fieldname = rgsbs-field no_titles = 'X' IMPORTING header = set_header index = set_index EXCEPTIONS set_not_found = 01.
G_CONTROL_BLOCK_RESET CALL FUNCTION 'G_CONTROL_BLOCK_RESET' EXPORTING control_block = control_block.
G_SET_GET_NEXT CALL FUNCTION 'G_SET_GET_NEXT' EXPORTING control_block = control_block index = set_index level = numb_of_level IMPORTING header = set_header EXCEPTIONS end_of_sets = 01.
G_SET_GET_NEXT CALL FUNCTION 'G_SET_GET_NEXT' EXPORTING control_block = control_block index = set_index level = numb_of_level IMPORTING header = set_header EXCEPTIONS end_of_sets = 01.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.