SAP Reports / Programs

IUUC_DISPLAY_ST10_DATA SAP ABAP Report - Get and Display ST10 Data from Remote System







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


ABAP code to call this SAP report using the submit statement

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.






SUBMIT IUUC_DISPLAY_ST10_DATA. "Basic submit
SUBMIT IUUC_DISPLAY_ST10_DATA AND RETURN. "Return to original report after report execution complete
SUBMIT IUUC_DISPLAY_ST10_DATA VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


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


INCLUDES used within this REPORT IUUC_DISPLAY_ST10_DATA

INCLUDE CNV_MBT_SM_PARAMS_NODISPLAY.


TABLES used within REPORT and the associated SELECT statement:





No SAP DATABASE tables are accessed within this REPORT code!


Function Modules used within report and the associated call statement:

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.



Contribute (Add Comments)

Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.







The contribute/comments section below therefore offer's an opportunity for anyone to add additional information. This can be anything from useful hints, tips and screen shots to relevant SAP notes or anything else you feel is relevant to this report.

This will then be available for everyone to easily find by simply searching on the report name IUUC_DISPLAY_ST10_DATA or its description.