SRT_TEST_PROG_MODEL 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 SRT_TEST_PROG_MODEL 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: P_USER = User
Selection Text: P_RM = Remove User Account Data
Selection Text: P_PASS = Password
Selection Text: P_ADD = Set User Account Data
Title: Program SRT_TEST_PROG_MODEL
Text Symbol: H03 = Information
Text Symbol: H02 = ID
Text Symbol: H01 = Index
Text Symbol: E05 = No password stored for user account. Start report manually!
Text Symbol: E04 = No user account stored for this test. Start report manually!
Text Symbol: E03 = Service Definition '&1' does not exist.
Text Symbol: E02 = Proxy Definition '&1' does not exist.
Text Symbol: E00 = No valid operation choosen.
Text Symbol: 011 = The user data '&1' was successfully removed.
Text Symbol: 010 = The user '&1' does not exist or the password is wrong.
Text Symbol: 009 = Password of user '&1' is not correct or not usable.
Text Symbol: 008 = The user account does not activly exist.
Text Symbol: 007 = Unable to create Unit Test consumer. LP='&1'. Proxy='&2'.
Text Symbol: 006 = Unable to create Unit Test provider. SD='&1'.
Text Symbol: 005 = Set local user information for Web Service call in Unit Test
Text Symbol: 004 = Prerequisites of Unit Test of this program fulfilled.
Text Symbol: 003 = User account information '&1' saved successfully.
Text Symbol: 002 = No Log information exists.
Text Symbol: 001 = There is no valid user account information specified
Text Symbol: 000 = Action to be Performed
INCLUDE SRT_TEST_PROG_MODEL_TOP.
No SAP DATABASE tables are accessed within this REPORT code!
SUSR_LOGIN_CHECK_RFC call function 'SUSR_LOGIN_CHECK_RFC' exporting bname = pi_user password = pi_pw exceptions wait = 1 user_locked = 2 user_not_active = 3 password_expired = 4 wrong_password = 5 no_check_for_this_user = 6 password_attempts_limited = 7 internal_error = 8 others = 9.
TH_GET_PLUGIN_INFO call function 'TH_GET_PLUGIN_INFO' exporting protocol = 1 " 1 == http protocol local = 0 " 0 == local server plgtype = 1 importing host = l_server_name service = l_service exceptions no_plugin_active = 1 internal_error = 2 icm_not_active = 3 others = 4.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.