How can I delete a process?
I want to purge a proccess with status "complete" but only for a particular date, not all "completed".
How can I do this?
Hi,
Tools - Processes - Purge Processes (Enter Status Completed & Date Filter)
In that case you would have to write a SQL Statement to delete the data:
Example:
DELETE FROM PROCESSWHERE STATUS = - 100 ANDTARGETID = 'Enter Contact ID' ANDSTARTDATE >= 'Enter Date' ANDSTARTDATE <= 'Enter Date'