On Tue, Nov 27, 2012 at 02:39:40PM +0100, Xavier Reigner wrote:
>    In addition, I'd like to specify a link "Depended on by" to the tickets 
> according to the
>    previous test. I'm still confusing how I should update this field.
>    $RT::Logger->info("Auto reference ticket #". $T_Obj->id ." to ticket 
> #1234" );
>    my ($status, $msg) = $self->TicketObj->_Set( 'DependedOnBy', '1234');

_Set is really dangerous.  In general, you should never use it.

You want to call AddLink on your ticket.
http://bestpractical.com/rt/docs/latest/RT/Ticket.html#AddLink

-kevin

>    unless( $status ) {
>    $RT::Logger->error( "Unable to assign the ticket DependedOnBy" );
>    return undef;
>    }
>    return 1;

Attachment: pgp3Ee3WVHMEr.pgp
Description: PGP signature

--------
We're hiring! http://bestpractical.com/jobs

Reply via email to