By default, data validation is enabled on all input requests, which are validated against the registered validation rules.
You can disable the data validation on input requests by adding a context parameter in the module configuration file.
To disable data validation, in the web.xml file located in your EARFILE/WARFILE/WEB-INF folder, add an entry if the entry is not present. Otherwise, modify the existing entry's value for the context-param element as follows:
<context-param>
<param-name>scui-suppress-request-validation</param-name>
<param-value>TRUE</param-value>
</context-param>