CACS_ARFC_SERVER_GROUP_CONFIG 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 CACS_ARFC_SERVER_GROUP_CONFIG 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.
Resource Determination for aRFC Server Groups
Title: aRFC Server Groups
Text Symbol: 013 = Quote "rfc_max_comm_entries":
Text Symbol: 012 = Quote "rfc_max_own_login":
Text Symbol: 011 = Quote "rfc_max_login":
Text Symbol: 010 = Quote "rquota_rfc_max_queue":
Text Symbol: 007 = Quote of Max. No. of WP of This User:
Text Symbol: 006 = Quote for No. of WP That Need to Be Kept Free:
Text Symbol: 005 = Quote of No. of Used Communication Entries:
Text Symbol: 004 = Quote for User Logons on Application Server:
Text Symbol: 003 = Quote for Total Logons on Application Server:
Text Symbol: 002 = Quote for Full Use of Dispatcher Request Queue:
Text Symbol: 001 = Use of aRFC group (Yes/No) / Min. No. of Free DIAGs:
Text Symbol: 014 = Quote "rfc_max_own_used_wp":
Text Symbol: 102 = /
Text Symbol: 101 = %
Text Symbol: 100 = #
Text Symbol: 036 = CPU Usr/Sys:
Text Symbol: 035 = Available Resources (DIAGs):
Text Symbol: 031 = CPU Idle (%):
Text Symbol: 030 = Current DIAGs for this Instance:
Text Symbol: 026 = CPUs #:
Text Symbol: 025 = Maximum Available Resources for aRFC:
Text Symbol: 021 = AppServ:
Text Symbol: 020 = Maximum No. of Free DIAGs (OP Mode):
001 Instance Profile Parameter System Default User-defined aRFC: /nRZ12
002 Current Value Quota Ma
INCLUDE CACS_ARFC_GLOBAL_DATA.
No SAP DATABASE tables are accessed within this REPORT code!
LIST_FROM_MEMORY CALL FUNCTION 'LIST_FROM_MEMORY' TABLES listobject = lg_liste_u EXCEPTIONS not_found = 1 OTHERS = 2.
LIST_TO_ASCI CALL FUNCTION 'LIST_TO_ASCI' * exporting * LIST_INDEX = -1 TABLES listasci = lg_liste_k listobject = lg_liste_u EXCEPTIONS empty_list = 1 list_index_invalid = 2 OTHERS = 3.
TH_SERVER_LIST CALL FUNCTION 'TH_SERVER_LIST' EXPORTING services = 'FF'TABLES list = list EXCEPTIONS no_server_list = 1 OTHERS = 2.
TH_USER_LIST CALL FUNCTION 'TH_USER_LIST' * EXPORTING * APSERVER = LIST-HOST TABLES list = uinfo.
TH_SHOW_COMM_ADM CALL FUNCTION 'TH_SHOW_COMM_ADM' TABLES comm_list = comm_list.
TH_WPINFO CALL FUNCTION 'TH_WPINFO' EXPORTING srvname = ' ' with_cpu = '0' TABLES wplist = wplist EXCEPTIONS send_error = 1 OTHERS = 2.
TH_REQUEST_QUEUE CALL FUNCTION 'TH_REQUEST_QUEUE' TABLES request_queues = request_queues.
TH_ARFC_GET_QUOTAS CALL FUNCTION 'TH_ARFC_GET_QUOTAS' IMPORTING use_quotas = use_quotas max_queue = max_queue max_login = max_login max_own_login = max_own_login max_own_used_wp = max_own_used_wp min_wait_dia_wp = min_wait_dia_wp max_comm_entries = max_comm_entries.
GET_CPU_SINGLE CALL FUNCTION 'GET_CPU_SINGLE' EXPORTING local_remote = 'LOCAL' TABLES tf_cpu_single = cpu EXCEPTIONS internal_error_adress_failed = 1 internal_error_different_field = 2 internal_error_no_new_line = 3 collector_not_running = 4 shared_memory_not_available = 5 collector_busy = 6 version_conflict = 7 no_network_collector_running = 8 system_failure = 9 communication_failure = 10 OTHERS = 11.
TH_ARFC_LOCAL_RESOURCES CALL FUNCTION 'TH_ARFC_LOCAL_RESOURCES' IMPORTING nores = nores wait = wait reason = reason maxres = maxres.
ROUND CALL FUNCTION 'ROUND' EXPORTING decimals = 0 input = p_quota_round SIGN = '-' IMPORTING output = p_quota_round EXCEPTIONS input_invalid = 1 overflow = 2 type_invalid = 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.
CACS_ARFC_SERVER_GROUP_CONFIG - aRFC Server Groups CACS_ARFC_SERVER_GROUP_CONFIG - aRFC Server Groups CACS_ARFC_GLOBAL_DATA - Include RWPOS_ARFC_GLOBAL_DATA CACS_ARFC_CONFIG_DATA - Include RWPOS_ARFC_CONFIG_DATA CACS_ARFC_CONFIG - Program aRFC Batch Processing CACS_ARFC_CONFIG - Program aRFC Batch Processing