Duplicate forms or form configuration issues with Sections or Elements after committing update sets containing Form Section/View changesIssue <!-- div.margin{ padding: 10px 40px 40px 30px; } table.tocTable{ border: 1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); padding-top: .6em; padding-bottom: .6em; padding-left: .9em; padding-right: .6em; } table.noteTable{ border:1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); width: 100%; border-spacing:2; } table.internaltable { white-space:nowrap; text-align:left; border-width: 1px; border-collapse: collapse; font-size:14px; width: 85%; } table.internaltable th { border-width: 1px; padding: 5px; border-style: solid; border-color: rgb(245, 245, 245); background-color: rgb(245, 245, 245); } table.internaltable td { border-width: 1px; padding: 5px; border-style: solid; border-color: #E0E0E0; color: #000000; } .title { color: #D1232B; font-weight:normal; font-size:28px; } h1{ color: #D1232B; font-weight:normal; font-size:21px; margin-bottom:-5px } h2{ color: #646464; font-weight:bold; font-size:18px; } h3{ color: #000000; font-weight:BOLD; font-size:16px; text-decoration:underline; } h4{ color: #646464; font-weight:BOLD; font-size:15px; text-decoration:; } h5{ color: #000000; font-weight:BOLD; font-size:13px; text-decoration:; } h6{ color: #000000; font-weight:BOLD; font-size:14px; text-decoration:; } ul{ list-style: disc outside none; margin-left: 0; } li { padding-left: 1em; } --> Duplicate forms or form configuration issues with Sections or Elements after committing update sets containing Form Section/View changes After committing an update set duplicate forms (duplicate records on sys_ui_form table) now appear. ReleaseAllCauseDuplicate records with different sys_ids were somehow created in the sys_update_version table. When the update set executes, coalescing will pick the erroneous form to compare to on preview, since this form does not exist, we get a creation on commit of a new form instead of an update to the existing from.ResolutionBelow are the tables that are related with form configurations:- sys_ui_form - sys_ui_form_section - sys_ui_section - sys_ui_element To resolve this issue, follow the steps as per either of the options below. OPTION 1. Back out the update set then recommit: Back out update set if possible.Backup erroneous record on sys_update_version table via .xml export.Delete the erroneous record on the sys_update_version table using a GlideRecord script in 'Scripts - Background'Commit the update set again. OPTION 2. Update the form by Update Set: For the source instance: export XML on sys_ui_form record for the form view 2. export XML on sys_ui_form_section for the view 3. Make the update set for the sys_ui_section and sys_ui_element changes for the view On the target instance prepare for update: check the sys_ui_form sys_id is matching the source instance, if not match, export XML as backup copy 2. check the sys_ui_form_section record: a. sys_id same as source instance, b. View the XML of the record, check the sys_ui_section id is matches the sys_ui_section position 0 record. If not match, export xml file for backup 3. export sys_ui_section record for backup. Update steps: If the sys_ui_form sys_id on target instance is not match on source instance, import XML file for sys_ui_form record from source instance (step 1 in source instance)Delete sys_ui_section record on target instance which you need update from update SetChecking the delete record from sys_metadata_delete table (*** there is known issue when there were delete records existed on sys_metadata_delete table with the same table may cause updating incorrectly):***Special note: You need to delete the related records in sys_metadata_delete table on all above delete records since the deleted record may cause the Update Set updating not correctly.Go to sys_metadata_delete.listSearch display name: table name of the view, for example rm_storySearch Table name: "Form Section"If the sys_ui_form_section sys_id or the section sys_id on target instance is not match source instance record, import XML file for sys_form_section from source instance (step 2 in source instance)Using update set from source instance to target instance. Related LinksCoalesce strategies for update sets can be found in Compare local update sets.