InactiveHospitalBillingTransaction
This stored procedure builds the table, which contains one record for every inactive Hospital Billing transaction in the system. A transaction is considered inactive if it has been reversed, has been reposted, or is a reversal. In addition to the transaction ID, this table contains the date on which the transaction became inactive. To report on active transactions, left outer join to this table and select records where.TX_ID is null. To report on active transactions as of a certain date, left outer join to this table and select records where.TX_ID is null or.INACTIVE_DATE is greater than the as of date.
| Column Name | Type | Description |
|---|---|---|
| TransactionIdentification | NUMERIC | This column stores the unique identifier for the hospital billing transaction. |
| CommunityLogicalOwnerIdentifier | VARCHAR | The Community ID (CID) of the instance from which this Chronicles record was extracted. This is populated only if you use IntraConnect. |
| IsTransactionReversal | INTEGER | Determines whether or not this transaction was a reversal. 1 indicates it was a reversal, while 0 indicates it was not a reversal. |
| CommunityPhysicalOwnerIdentification | VARCHAR | The Community ID (CID) of the instance that owns this Chronicles record. This is populated only if you use IntraConnect. |
| TransactionInactiveDate | DATETIME | The date on which this transaction became inactive. A transaction is considered inactive when it is reversed, reposted, or if it is a reversal. |