MP322545 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 MP322545 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!
HR_T589A_READ CALL FUNCTION 'HR_T589A_READ' EXPORTING ident = 'P' opera = p_ioper IMPORTING t589a = t589a EXCEPTIONS entry_not_found = 1 OTHERS = 2.
SAPGUI_SET_FUNCTIONCODE CALL FUNCTION 'SAPGUI_SET_FUNCTIONCODE' EXPORTING functioncode = '=' EXCEPTIONS function_not_supported = 1 OTHERS = 2.
RH_OBJID_REQUEST CALL FUNCTION 'RH_OBJID_REQUEST' IMPORTING sel_object = ls_f4_obj TABLES otype_table = lt_object EXCEPTIONS cancelled = 1 wrong_condition = 2 nothing_found = 3 internal_error = 4 illegal_mode = 5 OTHERS = 6.
RH_READ_INFTY_1001 CALL FUNCTION 'RH_READ_INFTY_1001' EXPORTING plvar = ls_f4_obj-plvar otype = ls_f4_obj-otype objid = ls_f4_obj-objid subty = lv_subtyp TABLES i1001 = lt_p1001 EXCEPTIONS nothing_found = 1 wrong_condition = 2 wrong_parameters = 3 OTHERS = 4.
RH_READ_OBJECT CALL FUNCTION 'RH_READ_OBJECT' EXPORTING plvar = ls_p1001-plvar otype = lv_otype objid = lv_objid IMPORTING obeg = ls_f4_obj-begda oend = ls_f4_obj-endda short = ls_f4_obj-short stext = ls_f4_obj-stext EXCEPTIONS not_found = 1 OTHERS = 2.
RH_GET_OTYPE_TEXT CALL FUNCTION 'RH_GET_OTYPE_TEXT' EXPORTING otype = lv_otype * LANGU = SY-LANGU IMPORTING otext = lv_label EXCEPTIONS invalid_otype = 1 OTHERS = 2.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.