Re: [rt-users] list of scrips in a queue

2016-02-14 Thread Asif Iqbal
On Sat, Feb 13, 2016 at 5:08 PM, Asif Iqbal  wrote:

> Hi All,
>
> How do I get the list of scrips of a queue?
>
> Here is my snippet..
>
> my $queue = RT::Queue->new($CurrentUser);
> my $scrips = RT::Scrips->new($CurrentUser);
> my ($status, $msg) = $queue->Load( 'help' );
> my ($status, $msg) = $scrips->LimitToQueue( $queue->id );
> my @queuescrips = $scrips->Prepared;
>
> foreach my $scrip (@queuescrips) {
>print $scrip->Description;
> }
>
>
I got it working...

my ($status, $msg) = $scrips->LimitToQueue( $queue->id );

while ( my $Scrip = $Scrips->Next()) {
   print $Scrip->Description;
   print "\n";
}




> When I run this I get the following error
>
> [Sat Feb 13 22:06:54 2016] [critical]: Can't call method "Description" on
> unblessed reference at /usr/local/sbin/test.pl line 24.
> (/opt/rt4/lib/RT.pm:400)
> Can't call method "Description" on unblessed reference at /usr/local/sbin/
> test.pl line 24.
>
>
> --
> Asif Iqbal
> PGP Key: 0xE62693C5 KeyServer: pgp.mit.edu
> A: Because it messes up the order in which people normally read text.
> Q: Why is top-posting such a bad thing?
>
>


-- 
Asif Iqbal
PGP Key: 0xE62693C5 KeyServer: pgp.mit.edu
A: Because it messes up the order in which people normally read text.
Q: Why is top-posting such a bad thing?
-
RT 4.4 and RTIR Training Sessions 
(http://bestpractical.com/services/training.html)
* Hamburg Germany - March 14 & 15, 2016
* Washington DC - May 23 & 24, 2016

[rt-users] list of scrips in a queue

2016-02-13 Thread Asif Iqbal
Hi All,

How do I get the list of scrips of a queue?

Here is my snippet..

my $queue = RT::Queue->new($CurrentUser);
my $scrips = RT::Scrips->new($CurrentUser);
my ($status, $msg) = $queue->Load( 'help' );
my ($status, $msg) = $scrips->LimitToQueue( $queue->id );
my @queuescrips = $scrips->Prepared;

foreach my $scrip (@queuescrips) {
   print $scrip->Description;
}

When I run this I get the following error

[Sat Feb 13 22:06:54 2016] [critical]: Can't call method "Description" on
unblessed reference at /usr/local/sbin/test.pl line 24.
(/opt/rt4/lib/RT.pm:400)
Can't call method "Description" on unblessed reference at /usr/local/sbin/
test.pl line 24.


-- 
Asif Iqbal
PGP Key: 0xE62693C5 KeyServer: pgp.mit.edu
A: Because it messes up the order in which people normally read text.
Q: Why is top-posting such a bad thing?
-
RT 4.4 and RTIR Training Sessions 
(http://bestpractical.com/services/training.html)
* Hamburg Germany - March 14 & 15, 2016
* Washington DC - May 23 & 24, 2016