How to populate "Additional assignee list Unlock Additional assignee list" filed with script
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-19-2024 04:39 AM
Hello, I want to populate
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-19-2024 05:53 AM
Hi @eyala
You can configure an On-Change client script to achieve this as shown below. Please note that I have created a custom field for additional assignee list. You can reuse the existing one as well based on your requirement.
function onChange(control, oldValue, newValue, isLoading, isTemplate) {
if (isLoading || newValue === '') {
return;
}
//Type appropriate comment here, and begin script below
g_form.setValue('u_additional_assignee_list',newValue);
}
Output :
Thanks and Regards
Amit Verma
Please mark this response as correct and helpful if it assisted you with your question.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-19-2024 06:32 AM
is it possibale to do it from record producer ?
I have a variable (string) that I add the emails in it, and after that extract every email.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-19-2024 10:47 PM
You can map your email field in the Record Producer to the Additional Assignee list field as shown below :
Output :
Remember to give in the input comma separated for the email IDs as the list collector expects comma separated values.
Please mark this response as correct and helpful if it assisted you with your question.