Unable to query for variable in History
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-18-2013 04:32 AM
Hi all !
I'm trying to query for a process variable value- since the process has ended at the time of the Query, I'm using the History Service.
So I guess I'd need first HistoricDetail:
However the details' list is empty. Do you have any idea that brings me in the right direction?
Thanks
Frank
I'm trying to query for a process variable value- since the process has ended at the time of the Query, I'm using the History Service.
So I guess I'd need first HistoricDetail:
List<HistoricDetail> details = historyService.createHistoricDetailQuery().processInstanceId(procId).list();
However the details' list is empty. Do you have any idea that brings me in the right direction?
Thanks
Frank
Labels:
- Labels:
-
Archive
4 REPLIES 4
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-18-2013 04:40 AM
I hope, following snippet from the test could help you:
Martin
…
List<HistoricProcessInstance> instanceList = historyService.createHistoricProcessInstanceQuery().includeProcessVariables().list();
…
Martin
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-18-2013 05:40 AM
Thanks for your reply, however in the release of Activiti (5.11) I'm using I cannot find the method includeProcessVariables() in the HistoricProcessInstanceQuery() 😞
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-19-2013 03:54 AM
Hi Frank,
Can you cherry-pick this feature?
Martin
Can you cherry-pick this feature?
Martin
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-19-2013 08:29 AM
Another possibility is to use native queries. 5.11 supports them.
