MJ7LV1DTA_MAP 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 MJ7LV1DTA_MAP 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: REA DTA: Form routines Mapping and Rules
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
SUSR_USER_ADDRESS_READ * CALL FUNCTION 'SUSR_USER_ADDRESS_READ' * EXPORTING * USER_NAME = L_UNAME * IMPORTING * USER_ADDRESS = LS_USR_ADDR ** USER_USR03 = * EXCEPTIONS * USER_ADDRESS_NOT_FOUND = 1 * OTHERS = 2.
J_7L_USR_GETDETAIL CALL FUNCTION 'J_7L_USR_GETDETAIL' EXPORTING * I_UNAME = i_j7lms = j_7lms IMPORTING * O_UNAME = * O_USR03 = o_usr_addr = ls_usr_addr * O_USR_SZADDR_COMPLETE = TABLES io_log = mvar EXCEPTIONS address_not_found = 1 OTHERS = 2.
SUSR_USER_ADDRESS_READ * CALL FUNCTION 'SUSR_USER_ADDRESS_READ' * EXPORTING * USER_NAME = L_UNAME * IMPORTING * USER_ADDRESS = LS_USR_ADDR ** user_usr03 = wa_usr03 * EXCEPTIONS * USER_ADDRESS_NOT_FOUND = 1 * OTHERS = 2.
J_7L_RPA_GETDETAIL CALL FUNCTION 'J_7L_RPA_GETDETAIL' EXPORTING i_j7lms = j_7lms IMPORTING * O_CREDITOR_GENERAL_DETAIL = * O_CREDITOR_COMPANY_DETAIL = * O_LFA1 = * O_SADR = * O_E01 = o_e02 = wa_e02 TABLES io_log = mvar EXCEPTIONS OTHERS = 1.
J_7L_USR_GETDETAIL CALL FUNCTION 'J_7L_USR_GETDETAIL' EXPORTING i_uname = wa_e02-auditor i_j7lms = j_7lms IMPORTING * O_UNAME = * O_USR03 = o_usr_addr = ls_usr_addr TABLES io_log = mvar EXCEPTIONS address_not_found = 1 OTHERS = 2.
UNIT_CONVERSION_SIMPLE CALL FUNCTION 'UNIT_CONVERSION_SIMPLE' EXPORTING input = p_value_in * NO_TYPE_CHECK = 'X' round_sign = charx unit_in = p_unit_in unit_out = p_unit_out IMPORTING * ADD_CONST = * DECIMALS = * DENOMINATOR = * NUMERATOR = output = p_value_out EXCEPTIONS conversion_not_found = 1 division_by_zero = 2 input_invalid = 3 output_invalid = 4 overflow = 5 type_invalid = 6 units_missing = 7 unit_in_not_found = 8 unit_out_not_found = 9 OTHERS = 10.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.