- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-07-2025 11:26 AM - edited 01-07-2025 11:27 AM
Inbound virtual variables seem very help for populating fields that a consumer does not directly have. For example, I am setting the assignment group based on a virtual variable. It sets my target variable just fine, it never reflects that variable on remote task. It just shows the virtual inbound variable as empty. Is there a way to populate the value on that inbound virtual variable?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-07-2025 11:52 AM - edited 01-07-2025 12:00 PM
Hi Thomas,
Set the output.label to the value that the you want to display in the inbound variable. The variables are just string fields and can only hold one value so they don't have a display value and value.
The variable will display what is in output.label but will use output.value when setting the target field.
output.value = 'your sys_id value';
output.label = 'Your Display Value';
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-07-2025 11:52 AM - edited 01-07-2025 12:00 PM
Hi Thomas,
Set the output.label to the value that the you want to display in the inbound variable. The variables are just string fields and can only hold one value so they don't have a display value and value.
The variable will display what is in output.label but will use output.value when setting the target field.
output.value = 'your sys_id value';
output.label = 'Your Display Value';