How to add a SubjectTag to a Queue?

Hi there,

i created a Queue using :

my $Queuey = RT::Queue->new($RT::SystemUser);

$Queuey->Create(Name =>$Name,
Description=>$Description,
CorrespondAddress =>$CorrespondAddress,
CommentAddress=>$CommentAddress,
InitialPriority=>$InitialPriority,
FinalPriority=>$FinalPriority,
DefaultDueIn=>$DefaultDueIn,
Disabled=>$Disabled);

Now i would like to add a SubjectTag to this Queue.
I guess this is very easy but at the moment i have no idea how.

Something like
$Queuey->SubjectTag=‘Test’;
is not working.

any help would be appreciated.
yours,
Martin Tischmann

Now i would like to add a SubjectTag to this Queue.
I guess this is very easy but at the moment i have no idea how.

You can just pass SubjectTag to Create (read the first few lines of
Create in Queue_Overlay.pm)

Something like
$Queuey->SubjectTag=‘Test’;
is not working.

SubjectTag fetches data, SetSubjectTag updates it

-kevin

Many thanks Kevin works fine!
Martin

Kevin Falcone schrieb:> On Wed, Feb 03, 2010 at 03:09:58PM +0100, Martin Tischmann wrote:

Now i would like to add a SubjectTag to this Queue.
I guess this is very easy but at the moment i have no idea how.

You can just pass SubjectTag to Create (read the first few lines of
Create in Queue_Overlay.pm)

Something like
$Queuey->SubjectTag=‘Test’;
is not working.

SubjectTag fetches data, SetSubjectTag updates it

-kevin



List info: The rt-devel Archives