
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-12-2016 07:37 PM
Created a service catalog item, with multiple variables.
Created a workflow with a notification activity that sends email upon form submission.
Used variables from the catalog item in the notification (advance, message) field via ${current.variables.var_name} which seems to do what I needed,
until, I realized that one variable, a Selectbox was sending the "text" attribute and not the actual "value" associated with the Selectbox item.
i.e. sending time{ 3:00 AM } text, instead of time{ 03 } value
Is it a simple matter of adding a dot reference to traverse, i.e. ${current.variables.var_name.getValue()}
Or is that too simple.
--Thanks in advance
Solved! Go to Solution.
- Labels:
-
Service Catalog
-
Workflow

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-12-2016 08:56 PM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-15-2016 05:17 AM
Without using getDisplayValue, I do not think the label of the choice is returned. Can you check your choice value definition and check if the text and the label is not the same.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-15-2016 08:00 AM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-15-2016 09:48 PM
Create a email notification script and use the following in the script
template.print(current.variables.sample_select_box);
Add the mail script call to the notification as
${mail_script:emai_notification_script_name}

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-16-2016 08:20 AM
While this would most likely be an easy thing for an admin, I am not. As such, I don't have access to [Helsinki > System Notification > Email > Notifications?]
Which means I'm limited to what I can do inside the [Helsinki > Workflow Editor] using the [Core Activity > Notifications > Create Event] activity at this point.