02-11-2013 08:30 AM
List<Execution> executions = runtimeService.createExecutionQuery()
.variableValueEquals("caseId", 123456L)
.signalEventSubscriptionName("My Signal")
.list();List<Execution> executions = runtimeService.createNativeExecutionQuery()
.sql(select * from act_ru_execution ex
join act_ru_event_subscr sub on sub.execution_id_ = ex.id_
join act_ru_variable rv on ex.proc_inst_id_ = rv.proc_inst_id_
where name_ = 'caseId' and long_ = 123456 and sub.event_name_= 'My Signal').list();
02-12-2013 10:23 AM
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.