SAP Reports / Programs

RSARFCLD SAP ABAP Report - Set and get RFC quotas







RSARFCLD is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Sets quotas (as a percentage) for asynchronous RFC...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 RSARFCLD 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 RSARFCLD. "Basic submit
SUBMIT RSARFCLD AND RETURN. "Return to original report after report execution complete
SUBMIT RSARFCLD 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: LOGIN = Quota for login slots
Selection Text: OLOGIN = Quota for own login slots
Selection Text: OWP = Quota for own WPs used
Selection Text: QUEUE = Quota for dialog queue
Selection Text: QUOTAS = Flat ( 1 = use quotas)
Selection Text: SETIT = Reset quotas
Selection Text: COMM = Quota for comm. entries
Selection Text: DIA_WP = Number of dialog WPs waiting
Title: Set and get RFC quotas
Text Symbol: 016 = Maximum own WP used :
Text Symbol: 017 = Min dialog WP waiting :
Text Symbol: 018 = WP number :
Text Symbol: 006 = Invalid value for dialog WPs waiting
Text Symbol: 005 = Invalid value for COMM entries
Text Symbol: 004 = Invalid value for your own login slots
Text Symbol: 003 = Invalid value for login slots
Text Symbol: 002 = Invalid value for dialog queue
Text Symbol: 001 = Invalid value for USE_QUOTAS
Text Symbol: 015 = Maximum COMM entries :
Text Symbol: 014 = Maximum own login slots :
Text Symbol: 013 = Maximum login slots :
Text Symbol: 012 = Maximum dialog queue :
Text Symbol: 011 = Used quotas :
Text Symbol: 007 = Invalid value for your own WPs used


INCLUDES used within this REPORT RSARFCLD

No INCLUDES are used within this REPORT code!


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:

TH_ARFC_GET_QUOTAS CALL FUNCTION 'TH_ARFC_GET_QUOTAS' IMPORTING use_quotas = loc_quotas max_queue = loc_queue max_login = loc_login max_own_login = loc_ologin max_comm_entries = loc_comm max_own_used_wp = loc_owp min_wait_dia_wp = loc_dia_wp.

TH_ARFC_SET_QUOTAS CALL FUNCTION 'TH_ARFC_SET_QUOTAS' EXPORTING use_quotas = quotas max_queue = queue max_login = login max_own_login = ologin max_comm_entries = comm max_own_used_wp = owp min_wait_dia_wp = dia_wp IMPORTING ret_use_quotas = set_quotas ret_max_queue = set_queue ret_max_login = set_login ret_max_own_login = set_ologin ret_max_comm_entries = set_comm ret_max_own_used_wp = set_owp ret_min_wait_dia_wp = set_dia_wp.

TH_GET_OWN_WP_NO CALL FUNCTION 'TH_GET_OWN_WP_NO' IMPORTING wp_index = wp_no wp_pid = wp_pid.

TH_ARFC_GET_QUOTAS CALL FUNCTION 'TH_ARFC_GET_QUOTAS' IMPORTING use_quotas = quotas max_queue = queue max_login = login max_own_login = ologin max_comm_entries = comm max_own_used_wp = owp min_wait_dia_wp = dia_wp.



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 RSARFCLD or its description.