- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-12-2017 12:20 AM
i have a set of instantiated process and i want to query some Process on the basis of value of process variables present in process.
- Labels:
-
Alfresco Process Services
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-13-2017 04:13 AM
You could try using this - Activiti/ProcessInstanceQueryImpl.java at 6.0-release · Activiti/Activiti · GitHub . Here is an example - Activiti/ProcessInstanceQueryTest.java at 6.0-release · Activiti/Activiti · GitHub
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-13-2017 04:13 AM
You could try using this - Activiti/ProcessInstanceQueryImpl.java at 6.0-release · Activiti/Activiti · GitHub . Here is an example - Activiti/ProcessInstanceQueryTest.java at 6.0-release · Activiti/Activiti · GitHub
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-25-2017 10:07 AM
I am new to Activiti Development. Where would the user perform these queries?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-26-2017 03:25 AM
I assumed the context for this question was running the activiti engine embedded in a java process (so not from the UI), which is most common with the community edition. But a runtimeService and other engine services can also be used within a service task as part of an activiti process. Here is an example - activiti-examples/VariableToDataModelMapping.java at master · cijujoseph/activiti-examples · GitHub (the example uses AlfrescoRuntimeDataModelService but RuntimeService could be autowired in the same way).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-13-2017 09:26 AM
Thanks bro.