[rt-users] Displaying custom field with Ticket API

Srikumar Nair srikumarp at fb.com
Fri Oct 21 16:54:05 EDT 2011


We have a Global custom field called Search_Criteria in Ticket object.
I am using the following code snippet to display this Search_Criteria in the tickets.

Apparently the print line is not correct; but after searching the mailing lists and the wiki I cannot find the correct way to do this.
What is the correct way here?

my $ticketSql = "Requestor.Name = '$requestor'";

my $tickets4Requestor = RT::Tickets->new(RT->SystemUser);
$tickets4Requestor->FromSQL($ticketSql);

while (my $request = $tickets4Requestor->Next ) {
   print $request->CF.{Search_Criteria} . "\n";   ### ======> problem line.
}


Thanks
Srikumar

-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.bestpractical.com/pipermail/rt-users/attachments/20111021/f9d78536/attachment.htm>


More information about the rt-users mailing list