Querying a change request is getting error: ReferenceError: setMaxLength is not definedIssue Open any change record is getting error onChange script error: ReferenceError: setMaxLength is not defined function onChange_change_request_description_20(control, oldValue, newValue, isLoading, isTemplate) { if (isLoading || newValue === '') { setMaxLength('description', 4000); return; } } Steps to reproduce 1. Go to change_request.list2. Open any record3. The error is displayed ReleaseGenericCauseCustomer is using a custom script that is using a setMaxLength function but that is not defined on script ... setMaxLength('description', 4000); ... ResolutionBe sure to define the custom method called (In this case: setMaxLength) inside of the custom script used.