RS_ICF_SERV_ADMIN_TASKS 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 RS_ICF_SERV_ADMIN_TASKS 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_TR_ON = Extraction of HTTP Trace On
Selection Text: P_TR_OFF = Extraction of HTTP Trace Off
Selection Text: P_SNAP_I = Export Inact.Services to CSV
Selection Text: P_SNAP = Export Active Services to CSV
Selection Text: P_EVAL = Write Trace to CSV File
Selection Text: P_DEL = Delete HTTP Trace Table
Selection Text: LV_REPET = Minimum Calls per Service
Selection Text: LV_HOURS = Number of Hours
Selection Text: LV_DAYS = Number of Days (Max. 90)
Title: Report RS_ICF_SERV_ADMIN_TASKS
Text Symbol: 021 = Export of Inactive Services to CSV File
Text Symbol: 020 = Export of Active Services to CSV File
Text Symbol: 016 = Information
Text Symbol: 015 = Report "RS_ICF_SERV_MASS_PROCESSING" for Mass Processing
Text Symbol: 013 = Trace is deactivated
Text Symbol: 012 = Trace is activated
Text Symbol: 011 = Log Output
Text Symbol: 010 = This action is not supported
Text Symbol: 008 = No data exists
Text Symbol: 007 = Activate Trace and Await Data Determination
Text Symbol: 006 = Content of trace table was deleted
Text Symbol: 005 = Trace table is empty
Text Symbol: 004 = Downloading CSV File
Text Symbol: 003 = Warning
Text Symbol: 002 = Warning: Deletion will destroy data of previous evaluations
Text Symbol: 001 = Action to be executed
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
ICON_CREATE CALL FUNCTION 'ICON_CREATE' EXPORTING name = 'ICON_WARNING' text = text-002 info = text-003 IMPORTING result = comm_01 EXCEPTIONS OTHERS = 0.
ICON_CREATE CALL FUNCTION 'ICON_CREATE' EXPORTING name = 'ICON_MESSAGE_INFORMATION' text = text-015 info = text-016 IMPORTING result = comm_02 EXCEPTIONS OTHERS = 0.
SXE_IMG_IMPL_IS_ACTIVE CALL FUNCTION 'SXE_IMG_IMPL_IS_ACTIVE' EXPORTING imp_name = co_badi IMPORTING active = lv_active.
SXE_IMG_IMPL_ACTIVITY_TOGGLE CALL FUNCTION 'SXE_IMG_IMPL_ACTIVITY_TOGGLE' EXPORTING imp_name = co_badi EXCEPTIONS imp_not_existing = 1 action_canceled = 2 activation_error = 3 OTHERS = 4.
SXE_IMG_IMPL_IS_ACTIVE CALL FUNCTION 'SXE_IMG_IMPL_IS_ACTIVE' EXPORTING imp_name = co_badi IMPORTING active = lv_active.
SXE_IMG_IMPL_ACTIVITY_TOGGLE CALL FUNCTION 'SXE_IMG_IMPL_ACTIVITY_TOGGLE' EXPORTING imp_name = co_badi EXCEPTIONS imp_not_existing = 1 action_canceled = 2 activation_error = 3 OTHERS = 4.
GUI_FILE_SAVE_DIALOG CALL FUNCTION 'GUI_FILE_SAVE_DIALOG' EXPORTING window_title = text-004 "#EC NOTEXT default_extension = 'csv' "#EC NOTEXT default_file_name = lv_file_name file_filter = 'CSV-Document(*.csv)|*.csv' "#EC NOTEXT
HTTP_GET_URL_FROM_NODGUID CALL FUNCTION 'HTTP_GET_URL_FROM_NODGUID' EXPORTING nodguid = lv_intalias-icfaliguid IMPORTING host_name = lv_ref_hostname EXCEPTIONS icf_inconst = 1 OTHERS = 2. "#EC FB_RC
HTTP_GET_URL_FROM_NODGUID CALL FUNCTION 'HTTP_GET_URL_FROM_NODGUID' EXPORTING nodguid = lv_extalias-icfaliguid IMPORTING host_name = lv_ref_hostname EXCEPTIONS icf_inconst = 1 OTHERS = 2. "#EC FB_RC
GUI_FILE_SAVE_DIALOG CALL FUNCTION 'GUI_FILE_SAVE_DIALOG' EXPORTING window_title = text-004 default_extension = 'csv' "#EC NOTEXT default_file_name = lv_file_name file_filter = 'CSV-Document(*.csv)|*.csv' "#EC NOTEXT
GUI_FILE_SAVE_DIALOG CALL FUNCTION 'GUI_FILE_SAVE_DIALOG' EXPORTING window_title = text-004 default_extension = 'csv' "#EC NOTEXT default_file_name = lv_file_name file_filter = 'CSV-Document(*.csv)|*.csv' "#EC NOTEXT
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.