How to filter the record from ACT_RU_JOB using API, example

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-08-2014 11:27 AM
1 REPLY 1
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-09-2014 05:36 AM
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();
