RITS_XSS_PARAM_IS_OIL_DS_SSR is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). Below is the standard documentation available for this report and a few details of other objects it interacts with such as tables, function modules, includes etc. If you would like to see the full code listing simply enter RITS_XSS_PARAM_IS_OIL_DS_SSR into the relevant SAP transaction such as SE38 or SE80
REPORT RITS_XSS_PARAM_IS_OIL_DS_SSR .
INCLUDE ITS_XSRF_PARAM_TRANSPORT_INCL.
DATA: ENTRY TYPE T_ENTRY, ENTRIES TYPE T_ENTRIES, PARAMETER_FOR_SERVICE TYPE IAC_PARAMETER, PARAMETER_TO_REPLACE TYPE IACPNAME, PARAMETERS_TO_REPLACE TYPE T_PARAMETERS.
START-OF-SELECTION.
PARAMETER_TO_REPLACE = '~AUTO_HTML_ESCAPING'. APPEND PARAMETER_TO_REPLACE TO PARAMETERS_TO_REPLACE. PARAMETER_TO_REPLACE = '~NEW_XSS_FUNCTIONS'. APPEND PARAMETER_TO_REPLACE TO PARAMETERS_TO_REPLACE.
CLEAR ENTRY. ....See full code listing within your SAP system using transactions such as SE80 and SE38
INCLUDE ITS_XSRF_PARAM_TRANSPORT_INCL.
No SAP database TABLES are accessed within this report code!
No SAP FUNCTION MODULES are executed within this report code!