BillLinkedTransactions
Query Reckon Bill Linked Transactions.
Table Specific Information
Linked transactions are transactions that have been associated with the Bill specified by the BillId column.
Select
By default, SupportEnhancedSQL is set to true, and the following will be honored if present. Other filters will be executed client side. If SupportEnhancedSQL is set to false, only the following filters will be honored.
Reckon allows only a small subset of columns to be used in the WHERE clause of a SELECT query. These columns can typically be used with only the equals or = comparison. The available columns for Bills are Id, Date, ReferenceNumber, VendorName, VendorId, AccountsPayable, AccountsPayableId, IsPaid, and TimeModified. TimeModified and Date may be used with the >, >=, <, <=, or = conditions and may be used twice to specify a range. ReferenceNumber may be used with the = or LIKE conditions to establish a starts-with, ends-with, or contains syntax. For example:
SELECT * FROM Bills WHERE TimeModified > '1/1/2011' AND TimeModified < '2/1/2011' AND ReferenceNumber LIKE '%12345%'
Columns
Name | Type | References | Description |
ID [KEY] | String | The unique identifier in the format BillId|ItemLineId. | |
BillId | String |
Bills.ID | The item identifier. |
TransactionId | String | The Id of the linked transaction. | |
TransactionAmount | Double | The amount of the linked transaction. | |
TransactionDate | Date | The date of the linked transaction. | |
TransactionReferenceNumber | String | The reference number of the linked transaction. | |
TransactionType | String | The type of linked transaction. | |
TransactionLinkType | String | The link type between the bill and the linked transaction. | |
TimeModified | Datetime | When the bill was last modified. | |
TimeCreated | Datetime | When the bill was created. |
Pseudo-Columns
Pseudo Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description | |
StartTxnDate | String | This pseudo column is deprecated and should no longer be used. Earliest transaction date to search for. | |
EndTxnDate | String | This pseudo column is deprecated and should no longer be used. Latest transaction date to search for. | |
StartModifiedDate | String | This pseudo column is deprecated and should no longer be used. Earliest modified date to search for. | |
EndModifiedDate | String | This pseudo column is deprecated and should no longer be used. Latest modified date to search for. | |
PaidStatus | String | The paid status of the vendor credit.
The allowed values are ALL, PAID, UNPAID, NA. The default value is ALL. |