check for an objects value in the process
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-22-2015 03:48 PM
Hi
Can you please let me know, if there is a method to check for an objects value in the process, similar to one below:
processEngine.getTaskService().createTaskQuery().processVariableValueEqualsIgnoreCase('','')
The above method will check for the value of the string variable. Is there a method to check for an object like 'Item' ?
Regards
Smurf
Can you please let me know, if there is a method to check for an objects value in the process, similar to one below:
processEngine.getTaskService().createTaskQuery().processVariableValueEqualsIgnoreCase('','')
The above method will check for the value of the string variable. Is there a method to check for an object like 'Item' ?
Regards
Smurf
Labels:
- Labels:
-
Archive
3 REPLIES 3
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-24-2015 05:17 PM
Hi Smurf,
No, the variable query only supports primitive types. If you have a complex object and you need to query on a specific value, a good approach would be to store the value as a primitive separately, so you can query on it.
Best regards,
No, the variable query only supports primitive types. If you have a complex object and you need to query on a specific value, a good approach would be to store the value as a primitive separately, so you can query on it.
Best regards,
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-25-2015 10:57 AM
Ok. Can you please let me know, if i can use a 'in' clause ?
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-30-2015 03:41 PM
No, that would have to be done by a custom or native query