[rt-users] Help with scrip for adding values to Custom Field

2011-08-24 Thread Kenneth Crocker
To list, I have a Custom Field I use as a To address for Others in a template; To: {$Ticket-FirstCustomFieldValue('QA Approver')} This CF is a Select One Value type. Now I have a situation that is similar, except that there will be more than one address to use. I figured I'd define the CF as

Re: [rt-users] Help with scrip for adding values to Custom Field

2011-08-24 Thread Kenneth Crocker
To List, I got it to work in terms of adding several good email addresses with this: = while ($UserObj = $GroupMembersObj-Next) { my $UserEmail = $UserObj-EmailAddress; my $cf_obj = RT::CustomField-new($RT:: SystemUser);