Get reference field value in workflow Approver user action
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-15-2019 08:50 AM
Hi All ,
I have a field called Telecom contact in the form . How to I get the value into workflow and assigned the approval task to that user.
Currently I am using
answer = [];
answer.push(current.variables.TelecomContact);
But it is not working and the action become auto approved all the time .
How to fix this?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-15-2019 09:03 AM
Try this:
answer = [];
answer.push(current.variables.TelecomContact.toString());
Please mark my response as correct and helpful if it helped solved your question.
-Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-15-2019 09:13 AM
Not worked same result.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-15-2019 09:19 AM
is the variable name TelecomContact??
Please mark my response as correct and helpful if it helped solved your question.
-Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-15-2019 11:36 AM
