MS38VF50 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 MS38VF50 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!
COMPLEX_SELECTIONS_DIALOG CALL FUNCTION 'COMPLEX_SELECTIONS_DIALOG' EXPORTING TITLE = L_TITLE * SIGNED = 'X' LOWER_CASE = I_TVARVC_SELOPS-UPPER NO_INTERVAL_CHECK = 'X' " i_TVARVC_selops-no_intervall JUST_DISPLAY = L_JUST_DISPLAY * JUST_INCL = ' ' * EXCLUDED_OPTIONS = * DESCRIPTION = * HELP_FIELD = * SEARCH_HELP = TABLES RANGE = SEL_VAL EXCEPTIONS CANCELLED = 1 OTHERS = 2.
ICON_CREATE CALL FUNCTION 'ICON_CREATE' EXPORTING NAME = P_ICON_NAME TEXT = SPACE * INFO = * ADD_STDINF = 'X' IMPORTING RESULT = P_RESULT EXCEPTIONS ICON_NOT_FOUND = 1 OUTPUTFIELD_TOO_SHORT = 2 OTHERS = 3 .
VIEW_AUTHORITY_CHECK CALL FUNCTION 'VIEW_AUTHORITY_CHECK' EXPORTING view_action = ld_auth_in view_name = 'TVARVC' no_warning_for_clientindep = 'X' check_action_alternative = 'X' IMPORTING granted_actvt = ld_auth_out EXCEPTIONS invalid_action = 1 no_authority = 2 no_clientindependent_authority = 3 table_not_found = 4 no_linedependent_authority = 5 OTHERS = 6.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.