Empty HTML fields always get captured by getChangedFieldNamesDescriptionWhen an HTML field is present in form layout and it has an empty/NULL value, GlideScriptRecordUtil.getChangedFieldNames function always returns a value that includes the HTML field, even though no changes has been made.The issue started to occur in Jakarta. The scenario works as expected in Istanbul.Steps to Reproduce 1/ Create a Business Rule table: Problemadvanced: truewhen: beforeupdate: truescript:(function executeRule(current, previous /*null when async*/) { var gru = GlideScriptRecordUtil.get(current); var changedFields = gru.getChangedFieldNames(); gs.log(changedFields,"testlog");})(current, previous);2/ Go to any Problem record which has some Description.3/ Update the Short Description and Save (while the Description isn't empty) .-- Go to <instancename>/syslog_list.do?sysparm_query=source%3DtestlogThe latest log's message is [short_description]4/ Clear the Description field and Save.-- Go to <instancename>/syslog_list.do?sysparm_query=source%3DtestlogThe latest log's message is [description]5/ Update the Short Description again and Save(this time the Description is empty) .-- Go to <instancename>/syslog_list.do?sysparm_query=source%3DtestlogActual result: The latest log's message is [short_description, description]Expected result: The latest log's message is [short_description]6/ Save the record without updating any field.-- Go to <instancename>/syslog_list.do?sysparm_query=source%3DtestlogActual result: The latest log's message is [description]Expected result: There shouldn't be any log printedWorkaroundThis issue is under review. To receive notifications when more information is available, subscribe to this Known Error article by clicking the Subscribe button at the top right of the article. If you are able to upgrade, review the Fixed In field to determine whether any versions have a permanent fix.Related Problem: PRB1294141