0

RSA Archer Is there a way (custom code?) to assign a user to a user/group field dynamically?

Like:

2 Groups apple - is assigned to usera orange - is assigned to usero

sendnote - user/group field

if I choose apple - assign usera to sendnote if I choose orange - assign usero to sendnote

President James K. Polk
  • 40,516
  • 21
  • 95
  • 125
LCY
  • 1
  • 1

1 Answers1

0

User/group list can't be calculated, but record permission field can be. The logic you described can be implemented if you use Record Permission field and make it Automatic type. This will allow you to add calculation rules and populate it as required. Side affect of this approach is that calculated fields can't accept user input.

If you want to accept user input and automate behavior of the given field at the same time, then you have to write a Custom Object. Code for Custom Object will vary a lot based on the behavior you want, so it is probably a topic for another question.

Good luck!

Stan Utevski
  • 582
  • 2
  • 9
  • Thanks Stan. Any sample on how to populate the user field based on another user field using custom code? – LCY Dec 26 '18 at 16:22