SR050E10_ALV 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 SR050E10_ALV 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!
BAPI_USER_GET_DETAIL CALL FUNCTION 'BAPI_USER_GET_DETAIL' DESTINATION syst_1 EXPORTING username = benu_1 IMPORTING ref_user = refuser_1 TABLES return = lt_return exceptions system_failure = 1 communication_failure = 2.
BAPI_USER_GET_DETAIL call function 'BAPI_USER_GET_DETAIL' destination syst_2 EXPORTING username = benu_2 IMPORTING ref_user = refuser_2 TABLES return = lt_return exceptions system_failure = 1 communication_failure = 2.
ICON_CREATE CALL FUNCTION 'ICON_CREATE' EXPORTING name = i_lght info = i_text IMPORTING result = iconid EXCEPTIONS icon_not_found = 1 outputfield_too_short = 2 OTHERS = 3.
SUSR_TOOLS_DISPLAY_LEGEND CALL FUNCTION 'SUSR_TOOLS_DISPLAY_LEGEND' EXPORTING im_header_line = 'Legende'(t65) "#EC TEXT_DIFF im_set_horizontal_lines = 'X' im_set_vertical_lines = 'X' im_header_column_1 = lng_icon im_header_column_2 = lng_text im_group_column = '' TABLES im_data = gt_outtab EXCEPTIONS no_data_in_table = 1 salv_msg = 2 wrong_color = 3 salv_not_found = 4 salv_data_error = 5 OTHERS = 6.
SUSR_GET_PROF_FOR_AUTH_RFC call function 'SUSR_GET_PROF_FOR_AUTH_RFC' destination ld_sysid tables profiles = lt_profiles auths = lt_auths exceptions not_authorized_for_auth = 1 not_authorized_for_profile = 2 others = 3.
SUSR_GET_USERS_WITH_PROFS_RFC call function 'SUSR_GET_USERS_WITH_PROFS_RFC' destination ld_sysid tables profiles = lt_profiles users_profs = lt_users_profs exceptions parameter_error = 1 not_authorized_for_prof = 2 not_authorized_for_user = 3 others = 4.
BAPI_USER_GET_DETAIL call function 'BAPI_USER_GET_DETAIL' destination
-sysid exporting username = ld_username importing ref_user = ld_refuser exceptions system_failure = 1 communication_failure = 2.
SUSR_GET_ROLES_FOR_PROF_RFC call function 'SUSR_GET_ROLES_FOR_PROF_RFC' destination ld_sysid tables profile = lt_profn role = lt_role exceptions not_authorized_for_prof = 1 no_profiles_found = 2 others = 3.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.