[rt-users] Scrip condition, On XxxxCustomFieldChanged

2011-05-19 Thread Daniel Schwager
Hi, is there a change to get the custom field id by the CF name ? my $fieldId = $self-TransactionObj-getCustomFieldIdByName(CF-Summary); I would like to replace the field number with the name to make the code more robust. -- scrip ### Trigger if custom value changed return undef

Re: [rt-users] Scrip condition, On XxxxCustomFieldChanged

2011-05-19 Thread Ruslan Zakirov
Hi, my $cf_obj = $self-TicketObj-LoadCustomFieldByIdentifier(Summary); On Thu, May 19, 2011 at 11:36 PM, Daniel Schwager daniel.schwa...@dtnet.de wrote: Hi, is there a change to get the custom field id by the CF name ?  my $fieldId = $self-TransactionObj-getCustomFieldIdByName(CF-Summary);

Re: [rt-users] Scrip condition, On XxxxCustomFieldChanged

2011-05-19 Thread Daniel Schwager
Hi Ruslan, my $cf_obj = $self-TicketObj-LoadCustomFieldByIdentifier(Summary); works perfectly - thanks very much !! best regards Danny