Primary Key Field Type
 ID uniqueidentifier

Field Field Type Null Notes Description
 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.
 AMOUNT money   Default = 0 The amount of this application, expressed in the base currency of the registration.
 RECEIPTAMOUNT money Default = 0

Foreign Key Field Type Null Notes Description
 PAYMENTID uniqueidentifier   FINANCIALTRANSACTIONLINEITEM.ID Indicates the revenue detail which paid the event registrant.
 REGISTRANTID uniqueidentifier   REGISTRANT.ID Indicates the registrant which was paid by the revenue detail.
 ADDEDBYID uniqueidentifier   CHANGEAGENT.ID FK to CHANGEAGENT.
 CHANGEDBYID uniqueidentifier   CHANGEAGENT.ID FK to CHANGEAGENT.
 APPLICATIONCURRENCYID uniqueidentifier CURRENCY.ID The currency associated with this record's amount, which matches the base currency of the application.
 APPLICATIONEXCHANGERATEID uniqueidentifier CURRENCYEXCHANGERATE.ID The exchange rate used to convert the transaction amount of the payment to the base amount of the application.

Index Name Field(s) Unique Primary Clustered
 IX_EVENTREGISTRANTPAYMENT_APPLICATIONCURRENCYID APPLICATIONCURRENCYID      
 IX_EVENTREGISTRANTPAYMENT_APPLICATIONEXCHANGERATEID APPLICATIONEXCHANGERATEID      
 IX_EVENTREGISTRANTPAYMENT_DATEADDED DATEADDED    
 IX_EVENTREGISTRANTPAYMENT_DATECHANGED DATECHANGED      
 IX_EVENTREGISTRANTPAYMENT_PAYMENTID PAYMENTID      
 IX_EVENTREGISTRANTPAYMENT_REGISTRANTID REGISTRANTID      
 PK_EVENTREGISTRANTPAYMENT ID  

Trigger Name Description
 TR_EVENTREGISTRANTPAYMENT_AUDIT_UPDATE
 TR_EVENTREGISTRANTPAYMENT_AUDIT_DELETE
 TR_EVENTREGISTRANTPAYMENT_INSERTUPDATE_CURRENCY

Entity-Relationship diagram of this table