Primary Key Field Type
 ID uniqueidentifier

Field Field Type Null Notes Description
 QUANTITY smallint   Default = ((0)) Number of benefits
 UNITVALUE money   Default = 0 Cost per benefit
 DETAILS nvarchar(255)   Default = '' Details
 SEQUENCE int   Default = 0
 DATEADDED datetime   Default = getdate() Indicates the date this record was added.
 DATECHANGED datetime   Default = getdate() Indicates the date this record was last changed.
 TS timestamp   Timestamp.
 TSLONG bigint (Computed) CONVERT(bigint, TS) Numeric representation of the timestamp.
 REVENUEBENEFITID uniqueidentifier The benefit record id that's updated in revenueu update batch.

Foreign Key Field Type Null Notes Description
 BATCHREVENUEID uniqueidentifier   BATCHREVENUE.ID Indicates the batch row this benefit applies to.
 BENEFITID uniqueidentifier   BENEFIT.ID Benefit
 ADDEDBYID uniqueidentifier   CHANGEAGENT.ID FK to CHANGEAGENT.
 CHANGEDBYID uniqueidentifier   CHANGEAGENT.ID FK to CHANGEAGENT.
 BENEFITCURRENCYID uniqueidentifier CURRENCY.ID The base currency of the benefit.

Index Name Field(s) Unique Primary Clustered
 IX_BATCHREVENUEBENEFIT_BATCHREVENUEID BATCHREVENUEID      
 IX_BATCHREVENUEBENEFIT_BENEFITCURRENCYID BENEFITCURRENCYID      
 IX_BATCHREVENUEBENEFIT_DATEADDED DATEADDED    
 IX_BATCHREVENUEBENEFIT_DATECHANGED DATECHANGED      
 PK_BATCHREVENUEBENEFIT ID  

Trigger Name Description
 TR_BATCHREVENUEBENEFIT_INSERTUPDATE_CURRENCY
 TR_BATCHREVENUEBENEFIT_AUDIT_UPDATE
 TR_BATCHREVENUEBENEFIT_AUDIT_DELETE

Entity-Relationship diagram of this table