IUUC_DISPLAY_ST10_DATA is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for This report retrieves ST10 data from the sender system of the IUUC system landscape for a certain date range, and stores them in table IUUC_ST10DATA...see full standard documentation available for this report. Also check out the submitted Comments related to this SAP report and the details below to see which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC.
If you would like to execute this report or see the full code listing simply enter IUUC_DISPLAY_ST10_DATA 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_ENDATE = End Date
Selection Text: P_GETDAT = Get Data From Remote System
Selection Text: P_RFCDES = RFC Destination
Selection Text: P_STDATE = Start Date
Selection Text: P_SYSID = System ID
Title: Get and Display ST10 Data from Remote System
Text Symbol: 001 = Get ST10 Data from Remote System (usually Productive System)
Text Symbol: 002 = Specify the rfc Destination of the Remote System
Text Symbol: 003 = Error when Retrieving the Data from the Remote System
Text Symbol: 004 = No ST10 Data Found for Date
Text Symbol: 005 = Date
Text Symbol: 006 = ST10 data successfully processed for date
Text Symbol: 007 = Date Range to get ST10 Data
Text Symbol: 008 = End Date must not be lower than Start Date!
Text Symbol: FUN = GET ST10 DATA
INCLUDE CNV_MBT_SM_PARAMS_NODISPLAY.
No SAP DATABASE tables are accessed within this REPORT code!
CNV_MBT_AUTHORITY_CHECK CALL FUNCTION 'CNV_MBT_AUTHORITY_CHECK' EXPORTING im_area = 'SLOP' im_level = 'PACKAGE' im_activity = '03'.
IUUC_GET_DBSYS CALL FUNCTION 'IUUC_GET_DBSYS' DESTINATION p_rfcdes IMPORTING e_sysid = l_systemname EXCEPTIONS communication_failure = 1 MESSAGE l_msgtext system_failure = 2 MESSAGE l_msgtext.
SAPWL_TABSTAT_GET_STATISTIC CALL FUNCTION 'SAPWL_TABSTAT_GET_STATISTIC' DESTINATION p_rfcdes EXPORTING periodtype = 'D' hostid = 'TOTAL' instanceno = '--' startdate = l_currdate TABLES table_calls = lt_st10tab EXCEPTIONS communication_failure = 1 MESSAGE l_msgtext system_failure = 2 MESSAGE l_msgtext unknown_periodtype = 3 no_data_found = 4 statistic_incomplete = 5 OTHERS = 6.
DMC_DDIF_TABL_GET_WRAPPER CALL FUNCTION 'DMC_DDIF_TABL_GET_WRAPPER' DESTINATION p_rfcdes EXPORTING name = ls_st10tab-tname IMPORTING dd02v_wa = ls_dd02v EXCEPTIONS communication_failure = 1 MESSAGE l_msgtext system_failure = 2 MESSAGE l_msgtext OTHERS = 3.
DMC_GET_TABLES_FOR_VIEWS CALL FUNCTION 'DMC_GET_TABLES_FOR_VIEWS' DESTINATION p_rfcdes EXPORTING i_viewname = ls_st10tab-tname IMPORTING et_tablenames = lt_tablist EXCEPTIONS communication_failure = 1 MESSAGE l_msgtext system_failure = 2 MESSAGE l_msgtext not_found = 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.
IUUC_DISPLAY_ST10_DATA - Get and Display ST10 Data from Remote System IUUC_DISPLAY_ST10_DATA - Get and Display ST10 Data from Remote System IUUC_DISPLAY_NRSH - Number Ranges Table Statistics (Table NRIVSHADOW) IUUC_DISPLAY_NRSH - Number Ranges Table Statistics (Table NRIVSHADOW) IUUC_DISPLAY_NRLO - Number Ranges Table Statistics (Table NRIV_LOKAL) IUUC_DISPLAY_NRLO - Number Ranges Table Statistics (Table NRIV_LOKAL)