- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-01-2024 09:07 AM - edited 03-01-2024 09:08 AM
Hi
I was trying to create a field of List type that is mapped to List collector variable. but even though I gave multiple values from the Record Producer it is showing only one name on the List type field on the form.
how to achieve this?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-01-2024 09:36 AM
H Swathi, thanks for the reply but the list field is working and accepting multiple values.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-01-2024 09:34 AM
Hi @Rahul Raja Sami ,
in the script you can add something like
current.u_users =producer.u_users.toString();
current.<field_name> = producer.<record producer variable name>
Please mark this comment as Correct Answer/Helpful if it helped you.
Regards,
Swathi Sarang
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-01-2024 09:36 AM
H Swathi, thanks for the reply but the list field is working and accepting multiple values.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-01-2024 09:35 AM - edited 03-01-2024 09:37 AM
How are you populating it? Can you show some screenshot or scripts?
list collector will have comma separated sys_id and that can be a direct input to the list field, use the below in your record producer script
current.<list field name>=producer.<variable name>;
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-01-2024 09:37 AM
Hi Anurag, thanks for the reply but the list field is working and accepting multiple values. It is fine now.