Renamed table not updating on formDescriptionWhen customer changes the label of a table name, it reflects correctly when the table is viewed in List View. But when viewing a record on that table, the header still has the old label.CauseThis occurs when the value of the caption field in the sys_ui_section has the old label name of the table.Resolution1. Navigate to the table sys_ui_form.list table2. Search the table involved.3. In the form section, you will see that the value of sys_ui_section has the old label name of the table.4. Now navigate to the respective form section in the table sys_ui_section.5. Clear the value in the Caption field and run the below script. GlideTableManager.invalidateTable("sys_ui_form");GlideCacheManager.flushTable("sys_ui_form"); GlideTableManager.invalidateTable("sys_ui_section");GlideCacheManager.flushTable("sys_ui_section");