You need to use a formula script for the User entity. E.g., when a certain field is User record changes, you need to update the field in the related CVOC record:
Code:
if (entity\isAttributeChanged('username') {
record\update('CVOC', cvocId, 'manager1', username)
}

Leave a comment: