cancel
Showing results for 
Search instead for 
Did you mean: 

How to filter the record from ACT_RU_JOB using API, example

demouser
Champ in-the-making
Champ in-the-making
How to filter the record from ACT_RU_JOB using API, example
1 REPLY 1

frederikherema1
Star Contributor
Star Contributor
Just take a look at the Javadocs and search for "Job". Use the managementService for this, eg:


List<Job> jobsThatFailed = manegementService.createJobQuery().withException().list();

List<Job> timersAfterNextWeek = manegementService.createJobQuery().timers().duedateHigherThan(nextWeek).list();