InvoiceTransCheck


Description

Invoice transaction check associations linking invoice transactions to check payments for payment tracking and reconciliation. This junction table connects invoice transactions with check log entries, supporting check payment processing, payment reconciliation, and audit trails for check-based payments in healthcare billing operations.

Columns

Column Type Size Nulls Auto Default Children Parents Comments
InvTransCheckID int identity 4 null

Primary key - Unique identifier for each invoice transaction check association

fkTransID int 4 null
InvoiceTransaction.TransID FK__InvTransCheckID__TransID C

Transaction reference - Links to InvoiceTransaction table for the associated transaction (foreign key to InvoiceTransaction.TransID)

fkCheckLogID int 4 null
checkLog.checkLogID FK__InvTransCheckID__CheckLogID R

Check log reference - Links to checkLog table for the associated check payment (foreign key to checkLog.checkLogID)

Indexes

Constraint Name Type Sort Column(s)
PK__InvoiceTransChec__330D1096 Primary key Asc InvTransCheckID

Relationships