Hi All,
I am trying to write a java code that will get the results of executed flownode.
I have tried following and didn’t get results:
SearchOptions searchOptions = new SearchOptionsBuilder(0, 250).filter(
ArchivedProcessInstancesSearchDescriptor.NAME, PROCESS_NAME)
.done();
SearchResult archivedProcessInstanceResults = processAPI
.searchArchivedProcessInstances(searchOptions);
List<ArchivedProcessInstance> archives = archivedProcessInstanceResults
.getResult();
Looking forward to hear from all.
-Praks