The Field Message/Notification will be cleared if we use Client Script to set value for the field on a formIssue We can use 'g_form.showFieldMsg()' to create Field Message/Notification poping up under the field(c1.png). This Field Message/Notification can be cleared by 'g_form.setValue()' function. Considering the following scenario: The customer created a Catalog Client Script whose type is 'onChange'.The functionality is checking if the selected date is 5 days later in the future.If the selected date is earlier than the condition, the script will show an error Field Message and then set the value of the field to null.The core scripts are listed as follows: "g_form.showFieldMsg('u_due_date','Due date must be at least 5 days in the future!','error');g_form.setValue('u_due_date','')" Actually, the Error Field Message never show.ReleaseKingston Patch 5, Jakarta Patch 8, Istanbul Patch 11 CauseFunction 'g_form.setValue('u_due_date','')' cleares the Error Field Message of the Field .ResolutionChange the position of the two scripts: Clear the value of 'u_due_date'.Set the Error Field Message.Related LinksThe documentation of 'g_form.setValue()' and 'g_form.showFieldMsg()'.