Is there a way to find out who deleted a Task? I k...
# general
p
Is there a way to find out who deleted a Task? I know I can find deleted transactions via Audit Trail but can't seem to figure out how to find out who deleted a task.
k
unlikely.
t
@pen one You can a SuiteQL query against the "DeletedRecord" to get that info. For example:
SELECT * FROM DeletedRecord WHERE DeletedDate > TO_DATE ( '2021-07-27', 'YYYY-MM-DD' )
There's a "deletedby" column on that table, which is the ID of the employee that deleted the record.
👍 1
p
thanks for this and also thanks for that great SuiteQL Query Tool. Works perfectly!
t
No problem! I'm glad it helped.