Fix the "Cannot read properties" error when saving an access control list (ACL) record in XanaduIssue In the Xanadu release, when you save an access control list (ACL) record, the following error displays: "onSubmit script error: TypeError: Cannot read properties of null (reading 'value'):"ReleaseXanaduCauseThe default script, Confirm ACL Execution Plan (onSubmit Client Script), checks the value of Decision Type, as shown: Line 124: var decisionType = g_form.getValue('decision_type'); /sys_script_client.do?sys_id=d8183833932331009c8579b4f47ffbe1 If the Decision Type field is not on the form layout, the following error displays: onSubmit script error: TypeError: Cannot read properties of null (reading 'value') The client script needs to be able to get the value of this field with g_form APJ, and this is not possible if the field is not on the form layout. ResolutionTo fix this issue, add the field Decision Type to the form layout.