Reputation: 11
Can I change the Modified by column in d365 entity
Hello everyone as I was trying to change the modified by column with a value of column owner in my model driven i want as I create any record it should change the value of column modified by as in owner. I want to achieve this plug in. Note: Is it possible to change the value in modified by column.
Upvotes: 0
Views: 472
Reputation: 18895
First off, I question why this is a requirement for the modified by to be the owner. But here are some options in the order in which I would recommend:
Upvotes: 0
Reputation: 6180
ModifiedOn
is a system-field which is automatically updated with the id of whichever user account modified the record.
If you're creating records, and assigning them to another user, the modifiedon
field will still be the user that created the record, not the user that owned the record
Upvotes: 0