12-02-2014 06:16 AM
select count(*) from ACT_HI_PROCINST where PROC_DEF_ID_ = 'MYPROCESS:1:3804'
long result = MyProcessEngine
.getHistoryService()
.createHistoricProcessInstanceQuery()
.processDefinitionKey("MYPROCESS:1:3804")
.finished()
.count();
long result = MyProcessEngine
.getHistoryService()
.createHistoricProcessInstanceQuery()
.processDefinitionId("MYPROCESS")
.finished()
.count();
long result = MyProcessEngine
.getHistoryService()
.createHistoricProcessInstanceQuery()
.processInstanceId("3806")
.finished()
.count();
12-02-2014 03:21 PM
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.