RWSADMIN_FORMS is a standard ABAP INCLUDE 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 RWSADMIN_FORMS 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.
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
LVC_FIELDCATALOG_MERGE call function 'LVC_FIELDCATALOG_MERGE' exporting i_structure_name = 'SRT_ADMINTOOL_SERVICE_HEADER' changing ct_fieldcat = lt_fieldcatalog.
READ_SYSTEM_WSCONFIG call function 'READ_SYSTEM_WSCONFIG' importing pe_system_config = l_system_config pe_default_config = l_default_config.
INIT_HELPVALUES_HOST call function 'INIT_HELPVALUES_HOST' changing pc_vhost_helpvalues = gt_host_helpvalues.
INIT_HELPVALUES_RT_FEATURES call function 'INIT_HELPVALUES_RT_FEATURES' changing pc_tlevel_helpvalues = gt_tlevel_helpvalues pc_loglevel_helpvalues = gt_loglevel_helpvalues.
F4IF_INT_TABLE_VALUE_REQUEST call function 'F4IF_INT_TABLE_VALUE_REQUEST' exporting retfield = 'LEVEL' dynpprog = l_repid dynpnr = l_dynnr dynprofield = p_dynfield value_org = 'S' tables value_tab = pt_helpvalues exceptions others = 1.
F4IF_INT_TABLE_VALUE_REQUEST call function 'F4IF_INT_TABLE_VALUE_REQUEST' exporting retfield = 'HOST_NUMBER' dynpprog = l_repid dynpnr = l_dynnr dynprofield = l_dynfield value_org = 'S' tables value_tab = gt_host_helpvalues exceptions others = 1.
POPUP_TO_CONFIRM call function 'POPUP_TO_CONFIRM' exporting titlebar = text-109 text_question = text-110 display_cancel_button = 'X' importing answer = l_answer exceptions others = 0. "ignore exceptions
POPUP_TO_CONFIRM call function 'POPUP_TO_CONFIRM' exporting titlebar = text-109 text_question = text-110 display_cancel_button = 'X' importing answer = l_answer exceptions others = 0. "ignore exceptions
CALL_UI_SYSTEM_CONFIG call function 'CALL_UI_SYSTEM_CONFIG'.
SRT_ADMINTOOL_CALL_PERS call function 'SRT_ADMINTOOL_CALL_PERS' exceptions others = 1.
SAPGUI_PROGRESS_INDICATOR call function 'SAPGUI_PROGRESS_INDICATOR' exporting text = text-121.
CALL_WS_TESTPAGE call function 'CALL_WS_TESTPAGE' exporting pi_wskey = l_wskey pi_wsdl_properties = srt_wsdl_properties exceptions missing_configuration = 1 browser_call_failed = 2 wsdl_address_error = 3 others = 4.
LVC_FIELDCATALOG_MERGE call function 'LVC_FIELDCATALOG_MERGE' exporting i_structure_name = 'UDDICL_KEYS' changing ct_fieldcat = lt_fieldcatalog.
UDDICL_LOGON_WITH_SELECTION call function 'UDDICL_LOGON_WITH_SELECTION' "to be changed exporting pi_registry = wa_uddikey-registry importing pe_logon_data = l_logon_info pe_selected_registry = l_uddi_object-registry exceptions user_canceled = 1 others = 2.
POPUP_TO_CONFIRM call function 'POPUP_TO_CONFIRM' exporting titlebar = text-116 text_question = text-117 default_button = '1' display_cancel_button = ' ' importing answer = l_answer exceptions others = 1.
UDDICL_LOGON call function 'UDDICL_LOGON' exporting pi_registry = wa_uddikey-registry importing pe_logon_data = l_logon_info exceptions user_canceled = 1 others = 2.
SAPGUI_PROGRESS_INDICATOR call function 'SAPGUI_PROGRESS_INDICATOR' exporting text = text-120.
CALL_WS_WSDL call function 'CALL_WS_WSDL' exporting pi_wskey = l_wskey pi_wsdl_properties = srt_wsdl_properties exceptions browser_call_failed = 1 wsdl_address_error = 2 others = 3.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.