Get a first look at what's coming. The Developer Passport Australia Release Preview kicks off March 12. Dive in! 

Get reference field value in workflow Approver user action

ragz
Tera Expert

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.

find_real_file.png

Currently I am using

 answer = [];
   answer.push(current.variables.TelecomContact);

find_real_file.png

 

But it is not working and the action become auto approved all the time .

 

 

find_real_file.png

 

How to fix this?

 

 

10 REPLIES 10

Prateek kumar
Giga Sage

Try this: 

answer = [];
   answer.push(current.variables.TelecomContact.toString());


Please mark my response as correct and helpful if it helped solved your question.
-Thanks

Not worked same result.

is the variable name TelecomContact??


Please mark my response as correct and helpful if it helped solved your question.
-Thanks

Yes

 

find_real_file.png