I have a requirement to track when an item has been changed (tracking this in a separate sharepoint list called Actions). I currently do this by using the patch function after the on success of the form submission to the main list, I patch through for example that person X updated field [abc] from [acme] to [not acme] etc... works well when I'm only tracking what the change was.
However I now have the requirement to track not what was updated (ie. acme to not acme) BUT just which field was updated? so show that field [abc] and [def] and [ghi] were updated.. don't need what they were updated to. just that they were the ones edited... and trying to figure out the best way to do this?
I had thought that I could add a text box where I added all the fields as they were updated (concatenating them) and then used that box in my patch.. which would be fine if I could figure out how to do that ! or if there is a better way to do it? The fields that are updated can just be listed in one field with a comma or other separator..
Hopefully you can understand what I mean ! Any suggestions on best approach?