Update set doesnt capture 'sys_ui_related_list' recordsIssue Update set doesnt capture 'sys_ui_related_list' records. Steps to reproduce : Create an update set and make it current.Create a new m2m record in sys_m2m table.Create a new related record in sys_ui_related_list table.Observe that the update set which is made as current doesn't have the entries related to the related list record.ReleaseAny supported release.CauseUpdate sets track customizations under these conditions: Where the table has a update_synch dictionary attribute.Where there is a special handler to track changes to multiple tables.Where the administrator has not excluded a field from updates. The table "sys_ui_related_list" for type "collection" does not have "update_synch" attribute configured. Hence, any changes on "sys_ui_related_list" table will not get captured in update set. This is expected behavior and out-of-the-box functionality. Please note : Do not add the update_synch attribute to a dictionary record. When improperly used, this attribute can cause major performance issues or cause the instance to become unavailable. Adding this attribute is not supported. ResolutionAny changes like creating new or updating the existing records on the sys_ui_related_list table will not get captured in the update set. This is expected behavior.