Declarative Action Implemented As Server Script Is Allowing Update With Empty Mandatory FieldsIssue No error message appeared on WorkSpace even update a record by Declarative Action (sys_declarative_action_assignment) with mandatory field empty. Action Assignment - xxx (sys_declarative_action_assignment) Implemented as : Server Script Server Script : current.state = 3; current.update(); action.setRedirectURL(current);ReleaseAllResolutionThis is currently working as expected. Running a background script with `current.update()` also bypasses those field validations as that is client side form validations. At this moment, Declarative Actions implemented as Server Script do not perform any sort of client side validation and only run a server script - which is the same effect as running a background script. UI Actions always submit the form before running on the server. At this time, neither of these two behaviors are configurable. As a workaround, pelase re-writing the Declarative Action to be implemented as a client script and using "g_form.save()" in the script or using UI Actions(sys_ui_action) instead. Action Assignment - xxx (sys_declarative_action_assignment) Implemented as : Client Script Client Script : function onClick() { g_form.setValue('state', 3); g_form.save(); }