MP5046F01 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 MP5046F01 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!
LSO_TRAININGTYPE_GET_TFORM_C CALL FUNCTION 'LSO_TRAININGTYPE_GET_TFORM_C' EXPORTING plvar =
otype = objid = getdefault = ' ' IMPORTING trainingform = ss_tform EXCEPTIONS OTHERS = 0.
RH_READ_OBJECT CALL FUNCTION 'RH_READ_OBJECT' EXPORTING plvar = p5046-plvar otype = p5046-otype objid = p5046-objid IMPORTING short = l_short display_text = l_stext obeg = l_obeg oend = l_oend EXCEPTIONS OTHERS = 0.
LSO_GET_DESCRIPTION CALL FUNCTION 'LSO_GET_DESCRIPTION' EXPORTING iv_plvar = p5046-plvar iv_otype = p5046-otype iv_objid = p5046-objid iv_begda = l_obeg iv_endda = l_oend TABLES et_description = lt_desc EXCEPTIONS OTHERS = 0.
RH_READ_INFTY_1001 CALL FUNCTION 'RH_READ_INFTY_1001' EXPORTING plvar = p5046-plvar otype = p5046-otype objid = p5046-objid begda = l_obeg endda = l_oend subty = 'A026' "not available in T77S0 TABLES i1001 = lt_i1001 EXCEPTIONS OTHERS = 0.
VRM_SET_VALUES CALL FUNCTION 'VRM_SET_VALUES' EXPORTING id = 'P5046-OWNER_PROFILE' values = lt_values EXCEPTIONS OTHERS = 0.
VRM_SET_VALUES CALL FUNCTION 'VRM_SET_VALUES' EXPORTING id = 'P5046-CANCEL_PROFILE' values = lt_values EXCEPTIONS OTHERS = 0.
VRM_SET_VALUES CALL FUNCTION 'VRM_SET_VALUES' EXPORTING id = 'P5046-COMPLETE_PROFILE' values = lt_values EXCEPTIONS OTHERS = 0.
VRM_SET_VALUES CALL FUNCTION 'VRM_SET_VALUES' EXPORTING id = 'P5046-BOOK_PROFILE' values = lt_values EXCEPTIONS OTHERS = 0.
REUSE_ALV_GRID_DISPLAY CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY' EXPORTING i_grid_title = text-001 i_structure_name = 'LSO_COL_TMPL_CAT' i_screen_start_column = 10 i_screen_start_line = 5 i_screen_end_column = 110 i_screen_end_line = 20 TABLES t_outtab = lt_category EXCEPTIONS OTHERS = 0.
REUSE_ALV_GRID_DISPLAY CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY' EXPORTING i_grid_title = text-002 i_structure_name = 'LSO_COL_TMPL_PAR' i_screen_start_column = 10 i_screen_start_line = 5 i_screen_end_column = 110 i_screen_end_line = 20 TABLES t_outtab = lt_parameter EXCEPTIONS OTHERS = 0.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.