Use System Property in Flow Designer Trigger condition
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-11-2024 10:09 AM
I have a requirement to trigger the flow designer if incident task is assigned to certain 3 groups . I have to store those groups in system property(as per requirement) and use it in the flow designer trigger condition . Please help on how can this be possible ?
I have already tried using assignment group is one of javascript: gs.getProperty('sys prop name'); in condition but it didn't work and i tried calling script include where i am returning this property value . That too didn't work . Is it even possible ?
Thanks.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-11-2024 10:19 AM
@RC19 I tried the similar condition in flow conditions in past and it worked for me. Try following.
Hope this helps.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-11-2024 10:31 AM
Thanks for the reply. Unfortunately, this doesnt work for me .

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-11-2024 10:21 AM
I don't think you can use system properties in the trigger, however you could approach this a little bit differently. You could create a BR that on update of the record with these groups assigned, you could use the ScriptableFlowRunner API to call your flow, and script the inputs that your flow requires. Here is a link to the docs page, and also a picture of the relevant section on how to use the withInputs() method
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-11-2024 07:17 AM
Hi,
I am facing the same issue..Did you find any solution??
Thanks