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
09-11-2024 07:41 AM
gs.getProperty() is not working in flow designer . So workaround was to use a script include function where we need to glide record to sys_properties table, query your system property and return it's sys_id .
we can use javascript: new scriptIncludeName().functionName() to fetch that returned value in flow designer.
If this information helped resolve your issue, please remember to mark Accept as Solution and thumbs up to help future community members on this information, thanks!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-12-2024 01:19 AM
Hi,
Thanks for the solution, but unfortunately it is not working for me. Can you provide some screenshots of your property and SI?
Thanks