SATC_ECLOG_CONVERT 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 SATC_ECLOG_CONVERT 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: eCATT Log Conversion
Text Symbol: 001 = RFC destination
Text Symbol: 005 = Host
Text Symbol: 102 = ECATT Log Selection Criteria
Text Symbol: U01 = Update of Database Table
Text Symbol: U03 = Target Machine
Text Symbol: U04 = Session
Text Symbol: U05 = Insert to Database Table
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
CONVERT_RFCDES_TO_RFCDISPLAY CALL FUNCTION 'CONVERT_RFCDES_TO_RFCDISPLAY' EXPORTING RFCDES_IMPORT = RFCDes IMPORTING RFCDIS_EXPORT = RFCAttr EXCEPTIONS OTHERS = 1.
RFC_IP_TO_HOST CALL FUNCTION 'RFC_IP_TO_HOST' EXPORTING RFCIP = RFCAttr-RFCHOST IMPORTING RFCHOST = RFCAttr-RFCHOST EXCEPTIONS IP_TO_HOST_CONVERSION_ERROR = 1 OTHERS = 2.
SXPG_PROFILE_PARAMETER_GET CALL FUNCTION 'SXPG_PROFILE_PARAMETER_GET' DESTINATION p_rfcdst exporting parameter_name = 'SAPSYSTEM' importing parameter_value = parameter_value exceptions SYSTEM_FAILURE = 3 "MESSAGE lv_rfc_failure COMMUNICATION_FAILURE = 4 "MESSAGE lv_rfc_failure others = 1.
SXPG_PROFILE_PARAMETER_GET call function 'SXPG_PROFILE_PARAMETER_GET' exporting parameter_name = 'SAPSYSTEM' importing parameter_value = parameter_value exceptions others = 1.
EC_LOG_QUERY CALL FUNCTION 'EC_LOG_QUERY' EXPORTING im_session_id = n_session_id TABLES im_logkey = logkey im_startusr = startusr im_startdat = startdat im_starttim = starttim im_objtext = objtext * im_func = func * im_object = object * im_tconfig = tconfig * im_tscript = tscript EXCEPTIONS OTHERS = 1.
EC_LOG_COPY_REMOTE_TBL CALL FUNCTION 'EC_LOG_COPY_REMOTE_TBL' EXPORTING im_session_id = s_session-session_id im_rfcdst = p_rfcdst im_rfchost = s_session-rfchost im_title = s_title TABLES IM_TBLS = it_tbl_list IM_TBL_CHANGES = it_tbl_update * IM_TABKEYS = lt_tabkeys EXCEPTIONS OTHERS = 1.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.
SATC_ECLOG_CONVERT - eCATT Log Conversion SATC_ECLOG_CONVERT - eCATT Log Conversion SATC_CM_TRANSFER_RESULT_PUSH - Push ATC Result to Remote System SATC_CM_TRANSFER_RESULT_PUSH - Push ATC Result to Remote System SATC_CI_TRANSFER_RESULT_PUSH - Push ATC Result to Remote System SATC_CI_TRANSFER_RESULT_PUSH - Push ATC Result to Remote System