Field |
Field Type |
Null |
Notes |
Description |
NAME |
nvarchar(100) |
|
Default = '' |
The name of the parameter set. |
DESCRIPTION |
nvarchar(255) |
|
Default = '' |
The description of the parameter set. |
BATCHNUMBER |
nvarchar(60) |
|
Default = '' |
Specifies the batch number assigned to the batch used to hold the transactions. |
IMPORTFILENAME |
nvarchar(255) |
|
Default = '' |
The path and name of the standing orders file to import. |
DUEDATETYPECODE |
tinyint |
|
Default = 0 |
The process will look for unpaid commitments due on or before this date. |
CUTOFFDATE |
datetime |
 |
|
Used to specify the cut-off due date for unpaid commitments to be included in the process. |
DAYSAFTER |
int |
|
Default = 0 |
Used to calculate the cut-off due date for unpaid commitments to be included in the process. |
PAYFUTURE |
bit |
|
Default = 0 |
Pay future instalments if no current unpaid commitments are found. |
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. |
DUEDATETYPE |
nvarchar(30) (Computed) |
 |
CASE [DUEDATETYPECODE] WHEN 0 THEN N'Date this process runs' WHEN 1 THEN N'Specific date' WHEN 2 THEN N'X days after this process runs' END |
Provides a translation for the 'DUEDATETYPECODE' field. |