Field |
Field Type |
Null |
Notes |
Description |
NUMBER |
nvarchar(100) |
|
Default = '' |
Stores the phone number. |
ISPRIMARY |
bit |
|
Default = 0 |
Indicates this phone number is the primary phone number. |
SEQUENCE |
int |
|
Default = 0 |
Stores the user-defined sequence for phone numbers on a constituent. |
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. |
DONOTCALL |
bit |
|
Default = 0 |
Indicates this phone number should not receive phone calls. |
STARTTIME |
UDT_HOURMINUTE |
|
Default = '' |
Time that the phone number becomes valid |
ENDTIME |
UDT_HOURMINUTE |
|
Default = '' |
Time that the phone number becomes no longer valid |
INFOSOURCECOMMENTS |
nvarchar(256) |
|
Default = '' |
Contains additional comments about the information source. |
STARTDATE |
date |
 |
|
The date the phone number becomes valid. |
ENDDATE |
date |
 |
|
The date the phone number becomes invalid. |
ISCONFIDENTIAL |
bit |
|
Default = 0 |
Indicates this phone number is confidential. |
ORIGINCODE |
tinyint |
|
Default = 0 |
Defines where the address originated. |
ORIGIN |
nvarchar(9) (Computed) |
 |
CASE [ORIGINCODE] WHEN 0 THEN N'User' WHEN 1 THEN N'Web Forms' END |
Provides a translation for the 'ORIGINCODE' field. |
NUMBERNOFORMAT |
nvarchar(100) (Computed) |
 |
dbo.UFN_PHONE_REMOVEFORMATTING(NUMBER) |
Stores a non-formatted version of the number. |
SEASONALSTARTDATE |
UDT_MONTHDAY |
|
Default = '0000' |
For seasonal phone types only; DD/MM start date of when this phone should be considered. |
SEASONALENDDATE |
UDT_MONTHDAY |
|
Default = '0000' |
For seasonal phone types only; DD/MM end date of when this phone should be considered. |