Interface ADVFileControl

ADVFileControl

interface ADVFileControl {
    batchCount: number;
    blockCount: number;
    entryAddendaCount: number;
    entryHash: number;
    id?: string;
    totalCredit: number;
    totalDebit: number;
}

Properties

batchCount: number

Count of Batches in the File

ADVFileControl

blockCount: number

Total number of records in the file (include all headers and trailer) divided by 10 (This number must be evenly divisible by 10. If not, additional records consisting of all 9's are added to the file after the initial '9' record to fill out the block 10.)

ADVFileControl

entryAddendaCount: number

Total detail and addenda records in the file

ADVFileControl

entryHash: number

Calculated in the same manner as the batch total but includes total from entire file

ADVFileControl

id?: string

ADV File Control Record

ADVFileControl

totalCredit: number

Accumulated Batch credit totals within the file.

ADVFileControl

totalDebit: number

Accumulated Batch debit totals within the file.

ADVFileControl