StandardTerms
Create, update, delete, and query Reckon Standard Terms.
Table Specific Information
Select
The following filters support server-side execution. Other filters are executed client-side.
Reckon allows only a small subset of columns to be used in the WHERE clause of a SELECT query. These columns can only be used with the equals or = comparison. The available columns for StandardTerms records are Id, TimeModified, Name, and IsActive. TimeModified may be used with the >, >=, <, <=, or = conditions and may be used twice to specify a range. Name may be used with the = or LIKE conditions to establish a starts-with, ends-with, or contains syntax. For example:
SELECT * FROM StandardTerms WHERE TimeModified > '1/1/2011' AND TimeModified < '2/1/2011' AND Name LIKE '%12345%'
Insert
To insert a StandardTerm, specify the Name column.Columns
| Name | Type | ReadOnly | References | Description |
| ID [KEY] | String | True |
The Id of the standard term. | |
| Name | String | False |
The name of the standard term. | |
| IsActive | Boolean | False |
Boolean indicating if the standard term is active. | |
| StdDueDays | Integer | False |
The number of days until payment is due. | |
| StdDiscountDays | Integer | False |
If payment is received within StdDiscountDays number of the days, then DiscountPct will apply to the payment. | |
| DiscountPct | Double | False |
If payment is received within StdDiscountDays number of days, then this discount will apply to the payment. DiscountPct must be between 0 and 100. | |
| EditSequence | String | True |
A string indicating the revision of the standard term. | |
| TimeCreated | Datetime | True |
The time the standard term was created. | |
| TimeModified | Datetime | True |
The time the standard term was modified. |
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 |
| ActiveStatus | String |
This pseudo column is deprecated and should no longer be used. Limits the search to active or inactive records only or all records. 使用できる値は次のとおりです。ALL, ACTIVE, INACTIVE, NA デフォルト値はALLです。 |
| StartModifiedDate | String |
This pseudo column is deprecated and should no longer be used. Earliest modified date to search for (in yyyy-MM-dd, MM-dd-yy, MM-dd-yyyy, MM/dd/yy, or MM/dd/yyyy format). |
| EndModifiedDate | String |
This pseudo column is deprecated and should no longer be used. Latest modified date to search for (in yyyy-MM-dd, MM-dd-yy, MM-dd-yyyy, MM/dd/yy, or MM/dd/yyyy format). |
| MaxResults | String |
Maximum number of results to return. |
| NameMatch | String |
This pseudo column is deprecated and should no longer be used. The type of match to use when searching with the Name. 使用できる値は次のとおりです。EXACT, STARTSWITH, CONTAINS, ENDSWITH デフォルト値はEXACTです。 |