Re: [rt-users] List of Transaction Types

2015-06-23 Thread Moose
While I don't have a complete list of transaction types for you, I do have a
scrip that will write relevant transaction/ticket info to the logs. 

Condition: On transaction
Action: User Defined
Template: Blank
Stage: TransactionCreate

Custom Action Prep Code:
$RT::Logger-debug(  TRANSACTION TYPE: . $self-TransactionObj-Type
. \n );
$RT::Logger-debug(  TRANSACTION FIELD: . $self-TransactionObj-Field
. \n );
$RT::Logger-debug(  TRANSACTION CONTENT: .
$self-TransactionObj-Content . \n );
$RT::Logger-debug(  TRANSACTION OLD VALUE: .
$self-TransactionObj-OldValue . \n );
$RT::Logger-debug(  TRANSACTION NEW VALUE: .
$self-TransactionObj-NewValue . \n );
$RT::Logger-debug(  TICKET QUEUE : . $self-TicketObj-QueueObj-Name
. \n );
$RT::Logger-debug(  TICKET ID: . $self-TicketObj-Id . \n );



--
View this message in context: 
http://requesttracker.8502.n7.nabble.com/List-of-Transaction-Types-tp60208p60209.html
Sent from the Request Tracker - User mailing list archive at Nabble.com.


[rt-users] List of Transaction Types

2015-06-23 Thread Keith Edmunds
Where can I find a list of transaction types?

I found http://requesttracker.wikia.com/wiki/Transaction, but that appears
to be old or incomplete (for example, it doesn't include SetWatcher).

Thanks,
Keith