- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-18-2020 07:53 AM
Hello,
I have a flow in flow designer and I would like to set the "Opened for" field to be set to the current value of the "Opened by" field. I have been using the following script but it doesn't seem to work:
Both the open_for & the open_by fields are reference fields to the user table, is that why this is not working? How should I fix this? Any help is appreciated.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-18-2020 10:16 AM
Solved:
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-18-2020 10:16 AM
Solved:
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-18-2020 08:48 AM
have you tried to use script as below
var openFor = current.opened_by.toString(); //check for the field name as well
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-18-2020 09:57 AM
This does not seem to work