I want to create a rule that creates an onModified Audit entry in the audit log if any field EXCEPT the UpdatedDate field changes.
hasChanged():true AND !hasChanged([entry.UpdatedDate]:true
This is what I have right now, but that does not seem to work. Is there any way for me to create the audit entry only if the UdatedDate field does not change?
I have another IFTTT riule so that if hasChanged():true then
entryId=[entry.id]&UpdatedBy=[entry._user]&UpdatedDate=[entry._now]
So, I am certain the two rules conflict with each other and that is what is causing the issue.
So I am saying if anything changes then update the updated date field - BUT if nothing changes and the user still hits SAVE do not record that save in the audit log
hasChanged():true AND hasChanged(UpdatedDate):false
But see the "UpdatedBy" that you also update
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.