- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-31-2021 05:28 AM
Hi!
Can I use a system property in Flowdesigner?
Or is there another easy way to calculate a date to add 5 years?
I tried to use "Add Time", but it's not accurate bec of the leap year.
Thank yoU!
Solved! Go to Solution.
- Labels:
-
flow designer
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-31-2021 05:32 AM
Have you looked at this community post:
It talks about making a custom action:
What i can see if I would go to use system property in the if logic it does not give me option to code.
Thus you can create custom action & return true/false from it.
& Pass the true/false value in the if logic step.
Create a property:I have created one say check which contains table names:
sc_req_item,incident
Create an action which will take input as string so that we can pass the table name to evaluate with system property.
Publish the custom action & call it in your flow.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-31-2021 05:32 AM
Have you looked at this community post:
It talks about making a custom action:
What i can see if I would go to use system property in the if logic it does not give me option to code.
Thus you can create custom action & return true/false from it.
& Pass the true/false value in the if logic step.
Create a property:I have created one say check which contains table names:
sc_req_item,incident
Create an action which will take input as string so that we can pass the table name to evaluate with system property.
Publish the custom action & call it in your flow.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-01-2021 04:31 AM
Thank Willem!
Have a great week!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-31-2021 05:33 AM
In addition, a lot of actions already allow you to use script. There you can use:
gs.getProperty('property_name')
For example as described here:
I have a requirement to call a property in flow designer to assign ticket to one group. Can some one help how to call property in flow designer.