Whether field validation supported in SapphireIMS? How can I do that?

SapphireIMS supports both client and server side validation on any user specific action by writing scripts that are dynamically executed. The validations can be performed for fixed fields or additional fields.

Client side validation: Getting values of input fields validated without hitting server (application or database server). Example of client side validations are email format validation, numeric data validation, date field validation etc.

Server side validation: Getting login credentials, input field values etc validated by comparing with data present in server ( application or database server). Example of server side validations are login credentials validation, session validation, access control validation etc.

Please refer online help link Customization Scripts for the configuration.