Получить параметры пользователя
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | DATA: it_user_params TYPE ustyp_t_parameters. CALL FUNCTION 'SUSR_USER_PARAMETERS_GET'   EXPORTING     user_name           = sy-uname     with_text           = abap_true   TABLES     user_parameters     = it_user_params   EXCEPTIONS     user_name_not_exist = 1     OTHERS              = 2. IF sy-subrc = 0.   cl_demo_output=>display( it_user_params ). ENDIF. | 
