General Ledger Details
- Get General Ledger Detail Object Definition
- Query and List General Ledger Details
- Query and List General Ledger Details (Legacy)
Many journal entries are created by the system based on activity in sub ledgers like Accounts Receivable and Accounts Payable.
General ledger details help understand the relationships between journal entries and their source sub ledger transactions. See the General Ledger Detail entity relationship diagram for more information.
Important Performance Considerations
GLDETAIL
represents an API query against a view, not a table. This query against a view impacts performance. When building solutions, consider the size of the company and dataset for which the solution is developed and follow these recommendations:
- When using General Ledger Details, Journal Entry, and Journal Entry Lines, apply appropriate filters (dates, states, modified date, and so forth). Limited or no filters can greatly impact performance and lead to timeouts, especially for large datasets.
- To avoid timeouts with larger datasets, create a custom report. Then, use the async
readReport
function to execute the report. This method can help mitigate performance issues and avoid timeouts.
Get General Ledger Detail Object Definition
lookup
List all the fields and relationships for the general ledger detail object:
Parameters
Name | Required | Type | Description |
---|---|---|---|
object | Required | string | Use GLDETAIL |
Query and List General Ledger Details
query
List the record number and module key for each General Ledger Detail for Cash Management:
List General Ledger Details for the journal with the given symbol:
Parameters
Name | Required | Type | Description |
---|---|---|---|
object | Required | string | Use GLDETAIL |
filter | Optional | object | Filter expression to limit the response to only objects that match the expression. Check the value of a single field using operators such as equalto/like, or multiple fields using and/or. Query fields on related objects using the dot operator (for example, VENDOR.CREDITLIMIT on APBILL). |
select | Required | sequence | The names of the fields that you want included in the response, and an optional aggregate function such as count or sum . Returning all fields is not supported. |
orderby | Optional | object | Provide an order element with a field name and choose an ascending or descending sort order, for example: <order> |
options | Optional | object | Query options:
|
pagesize | Optional | integer | Maximum number of matching objects to return in the response, between 1 and 2000 items (Default: 100 ) |
offset | Optional | integer | Point at which to start indexing into records (Default: 0 ) |
filter
Parameters
Name | Required | Type | Description |
---|---|---|---|
MODULEKEY | Optional | string | Module key for the application area. Use 2.GL for General Ledger, 3.AP for Accounts Payable, 4.AR for Accounts Receivable, 6.EE for Employee Expenses, 7.INV for Inventory Control, 8.SO for Order Entry, 9.PO for Purchasing, 11.CM for Cash Management, 48.PROJACCT for Project and Resource Management, 55.CONTRACT for Contracts and Revenue Management. |
BOOKID | Optional | string | Book ID. Use ACCRUAL , CASH , or the name of a user-defined book with the accounting method appended, for example, UDB1ACCRUAL . |
Query and List General Ledger Details (Legacy)
readByQuery
List General Ledger Details:
List General Ledger Details for the Cash Management module:
Parameters
Name | Required | Type | Description |
---|---|---|---|
object | Required | string | Use GLDETAIL |
fields | Optional | string | Comma-separated list of fields on the object to list. For best performance and predictability, limit the number of fields. To return all fields, omit the element or provide * for the value. |
query | Required | string | SQL-like query based on fields on the object. The following operators are supported: < , > , >= , <= , = , like , not like , in , not in , IS NOT NULL , IS NULL , AND , OR . Illegal XML characters must be properly encoded, and single quotes must be escaped with backslashes ('Jane\'s Deli' ). Joins are not supported. |
pagesize | Optional | integer | Custom page size between 1 and 1000 items (Default: 100 ) |
query
Fields
Name | Required | Type | Description |
---|---|---|---|
MODULEKEY | Optional | string | Module key for the application area. Use 2.GL for General Ledger, 3.AP for Accounts Payable, 4.AR for Accounts Receivable, 6.EE for Employee Expenses, 7.INV for Inventory Control, 8.SO for Order Entry, 9.PO for Purchasing, 11.CM for Cash Management, 48.PROJACCT for Project and Resource Management, 55.CONTRACT for Contracts and Revenue Management. |
BOOKID | Optional | string | Book ID. Use ACCRUAL , CASH , or the name of a user-defined book with the accounting method appended, for example, UDB1ACCRUAL . |