Below queries can be used to get the details about
- What happend during a wrokflow
- Which user performed which task
- How long a task was waiting to be processed e.t.c.
- Use the below query to get the process ids related to your templete
select * from dmc_completed_workflow where process_id =
'my_process_id';
select * from dmc_completed_workitem where workflow_id in
(select workflow_id from dmc_completed_workflow where process_id =
'my_process_id' )
order by workflow_id, act_seqno;
No comments:
Post a Comment