MGSBMFPP 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 MGSBMFPP 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!
GET_FIELDTAB CALL FUNCTION 'GET_FIELDTAB' EXPORTING langu = sy-langu tabname = rgsbm-utab withtext = 'X' TABLES fieldtab = settab EXCEPTIONS internal_error = 01 no_texts_found = 02 table_has_no_fields = 03 table_not_activ = 04.
G_FIELD_READ CALL FUNCTION 'G_FIELD_READ' EXPORTING add_flag = 'X' table = rgsbs-table fieldname = rgsbs-field IMPORTING field_attr = field_attr.
G_HELP_VALUES_GET CALL FUNCTION 'G_HELP_VALUES_GET' EXPORTING fieldname = rgsbs-field tabname = l_tabname input_value = wert IMPORTING selected_value = wert.
POPUP_TO_CONFIRM_STEP CALL FUNCTION 'POPUP_TO_CONFIRM_STEP' EXPORTING titel = u_title textline1 = text-001 textline2 = text-002 IMPORTING answer = u_answer.
TR_OBJECT_CHECK CALL FUNCTION 'TR_OBJECT_CHECK' EXPORTING wi_ko200 = l_ko200 TABLES wt_e071k = lt_keys.
TR_OBJECT_INSERT CALL FUNCTION 'TR_OBJECT_INSERT' EXPORTING wi_ko200 = l_ko200 TABLES wt_e071k = lt_keys.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.