Where do I see the cancel reason?
When cancelling a process the user may enter a reason. Where is this reason stored and where does an admin go to view this entered reason?
https://documentation.agilepoint.com/8000/appbuilder/cloudemExampleCancelProcess.html
-
Here is a query that will get this information and can be used in an Analytics Report to make it more accessible.
SELECT
a.DATE_OCCURRED,
a.PERFORMER,
a.DESCRIPTION,
p.PROC_INST_ID,
p.DEF_NAME,
p.APPL_NAME,
p.PROC_INITIATOR
FROM dbo.WF_AUDIT_TRAILS a
JOIN dbo.WF_PROC_INSTS p ON a.OBJECT_INFO = p.PROC_INST_ID
WHERE DESCRIPTION IS NOT NULL
AND PURPOSE = 'CancelProcessInstance'
請登入寫評論。
評論
1 條評論