NAME

RT::Transaction

SYNOPSIS

DESCRIPTION

METHODS

Create PARAMHASH

Create takes a hash of values and creates a row in the database:

  int(11) 'EffectiveTicket'.
  int(11) 'Ticket'.
  int(11) 'TimeTaken'.
  varchar(20) 'Type'.
  varchar(40) 'Field'.
  varchar(255) 'OldValue'.
  varchar(255) 'NewValue'.
  varchar(100) 'Data'.
id

Returns the current value of id. (In the database, id is stored as int(11).)

EffectiveTicket
Returns the current value of EffectiveTicket. (In the database, EffectiveTicket is stored as int(11).)
SetEffectiveTicket VALUE

Set EffectiveTicket to VALUE. Returns (1, 'Status message') on success and (0, 'Error Message') on failure. (In the database, EffectiveTicket will be stored as a int(11).)

Ticket
Returns the current value of Ticket. (In the database, Ticket is stored as int(11).)
SetTicket VALUE

Set Ticket to VALUE. Returns (1, 'Status message') on success and (0, 'Error Message') on failure. (In the database, Ticket will be stored as a int(11).)

TicketObj

Returns the Ticket Object which has the id returned by Ticket

TimeTaken
Returns the current value of TimeTaken. (In the database, TimeTaken is stored as int(11).)
SetTimeTaken VALUE

Set TimeTaken to VALUE. Returns (1, 'Status message') on success and (0, 'Error Message') on failure. (In the database, TimeTaken will be stored as a int(11).)

Type
Returns the current value of Type. (In the database, Type is stored as varchar(20).)
SetType VALUE

Set Type to VALUE. Returns (1, 'Status message') on success and (0, 'Error Message') on failure. (In the database, Type will be stored as a varchar(20).)

Field
Returns the current value of Field. (In the database, Field is stored as varchar(40).)
SetField VALUE

Set Field to VALUE. Returns (1, 'Status message') on success and (0, 'Error Message') on failure. (In the database, Field will be stored as a varchar(40).)

OldValue
Returns the current value of OldValue. (In the database, OldValue is stored as varchar(255).)
SetOldValue VALUE

Set OldValue to VALUE. Returns (1, 'Status message') on success and (0, 'Error Message') on failure. (In the database, OldValue will be stored as a varchar(255).)

NewValue
Returns the current value of NewValue. (In the database, NewValue is stored as varchar(255).)
SetNewValue VALUE

Set NewValue to VALUE. Returns (1, 'Status message') on success and (0, 'Error Message') on failure. (In the database, NewValue will be stored as a varchar(255).)

Data
Returns the current value of Data. (In the database, Data is stored as varchar(100).)
SetData VALUE

Set Data to VALUE. Returns (1, 'Status message') on success and (0, 'Error Message') on failure. (In the database, Data will be stored as a varchar(100).)

Creator

Returns the current value of Creator. (In the database, Creator is stored as int(11).)

Created

Returns the current value of Created. (In the database, Created is stored as datetime.)

SEE ALSO

This class allows "overlay" methods to be placed into the following files _Overlay is for a System overlay by the original author, _Vendor is for 3rd-party vendor add-ons, while _Local is for site-local customizations.

These overlay files can contain new subs or subs to replace existing subs in this module.

If you'll be working with perl 5.6.0 or greater, each of these files should begin with the line

   no warnings qw(redefine);

so that perl does not kick and scream when you redefine a subroutine or variable in your overlay.

RT::Transaction_Overlay, RT::Transaction_Vendor, RT::Transaction_Local