MNLSTABU is a standard Executable ABAP Report 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 MNLSTABU 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.
Selection Text: KORRNUM = Request Number
Title: Report for Transporting MNLS-TABUS
INCLUDE RDDRSCST.
No SAP DATABASE tables are accessed within this REPORT code!
EMINT_CREATE_COMM call function 'EMINT_CREATE_COMM' exporting IC_TRKORR = korrnum ic_trfunction = 'P' ic_trstatus = 'R' ic_tarsystem = 'SAP' ic_as4text = 'TCP00, TCP01, TCP02,.. for TABUIMP_BAS'
ENQUEUE_E_TRKORR call function 'ENQUEUE_E_TRKORR' exporting trkorr = korrnum exceptions foreign_lock = 1 system_failure = 2 others = 3.
TRINT_APPEND_COMM call function 'TRINT_APPEND_COMM' exporting wi_exclusive = 'X' wi_sel_e071 = 'X' wi_sel_e071k = 'X' wi_trkorr = korrnum * IMPORTING * WE_KEYS_PHYSICAL_APPENDED = * WE_OBJECTS_PHYSICAL_APPENDED = tables wt_e071 = it_e071 wt_e071k = it_e071k exceptions e071k_append_error = 1 e071_append_error = 2 trkorr_empty = 3 others = 4.
TR_REQ_CHECK_KEY *CALL FUNCTION 'TR_REQ_CHECK_KEY' * EXPORTING * IS_KEY = * IS_REQUEST_HEADER = ** IV_COLLECT_MODE = ' ' ** IMPORTING ** ES_KEY = ** CHANGING ** CT_MESSAGES = ** EXCEPTIONS ** INVALID_SYNTAX = 1 ** INVALID_TABLE = 2 ** INVALID_KEY = 3 ** WRONG_CALL = 4 ** OTHERS = 5 * .
TR_CHECK_COMM_KEYSYNTAX *CALL FUNCTION 'TR_CHECK_COMM_KEYSYNTAX' * EXPORTING * WI_E071K = IT_E071K ** WI_E070C = ' ' ** WI_E070 = ' ' ** IMPORTING ** WE_E071K = * EXCEPTIONS * CHAR_IN_NON_CHAR_FIELD = 1 * INTTAB_TABLE = 2 * KEYSTRING_LONGER_CHAR_KEY = 3 * KEY_LONGER_FIELD_BUT_NO_GENERC = 4 * MISSING_KEY_MASTER_FIELDS = 5 * MISSING_KEY_TABLEKEY = 6 * NON_CHAR_KEY_BUT_NO_GENERIC = 7 * NO_KEY_FIELDS = 8 * TABLE_HAS_NO_FIELDS = 9 * TABLE_NOT_ACTIV = 10 * UNALLOWED_KEY_FUNCTION = 11 * UNALLOWED_KEY_OBJECT = 12 * UNALLOWED_KEY_OBJNAME = 13 * UNALLOWED_KEY_PGMID = 14 * WRONG_CLIENT = 15 * OTHERS = 16.
TRINT_APPEND_COMM call function 'TRINT_APPEND_COMM' exporting wi_exclusive = 'X' wi_sel_e071 = 'X' wi_sel_e071k = 'X' wi_trkorr = korrnum * IMPORTING * WE_KEYS_PHYSICAL_APPENDED = * WE_OBJECTS_PHYSICAL_APPENDED = tables wt_e071 = it_e071 wt_e071k = it_e071k exceptions e071k_append_error = 1 e071_append_error = 2 trkorr_empty = 3 others = 4.
TR_CHECK_COMM_KEYSYNTAX *CALL FUNCTION 'TR_CHECK_COMM_KEYSYNTAX' * EXPORTING * WI_E071K = IT_E071K ** WI_E070C = ' ' ** WI_E070 = ' ' ** IMPORTING ** WE_E071K = * EXCEPTIONS * CHAR_IN_NON_CHAR_FIELD = 1 * INTTAB_TABLE = 2 * KEYSTRING_LONGER_CHAR_KEY = 3 * KEY_LONGER_FIELD_BUT_NO_GENERC = 4 * MISSING_KEY_MASTER_FIELDS = 5 * MISSING_KEY_TABLEKEY = 6 * NON_CHAR_KEY_BUT_NO_GENERIC = 7 * NO_KEY_FIELDS = 8 * TABLE_HAS_NO_FIELDS = 9 * TABLE_NOT_ACTIV = 10 * UNALLOWED_KEY_FUNCTION = 11 * UNALLOWED_KEY_OBJECT = 12 * UNALLOWED_KEY_OBJNAME = 13 * UNALLOWED_KEY_PGMID = 14 * WRONG_CLIENT = 15 * OTHERS = 16.
TRINT_APPEND_COMM call function 'TRINT_APPEND_COMM' exporting wi_exclusive = 'X' wi_sel_e071 = 'X' wi_sel_e071k = 'X' wi_trkorr = korrnum * IMPORTING * WE_KEYS_PHYSICAL_APPENDED = * WE_OBJECTS_PHYSICAL_APPENDED = tables wt_e071 = it_e071 wt_e071k = it_e071k exceptions e071k_append_error = 1 e071_append_error = 2 trkorr_empty = 3 others = 4.
DEQUEUE_E_TRKORR call function 'DEQUEUE_E_TRKORR' exporting trkorr = korrnum exceptions others = 1.
SUBST_GET_REPORT_PARM call function 'SUBST_GET_REPORT_PARM' exporting iv_parmname = lv_name importing ev_parameter = lv_value ev_valid_data = lv_valid_data.
SUBST_INIT_DEFAULT_PROTOCOL call function 'SUBST_INIT_DEFAULT_PROTOCOL' exporting iv_msag = gc_msag iv_acttype = gc_proto_put iv_fname = pc_proto_name iv_subdir = gc_dir_log iv_repid = gc_repid importing ev_fname = lv_protocol exceptions saprelease_not_found = 01.
SUBST_WRITE_DEFAULT_PROTOCOL call function 'SUBST_WRITE_DEFAULT_PROTOCOL' exporting iv_suppress_footer = ' '.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.