RSUVM013 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 RSUVM013 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.
Classification of Reference Users
Selection Text: ZTYP = Special Version
Selection Text: USTYP = User Type
Selection Text: STYP = Country Surcharge
Selection Text: GLTG_YES = Users currently valid
Selection Text: GLTG_NO = Users currently invalid
Selection Text: GLTG_ALL = All users
Selection Text: CLIENT = Client
Title: System Measurement: Reference User Classification
Text Symbol: 022 = Surcharges
Text Symbol: 021 = Country Surcharge
Text Symbol: 020 = ID for User Types
Text Symbol: 015 = - Leave actual input field for user type empty
Text Symbol: 014 = - Choose "Back"
Text Symbol: 013 = - Select "Single value"
Text Symbol: 012 = - Choose "Selection options" (F2)
Text Symbol: 011 = - Place cursor in the left input field for user type,
Text Symbol: 010 = Displaying Unclassified Users
Text Symbol: 003 = Validity Period
Text Symbol: 002 = Notes
Text Symbol: 001 = Reference User Classification
001 |Clnt| User Name | User Type | Special Version |EASL |SSCR||Chrgble User | Clnt | System |Valid From | To |
INCLUDE RSUVMIN3.
INCLUDE USER_CONSTANTS.
No SAP DATABASE tables are accessed within this REPORT code!
F4IF_INT_TABLE_VALUE_REQUEST * CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST' * EXPORTING * retfield = 'USERTYP' * value_org = 'S' * dynpprog = 'RSUVM013' * dynprofield = 'USTYP-LOW' * dynpnr = '1000' * window_title = text-020 * TABLES * value_tab = select_user * EXCEPTIONS * OTHERS = 0.
F4IF_INT_TABLE_VALUE_REQUEST * CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST' * EXPORTING * retfield = 'USERTYP' * value_org = 'S' * dynpprog = 'RSUVM013' * dynprofield = 'USTYP-HIGH' * dynpnr = '1000' * window_title = text-020 * TABLES * value_tab = select_user * EXCEPTIONS * OTHERS = 0.
REUSE_ALV_LIST_DISPLAY CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY' EXPORTING * I_INTERFACE_CHECK = ' ' i_callback_program = callback_pgm * i_callback_pf_status_set = i_callback_user_command = user_cmd_pgm * I_STRUCTURE_NAME = * IS_LAYOUT = it_fieldcat = fieldcat[] it_excluding = excluded_functions * IT_SPECIAL_GROUPS = * IT_SORT = * IT_FILTER = * IS_SEL_HIDE = * I_DEFAULT = 'X' * I_SAVE = ' ' * IS_VARIANT = ' ' * IT_EVENTS = * IT_EVENT_EXIT = * IS_PRINT = * IS_REPREP_ID = * I_SCREEN_START_COLUMN = 0 * I_SCREEN_START_LINE = 0 * I_SCREEN_END_COLUMN = 0 * I_SCREEN_END_LINE = 0 i_buffer_active = ' ' * IMPORTING * E_EXIT_CAUSED_BY_CALLER = * ES_EXIT_CAUSED_BY_USER = TABLES t_outtab = seltab EXCEPTIONS program_error = 1 OTHERS = 2 .
SLIC_MAINT_USERTYPE_EXTEND CALL FUNCTION 'SLIC_MAINT_USERTYPE_EXTEND' EXPORTING bname = seltab-bname utype_restrict = 'X' IMPORTING uchange = uchange CHANGING 930_flag = flag_930 EXCEPTIONS OTHERS = 0.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.