MP400240 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 MP400240 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_READ_INFOTYPE CALL FUNCTION 'HR_READ_INFOTYPE' EXPORTING tclas = 'B' pernr = pspar-pernr infty = '4000' begda = low_date endda = high_date * BYPASS_BUFFER = ' ' * IMPORTING * SUBRC = TABLES infty_tab = ip4000 EXCEPTIONS infty_not_found = 1 OTHERS = 2 .
HR_READ_INFOTYPE CALL FUNCTION 'HR_READ_INFOTYPE' EXPORTING tclas = 'B' pernr = pspar-pernr infty = '4002' begda = low_date endda = high_date * BYPASS_BUFFER = ' ' * IMPORTING * SUBRC = TABLES infty_tab = ip4002 * EXCEPTIONS * INFTY_NOT_FOUND = 1 * OTHERS = 2 .
HR_READ_FOREIGN_OBJECT_TEXT CALL FUNCTION 'HR_READ_FOREIGN_OBJECT_TEXT' "XDPK011277 EXPORTING "XDPK011277 otype = 'S' "XDPK011277 objid = p4002-objid "XDPK011277 begda = p4002-begda "XDPK011277 endda = p4002-endda "XDPK011277 IMPORTING "XDPK011277 object_text = object_text "XDPK011277 EXCEPTIONS "XDPK011277 nothing_found = 1 "XDPK011277 wrong_objecttype = 2 "XDPK011277 missing_costcenter_data = 3 "XDPK011277 missing_object_id = 4 "XDPK011277 OTHERS = 5. "XDPK011277
RH_COLLECTIVE_POSITION_ACTIVE CALL FUNCTION 'RH_COLLECTIVE_POSITION_ACTIVE' IMPORTING ACTIVE = clpos_active .
RP_READ_T750X CALL FUNCTION 'RP_READ_T750X' EXPORTING * TEXT_LANGU = SY-LANGU * OTYPE = 'S' * AUTH_CHECK = 'X' OBJID_LOW = P4002-OBJID OBJID_HIGH = P4002-OBJID * BEGDA_LOW = '18000101' * BEGDA_HIGH = '99991231' * ENDDA_LOW = '18000101' * ENDDA_HIGH = '99991231' * IMPORTING * NO_AUTH_COUNTER = TABLES * TEXT_TAB = return_tab = it_t750x * EXCEPTIONS * NO_DATA_FOUND = 1 * NO_AUTHORITY = 2 * NO_PLVAR_FOUND = 3 * OTHERS = 4 .
HR_CHECK_STRU_AUTH_VAC CALL FUNCTION 'HR_CHECK_STRU_AUTH_VAC' EXPORTING vacancy = p_p4002_objid CHECK_MAINT = 'X' FCODE = 'INSE' FLAG_CHECK_BASIS_AUTH = 'X' EXCEPTIONS NO_STRU_AUTHORITY = 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.