J_3R_M7_ENT 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 J_3R_M7_ENT 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.
Title: Include J_3R_M7_ENT
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
FP_JOB_OPEN * CALL FUNCTION 'FP_JOB_OPEN' * CHANGING * IE_OUTPUTPARAMS = ls_outpar * EXCEPTIONS * CANCEL = 1 * USAGE_ERROR = 2 * SYSTEM_ERROR = 3 * INTERNAL_ERROR = 4 * OTHERS = 5.
FP_JOB_CLOSE * CALL FUNCTION 'FP_JOB_CLOSE' * EXCEPTIONS * USAGE_ERROR = 1 * SYSTEM_ERROR = 2 * INTERNAL_ERROR = 3 * OTHERS = 4.
FP_FUNCTION_MODULE_NAME * CALL FUNCTION 'FP_FUNCTION_MODULE_NAME' * EXPORTING * I_NAME = LV_FORM_NAME * IMPORTING * E_FUNCNAME = LV_FM_NAME.
FI_COMPANY_CODE_DATA CALL FUNCTION 'FI_COMPANY_CODE_DATA' EXPORTING i_bukrs = ls_mseg-bukrs IMPORTING e_t001 = ls_t001 EXCEPTIONS system_error = 1 OTHERS = 2.
MM_PARTNERS_FOR_MESSAGING CALL FUNCTION 'MM_PARTNERS_FOR_MESSAGING' EXPORTING APPLICATION = 'P' VORGA = 'F' NEUPR = 'X' IEKKO = ls_ekko TABLES PART = lt_part.
LFA1_SINGLE_READ CALL FUNCTION 'LFA1_SINGLE_READ' EXPORTING lfa1_lifnr = ls_part-parno IMPORTING wlfa1 = ls_lfa1 EXCEPTIONS not_found = 1 OTHERS = 2.
LFA1_SINGLE_READ * CALL FUNCTION 'LFA1_SINGLE_READ' * EXPORTING * lfa1_lifnr = nast-parnr * IMPORTING * wlfa1 = ls_lfa1 * EXCEPTIONS * not_found = 1 * OTHERS = 2.
LFB1_SINGLE_READ CALL FUNCTION 'LFB1_SINGLE_READ' EXPORTING i_lifnr = nast-parnr i_bukrs = ls_mseg-bukrs IMPORTING o_lfb1 = ls_lfb1 EXCEPTIONS not_found = 1 parameter_error = 2 OTHERS = 3.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.