- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-15-2023 08:50 AM
Hello,
We got a workflow (table = sc_req_item) with a notification activity in it.
From the script of this Notification activity, i need to Gliderecord to the approvals table to get 2 values from 2 fields.
My question is, how to use values from script to the message of the Notification ?
I tried below with the reqBy variable but nothing appear.
Result
Thanks,
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-16-2023 11:04 AM - edited 06-16-2023 11:04 AM
Have you tried the following:
${workflow.scratchpad.positionTest}
I know you could create a new notification in the system and pass the scratchpad in the parm fields in the EventQueue to send the data within the email, but try the above first.
Please mark this response as correct and/or helpful if it assisted you with your question.
Steven
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-16-2023 10:53 AM
I don't know what that script you have is...You need to use a mail script. Run the script where you have ${reqBy} template.print the output of the mail script will be the string (text) you want. Using the ${} only works for fields on the table or variables defined by the catalog item.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-16-2023 11:32 AM
Hi @Elena7
I created a very basic form and tried to shoot notification from flow.
Do the below :
(1)In the Advanced script user workflow.scratchpad
example : I used workflow.scratchpad.requestor} = current.variables.requestor ; (Use whatever value you want to enter).
(2)In the message use the workflow variable as
example : Requestor : ${workflow.scratchpad.requestor}.
I am attaching screenshot of form, flow and script