How to get assigned to value into a "List" field everytime it changes

F_bio Santos
Kilo Sage

Hi everyone, Im trying to make the value of "assigned_to" go to a "List" field everytime the "assigned_to" changes, unfortunatly Im not being able to make it work, does anyone know how to do this ?

1 ACCEPTED SOLUTION

SanjivMeher
Kilo Patron
Kilo Patron

You can create an onBefore Business Rule and add a condition Assigned To Changes

And in the script you can do

if (current.<list field>)
     current.<list field>= current.<list field>+','+current.assigned_to;
else
     current.<list field> = current.assigned_to;

Please mark this response as correct or helpful if it assisted you with your question.

View solution in original post

1 REPLY 1

SanjivMeher
Kilo Patron
Kilo Patron

You can create an onBefore Business Rule and add a condition Assigned To Changes

And in the script you can do

if (current.<list field>)
     current.<list field>= current.<list field>+','+current.assigned_to;
else
     current.<list field> = current.assigned_to;

Please mark this response as correct or helpful if it assisted you with your question.