Hi,

I'm new to OTRS as well as to Perl.

I'm wondering how I can detect the failure in the function TicketMerge.

Here is my script:

**************************************
#!/usr/bin/perl
use strict;
use warnings;
use utf8;

use Kernel::System::ObjectManager;
local $Kernel::OM = Kernel::System::ObjectManager->new();
my $TicketObject = $Kernel::OM->Get('Kernel::System::Ticket');


my $Success = $TicketObject->TicketMerge(
        MainTicketID  => 1673,
        MergeTicketID => 1689123,
        UserID        => 1,
) || die();

**************************************

Is this scenario, ticket id 1689123 does NOT exist and command
TicketMerge fails but the script exits with success.

How can I know when it fails?

Regards
-------------------------
Santiago DIEZ
Quark Systems & CAOBA
23 rue du Buisson Saint-Louis, 75010 Paris
-------------------------
---------------------------------------------------------------------
OTRS mailing list: otrs - Webpage: http://otrs.org/
Archive: http://lists.otrs.org/pipermail/otrs
To unsubscribe: http://lists.otrs.org/mailman/listinfo/otrs

Reply via email to