How to get "Process Details > Process Nodes" info for multiple instance in a (Custom?) Report

I need a report that contains the Process Nodes info as per menu : Process Details > Process Nodes.
Inputs : Process Model, Output : Instance Name, DateTime of Instance Execution + Process Nodes Details.

I would appreciate any help, guidance etc on this! Thank you!

OriginalPostID-235285

  Discussion posts and replies are publicly visible

Parents
  • @georget518, a better solution would be to get an instance of ProcessExecutionService, Then use the getCurrentTasksForProcess() method with the UNATTENDED_AND_ATTENDED_TASKS flag.
    Then you will get a ResultPage of TaskSummary objects. TaskSummary has useful methods like getTaskAcceptedTime, getCompletedTime, getStatus etc. Most of the information in the image you attached can be extracted from TaskSummary.
Reply
  • @georget518, a better solution would be to get an instance of ProcessExecutionService, Then use the getCurrentTasksForProcess() method with the UNATTENDED_AND_ATTENDED_TASKS flag.
    Then you will get a ResultPage of TaskSummary objects. TaskSummary has useful methods like getTaskAcceptedTime, getCompletedTime, getStatus etc. Most of the information in the image you attached can be extracted from TaskSummary.
Children
No Data