RSINF000N 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 RSINF000N 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.
Title: INFORMIX Performance Analysis
INCLUDE RSINF017N.
INCLUDE RSINFT2TN.
No SAP DATABASE tables are accessed within this REPORT code!
S_DB_INFORMIX_STUI_CONFIG CALL FUNCTION 'S_DB_INFORMIX_STUI_CONFIG' IMPORTING inf_monitor_version = monitor_vers CHANGING tempdir = tempdir dbhost = dbhost dbhost_os = dbhost_os EXCEPTIONS system_failure = 1 wrong_database = 2 not_on_dbhost = 3 OTHERS = 4.
S_DB_INF_STUI_ACTION_LOG_PUT CALL FUNCTION 'S_DB_INF_STUI_ACTION_LOG_PUT' EXPORTING prog = log-prog info = log-info.
S_DB_INFORMIX_UTC_TO_LOCALTIME CALL FUNCTION 'S_DB_INFORMIX_UTC_TO_LOCALTIME' EXPORTING utc_time = timestamp IMPORTING day = date time = time EXCEPTIONS OTHERS = 1.
DB_INF_MAIN_LIST_64 CALL FUNCTION 'DB_INF_MAIN_LIST_64' EXPORTING what = ' ' IMPORTING dbinf_global = tst04inf64 boot_timestamp = boottime reset_timestamp = resettime utc_timestamp = proftime clear_timestamp = cleartime date_of_statistics = prof_date time_of_statistics = prof_time EXCEPTIONS wrong_database = 1 OTHERS = 2.
S_DB_INF_COLLECT_PROFILE CALL FUNCTION 'S_DB_INF_COLLECT_PROFILE' EXPORTING reset = 'X'.
DB_INF_MAIN_LIST_64 CALL FUNCTION 'DB_INF_MAIN_LIST_64' EXPORTING what = 'R' IMPORTING dbinf_global = tst04inf64 boot_timestamp = boottime reset_timestamp = resettime utc_timestamp = proftime clear_timestamp = cleartime date_of_statistics = prof_date time_of_statistics = prof_time EXCEPTIONS wrong_database = 1 OTHERS = 2.
DB_INF_MAIN_LIST_64 CALL FUNCTION 'DB_INF_MAIN_LIST_64' EXPORTING what = 'Z' IMPORTING dbinf_global = tst04inf64 boot_timestamp = boottime reset_timestamp = resettime utc_timestamp = proftime clear_timestamp = cleartime date_of_statistics = prof_date time_of_statistics = prof_time EXCEPTIONS wrong_database = 1 OTHERS = 2.
POPUP_TO_INFORM CALL FUNCTION 'POPUP_TO_INFORM' EXPORTING titel = 'Informix Performance Monitor' txt1 = 'Transaction Code: ST04' txt2 = space txt3 = 'Informix Monitor Version:' txt4 = monitor_version.
S_DB_INFORMIX_VERSION_GET CALL FUNCTION 'S_DB_INFORMIX_VERSION_GET' IMPORTING version = version version_text = informix_version.
S_DB_PARAMETERS_GET CALL FUNCTION 'S_DB_PARAMETERS_GET' EXPORTING parameter_name = par_name IMPORTING parameter_value = par_value EXCEPTIONS wrong_database = 01.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.