- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-01-2016 12:10 AM
So I have some variables that are on my catalog item and are hidden on the form. Now we know that those variables we can get on the request item form and the catalog task form too. I have created a task where I want to give value to those variables. My issue is how to fetch those variables in a workflow(on request item table) so that I can set some conditions based on that.
So basically Here I have a checkbox and a choice field coming from the catalog item. I want to access those values in my workflow
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-01-2016 01:33 AM
Use current.variables.yourvariablename to get or set values to variables.
Thanks,
Mihir
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-01-2016 01:21 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-01-2016 01:26 AM
I am. But in the advanced script area I want to get the value of those variables
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-01-2016 01:48 AM
You can use current.variables.variableName , will work in advanced script
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-01-2016 01:33 AM
Use current.variables.yourvariablename to get or set values to variables.
Thanks,
Mihir
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-01-2016 03:46 AM
Thanks it worked.
I also found out that workflow.variables.variable_name works too