- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-20-2022 06:31 AM
Hi,
I have a list type field called "event participants" and I need this field to be updated with the name of the last registrant that will be informed in another field in the table but without the name of previous participants being deleted.
Can I do this in the flow designer?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-20-2022 06:41 AM
Hi @Lidi2115
You can implement it using both Business Rule and Flow Designer also with condition as 'Registrant is changed' with code as below:
current.u_event_participants = current.u_event_participants + ',' + current.u_registrant;
current.update();
Thanks
Anubhav Ritolia
ServiceNow Rising Star 2023

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-20-2022 11:18 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-20-2022 06:41 AM
Hi @Lidi2115
You can implement it using both Business Rule and Flow Designer also with condition as 'Registrant is changed' with code as below:
current.u_event_participants = current.u_event_participants + ',' + current.u_registrant;
current.update();
Thanks
Anubhav Ritolia
ServiceNow Rising Star 2023

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-20-2022 11:18 AM
Why don’t you use a journal type field for it?