CAB Definition - Board Member update won't be reflected to the CAB Meeting associated with it via Refresh CAB Meeting actionIssue Updating the CAB Definition board member doesn't update the Related CAB meetings.CauseThe CAB meetings associated with the CAB Definition had manual update by user for board member field which triggered the OOTB BR "modified_fields". https://<instance-name>.service-now.com/nav_to.do?uri=sys_script.do?sys_id=a542b7beebb022002a7a666cd206fe55 The function called in the BR is updateModifiedFields and it performs the following. /* * If this "cab_meeting" record is being updated by a refresh from the CAB Definition we set a special property in the "modified_fields" as we can ignore any field changes that happen as part of the refresh */ This BR updates the modified_fields value with the manual updated column to value 1, for instance the customer had manual update on board member therefore the modified_fields value will be ""board_members":"1"" So it will be ignored while user click on the @Refresh CAB Meeting button.Logic can be found in script include : CABMeetingSNChttps://<instance-name>.service-now.com/nav_to.do?uri=sys_script_include.do?sys_id=22a5e6f3eb32120034d1eeea1206fe40Line 71: this.ignoreModifiedFields();ResolutionThis is per design. However if customer still wants to have the updated fields refreshed from CAB Definition then due to the modified_fields is a read-only field therefore the value could only be updated via background script.