Skip to Content

Sage Intacct Connection Details

Introduction

Connector Version

This documentation is based on version 23.0.8707 of the connector.

Get Started

Sage Intacct Version Support

The Sage Intacct connector connects with the Sage Intacct Web Services API.

Establish a Connection

Connect to Sage Intacct

To connect to Web Services, you will first need to enable the Web Services subscription. Navigate to Company > Admin Tab > Subscriptions and enable Web Services.

Intacct also recommends creating a Web Services-only user, which can be done by navigating to Company > Admin Tab and clicking on the + sign beside Web Services users.

You can establish a connection to Sage Intacct using either the embedded credentials or with your own credentials.

Authenticate to Sage Intacct

To authenticate, set CompanyID and set User and Password to the credentials you use to log on to Sage Intacct. In addition, you will need to either set your own SenderID and SenderPassword, or use the embedded credentials in the Sage Intacct connector.

BasicReadOnly

The connector has embedded Web Services credentials that are used when reading data from Intacct.

Follow these steps to authenticate:

  • AuthScheme: Set this to BasicReadOnly.
  • Ensure that you have not specified a SenderID or SenderPassword.
  • In your Web Services dashboard, navigate to the Company > Company Info > Security tab.
  • Add "" to your Web Services authorizations. This is case-sensitive. To do this, navigate to Company > Company Info (Configuration > Company in new UI) > Security > Web Services Authorizations / Edit.

Note

The embedded credentials are read-only. Use Basic for read and write access.

Basic

You can use your own Web Services credentials to write data to Intacct. Set the following to authenticate:

  • AuthScheme: Set this to Basic.
  • SenderID: Set this to the Web Services Sender ID assigned to you by Sage Intacct.
  • SenderPassword: Set this to your registered Web Services password.
Okta

The following connection properties are used to connect to Okta:

  • AuthScheme: Set this to Okta.
  • User: Set this to the Okta user.
  • Password: Set this to Okta password for the user.
  • SSOLoginURL: Set this to the login URL used by the SSO provider.

In addition, set the following SSOProperties:

  • IntacctUserID: Set this value to the Intacct User ID that is mapped to the Okta user you set in the User connection property.
  • APIToken (optional): Set this to the API Token that the customer created from the Okta organization. It should be used when authenticating a user via a trusted application or proxy that overrides Okta client request context.

The following is an example connection string:

AuthScheme=Okta; SSOLoginURL='https://example.okta.com/home/appType/0bg4ivz6cJRZgCz5d6/46'; User=oktaUserName; Password=oktaPassword; SSOProperties='IntacctUserID=intacct_user';

Fine-Tuning Data Access

Fine Tuning Data Access

You can use the following properties to gain more control over the data returned from Sage Intacct:

  • LocationsID: To connect to a shared child company, specify its locations Id.
  • ClientID: To connect to a distributed child company, specify its client id.

LocationsID and ClientID cannot be specified at the same time.

New Sage Intacct API

Support for the new Sage Intacct API has been added.

The new API adds support for server-side filtering, ORDERBY, offset and aggregate functions including count, avg, min, max and sum.

Enable this support by setting UseLegacy to False.

The new API also supports the displaying of attributes related to objects using IncludeRelatedAttributes.

Important Notes

Configuration Files and Their Paths

  • All references to adding configuration files and their paths refer to files and locations on the Harmony Agent where the connector is installed. These paths are to be adjusted as appropriate depending on the agent and the operating system. If multiple agents are used in an agent group, identical files will be required on each agent.

Advanced Features

This section details a selection of advanced features of the Sage Intacct connector.

User Defined Views

The connector allows you to define virtual tables, called user defined views, whose contents are decided by a pre-configured query. These views are useful when you cannot directly control queries being issued to the drivers. See User Defined Views for an overview of creating and configuring custom views.

SSL Configuration

Use SSL Configuration to adjust how connector handles TLS/SSL certificate negotiations. You can choose from various certificate formats; see the SSLServerCert property under "Connection String Options" for more information.

Proxy

To configure the connector using Private Agent proxy settings, select the Use Proxy Settings checkbox on the connection configuration screen.

Query Processing

The connector offloads as much of the SELECT statement processing as possible to Sage Intacct and then processes the rest of the query in memory (client-side).

See Query Processing for more information.

User Defined Views

The Sage Intacct connector allows you to define a virtual table whose contents are decided by a pre-configured query. These are called User Defined Views, which are useful in situations where you cannot directly control the query being issued to the driver, e.g. when using the driver from Jitterbit. The User Defined Views can be used to define predicates that are always applied. If you specify additional predicates in the query to the view, they are combined with the query already defined as part of the view.

There are two ways to create user defined views:

  • Create a JSON-formatted configuration file defining the views you want.
  • DDL statements.

Define Views Using a Configuration File

User Defined Views are defined in a JSON-formatted configuration file called UserDefinedViews.json. The connector automatically detects the views specified in this file.

You can also have multiple view definitions and control them using the UserDefinedViews connection property. When you use this property, only the specified views are seen by the connector.

This User Defined View configuration file is formatted as follows:

  • Each root element defines the name of a view.
  • Each root element contains a child element, called query, which contains the custom SQL query for the view.

For example:

{
    "MyView": {
        "query": "SELECT * FROM Customer WHERE MyColumn = 'value'"
    },
    "MyView2": {
        "query": "SELECT * FROM MyTable WHERE Id IN (1,2,3)"
    }
}

Use the UserDefinedViews connection property to specify the location of your JSON configuration file. For example:

"UserDefinedViews", "C:\Users\yourusername\Desktop\tmp\UserDefinedViews.json"

Define Views Using DDL Statements

The connector is also capable of creating and altering the schema via DDL Statements such as CREATE LOCAL VIEW, ALTER LOCAL VIEW, and DROP LOCAL VIEW.

Create a View

To create a new view using DDL statements, provide the view name and query as follows:

CREATE LOCAL VIEW [MyViewName] AS SELECT * FROM Customers LIMIT 20;

If no JSON file exists, the above code creates one. The view is then created in the JSON configuration file and is now discoverable. The JSON file location is specified by the UserDefinedViews connection property.

Alter a View

To alter an existing view, provide the name of an existing view alongside the new query you would like to use instead:

ALTER LOCAL VIEW [MyViewName] AS SELECT * FROM Customers WHERE TimeModified > '3/1/2020';

The view is then updated in the JSON configuration file.

Drop a View

To drop an existing view, provide the name of an existing schema alongside the new query you would like to use instead.

DROP LOCAL VIEW [MyViewName]

This removes the view from the JSON configuration file. It can no longer be queried.

Schema for User Defined Views

User Defined Views are exposed in the UserViews schema by default. This is done to avoid the view's name clashing with an actual entity in the data model. You can change the name of the schema used for UserViews by setting the UserViewsSchemaName property.

Work with User Defined Views

For example, a SQL statement with a User Defined View called UserViews.RCustomers only lists customers in Raleigh:

SELECT * FROM Customers WHERE City = 'Raleigh';

An example of a query to the driver:

SELECT * FROM UserViews.RCustomers WHERE Status = 'Active';

Resulting in the effective query to the source:

SELECT * FROM Customers WHERE City = 'Raleigh' AND Status = 'Active';

That is a very simple example of a query to a User Defined View that is effectively a combination of the view query and the view definition. It is possible to compose these queries in much more complex patterns. All SQL operations are allowed in both queries and are combined when appropriate.

SSL Configuration

Customize the SSL Configuration

By default, the connector attempts to negotiate SSL/TLS by checking the server's certificate against the system's trusted certificate store.

To specify another certificate, see the SSLServerCert property for the available formats to do so.

Data Model

Sage Intacct connector models Sage Intacct entities in relational Tables.

Table definitions are dynamically retrieved. When you connect using the connector, any changes you make, such as adding a new table, adding new columns, or changing a column's data type, are reflected immediately.

The Tables and Views listed in the documentation are samples of what you may have access to in your Intacct account.

Sage Intacct offers support for various document tables that coincide with a specific document type. By default the document tables do not include custom fields associated with the table, but the user can access the following tables to retrieve any custom fields associated with the document type.

Document Tables

The following is a sample of the document tables and their associated document type tables.

----------- -----------------------------
PODocument PODocumentPurchaseOrder
SODocument SODocumentSalesOrder
INVDocument INVDocumentAdjustmentIncrease

Tables with separate required primary keys for INSERT and DELETE

The following table lists tables that have separate required primary keys for INSERT and DELETE, and their composite primary keys:

------------------ -------------
Aisle AISLEID
Allocation ALLOCATIONID
APBillPayment PAYITEMKEY
Bin BINID
Class CLASSID
CreditCard CARDID
Customer CUSTOMERID
EEAccountLabel ACCOUNTLABEL
Employee EMPLOYEEID
ExpensePaymentType NAME
GAAPAdjJrnl TITLE
GLAcctGrp NAME
ICRow ROWKEY
InvPriceList NAME
Journal TITLE
POPriceList NAME
PositionSkill NAME
ProductLine PRODUCTLINEID
Project PROJECTID
StatJournal TITLE
TransactionRule NAME
TrxCurrencies CODE
UoM NAME
UserAdjJrnl TITLE
Vendor VENDORID
Warehouse LOCATIONID

Tables

The connector models the data in Sage Intacct into a list of tables that can be queried using standard SQL statements.

Generally, querying Sage Intacct tables is the same as querying a table in a relational database. Sometimes there are special cases, for example, including a certain column in the WHERE clause might be required to get data for certain columns in the table. This is typically needed for situations where a separate request must be made for each row to get certain columns. These types of situations are clearly documented at the top of the table page linked below.

Sage Intacct Connector Tables

Name Description
AcctLabelTaxGroup Retrieves AcctLabelTaxGroup report data.
AcctRange Retrieves AcctRange report data.
ActivityLog Retrieves ActivityLog report data.
Aisle Retrieves Aisle report data.
Allocation Retrieves Allocation report data.
APAccountLabel Retrieves APAccountLabel report data.
APAdjustment Retrieves APAdjustment report data.
APBill Retrieves APBill report data.
APBillBatch Retrieves APBillBatch report data.
APPymt Retrieves APPymt report data.
APRecurBill Retrieves APRecurBill report data.
APTerm Retrieves APTerm report data.
ARAccountLabel Retrieves ARAccountLabel report data.
ARAdjustment Retrieves ARAdjustment report data.
ARInvoice Retrieves ARInvoice report data.
ARInvoiceBatch Retrieves ARInvoiceBatch report data.
ARPaymentBatch Retrieves ARPaymentBatch report data.
ARTerm Retrieves ARTerm report data.
Attendee Retrieves Attendee report data.
Billing_Contact Retrieves Billing_Contact report data.
Bin Retrieves Bin report data.
CheckingAccount Retrieves CheckingAccount report data.
Class Retrieves Class report data.
Comments Retrieves Comments report data.
Contact Retrieves Contact report data.
Contract A collection of Contract items.
CreditCard Retrieves CreditCard report data.
Customer Retrieves Customer report data.
CustomerEmailTemplate Retrieves CustomerEmailTemplate report data.
CustomerGroup Retrieves CustomerGroup report data.
CustomerVisibility Retrieves CustomerVisibility report data.
CustType Retrieves CustType report data.
Department Retrieves Department report data.
EarningType Retrieves EarningType report data.
EEAccountLabel Retrieves EEAccountLabel report data.
EExpenses Retrieves EExpenses report data.
EmailTemplate Retrieves EmailTemplate report data.
Employee Retrieves Employee report data.
EmployeeEntityContacts Retrieves EmployeeEntityContacts report data.
EmployeeGroup Retrieves EmployeeGroup report data.
EmployeeOutOfOffice Retrieves EmployeeOutOfOffice report data.
EmployeePositionSkill Retrieves EmployeePositionSkill report data.
EmployeeRate Retrieves EmployeeRate report data.
EmployeeType Retrieves EmployeeType report data.
ExchangeRate Retrieves ExchangeRate report data.
ExpenseAdjustments Retrieves ExpenseAdjustments report data.
ExpensePaymentType Retrieves ExpensePaymentType report data.
GAAPAdjJrnl Retrieves GAAPAdjJrnl report data.
GLAccount Retrieves GLAccount report data.
GLAcctGrp Retrieves GLAcctGrp report data.
GLAcctGrpMember Retrieves GLAcctGrpMember report data.
GLBatch Retrieves GLBatch report data.
Glbudgetheader The GLBudgetHeader table
Glbudgetitem The GLBudgetItem table
GLCoaCatMember Retrieves GLCoaCatMember report data.
GLCompGrpMember Retrieves GLCompGrpMember report data.
ICRow Retrieves ICRow report data.
InvDocument Retrieves InvDocument report data.
InvDocumentParams Retrieves InvDocumentParams report data.
InvPriceList Retrieves InvPriceList report data.
Item Retrieves Item report data.
ItemTaxGroup Retrieves ItemTaxGroup report data.
ItemWarehouseInfo Retrieves Item Warehouse data.
Journal Retrieves Journal report data.
Location Retrieves Location report data.
Misc_Supporting_Document Retrieves Misc_Supporting_Document report data.
OutOfOffice Retrieves OutOfOffice report data.
PODocumentParams Retrieves PODocumentParams report data.
POPriceList Retrieves POPriceList report data.
PositionSkill Retrieves PositionSkill report data.
ProductLine Retrieves ProductLine report data.
Project Retrieves Project report data.
PjEstimate Retreives Project Estimate report data
ProjectGroup Retrieves ProjectGroup report data.
ProjectResources Retrieves ProjectResources report data.
ProjectStatus Retrieves ProjectStatus report data.
ProjectTransactionRule Retrieves ProjectTransactionRule report data.
ProjectType Retrieves ProjectType report data.
Ratetable Retrieves Ratetable report data.
Ratetableapentry Retrieves Ratetableapentry report data
Ratetableccentry Retrieves Ratetableccentry report data.
Ratetableexpenseentry Retrieves Ratetableexpenseentry report data.
Ratetableglentry Retrieves Ratetableglentry report data.
Ratetablepoentry Retrieves Ratetablepoentry report data.
Ratetabletsentry Retrieves Ratetabletsentry report data.
RecurGLBatch Retrieves RecurGLBatch report data.
RenewalMacro Retrieves RenewalMacro report data.
ReportingPeriod Retrieves ReportingPeriod report data.
Revrecschedule Retrieves RevRecSchedule report data.
Revrecscheduleentry Retrieves RevRecScheduleEntry report data.
RevRecTemplate Retrieves RevRecTemplate report data.
RevRecTemplMilestone Retrieves RevRecTemplMilestone report data.
SavingsAccount Retrieves SavingsAccount report data.
Seminar Retrieves Seminar report data.
Seminar_Package Retrieves Seminar_Package report data.
Seminar_Registration Retrieves Seminar_Registration report data.
SODocument Retrieves SODocument report data.
SODocumentParams Retrieves SODocumentParams report data.
SOPriceList Retrieves SOPriceList report data.
StatAccount Retrieves StatAccount report data.
StatJournal Retrieves StatJournal report data.
STKitDocument Retrieves STKitDocument report data.
Task Retrieves Task report data.
TaskResources Retrieves TaskResources report data.
TaxGroup Retrieves TaxGroup report data.
TerritoryGroup Retrieves TerritoryGroup report data.
Timesheet Retrieves Timesheet report data.
TimeType Retrieves TimeType report data.
Track A collection of Track items.
TransactionRule Retrieves TransactionRule report data.
TransactionRuleDetail Retrieves TransactionRuleDetail report data.
TrxCurrencies Retrieves TrxCurrencies report data.
UoM Retrieves UoM report data.
UserAdjJrnl Retrieves UserAdjJrnl report data.
UserInfo Retrieves UserInfo report data.
UserRoles Retrieves UserRoles report data.
Vendor Retrieves Vendor report data.
VendorGroup Retrieves VendorGroup report data.
VendorVisibility Retrieves VendorVisibility report data.
VendType Retrieves VendType report data.
Warehouse Retrieves Warehouse report data.

AcctLabelTaxGroup

Retrieves AcctLabelTaxGroup report data.

Columns
Name Type ReadOnly Description
Name [KEY] String False The Name field of the AcctLabelTaxGroup object.
Recordno Int64 False The Recordno field of the AcctLabelTaxGroup object.
Grouptype String False The Grouptype field of the AcctLabelTaxGroup object.
Whencreated Datetime False The Whencreated field of the AcctLabelTaxGroup object.
Whenmodified Datetime False The Whenmodified field of the AcctLabelTaxGroup object.
Createdby Int64 False The Createdby field of the AcctLabelTaxGroup object.
Modifiedby Int64 False The Modifiedby field of the AcctLabelTaxGroup object.
Megaentitykey Int64 False The Megaentitykey field of the AcctLabelTaxGroup object.
Megaentityid String False The Megaentityid field of the AcctLabelTaxGroup object.
Megaentityname String False The Megaentityname field of the AcctLabelTaxGroup object.
Record_url String False The Record_url field of the AcctLabelTaxGroup object.

AcctRange

Retrieves AcctRange report data.

Columns
Name Type ReadOnly Description
Recordno [KEY] String False The Recordno field of the AcctRange object.
Parentkey Int64 False The Parentkey field of the AcctRange object.
Sortord Int64 False The Sortord field of the AcctRange object.
Rangefrom String False The Rangefrom field of the AcctRange object.
Rangeto String False The Rangeto field of the AcctRange object.
Whencreated Datetime False The Whencreated field of the AcctRange object.
Whenmodified Datetime False The Whenmodified field of the AcctRange object.
Createdby Int64 False The Createdby field of the AcctRange object.
Modifiedby Int64 False The Modifiedby field of the AcctRange object.
Record_url String False The Record_url field of the AcctRange object.

ActivityLog

Retrieves ActivityLog report data.

Columns
Name Type ReadOnly Description
Recordno [KEY] String False The Recordno field of the ActivityLog object.
Obj_id Int64 False The Obj_id field of the ActivityLog object.
Trail_text String False The Trail_text field of the ActivityLog object.
Email_text String False The Email_text field of the ActivityLog object.
Createdbyuser String False The Createdbyuser field of the ActivityLog object.
Created_at Datetime False The Created_at field of the ActivityLog object.
Record_url String False The Record_url field of the ActivityLog object.

Aisle

Retrieves Aisle report data.

Columns
Name Type ReadOnly Description
Recordno Int64 False The Recordno field of the Aisle object.
Aisleid [KEY] String False The Aisleid field of the Aisle object.
Aisledesc String False The Aisledesc field of the Aisle object.
Whencreated Datetime False The Whencreated field of the Aisle object.
Whenmodified Datetime False The Whenmodified field of the Aisle object.
Createdby Int64 False The Createdby field of the Aisle object.
Modifiedby Int64 False The Modifiedby field of the Aisle object.
Record_url String False The Record_url field of the Aisle object.

Allocation

Retrieves Allocation report data.

Columns
Name Type ReadOnly Description
Recordno Int64 False The Recordno field of the Allocation object.
Allocationid [KEY] String False The Allocationid field of the Allocation object.
Description String False The Description field of the Allocation object.
Type String False The Type field of the Allocation object.
Docnumber String False The Docnumber field of the Allocation object.
Status String False The Status field of the Allocation object.
Whencreated Datetime False The Whencreated field of the Allocation object.
Whenmodified Datetime False The Whenmodified field of the Allocation object.
Createdby Int64 False The Createdby field of the Allocation object.
Modifiedby Int64 False The Modifiedby field of the Allocation object.
Megaentitykey Int64 False The Megaentitykey field of the Allocation object.
Megaentityid String False The Megaentityid field of the Allocation object.
Megaentityname String False The Megaentityname field of the Allocation object.
Record_url String False The Record_url field of the Allocation object.

APAccountLabel

Retrieves APAccountLabel report data.

Columns
Name Type ReadOnly Description
Recordno [KEY] Int64 False The Recordno field of the APAccountLabel object.
Accountlabel String False The Accountlabel field of the APAccountLabel object.
Description String False The Description field of the APAccountLabel object.
Glaccountno String False The Glaccountno field of the APAccountLabel object.
Glaccounttitle String False The Glaccounttitle field of the APAccountLabel object.
Status String False The Status field of the APAccountLabel object.
Offsetglaccountno String False The Offsetglaccountno field of the APAccountLabel object.
Taxable Boolean False The Taxable field of the APAccountLabel object.
Istax Boolean False The Istax field of the APAccountLabel object.
Subtotal Boolean False The Subtotal field of the APAccountLabel object.
Taxgroup_name String False The Taxgroup_name field of the APAccountLabel object.
Taxcode String False The Taxcode field of the APAccountLabel object.
Megaentitykey Int64 False The Megaentitykey field of the APAccountLabel object.
Megaentityid String False The Megaentityid field of the APAccountLabel object.
Megaentityname String False The Megaentityname field of the APAccountLabel object.
Record_url String False The Record_url field of the APAccountLabel object.

APAdjustment

Retrieves APAdjustment report data.

Columns
Name Type ReadOnly Description
Recordno [KEY] String False The Recordno field of the APAdjustment object.
Recordtype String False The Recordtype field of the APAdjustment object.
Recordid String False The Recordid field of the APAdjustment object.
State String False The State field of the APAdjustment object.
Rawstate String False The Rawstate field of the APAdjustment object.
Entity String False The Entity field of the APAdjustment object.
Vendorid String False The Vendorid field of the APAdjustment object.
Vendorname String False The Vendorname field of the APAdjustment object.
Trx_entitydue Double False The Trx_entitydue field of the APAdjustment object.
Docnumber String False The Docnumber field of the APAdjustment object.
Description String False The Description field of the APAdjustment object.
Whencreated Datetime False The Whencreated field of the APAdjustment object.
Whenposted Datetime False The Whenposted field of the APAdjustment object.
Whenpaid Datetime False The Whenpaid field of the APAdjustment object.
Basecurr String False The Basecurr field of the APAdjustment object.
Currency String False The Currency field of the APAdjustment object.
Exch_rate_date Datetime False The Exch_rate_date field of the APAdjustment object.
Exch_rate_type_id Int64 False The Exch_rate_type_id field of the APAdjustment object.
Exchange_rate Double False The Exchange_rate field of the APAdjustment object.
Totalentered Double False The Totalentered field of the APAdjustment object.
Totalselected Double False The Totalselected field of the APAdjustment object.
Totalpaid Double False The Totalpaid field of the APAdjustment object.
Totaldue Double False The Totaldue field of the APAdjustment object.
Trx_totalentered Double False The Trx_totalentered field of the APAdjustment object.
Trx_totalselected Double False The Trx_totalselected field of the APAdjustment object.
Trx_totalpaid Double False The Trx_totalpaid field of the APAdjustment object.
Trx_totaldue Double False The Trx_totaldue field of the APAdjustment object.
Billtopaytocontactname String False The Billtopaytocontactname field of the APAdjustment object.
Shiptoreturntocontactname String False The Shiptoreturntocontactname field of the APAdjustment object.
Billtopaytokey Int64 False The Billtopaytokey field of the APAdjustment object.
Shiptoreturntokey Int64 False The Shiptoreturntokey field of the APAdjustment object.
Prbatch String False The Prbatch field of the APAdjustment object.
Prbatchkey Int64 False The Prbatchkey field of the APAdjustment object.
Prbatch_open String False The Prbatch_open field of the APAdjustment object.
Prbatch_nogl Boolean False The Prbatch_nogl field of the APAdjustment object.
Modulekey String False The Modulekey field of the APAdjustment object.
Auwhencreated Datetime False The Auwhencreated field of the APAdjustment object.
Whenmodified Datetime False The Whenmodified field of the APAdjustment object.
Createdby Int64 False The Createdby field of the APAdjustment object.
Modifiedby Int64 False The Modifiedby field of the APAdjustment object.
Megaentitykey Int64 False The Megaentitykey field of the APAdjustment object.
Megaentityid String False The Megaentityid field of the APAdjustment object.
Record_url String False The Record_url field of the APAdjustment object.

APBill

Retrieves APBill report data.

Columns
Name Type ReadOnly Description
Recordno [KEY] String False The Recordno field of the APBill object.
Recordtype String False The Recordtype field of the APBill object.
Recordid String False The Recordid field of the APBill object.
Financialentity String False The Financialentity field of the APBill object.
State String False The State field of the APBill object.
Rawstate String False The Rawstate field of the APBill object.
Entity String False The Entity field of the APBill object.
Vendorid String False The Vendorid field of the APBill object.
Vendorname String False The Vendorname field of the APBill object.
Form1099type String False The Form1099type field of the APBill object.
Vendtype1099type String False The Vendtype1099type field of the APBill object.
Trx_entitydue Double False The Trx_entitydue field of the APBill object.
Docnumber String False The Docnumber field of the APBill object.
Description String False The Description field of the APBill object.
Description2 String False The Description2 field of the APBill object.
Termname String False The Termname field of the APBill object.
Termkey Int64 False The Termkey field of the APBill object.
Whencreated Datetime False The Whencreated field of the APBill object.
Whenposted Datetime False The Whenposted field of the APBill object.
Whendiscount Datetime False The Whendiscount field of the APBill object.
Whendue Datetime False The Whendue field of the APBill object.
Whenpaid Datetime False The Whenpaid field of the APBill object.
Recpaymentdate Datetime False The Recpaymentdate field of the APBill object.
Paymentpriority String False The Paymentpriority field of the APBill object.
Onhold Boolean False The Onhold field of the APBill object.
Basecurr String False The Basecurr field of the APBill object.
Currency String False The Currency field of the APBill object.
Exch_rate_date Datetime False The Exch_rate_date field of the APBill object.
Exch_rate_type_id Int64 False The Exch_rate_type_id field of the APBill object.
Exchange_rate Double False The Exchange_rate field of the APBill object.
Totalentered Double False The Totalentered field of the APBill object.
Totalselected Double False The Totalselected field of the APBill object.
Totalpaid Double False The Totalpaid field of the APBill object.
Totaldue String False The Totaldue field of the APBill object.
Trx_totalentered Double False The Trx_totalentered field of the APBill object.
Trx_totalselected Double False The Trx_totalselected field of the APBill object.
Trx_totalpaid Double False The Trx_totalpaid field of the APBill object.
Trx_totaldue Double False The Trx_totaldue field of the APBill object.
Billtopaytocontactname String False The Billtopaytocontactname field of the APBill object.
Shiptoreturntocontactname String False The Shiptoreturntocontactname field of the APBill object.
Billtopaytokey Int64 False The Billtopaytokey field of the APBill object.
Shiptoreturntokey Int64 False The Shiptoreturntokey field of the APBill object.
Prbatch String False The Prbatch field of the APBill object.
Prbatchkey Int64 False The Prbatchkey field of the APBill object.
Modulekey String False The Modulekey field of the APBill object.
Schopkey Int64 False The Schopkey field of the APBill object.
Systemgenerated String False The Systemgenerated field of the APBill object.
Auwhencreated Datetime False The Auwhencreated field of the APBill object.
Whenmodified Datetime False The Whenmodified field of the APBill object.
Createdby Int64 False The Createdby field of the APBill object.
Modifiedby Int64 False The Modifiedby field of the APBill object.
Megaentitykey Int64 False The Megaentitykey field of the APBill object.
Megaentityid String False The Megaentityid field of the APBill object.
Record_url String False The Record_url field of the APBill object.

APBillBatch

Retrieves APBillBatch report data.

Columns
Name Type ReadOnly Description
Recordno [KEY] String False The Recordno field of the APBillBatch object.
Title String False The Title field of the APBillBatch object.
Created Datetime False The Created field of the APBillBatch object.
Status String False The Status field of the APBillBatch object.
Recordtype String False The Recordtype field of the APBillBatch object.
Total Double False The Total field of the APBillBatch object.
Open String False The Open field of the APBillBatch object.
Parentkey String False The Parentkey field of the APBillBatch object.
Nogl Boolean False The Nogl field of the APBillBatch object.
Accountnokey String False The Accountnokey field of the APBillBatch object.
Autocreated String False The Autocreated field of the APBillBatch object.
Systemgenerated String False The Systemgenerated field of the APBillBatch object.
Megaentitykey Int64 False The Megaentitykey field of the APBillBatch object.
Megaentityid String False The Megaentityid field of the APBillBatch object.
Megaentityname String False The Megaentityname field of the APBillBatch object.
Record_url String False The Record_url field of the APBillBatch object.

APPymt

Retrieves APPymt report data.

Columns
Name Type ReadOnly Description
Recordno [KEY] String False The Recordno field of the APPymt object.
Recordtype String False The Recordtype field of the APPymt object.
Recordid String False The Recordid field of the APPymt object.
Financialentity String False The Financialentity field of the APPymt object.
State String False The State field of the APPymt object.
Paymentmethod String False The Paymentmethod field of the APPymt object.
Paymentmethodkey Int64 False The Paymentmethodkey field of the APPymt object.
Entity String False The Entity field of the APPymt object.
Vendorid String False The Vendorid field of the APPymt object.
Vendorname String False The Vendorname field of the APPymt object.
Docnumber String False The Docnumber field of the APPymt object.
Description String False The Description field of the APPymt object.
Description2 String False The Description2 field of the APPymt object.
Whencreated Datetime False The Whencreated field of the APPymt object.
Whenpaid Datetime False The Whenpaid field of the APPymt object.
Basecurr String False The Basecurr field of the APPymt object.
Currency String False The Currency field of the APPymt object.
Exch_rate_date Datetime False The Exch_rate_date field of the APPymt object.
Exch_rate_type_id String False The Exch_rate_type_id field of the APPymt object.
Exchange_rate Double False The Exchange_rate field of the APPymt object.
Totalentered Double False The Totalentered field of the APPymt object.
Totalselected Double False The Totalselected field of the APPymt object.
Totalpaid Double False The Totalpaid field of the APPymt object.
Totaldue String False The Totaldue field of the APPymt object.
Trx_totalentered Double False The Trx_totalentered field of the APPymt object.
Trx_totalselected Double False The Trx_totalselected field of the APPymt object.
Trx_totalpaid Double False The Trx_totalpaid field of the APPymt object.
Trx_totaldue Double False The Trx_totaldue field of the APPymt object.
Billtopaytocontactname String False The Billtopaytocontactname field of the APPymt object.
Prbatch String False The Prbatch field of the APPymt object.
Auwhencreated Datetime False The Auwhencreated field of the APPymt object.
Whenmodified Datetime False The Whenmodified field of the APPymt object.
Createdby Int64 False The Createdby field of the APPymt object.
Modifiedby Int64 False The Modifiedby field of the APPymt object.
Megaentitykey Int64 False The Megaentitykey field of the APPymt object.
Megaentityid String False The Megaentityid field of the APPymt object.
Record_url String False The Record_url field of the APPymt object.

APRecurBill

Retrieves APRecurBill report data.

Columns
Name Type ReadOnly Description
Recordno [KEY] String False The Recordno field of the APRecurBill object.
Description String False The Description field of the APRecurBill object.
Whencreated Datetime False The Whencreated field of the APRecurBill object.
Whenmodified Datetime False The Whenmodified field of the APRecurBill object.
Termname String False The Termname field of the APRecurBill object.
Recordid String False The Recordid field of the APRecurBill object.
Totalentered String False The Totalentered field of the APRecurBill object.
Docnumber String False The Docnumber field of the APRecurBill object.
Modulekey String False The Modulekey field of the APRecurBill object.
Status String False The Status field of the APRecurBill object.
Schopkey Int64 False The Schopkey field of the APRecurBill object.
Entity String False The Entity field of the APRecurBill object.
Contractid String False The Contractid field of the APRecurBill object.
Contractdesc String False The Contractdesc field of the APRecurBill object.
Vendorid String False The Vendorid field of the APRecurBill object.
Vendorname String False The Vendorname field of the APRecurBill object.
Username String False The Username field of the APRecurBill object.
Paytocontactname String False The Paytocontactname field of the APRecurBill object.
Returntocontactname String False The Returntocontactname field of the APRecurBill object.
Currency String False The Currency field of the APRecurBill object.
Trx_totalentered String False The Trx_totalentered field of the APRecurBill object.
Megaentitykey Int64 False The Megaentitykey field of the APRecurBill object.
Megaentityid String False The Megaentityid field of the APRecurBill object.
Megaentityname String False The Megaentityname field of the APRecurBill object.
Record_url String False The Record_url field of the APRecurBill object.

APTerm

Retrieves APTerm report data.

Columns
Name Type ReadOnly Description
Name [KEY] String False The Name field of the APTerm object.
Description String False The Description field of the APTerm object.
Status String False The Status field of the APTerm object.
Recordno Int64 False The Recordno field of the APTerm object.
Whenmodified Datetime False The Whenmodified field of the APTerm object.
Whencreated Datetime False The Whencreated field of the APTerm object.
Modifiedby Int64 False The Modifiedby field of the APTerm object.
Createdby Int64 False The Createdby field of the APTerm object.
Duedate Int64 False The Duedate field of the APTerm object.
Duefrom String False The Duefrom field of the APTerm object.
Discdate Int64 False The Discdate field of the APTerm object.
Discfrom String False The Discfrom field of the APTerm object.
Discamount Int64 False The Discamount field of the APTerm object.
Discpercamn String False The Discpercamn field of the APTerm object.
Discfudgedays Int64 False The Discfudgedays field of the APTerm object.
Pen_types String False The Pen_types field of the APTerm object.
Penamount Int64 False The Penamount field of the APTerm object.
Penpercamn String False The Penpercamn field of the APTerm object.
Penfudgedays Int64 False The Penfudgedays field of the APTerm object.
Disccalcon String False The Disccalcon field of the APTerm object.
Record_url String False The Record_url field of the APTerm object.

ARAccountLabel

Retrieves ARAccountLabel report data.

Columns
Name Type ReadOnly Description
Recordno [KEY] Int64 False The Recordno field of the ARAccountLabel object.
Accountlabel String False The Accountlabel field of the ARAccountLabel object.
Description String False The Description field of the ARAccountLabel object.
Glaccountno String False The Glaccountno field of the ARAccountLabel object.
Glaccounttitle String False The Glaccounttitle field of the ARAccountLabel object.
Status String False The Status field of the ARAccountLabel object.
Offsetglaccountno String False The Offsetglaccountno field of the ARAccountLabel object.
Taxable Boolean False The Taxable field of the ARAccountLabel object.
Istax Boolean False The Istax field of the ARAccountLabel object.
Subtotal Boolean False The Subtotal field of the ARAccountLabel object.
Taxgroup_name String False The Taxgroup_name field of the ARAccountLabel object.
Taxcode String False The Taxcode field of the ARAccountLabel object.
Deferredrevacctkey String False The Deferredrevacctkey field of the ARAccountLabel object.
Revrectemplkey String False The Revrectemplkey field of the ARAccountLabel object.
Megaentitykey Int64 False The Megaentitykey field of the ARAccountLabel object.
Megaentityid String False The Megaentityid field of the ARAccountLabel object.
Megaentityname String False The Megaentityname field of the ARAccountLabel object.
Record_url String False The Record_url field of the ARAccountLabel object.

ARAdjustment

Retrieves ARAdjustment report data.

Columns
Name Type ReadOnly Description
Recordno [KEY] String False The Recordno field of the ARAdjustment object.
Recordtype String False The Recordtype field of the ARAdjustment object.
Recordid String False The Recordid field of the ARAdjustment object.
State String False The State field of the ARAdjustment object.
Rawstate String False The Rawstate field of the ARAdjustment object.
Entity String False The Entity field of the ARAdjustment object.
Customerid String False The Customerid field of the ARAdjustment object.
Customername String False The Customername field of the ARAdjustment object.
Trx_entitydue Double False The Trx_entitydue field of the ARAdjustment object.
Docnumber String False The Docnumber field of the ARAdjustment object.
Description String False The Description field of the ARAdjustment object.
Whencreated Datetime False The Whencreated field of the ARAdjustment object.
Whenposted Datetime False The Whenposted field of the ARAdjustment object.
Whenpaid Datetime False The Whenpaid field of the ARAdjustment object.
Basecurr String False The Basecurr field of the ARAdjustment object.
Currency String False The Currency field of the ARAdjustment object.
Exch_rate_date Datetime False The Exch_rate_date field of the ARAdjustment object.
Exch_rate_type_id String False The Exch_rate_type_id field of the ARAdjustment object.
Exchange_rate Double False The Exchange_rate field of the ARAdjustment object.
Totalentered Double False The Totalentered field of the ARAdjustment object.
Totalselected Double False The Totalselected field of the ARAdjustment object.
Totalpaid Double False The Totalpaid field of the ARAdjustment object.
Totaldue String False The Totaldue field of the ARAdjustment object.
Trx_totalentered Double False The Trx_totalentered field of the ARAdjustment object.
Trx_totalselected Double False The Trx_totalselected field of the ARAdjustment object.
Trx_totalpaid Double False The Trx_totalpaid field of the ARAdjustment object.
Trx_totaldue Double False The Trx_totaldue field of the ARAdjustment object.
Billtopaytocontactname String False The Billtopaytocontactname field of the ARAdjustment object.
Shiptoreturntocontactname String False The Shiptoreturntocontactname field of the ARAdjustment object.
Billtopaytokey Int64 False The Billtopaytokey field of the ARAdjustment object.
Shiptoreturntokey Int64 False The Shiptoreturntokey field of the ARAdjustment object.
Shipto_contactname String False The Shipto_contactname field of the ARAdjustment object.
Shipto_prefix String False The Shipto_prefix field of the ARAdjustment object.
Shipto_firstname String False The Shipto_firstname field of the ARAdjustment object.
Shipto_initial String False The Shipto_initial field of the ARAdjustment object.
Shipto_lastname String False The Shipto_lastname field of the ARAdjustment object.
Shipto_companyname String False The Shipto_companyname field of the ARAdjustment object.
Shipto_printas String False The Shipto_printas field of the ARAdjustment object.
Shipto_phone1 String False The Shipto_phone1 field of the ARAdjustment object.
Shipto_phone2 String False The Shipto_phone2 field of the ARAdjustment object.
Shipto_cellphone String False The Shipto_cellphone field of the ARAdjustment object.
Shipto_pager String False The Shipto_pager field of the ARAdjustment object.
Shipto_fax String False The Shipto_fax field of the ARAdjustment object.
Shipto_email1 String False The Shipto_email1 field of the ARAdjustment object.
Shipto_email2 String False The Shipto_email2 field of the ARAdjustment object.
Shipto_url1 String False The Shipto_url1 field of the ARAdjustment object.
Shipto_url2 String False The Shipto_url2 field of the ARAdjustment object.
Shipto_visible Boolean False The Shipto_visible field of the ARAdjustment object.
Shipto_mailaddress_recordkey Int64 False The Shipto_mailaddress_recordkey field of the ARAdjustment object.
Shipto_mailaddress_address1 String False The Shipto_mailaddress_address1 field of the ARAdjustment object.
Shipto_mailaddress_address2 String False The Shipto_mailaddress_address2 field of the ARAdjustment object.
Shipto_mailaddress_city String False The Shipto_mailaddress_city field of the ARAdjustment object.
Shipto_mailaddress_state String False The Shipto_mailaddress_state field of the ARAdjustment object.
Shipto_mailaddress_zip String False The Shipto_mailaddress_zip field of the ARAdjustment object.
Shipto_mailaddress_country String False The Shipto_mailaddress_country field of the ARAdjustment object.
Shipto_mailaddress_countrycode String False The Shipto_mailaddress_countrycode field of the ARAdjustment object.
Billto_contactname String False The Billto_contactname field of the ARAdjustment object.
Billto_prefix String False The Billto_prefix field of the ARAdjustment object.
Billto_firstname String False The Billto_firstname field of the ARAdjustment object.
Billto_initial String False The Billto_initial field of the ARAdjustment object.
Billto_lastname String False The Billto_lastname field of the ARAdjustment object.
Billto_companyname String False The Billto_companyname field of the ARAdjustment object.
Billto_printas String False The Billto_printas field of the ARAdjustment object.
Billto_phone1 String False The Billto_phone1 field of the ARAdjustment object.
Billto_phone2 String False The Billto_phone2 field of the ARAdjustment object.
Billto_cellphone String False The Billto_cellphone field of the ARAdjustment object.
Billto_pager String False The Billto_pager field of the ARAdjustment object.
Billto_fax String False The Billto_fax field of the ARAdjustment object.
Billto_email1 String False The Billto_email1 field of the ARAdjustment object.
Billto_email2 String False The Billto_email2 field of the ARAdjustment object.
Billto_url1 String False The Billto_url1 field of the ARAdjustment object.
Billto_url2 String False The Billto_url2 field of the ARAdjustment object.
Billto_visible Boolean False The Billto_visible field of the ARAdjustment object.
Billto_mailaddress_recordkey Int64 False The Billto_mailaddress_recordkey field of the ARAdjustment object.
Billto_mailaddress_address1 String False The Billto_mailaddress_address1 field of the ARAdjustment object.
Billto_mailaddress_address2 String False The Billto_mailaddress_address2 field of the ARAdjustment object.
Billto_mailaddress_city String False The Billto_mailaddress_city field of the ARAdjustment object.
Billto_mailaddress_state String False The Billto_mailaddress_state field of the ARAdjustment object.
Billto_mailaddress_zip String False The Billto_mailaddress_zip field of the ARAdjustment object.
Billto_mailaddress_country String False The Billto_mailaddress_country field of the ARAdjustment object.
Billto_mailaddress_countrycode String False The Billto_mailaddress_countrycode field of the ARAdjustment object.
Prbatch String False The Prbatch field of the ARAdjustment object.
Prbatchkey Int64 False The Prbatchkey field of the ARAdjustment object.
Modulekey String False The Modulekey field of the ARAdjustment object.
Auwhencreated Datetime False The Auwhencreated field of the ARAdjustment object.
Whenmodified Datetime False The Whenmodified field of the ARAdjustment object.
Createdby Int64 False The Createdby field of the ARAdjustment object.
Modifiedby Int64 False The Modifiedby field of the ARAdjustment object.
Megaentitykey Int64 False The Megaentitykey field of the ARAdjustment object.
Megaentityid String False The Megaentityid field of the ARAdjustment object.
Record_url String False The Record_url field of the ARAdjustment object.

ARInvoice

Retrieves ARInvoice report data.

Columns
Name Type ReadOnly Description
Recordno [KEY] String False The Recordno field of the ARInvoice object.
Recordtype String False The Recordtype field of the ARInvoice object.
Recordid String False The Recordid field of the ARInvoice object.
State String False The State field of the ARInvoice object.
Rawstate String False The Rawstate field of the ARInvoice object.
Entity String False The Entity field of the ARInvoice object.
Custentity String False The Custentity field of the ARInvoice object.
Customerid String False The Customerid field of the ARInvoice object.
Customername String False The Customername field of the ARInvoice object.
Trx_entitydue Double False The Trx_entitydue field of the ARInvoice object.
Custmessageid String False The Custmessageid field of the ARInvoice object.
Delivery_options String False The Delivery_options field of the ARInvoice object.
Docnumber String False The Docnumber field of the ARInvoice object.
Description String False The Description field of the ARInvoice object.
Description2 String False The Description2 field of the ARInvoice object.
Termname String False The Termname field of the ARInvoice object.
Termkey Int64 False The Termkey field of the ARInvoice object.
Whencreated Datetime False The Whencreated field of the ARInvoice object.
Whenposted Datetime False The Whenposted field of the ARInvoice object.
Whendiscount Datetime False The Whendiscount field of the ARInvoice object.
Whendue Datetime False The Whendue field of the ARInvoice object.
Whenpaid Datetime False The Whenpaid field of the ARInvoice object.
Basecurr String False The Basecurr field of the ARInvoice object.
Currency String False The Currency field of the ARInvoice object.
Exch_rate_date Datetime False The Exch_rate_date field of the ARInvoice object.
Exch_rate_type_id Int64 False The Exch_rate_type_id field of the ARInvoice object.
Exchange_rate Double False The Exchange_rate field of the ARInvoice object.
Totalentered Double False The Totalentered field of the ARInvoice object.
Totalselected Double False The Totalselected field of the ARInvoice object.
Totalpaid Double False The Totalpaid field of the ARInvoice object.
Totaldue Double False The Totaldue field of the ARInvoice object.
Trx_totalentered Double False The Trx_totalentered field of the ARInvoice object.
Trx_totalselected Double False The Trx_totalselected field of the ARInvoice object.
Trx_totalpaid Double False The Trx_totalpaid field of the ARInvoice object.
Trx_totaldue Double False The Trx_totaldue field of the ARInvoice object.
Billtopaytocontactname String False The Billtopaytocontactname field of the ARInvoice object.
Shiptoreturntocontactname String False The Shiptoreturntocontactname field of the ARInvoice object.
Billtopaytokey Int64 False The Billtopaytokey field of the ARInvoice object.
Shiptoreturntokey Int64 False The Shiptoreturntokey field of the ARInvoice object.
Contact_contactname String False The Contact_contactname field of the ARInvoice object.
Contact_prefix String False The Contact_prefix field of the ARInvoice object.
Contact_firstname String False The Contact_firstname field of the ARInvoice object.
Contact_initial String False The Contact_initial field of the ARInvoice object.
Contact_lastname String False The Contact_lastname field of the ARInvoice object.
Contact_companyname String False The Contact_companyname field of the ARInvoice object.
Contact_printas String False The Contact_printas field of the ARInvoice object.
Contact_phone1 String False The Contact_phone1 field of the ARInvoice object.
Contact_phone2 String False The Contact_phone2 field of the ARInvoice object.
Contact_cellphone String False The Contact_cellphone field of the ARInvoice object.
Contact_pager String False The Contact_pager field of the ARInvoice object.
Contact_fax String False The Contact_fax field of the ARInvoice object.
Contact_email1 String False The Contact_email1 field of the ARInvoice object.
Contact_email2 String False The Contact_email2 field of the ARInvoice object.
Contact_url1 String False The Contact_url1 field of the ARInvoice object.
Contact_url2 String False The Contact_url2 field of the ARInvoice object.
Contact_visible Boolean False The Contact_visible field of the ARInvoice object.
Contact_mailaddress_address1 String False The Contact_mailaddress_address1 field of the ARInvoice object.
Contact_mailaddress_address2 String False The Contact_mailaddress_address2 field of the ARInvoice object.
Contact_mailaddress_city String False The Contact_mailaddress_city field of the ARInvoice object.
Contact_mailaddress_state String False The Contact_mailaddress_state field of the ARInvoice object.
Contact_mailaddress_zip String False The Contact_mailaddress_zip field of the ARInvoice object.
Contact_mailaddress_country String False The Contact_mailaddress_country field of the ARInvoice object.
Contact_mailaddress_countrycode String False The Contact_mailaddress_countrycode field of the ARInvoice object.
Shipto_contactname String False The Shipto_contactname field of the ARInvoice object.
Shipto_prefix String False The Shipto_prefix field of the ARInvoice object.
Shipto_firstname String False The Shipto_firstname field of the ARInvoice object.
Shipto_initial String False The Shipto_initial field of the ARInvoice object.
Shipto_lastname String False The Shipto_lastname field of the ARInvoice object.
Shipto_companyname String False The Shipto_companyname field of the ARInvoice object.
Shipto_printas String False The Shipto_printas field of the ARInvoice object.
Shipto_phone1 String False The Shipto_phone1 field of the ARInvoice object.
Shipto_phone2 String False The Shipto_phone2 field of the ARInvoice object.
Shipto_cellphone String False The Shipto_cellphone field of the ARInvoice object.
Shipto_pager String False The Shipto_pager field of the ARInvoice object.
Shipto_fax String False The Shipto_fax field of the ARInvoice object.
Shipto_email1 String False The Shipto_email1 field of the ARInvoice object.
Shipto_email2 String False The Shipto_email2 field of the ARInvoice object.
Shipto_url1 String False The Shipto_url1 field of the ARInvoice object.
Shipto_url2 String False The Shipto_url2 field of the ARInvoice object.
Shipto_visible Boolean False The Shipto_visible field of the ARInvoice object.
Shipto_mailaddress_address1 String False The Shipto_mailaddress_address1 field of the ARInvoice object.
Shipto_mailaddress_address2 String False The Shipto_mailaddress_address2 field of the ARInvoice object.
Shipto_mailaddress_city String False The Shipto_mailaddress_city field of the ARInvoice object.
Shipto_mailaddress_state String False The Shipto_mailaddress_state field of the ARInvoice object.
Shipto_mailaddress_zip String False The Shipto_mailaddress_zip field of the ARInvoice object.
Shipto_mailaddress_country String False The Shipto_mailaddress_country field of the ARInvoice object.
Shipto_mailaddress_countrycode String False The Shipto_mailaddress_countrycode field of the ARInvoice object.
Billto_contactname String False The Billto_contactname field of the ARInvoice object.
Billto_prefix String False The Billto_prefix field of the ARInvoice object.
Billto_firstname String False The Billto_firstname field of the ARInvoice object.
Billto_initial String False The Billto_initial field of the ARInvoice object.
Billto_lastname String False The Billto_lastname field of the ARInvoice object.
Billto_companyname String False The Billto_companyname field of the ARInvoice object.
Billto_printas String False The Billto_printas field of the ARInvoice object.
Billto_phone1 String False The Billto_phone1 field of the ARInvoice object.
Billto_phone2 String False The Billto_phone2 field of the ARInvoice object.
Billto_cellphone String False The Billto_cellphone field of the ARInvoice object.
Billto_pager String False The Billto_pager field of the ARInvoice object.
Billto_fax String False The Billto_fax field of the ARInvoice object.
Billto_email1 String False The Billto_email1 field of the ARInvoice object.
Billto_email2 String False The Billto_email2 field of the ARInvoice object.
Billto_url1 String False The Billto_url1 field of the ARInvoice object.
Billto_url2 String False The Billto_url2 field of the ARInvoice object.
Billto_mailaddress_address1 String False The Billto_mailaddress_address1 field of the ARInvoice object.
Billto_mailaddress_address2 String False The Billto_mailaddress_address2 field of the ARInvoice object.
Billto_mailaddress_city String False The Billto_mailaddress_city field of the ARInvoice object.
Billto_mailaddress_state String False The Billto_mailaddress_state field of the ARInvoice object.
Billto_mailaddress_zip String False The Billto_mailaddress_zip field of the ARInvoice object.
Billto_mailaddress_country String False The Billto_mailaddress_country field of the ARInvoice object.
Billto_mailaddress_countrycode String False The Billto_mailaddress_countrycode field of the ARInvoice object.
Prbatch String False The Prbatch field of the ARInvoice object.
Prbatchkey Int64 False The Prbatchkey field of the ARInvoice object.
Modulekey String False The Modulekey field of the ARInvoice object.
Schopkey Int64 False The Schopkey field of the ARInvoice object.
Systemgenerated String False The Systemgenerated field of the ARInvoice object.
Haspostedrevrec String False The Haspostedrevrec field of the ARInvoice object.
Auwhencreated Datetime False The Auwhencreated field of the ARInvoice object.
Whenmodified Datetime False The Whenmodified field of the ARInvoice object.
Createdby Int64 False The Createdby field of the ARInvoice object.
Modifiedby Int64 False The Modifiedby field of the ARInvoice object.
Megaentitykey Int64 False The Megaentitykey field of the ARInvoice object.
Megaentityid String False The Megaentityid field of the ARInvoice object.
Record_url String False The Record_url field of the ARInvoice object.

ARInvoiceBatch

Retrieves ARInvoiceBatch report data.

Columns
Name Type ReadOnly Description
Recordno [KEY] String False The Recordno field of the ARInvoiceBatch object.
Title String False The Title field of the ARInvoiceBatch object.
Created Datetime False The Created field of the ARInvoiceBatch object.
Status String False The Status field of the ARInvoiceBatch object.
Recordtype String False The Recordtype field of the ARInvoiceBatch object.
Total Double False The Total field of the ARInvoiceBatch object.
Open String False The Open field of the ARInvoiceBatch object.
Parentkey String False The Parentkey field of the ARInvoiceBatch object.
Nogl Boolean False The Nogl field of the ARInvoiceBatch object.
Accountnokey String False The Accountnokey field of the ARInvoiceBatch object.
Autocreated String False The Autocreated field of the ARInvoiceBatch object.
Systemgenerated String False The Systemgenerated field of the ARInvoiceBatch object.
Megaentitykey Int64 False The Megaentitykey field of the ARInvoiceBatch object.
Megaentityid String False The Megaentityid field of the ARInvoiceBatch object.
Megaentityname String False The Megaentityname field of the ARInvoiceBatch object.
Record_url String False The Record_url field of the ARInvoiceBatch object.

ARPaymentBatch

Retrieves ARPaymentBatch report data.

Columns
Name Type ReadOnly Description
Recordno [KEY] String False The Recordno field of the ARPaymentBatch object.
Title String False The Title field of the ARPaymentBatch object.
Created Datetime False The Created field of the ARPaymentBatch object.
Status String False The Status field of the ARPaymentBatch object.
Recordtype String False The Recordtype field of the ARPaymentBatch object.
Total Double False The Total field of the ARPaymentBatch object.
Open String False The Open field of the ARPaymentBatch object.
Parentkey String False The Parentkey field of the ARPaymentBatch object.
Nogl Boolean False The Nogl field of the ARPaymentBatch object.
Accountnokey String False The Accountnokey field of the ARPaymentBatch object.
Autocreated String False The Autocreated field of the ARPaymentBatch object.
Systemgenerated String False The Systemgenerated field of the ARPaymentBatch object.
Currency String False The Currency field of the ARPaymentBatch object.
Megaentitykey Int64 False The Megaentitykey field of the ARPaymentBatch object.
Megaentityid String False The Megaentityid field of the ARPaymentBatch object.
Megaentityname String False The Megaentityname field of the ARPaymentBatch object.
Record_url String False The Record_url field of the ARPaymentBatch object.

ARTerm

Retrieves ARTerm report data.

Columns
Name Type ReadOnly Description
Name [KEY] String False The Name field of the ARTerm object.
Description String False The Description field of the ARTerm object.
Status String False The Status field of the ARTerm object.
Recordno Int64 False The Recordno field of the ARTerm object.
Whenmodified Datetime False The Whenmodified field of the ARTerm object.
Whencreated Datetime False The Whencreated field of the ARTerm object.
Modifiedby Int64 False The Modifiedby field of the ARTerm object.
Createdby Int64 False The Createdby field of the ARTerm object.
Duedate Int64 False The Duedate field of the ARTerm object.
Duefrom String False The Duefrom field of the ARTerm object.
Discdate Int64 False The Discdate field of the ARTerm object.
Discfrom String False The Discfrom field of the ARTerm object.
Discamount Int64 False The Discamount field of the ARTerm object.
Discpercamn String False The Discpercamn field of the ARTerm object.
Discfudgedays Int64 False The Discfudgedays field of the ARTerm object.
Pen_types String False The Pen_types field of the ARTerm object.
Penamount Int64 False The Penamount field of the ARTerm object.
Penpercamn String False The Penpercamn field of the ARTerm object.
Penfudgedays Int64 False The Penfudgedays field of the ARTerm object.
Disccalcon String False The Disccalcon field of the ARTerm object.
Record_url String False The Record_url field of the ARTerm object.

Attendee

Retrieves Attendee report data.

Columns
Name Type ReadOnly Description
Rcustomer [KEY] String False The Rcustomer field of the Attendee object.
Remployee String False The Remployee field of the Attendee object.
Record_url String False The Record_url field of the Attendee object.

Billing_Contact

Retrieves Billing_Contact report data.

Columns
Name Type ReadOnly Description
Rcustomer [KEY] String False The Rcustomer field of the Billing_Contact object.
Record_url String False The Record_url field of the Billing_Contact object.

Bin

Retrieves Bin report data.

Columns
Name Type ReadOnly Description
Recordno Int64 False The Recordno field of the Bin object.
Binid [KEY] String False The Binid field of the Bin object.
Bindesc String False The Bindesc field of the Bin object.
Whencreated Datetime False The Whencreated field of the Bin object.
Whenmodified Datetime False The Whenmodified field of the Bin object.
Createdby Int64 False The Createdby field of the Bin object.
Modifiedby Int64 False The Modifiedby field of the Bin object.
Record_url String False The Record_url field of the Bin object.

CheckingAccount

Retrieves CheckingAccount report data.

Columns
Name Type ReadOnly Description
Bankaccountid [KEY] String False The Bankaccountid field of the CheckingAccount object.
Bankaccountno String False The Bankaccountno field of the CheckingAccount object.
Glaccountno String False The Glaccountno field of the CheckingAccount object.
Bankname String False The Bankname field of the CheckingAccount object.
Routingno String False The Routingno field of the CheckingAccount object.
Branchid String False The Branchid field of the CheckingAccount object.
Bankaccounttype String False The Bankaccounttype field of the CheckingAccount object.
Phone String False The Phone field of the CheckingAccount object.
Checklayout_sigline2amount String False The Checklayout_sigline2amount field of the CheckingAccount object.
Checklayout_checkpaperformat String False The Checklayout_checkpaperformat field of the CheckingAccount object.
Checklayout_checkprintformat String False The Checklayout_checkprintformat field of the CheckingAccount object.
Checklayout_signatureimage1 String False The Checklayout_signatureimage1 field of the CheckingAccount object.
Checklayout_signatureimage2 String False The Checklayout_signatureimage2 field of the CheckingAccount object.
Checklayout_printlineitems Boolean False The Checklayout_printlineitems field of the CheckingAccount object.
Checklayout_displaylocationas String False The Checklayout_displaylocationas field of the CheckingAccount object.
Checklayout_bankacctalign String False The Checklayout_bankacctalign field of the CheckingAccount object.
Checklayout_spacestoappend String False The Checklayout_spacestoappend field of the CheckingAccount object.
Checklayout_checknolength String False The Checklayout_checknolength field of the CheckingAccount object.
Checklayout_dfltcnyaddr Boolean False The Checklayout_dfltcnyaddr field of the CheckingAccount object.
Checklayout_voidtext String False The Checklayout_voidtext field of the CheckingAccount object.
Checklayout_usesig1belowamt String False The Checklayout_usesig1belowamt field of the CheckingAccount object.
Checklayout_usesig2belowamt String False The Checklayout_usesig2belowamt field of the CheckingAccount object.
Checklayout_micrtranscode Boolean False The Checklayout_micrtranscode field of the CheckingAccount object.
Checklayout_usdtext Boolean False The Checklayout_usdtext field of the CheckingAccount object.
Checklayout_onus Boolean False The Checklayout_onus field of the CheckingAccount object.
Checklayout_onus32 String False The Checklayout_onus32 field of the CheckingAccount object.
Checklayout_usesecondsignaturechecks Boolean False The Checklayout_usesecondsignaturechecks field of the CheckingAccount object.
Checklayout_printcnylogo Boolean False The Checklayout_printcnylogo field of the CheckingAccount object.
Checklayout_company_logo String False The Checklayout_company_logo field of the CheckingAccount object.
Checklayout_usecnyaddress String False The Checklayout_usecnyaddress field of the CheckingAccount object.
Mailaddress_address1 String False The Mailaddress_address1 field of the CheckingAccount object.
Mailaddress_address2 String False The Mailaddress_address2 field of the CheckingAccount object.
Mailaddress_city String False The Mailaddress_city field of the CheckingAccount object.
Mailaddress_state String False The Mailaddress_state field of the CheckingAccount object.
Mailaddress_zip String False The Mailaddress_zip field of the CheckingAccount object.
Mailaddress_country String False The Mailaddress_country field of the CheckingAccount object.
Mailaddress_countrycode String False The Mailaddress_countrycode field of the CheckingAccount object.
Checkinfocontact_contactname String False The Checkinfocontact_contactname field of the CheckingAccount object.
Checkinfocontact_companyname String False The Checkinfocontact_companyname field of the CheckingAccount object.
Checkinfocontact_mailaddress_address1 String False The Checkinfocontact_mailaddress_address1 field of the CheckingAccount object.
Checkinfocontact_mailaddress_address2 String False The Checkinfocontact_mailaddress_address2 field of the CheckingAccount object.
Checkinfocontact_mailaddress_city String False The Checkinfocontact_mailaddress_city field of the CheckingAccount object.
Checkinfocontact_mailaddress_state String False The Checkinfocontact_mailaddress_state field of the CheckingAccount object.
Checkinfocontact_mailaddress_zip String False The Checkinfocontact_mailaddress_zip field of the CheckingAccount object.
Checkinfocontact_mailaddress_country String False The Checkinfocontact_mailaddress_country field of the CheckingAccount object.
Checkinfocontact_mailaddress_countrycode String False The Checkinfocontact_mailaddress_countrycode field of the CheckingAccount object.
Checkinfocontact_phone1 String False The Checkinfocontact_phone1 field of the CheckingAccount object.
Financialdata_apjournal String False The Financialdata_apjournal field of the CheckingAccount object.
Financialdata_arjournal String False The Financialdata_arjournal field of the CheckingAccount object.
Servicechargeglaccount String False The Servicechargeglaccount field of the CheckingAccount object.
Servicechargeaccountlabel String False The Servicechargeaccountlabel field of the CheckingAccount object.
Interestearnedglaccount String False The Interestearnedglaccount field of the CheckingAccount object.
Interestearnedaccountlabel String False The Interestearnedaccountlabel field of the CheckingAccount object.
Departmentid String False The Departmentid field of the CheckingAccount object.
Locationid String False The Locationid field of the CheckingAccount object.
Status String False The Status field of the CheckingAccount object.
Lastreconciledbalance String False The Lastreconciledbalance field of the CheckingAccount object.
Lastreconcileddate Datetime False The Lastreconcileddate field of the CheckingAccount object.
Nextcheck String False The Nextcheck field of the CheckingAccount object.
Sharecheckno Boolean False The Sharecheckno field of the CheckingAccount object.
Cutoffdate Datetime False The Cutoffdate field of the CheckingAccount object.
Financialdata_reconmode String False The Financialdata_reconmode field of the CheckingAccount object.
Currency String False The Currency field of the CheckingAccount object.
Forwfpm Boolean False The Forwfpm field of the CheckingAccount object.
Achcompanyid String False The Achcompanyid field of the CheckingAccount object.
Pmchecktemplateid String False The Pmchecktemplateid field of the CheckingAccount object.
Whencreated Datetime False The Whencreated field of the CheckingAccount object.
Whenmodified Datetime False The Whenmodified field of the CheckingAccount object.
Createdby Int64 False The Createdby field of the CheckingAccount object.
Modifiedby Int64 False The Modifiedby field of the CheckingAccount object.
Recordno Int64 False The Recordno field of the CheckingAccount object.
Achbankid String False The Achbankid field of the CheckingAccount object.
Companyname String False The Companyname field of the CheckingAccount object.
Companyidentification String False The Companyidentification field of the CheckingAccount object.
Financialinstitution String False The Financialinstitution field of the CheckingAccount object.
Description String False The Description field of the CheckingAccount object.
Discretionarydata String False The Discretionarydata field of the CheckingAccount object.
Recordtypecode String False The Recordtypecode field of the CheckingAccount object.
Serviceclasscode String False The Serviceclasscode field of the CheckingAccount object.
Originatorstatuscode String False The Originatorstatuscode field of the CheckingAccount object.
Batchid String False The Batchid field of the CheckingAccount object.
Tracenumberseq String False The Tracenumberseq field of the CheckingAccount object.
Docnumberseq String False The Docnumberseq field of the CheckingAccount object.
Usetracenumber String False The Usetracenumber field of the CheckingAccount object.
Achenabled Boolean False The Achenabled field of the CheckingAccount object.
Userecommendedsetup Boolean False The Userecommendedsetup field of the CheckingAccount object.
Printon String False The Printon field of the CheckingAccount object.
Outsourcecheck String False The Outsourcecheck field of the CheckingAccount object.
Fractionalroutingno String False The Fractionalroutingno field of the CheckingAccount object.
Nameontheaccount String False The Nameontheaccount field of the CheckingAccount object.
Automate_check_print Boolean False The Automate_check_print field of the CheckingAccount object.
Automate_pymt_conf Boolean False The Automate_pymt_conf field of the CheckingAccount object.
Automate_ach_pymt_send Boolean False The Automate_ach_pymt_send field of the CheckingAccount object.
Automate_ach_pymt_conf Boolean False The Automate_ach_pymt_conf field of the CheckingAccount object.
Amex_payve_accountid String False The Amex_payve_accountid field of the CheckingAccount object.
Amexchecknum String False The Amexchecknum field of the CheckingAccount object.
Abo_first_name String False The Abo_first_name field of the CheckingAccount object.
Abo_middle_name String False The Abo_middle_name field of the CheckingAccount object.
Abo_last_name String False The Abo_last_name field of the CheckingAccount object.
Abo_phone_number String False The Abo_phone_number field of the CheckingAccount object.
Abo_email_id String False The Abo_email_id field of the CheckingAccount object.
Outsourceach String False The Outsourceach field of the CheckingAccount object.
Megaentitykey Int64 False The Megaentitykey field of the CheckingAccount object.
Megaentityid String False The Megaentityid field of the CheckingAccount object.
Megaentityname String False The Megaentityname field of the CheckingAccount object.
Record_url String False The Record_url field of the CheckingAccount object.

Class

Retrieves Class report data.

Columns
Name Type ReadOnly Description
Recordno Int64 False The Recordno field of the Class object.
Classid [KEY] String False The Classid field of the Class object.
Name String False The Name field of the Class object.
Description String False The Description field of the Class object.
Status String False The Status field of the Class object.
Parentkey Int64 False The Parentkey field of the Class object.
Parentid String False The Parentid field of the Class object.
Whencreated Datetime False The Whencreated field of the Class object.
Whenmodified Datetime False The Whenmodified field of the Class object.
Createdby Int64 False The Createdby field of the Class object.
Modifiedby Int64 False The Modifiedby field of the Class object.
Megaentitykey Int64 False The Megaentitykey field of the Class object.
Megaentityid String False The Megaentityid field of the Class object.
Megaentityname String False The Megaentityname field of the Class object.
Record_url String False The Record_url field of the Class object.

Comments

Retrieves Comments report data.

Columns
Name Type ReadOnly Description
Recordno [KEY] String False The Recordno field of the Comments object.
Obj_id Int64 False The Obj_id field of the Comments object.
Obj_def_id Int64 False The Obj_def_id field of the Comments object.
Comment_text String False The Comment_text field of the Comments object.
Createdbyuser String False The Createdbyuser field of the Comments object.
Created_at Datetime False The Created_at field of the Comments object.
Updatedbyuser String False The Updatedbyuser field of the Comments object.
Updated_at Datetime False The Updated_at field of the Comments object.
Record_url String False The Record_url field of the Comments object.

Contact

Retrieves Contact report data.

Columns
Name Type ReadOnly Description
Recordno [KEY] Int64 False The Recordno field of the Contact object.
Contactname String False The Contactname field of the Contact object.
Companyname String False The Companyname field of the Contact object.
Prefix String False The Prefix field of the Contact object.
Firstname String False The Firstname field of the Contact object.
Lastname String False The Lastname field of the Contact object.
Initial String False The Initial field of the Contact object.
Printas String False The Printas field of the Contact object.
Taxable Boolean False The Taxable field of the Contact object.
Taxgroup String False The Taxgroup field of the Contact object.
Phone1 String False The Phone1 field of the Contact object.
Phone2 String False The Phone2 field of the Contact object.
Cellphone String False The Cellphone field of the Contact object.
Pager String False The Pager field of the Contact object.
Fax String False The Fax field of the Contact object.
Email1 String False The Email1 field of the Contact object.
Email2 String False The Email2 field of the Contact object.
Url1 String False The Url1 field of the Contact object.
Url2 String False The Url2 field of the Contact object.
Visible Boolean False The Visible field of the Contact object.
Mailaddress_address1 String False The Mailaddress_address1 field of the Contact object.
Mailaddress_address2 String False The Mailaddress_address2 field of the Contact object.
Mailaddress_city String False The Mailaddress_city field of the Contact object.
Mailaddress_state String False The Mailaddress_state field of the Contact object.
Mailaddress_zip String False The Mailaddress_zip field of the Contact object.
Mailaddress_country String False The Mailaddress_country field of the Contact object.
Status String False The Status field of the Contact object.
Mailaddress_countrycode String False The Mailaddress_countrycode field of the Contact object.
Priceschedule String False The Priceschedule field of the Contact object.
Discount Double False The Discount field of the Contact object.
Pricelist String False The Pricelist field of the Contact object.
Pricelistkey Int64 False The Pricelistkey field of the Contact object.
Taxid String False The Taxid field of the Contact object.
Taxgroupkey Int64 False The Taxgroupkey field of the Contact object.
Priceschedulekey Int64 False The Priceschedulekey field of the Contact object.
Whencreated Datetime False The Whencreated field of the Contact object.
Whenmodified Datetime False The Whenmodified field of the Contact object.
Createdby Int64 False The Createdby field of the Contact object.
Modifiedby Int64 False The Modifiedby field of the Contact object.
Megaentitykey Int64 False The Megaentitykey field of the Contact object.
Megaentityid String False The Megaentityid field of the Contact object.
Megaentityname String False The Megaentityname field of the Contact object.
Record_url String False The Record_url field of the Contact object.

Contract

A collection of Contract items.

Columns
Name Type ReadOnly Description
Recordno [KEY] Long True Record Number
Parentkey Long False Parent key
Parentid String True Original contract
Description String False Description
Contractid String False Unique ID of Contract
State String True State
Begindate Date False Start date
Enddate Date False End date
Canceldate Date True Cancel date
Name String False Contract name
Customerkey Long False Customer key
Customerid String False Customer ID
Customername String False Customer name
Displaycontact_email1 String False Primary email address
Displaycontact_email2 String False Secondary Email Address
Billtokey Long False Bill-to contact key
Billtocontactname String False Bill to
Billto_email1 String False Primary email address
Billto_email2 String False Secondary Email Address
Shiptokey Long False Ship-to contact key
Shiptocontactname String False Ship to
Shipto_email1 String False Primary email address
Shipto_email2 String False Secondary Email Address
Billingfrequency String False Billing frequency
Termkey Long False Term key
Termname String False Term
Renewal Bool False Renew
Renewalmacrokey Long False Renewal template key
Renewedcontractkey Long False Renewed contract key
Renewedcontractid String True Renewal source
Renewalmacro String False Renewal template
Renewcontract_schopkey Long False Renewal scheduled operation key
Renewemailalert_schopkey Long False Renewal alert scheduled operation key
Nonrenewcontract_schopkey Long False Non-renewal contract cancelation scheduled operation key
Renewcustomeralert_schopkey Long False Renewal customer alert scheduled operation key
Renewtermlength Long False Renewal term length
Renewtermperiod String False Renewal term period
Prclstkey Long False Price list key
Prclist String False Billing price list
Meaprclist String False Fair value price list
Meaprclstkey Long False Fair value price list key
Billinghold Bool False Billing hold
Revenuehold Bool False Revenue hold
Crhold Bool False Hold for cash receipt
Expensehold Bool False Expense hold
Basecurr String True Base currency
Currency String False Transaction currency
Exchratetype String False Exchange rate type
Exch_rate_type_id Long False Exchange rate type Id
Locationkey String False Location key
Locationid String False Location ID
Locationname String False Location name
Deptkey String False Department key
Departmentid String False Department ID
Departmentname String False Department name
Advbillby Long False Bill in advance
Advbillbytype String False Bill in advance type
Renewaladvbillby Long False Bill in advance for Renewal
Renewaladvbillbytype String False Bill in advance type for Renewal
Whencreated Datetime True timestamp marking last time this was created.
Whenmodified Datetime True timestamp marking last time this was changed.
Createdby Long True User who created this.
Modifiedby Long True User who modified this.
Supdocid String False Attachment
Status String False Active/Inactive
Contracttypekey Long False Contract type key
Contracttype String False Contract type
Timesheetaggregation String False Defer estimated time-based revenue by
Postmemo String True Post memo
Megaentitykey Long True Created at - Entity key
Megaentityid String True Created at - Entity ID
Megaentityname String True Created at - Entity name
Test_specialcharacters String False test field with special characters
Test_specialcharacters2 String False testing with special chars
Projectdimkey Long False Projectdimkey
Projectid String False Project
Projectname String False Project Name
Vendordimkey Long False Vendordimkey
Vendorid String False Vendor
Vendorname String False Vendor Name
Employeedimkey Long False Employeedimkey
Employeeid String False Employee
Employeename String False Employee Name
Classdimkey Long False Classdimkey
Classid String False Class
Classname String False Class Name
Warehousedimkey Long False Warehousedimkey
Warehouseid String False Warehouse
Warehousename String False Warehouse Name
Record_url String True A portable, user-independent, deep-link URL for viewing this record
Gldimtestegi1 String False

CreditCard

Retrieves CreditCard report data.

Columns
Name Type ReadOnly Description
Recordno Int64 False The Recordno field of the CreditCard object.
Cardid [KEY] String False The Cardid field of the CreditCard object.
Description String False The Description field of the CreditCard object.
Cardtype String False The Cardtype field of the CreditCard object.
Exp_month String False The Exp_month field of the CreditCard object.
Exp_year String False The Exp_year field of the CreditCard object.
Mailaddress_address1 String False The Mailaddress_address1 field of the CreditCard object.
Mailaddress_address2 String False The Mailaddress_address2 field of the CreditCard object.
Mailaddress_city String False The Mailaddress_city field of the CreditCard object.
Mailaddress_state String False The Mailaddress_state field of the CreditCard object.
Mailaddress_zip String False The Mailaddress_zip field of the CreditCard object.
Mailaddress_country String False The Mailaddress_country field of the CreditCard object.
Mailaddress_countrycode String False The Mailaddress_countrycode field of the CreditCard object.
Status String False The Status field of the CreditCard object.
Liabacctkey String False The Liabacctkey field of the CreditCard object.
Feesacctkey String False The Feesacctkey field of the CreditCard object.
Vendorid String False The Vendorid field of the CreditCard object.
Dept String False The Dept field of the CreditCard object.
Location String False The Location field of the CreditCard object.
Liabilitytype String False The Liabilitytype field of the CreditCard object.
Recdate Datetime False The Recdate field of the CreditCard object.
Recbal Double False The Recbal field of the CreditCard object.
Financialdata_journal String False The Financialdata_journal field of the CreditCard object.
Financialdata_journaltitle String False The Financialdata_journaltitle field of the CreditCard object.
Financialdata_jrnlkey2 String False The Financialdata_jrnlkey2 field of the CreditCard object.
Financialdata_journaltitle2 String False The Financialdata_journaltitle2 field of the CreditCard object.
Financialdata_parententity String False The Financialdata_parententity field of the CreditCard object.
Financialdata_parententityname String False The Financialdata_parententityname field of the CreditCard object.
Useforintacct String False The Useforintacct field of the CreditCard object.
Feesacctlabelkey String False The Feesacctlabelkey field of the CreditCard object.
Finchrgacct String False The Finchrgacct field of the CreditCard object.
Finchrgacctlabel String False The Finchrgacctlabel field of the CreditCard object.
Cutoffdate Datetime False The Cutoffdate field of the CreditCard object.
Financialdata_disableiet Boolean False The Financialdata_disableiet field of the CreditCard object.
Whenmodified Datetime False The Whenmodified field of the CreditCard object.
Whencreated Datetime False The Whencreated field of the CreditCard object.
Modifiedby Int64 False The Modifiedby field of the CreditCard object.
Createdby Int64 False The Createdby field of the CreditCard object.
Megaentitykey Int64 False The Megaentitykey field of the CreditCard object.
Megaentityid String False The Megaentityid field of the CreditCard object.
Megaentityname String False The Megaentityname field of the CreditCard object.
Record_url String False The Record_url field of the CreditCard object.

Customer

Retrieves Customer report data.

Columns
Name Type ReadOnly Description
Recordno Int64 False The Recordno field of the Customer object.
Customerid [KEY] String False The Customerid field of the Customer object.
Name String False The Name field of the Customer object.
Entity String False The Entity field of the Customer object.
Parentkey Int64 False The Parentkey field of the Customer object.
Parentid String False The Parentid field of the Customer object.
Parentname String False The Parentname field of the Customer object.
Displaycontact_contactname String False The Displaycontact_contactname field of the Customer object.
Displaycontact_companyname String False The Displaycontact_companyname field of the Customer object.
Displaycontact_prefix String False The Displaycontact_prefix field of the Customer object.
Displaycontact_firstname String False The Displaycontact_firstname field of the Customer object.
Displaycontact_lastname String False The Displaycontact_lastname field of the Customer object.
Displaycontact_initial String False The Displaycontact_initial field of the Customer object.
Displaycontact_printas String False The Displaycontact_printas field of the Customer object.
Displaycontact_taxable Boolean False The Displaycontact_taxable field of the Customer object.
Displaycontact_taxgroup String False The Displaycontact_taxgroup field of the Customer object.
Displaycontact_phone1 String False The Displaycontact_phone1 field of the Customer object.
Displaycontact_phone2 String False The Displaycontact_phone2 field of the Customer object.
Displaycontact_cellphone String False The Displaycontact_cellphone field of the Customer object.
Displaycontact_pager String False The Displaycontact_pager field of the Customer object.
Displaycontact_fax String False The Displaycontact_fax field of the Customer object.
Displaycontact_email1 String False The Displaycontact_email1 field of the Customer object.
Displaycontact_email2 String False The Displaycontact_email2 field of the Customer object.
Displaycontact_url1 String False The Displaycontact_url1 field of the Customer object.
Displaycontact_url2 String False The Displaycontact_url2 field of the Customer object.
Displaycontact_visible Boolean False The Displaycontact_visible field of the Customer object.
Displaycontact_mailaddress_address1 String False The Displaycontact_mailaddress_address1 field of the Customer object.
Displaycontact_mailaddress_address2 String False The Displaycontact_mailaddress_address2 field of the Customer object.
Displaycontact_mailaddress_city String False The Displaycontact_mailaddress_city field of the Customer object.
Displaycontact_mailaddress_state String False The Displaycontact_mailaddress_state field of the Customer object.
Displaycontact_mailaddress_zip String False The Displaycontact_mailaddress_zip field of the Customer object.
Displaycontact_mailaddress_country String False The Displaycontact_mailaddress_country field of the Customer object.
Displaycontact_mailaddress_countrycode String False The Displaycontact_mailaddress_countrycode field of the Customer object.
Displaycontact_status String False The Displaycontact_status field of the Customer object.
Termname String False The Termname field of the Customer object.
Termvalue String False The Termvalue field of the Customer object.
Custrepid String False The Custrepid field of the Customer object.
Custrepname String False The Custrepname field of the Customer object.
Resaleno String False The Resaleno field of the Customer object.
Taxid String False The Taxid field of the Customer object.
Creditlimit Double False The Creditlimit field of the Customer object.
Totaldue Double False The Totaldue field of the Customer object.
Comments String False The Comments field of the Customer object.
Accountlabel String False The Accountlabel field of the Customer object.
Araccount String False The Araccount field of the Customer object.
Araccounttitle String False The Araccounttitle field of the Customer object.
Last_invoicedate String False The Last_invoicedate field of the Customer object.
Last_statementdate String False The Last_statementdate field of the Customer object.
Delivery_options String False The Delivery_options field of the Customer object.
Territoryid String False The Territoryid field of the Customer object.
Shippingmethod String False The Shippingmethod field of the Customer object.
Custtype String False The Custtype field of the Customer object.
Glgroup String False The Glgroup field of the Customer object.
Priceschedule String False The Priceschedule field of the Customer object.
Discount Double False The Discount field of the Customer object.
Pricelist String False The Pricelist field of the Customer object.
Vsoepricelist String False The Vsoepricelist field of the Customer object.
Currency String False The Currency field of the Customer object.
Contactinfo_contactname String False The Contactinfo_contactname field of the Customer object.
Contactinfo_prefix String False The Contactinfo_prefix field of the Customer object.
Contactinfo_firstname String False The Contactinfo_firstname field of the Customer object.
Contactinfo_initial String False The Contactinfo_initial field of the Customer object.
Contactinfo_lastname String False The Contactinfo_lastname field of the Customer object.
Contactinfo_companyname String False The Contactinfo_companyname field of the Customer object.
Contactinfo_printas String False The Contactinfo_printas field of the Customer object.
Contactinfo_phone1 String False The Contactinfo_phone1 field of the Customer object.
Contactinfo_phone2 String False The Contactinfo_phone2 field of the Customer object.
Contactinfo_cellphone String False The Contactinfo_cellphone field of the Customer object.
Contactinfo_pager String False The Contactinfo_pager field of the Customer object.
Contactinfo_fax String False The Contactinfo_fax field of the Customer object.
Contactinfo_email1 String False The Contactinfo_email1 field of the Customer object.
Contactinfo_email2 String False The Contactinfo_email2 field of the Customer object.
Contactinfo_url1 String False The Contactinfo_url1 field of the Customer object.
Contactinfo_url2 String False The Contactinfo_url2 field of the Customer object.
Contactinfo_visible Boolean False The Contactinfo_visible field of the Customer object.
Contactinfo_mailaddress_address1 String False The Contactinfo_mailaddress_address1 field of the Customer object.
Contactinfo_mailaddress_address2 String False The Contactinfo_mailaddress_address2 field of the Customer object.
Contactinfo_mailaddress_city String False The Contactinfo_mailaddress_city field of the Customer object.
Contactinfo_mailaddress_state String False The Contactinfo_mailaddress_state field of the Customer object.
Contactinfo_mailaddress_zip String False The Contactinfo_mailaddress_zip field of the Customer object.
Contactinfo_mailaddress_country String False The Contactinfo_mailaddress_country field of the Customer object.
Contactinfo_mailaddress_countrycode String False The Contactinfo_mailaddress_countrycode field of the Customer object.
Shipto_contactname String False The Shipto_contactname field of the Customer object.
Shipto_prefix String False The Shipto_prefix field of the Customer object.
Shipto_firstname String False The Shipto_firstname field of the Customer object.
Shipto_initial String False The Shipto_initial field of the Customer object.
Shipto_lastname String False The Shipto_lastname field of the Customer object.
Shipto_companyname String False The Shipto_companyname field of the Customer object.
Shipto_printas String False The Shipto_printas field of the Customer object.
Shipto_taxable Boolean False The Shipto_taxable field of the Customer object.
Shipto_taxgroup String False The Shipto_taxgroup field of the Customer object.
Shipto_phone1 String False The Shipto_phone1 field of the Customer object.
Shipto_phone2 String False The Shipto_phone2 field of the Customer object.
Shipto_cellphone String False The Shipto_cellphone field of the Customer object.
Shipto_pager String False The Shipto_pager field of the Customer object.
Shipto_fax String False The Shipto_fax field of the Customer object.
Shipto_email1 String False The Shipto_email1 field of the Customer object.
Shipto_email2 String False The Shipto_email2 field of the Customer object.
Shipto_url1 String False The Shipto_url1 field of the Customer object.
Shipto_url2 String False The Shipto_url2 field of the Customer object.
Shipto_visible Boolean False The Shipto_visible field of the Customer object.
Shipto_mailaddress_address1 String False The Shipto_mailaddress_address1 field of the Customer object.
Shipto_mailaddress_address2 String False The Shipto_mailaddress_address2 field of the Customer object.
Shipto_mailaddress_city String False The Shipto_mailaddress_city field of the Customer object.
Shipto_mailaddress_state String False The Shipto_mailaddress_state field of the Customer object.
Shipto_mailaddress_zip String False The Shipto_mailaddress_zip field of the Customer object.
Shipto_mailaddress_country String False The Shipto_mailaddress_country field of the Customer object.
Shipto_mailaddress_countrycode String False The Shipto_mailaddress_countrycode field of the Customer object.
Billto_contactname String False The Billto_contactname field of the Customer object.
Billto_prefix String False The Billto_prefix field of the Customer object.
Billto_firstname String False The Billto_firstname field of the Customer object.
Billto_initial String False The Billto_initial field of the Customer object.
Billto_lastname String False The Billto_lastname field of the Customer object.
Billto_companyname String False The Billto_companyname field of the Customer object.
Billto_printas String False The Billto_printas field of the Customer object.
Billto_taxable Boolean False The Billto_taxable field of the Customer object.
Billto_taxgroup String False The Billto_taxgroup field of the Customer object.
Billto_phone1 String False The Billto_phone1 field of the Customer object.
Billto_phone2 String False The Billto_phone2 field of the Customer object.
Billto_cellphone String False The Billto_cellphone field of the Customer object.
Billto_pager String False The Billto_pager field of the Customer object.
Billto_fax String False The Billto_fax field of the Customer object.
Billto_email1 String False The Billto_email1 field of the Customer object.
Billto_email2 String False The Billto_email2 field of the Customer object.
Billto_url1 String False The Billto_url1 field of the Customer object.
Billto_url2 String False The Billto_url2 field of the Customer object.
Billto_visible Boolean False The Billto_visible field of the Customer object.
Billto_mailaddress_address1 String False The Billto_mailaddress_address1 field of the Customer object.
Billto_mailaddress_address2 String False The Billto_mailaddress_address2 field of the Customer object.
Billto_mailaddress_city String False The Billto_mailaddress_city field of the Customer object.
Billto_mailaddress_state String False The Billto_mailaddress_state field of the Customer object.
Billto_mailaddress_zip String False The Billto_mailaddress_zip field of the Customer object.
Billto_mailaddress_country String False The Billto_mailaddress_country field of the Customer object.
Billto_mailaddress_countrycode String False The Billto_mailaddress_countrycode field of the Customer object.
Status String False The Status field of the Customer object.
Onetime Boolean False The Onetime field of the Customer object.
Custmessageid String False The Custmessageid field of the Customer object.
Onhold Boolean False The Onhold field of the Customer object.
Prclst_override String False The Prclst_override field of the Customer object.
Oeprclstkey Int64 False The Oeprclstkey field of the Customer object.
Oepriceschedkey Int64 False The Oepriceschedkey field of the Customer object.
Enableonlinecardpayment Boolean False The Enableonlinecardpayment field of the Customer object.
Enableonlineachpayment Boolean False The Enableonlineachpayment field of the Customer object.
Vsoeprclstkey Int64 False The Vsoeprclstkey field of the Customer object.
Whenmodified Datetime False The Whenmodified field of the Customer object.
Arinvoiceprinttemplateid String False The Arinvoiceprinttemplateid field of the Customer object.
Oequoteprinttemplateid String False The Oequoteprinttemplateid field of the Customer object.
Oeorderprinttemplateid String False The Oeorderprinttemplateid field of the Customer object.
Oelistprinttemplateid String False The Oelistprinttemplateid field of the Customer object.
Oeinvoiceprinttemplateid String False The Oeinvoiceprinttemplateid field of the Customer object.
Oeadjprinttemplateid String False The Oeadjprinttemplateid field of the Customer object.
Oeotherprinttemplateid String False The Oeotherprinttemplateid field of the Customer object.
Whencreated Datetime False The Whencreated field of the Customer object.
Createdby Int64 False The Createdby field of the Customer object.
Modifiedby Int64 False The Modifiedby field of the Customer object.
Objectrestriction String False The Objectrestriction field of the Customer object.
Displaycontactkey Int64 False The Displaycontactkey field of the Customer object.
Contactkey Int64 False The Contactkey field of the Customer object.
Shiptokey Int64 False The Shiptokey field of the Customer object.
Billtokey Int64 False The Billtokey field of the Customer object.
Custrepkey Int64 False The Custrepkey field of the Customer object.
Shipviakey Int64 False The Shipviakey field of the Customer object.
Territorykey String False The Territorykey field of the Customer object.
Termskey Int64 False The Termskey field of the Customer object.
Accountlabelkey Int64 False The Accountlabelkey field of the Customer object.
Accountkey Int64 False The Accountkey field of the Customer object.
Custtypekey Int64 False The Custtypekey field of the Customer object.
Priceschedulekey String False The Priceschedulekey field of the Customer object.
Offsetglaccountno String False The Offsetglaccountno field of the Customer object.
Offsetglaccountnotitle String False The Offsetglaccountnotitle field of the Customer object.
Megaentitykey Int64 False The Megaentitykey field of the Customer object.
Megaentityid String False The Megaentityid field of the Customer object.
Megaentityname String False The Megaentityname field of the Customer object.
Record_url String False The Record_url field of the Customer object.

CustomerEmailTemplate

Retrieves CustomerEmailTemplate report data.

Columns
Name Type ReadOnly Description
Recordno [KEY] String False The Recordno field of the CustomerEmailTemplate object.
Customerkey Int64 False The Customerkey field of the CustomerEmailTemplate object.
Customerid String False The Customerid field of the CustomerEmailTemplate object.
Docparid String False The Docparid field of the CustomerEmailTemplate object.
Emailtemplatekey String False The Emailtemplatekey field of the CustomerEmailTemplate object.
Emailtemplatename String False The Emailtemplatename field of the CustomerEmailTemplate object.
Record_url String False The Record_url field of the CustomerEmailTemplate object.

CustomerGroup

Retrieves CustomerGroup report data.

Columns
Name Type ReadOnly Description
Recordno [KEY] String False The Recordno field of the CustomerGroup object.
Id String False The ID field of the CustomerGroup object.
Name String False The Name field of the CustomerGroup object.
Description String False The Description field of the CustomerGroup object.
Grouptype String False The Grouptype field of the CustomerGroup object.
Whencreated Datetime False The Whencreated field of the CustomerGroup object.
Whenmodified Datetime False The Whenmodified field of the CustomerGroup object.
Createdby Int64 False The Createdby field of the CustomerGroup object.
Modifiedby Int64 False The Modifiedby field of the CustomerGroup object.
Megaentitykey Int64 False The Megaentitykey field of the CustomerGroup object.
Megaentityid String False The Megaentityid field of the CustomerGroup object.
Megaentityname String False The Megaentityname field of the CustomerGroup object.
Record_url String False The Record_url field of the CustomerGroup object.

CustomerVisibility

Retrieves CustomerVisibility report data.

Columns
Name Type ReadOnly Description
Customerid [KEY] String False The Customerid field of the CustomerVisibility object.
Name String False The Name field of the CustomerVisibility object.
Visibility String False The Visibility field of the CustomerVisibility object.
Restrictedlocations String False The Restrictedlocations field of the CustomerVisibility object.
Restricteddepartments String False The Restricteddepartments field of the CustomerVisibility object.
Record_url String False The Record_url field of the CustomerVisibility object.

CustType

Retrieves CustType report data.

Columns
Name Type ReadOnly Description
Name [KEY] String False The Name field of the CustType object.
Parent_name String False The Parent_name field of the CustType object.
Status String False The Status field of the CustType object.
Recordno Int64 False The Recordno field of the CustType object.
Whencreated Datetime False The Whencreated field of the CustType object.
Whenmodified Datetime False The Whenmodified field of the CustType object.
Createdby Int64 False The Createdby field of the CustType object.
Modifiedby Int64 False The Modifiedby field of the CustType object.
Megaentitykey Int64 False The Megaentitykey field of the CustType object.
Megaentityid String False The Megaentityid field of the CustType object.
Megaentityname String False The Megaentityname field of the CustType object.
Record_url String False The Record_url field of the CustType object.

Department

Retrieves Department report data.

Columns
Name Type ReadOnly Description
Departmentid [KEY] String False The Departmentid field of the Department object.
Recordno Int64 False The Recordno field of the Department object.
Title String False The Title field of the Department object.
Parentkey Int64 False The Parentkey field of the Department object.
Parentid String False The Parentid field of the Department object.
Supervisorkey Int64 False The Supervisorkey field of the Department object.
Supervisorid String False The Supervisorid field of the Department object.
Whencreated Datetime False The Whencreated field of the Department object.
Whenmodified Datetime False The Whenmodified field of the Department object.
Supervisorname String False The Supervisorname field of the Department object.
Status String False The Status field of the Department object.
Custtitle String False The Custtitle field of the Department object.
Createdby Int64 False The Createdby field of the Department object.
Modifiedby Int64 False The Modifiedby field of the Department object.
Record_url String False The Record_url field of the Department object.

EarningType

Retrieves EarningType report data.

Columns
Name Type ReadOnly Description
Recordno [KEY] String False The Recordno field of the EarningType object.
Name String False The Name field of the EarningType object.
Method String False The Method field of the EarningType object.
Billableacctkey String False The Billableacctkey field of the EarningType object.
Nonbillableacctkey String False The Nonbillableacctkey field of the EarningType object.
Billableacctno String False The Billableacctno field of the EarningType object.
Nonbillableacctno String False The Nonbillableacctno field of the EarningType object.
Ratemultiplier Double False The Ratemultiplier field of the EarningType object.
Record_url String False The Record_url field of the EarningType object.

EEAccountLabel

Retrieves EEAccountLabel report data.

Columns
Name Type ReadOnly Description
Recordno Int64 False The Recordno field of the EEAccountLabel object.
Whencreated Datetime False The Whencreated field of the EEAccountLabel object.
Whenmodified Datetime False The Whenmodified field of the EEAccountLabel object.
Createdby Int64 False The Createdby field of the EEAccountLabel object.
Modifiedby Int64 False The Modifiedby field of the EEAccountLabel object.
Accountlabel [KEY] String False The Accountlabel field of the EEAccountLabel object.
Description String False The Description field of the EEAccountLabel object.
Glaccountno String False The Glaccountno field of the EEAccountLabel object.
Glaccounttitle String False The Glaccounttitle field of the EEAccountLabel object.
Status String False The Status field of the EEAccountLabel object.
Offsetglaccountno String False The Offsetglaccountno field of the EEAccountLabel object.
Unitcurrency String False The Unitcurrency field of the EEAccountLabel object.
Megaentitykey Int64 False The Megaentitykey field of the EEAccountLabel object.
Megaentityid String False The Megaentityid field of the EEAccountLabel object.
Megaentityname String False The Megaentityname field of the EEAccountLabel object.
Record_url String False The Record_url field of the EEAccountLabel object.

EExpenses

Retrieves EExpenses report data.

Columns
Name Type ReadOnly Description
Recordid [KEY] String False The Recordid field of the EExpenses object.
Contact_lastname String False The Contact_lastname field of the EExpenses object.
Contact_firstname String False The Contact_firstname field of the EExpenses object.
Recordno String False The Recordno field of the EExpenses object.
Whencreated Datetime False The Whencreated field of the EExpenses object.
Whenposted Datetime False The Whenposted field of the EExpenses object.
Totalentered Double False The Totalentered field of the EExpenses object.
State String False The State field of the EExpenses object.
Totalpaid Double False The Totalpaid field of the EExpenses object.
Totalselected Double False The Totalselected field of the EExpenses object.
Totaldue Double False The Totaldue field of the EExpenses object.
Recordtype String False The Recordtype field of the EExpenses object.
Systemgenerated String False The Systemgenerated field of the EExpenses object.
Prbatch String False The Prbatch field of the EExpenses object.
Prbatchkey Int64 False The Prbatchkey field of the EExpenses object.
Empentity String False The Empentity field of the EExpenses object.
Description String False The Description field of the EExpenses object.
Whenpaid Datetime False The Whenpaid field of the EExpenses object.
Whenmodified Datetime False The Whenmodified field of the EExpenses object.
Currency String False The Currency field of the EExpenses object.
Basecurr String False The Basecurr field of the EExpenses object.
Entity String False The Entity field of the EExpenses object.
Userkey String False The Userkey field of the EExpenses object.
Employeeid String False The Employeeid field of the EExpenses object.
Nr_totalentered Double False The Nr_totalentered field of the EExpenses object.
Nr_trx_totalentered Double False The Nr_trx_totalentered field of the EExpenses object.
Auwhencreated Datetime False The Auwhencreated field of the EExpenses object.
Createdby Int64 False The Createdby field of the EExpenses object.
Modifiedby Int64 False The Modifiedby field of the EExpenses object.
Memo String False The Memo field of the EExpenses object.
Megaentitykey Int64 False The Megaentitykey field of the EExpenses object.
Megaentityid String False The Megaentityid field of the EExpenses object.
Record_url String False The Record_url field of the EExpenses object.

EmailTemplate

Retrieves EmailTemplate report data.

Columns
Name Type ReadOnly Description
Recordno [KEY] String False The Recordno field of the EmailTemplate object.
Whencreated Datetime False The Whencreated field of the EmailTemplate object.
Whenmodified Datetime False The Whenmodified field of the EmailTemplate object.
Createdby Int64 False The Createdby field of the EmailTemplate object.
Modifiedby Int64 False The Modifiedby field of the EmailTemplate object.
Status String False The Status field of the EmailTemplate object.
EmailTemplatename String False The EmailTemplatename field of the EmailTemplate object.
Description String False The Description field of the EmailTemplate object.
Fromname String False The Fromname field of the EmailTemplate object.
Fromaddress String False The Fromaddress field of the EmailTemplate object.
Toaddress String False The Toaddress field of the EmailTemplate object.
Ccaddress String False The Ccaddress field of the EmailTemplate object.
Bccaddress String False The Bccaddress field of the EmailTemplate object.
Subject String False The Subject field of the EmailTemplate object.
Body String False The Body field of the EmailTemplate object.
Include_logo Boolean False The Include_logo field of the EmailTemplate object.
Vertical_logo_position String False The Vertical_logo_position field of the EmailTemplate object.
Horizontal_logo_position String False The Horizontal_logo_position field of the EmailTemplate object.
Include_attachments Boolean False The Include_attachments field of the EmailTemplate object.
Record_url String False The Record_url field of the EmailTemplate object.

Employee

Retrieves Employee report data.

Table Specific Information

In the Employee table, INSERT and UPDATE operations have additional considerations:

INSERT-the Personalinfo_contactname column is a required input. This column is mapped to the Contactname column of Contact table, which links these two tables.

DELETE-specify the Recordno column in the WHERE statement to delete the record.

Examples

INSERT

INSERT INTO Employee (Employeeid, Title, Personalinfo_contactname) VALUES ('Test', 'Test', 'Valid_record_from_Contactname_in_Contact_table')

DELETE

DELETE FROM Employee WHERE Recordno = 3
Columns
Name Type ReadOnly Description
Recordno Int64 False The Recordno field of the Employee object.
Employeeid [KEY] String False The Employeeid field of the Employee object.
Title String False The Title field of the Employee object.
Locationid String False The Locationid field of the Employee object.
Locationkey Int64 False The Locationkey field of the Employee object.
Departmentid String False The Departmentid field of the Employee object.
Departmentkey Int64 False The Departmentkey field of the Employee object.
Parentkey Int64 False The Parentkey field of the Employee object.
Supervisorid String False The Supervisorid field of the Employee object.
Supervisorname String False The Supervisorname field of the Employee object.
Birthdate Datetime False The Birthdate field of the Employee object.
Startdate Datetime False The Startdate field of the Employee object.
Enddate Datetime False The Enddate field of the Employee object.
Status String False The Status field of the Employee object.
Employeetype String False The Employeetype field of the Employee object.
Employeetype1099type String False The Employeetype1099type field of the Employee object.
Emptypekey Int64 False The Emptypekey field of the Employee object.
Gender String False The Gender field of the Employee object.
Terminationtype String False The Terminationtype field of the Employee object.
Personalinfo_contactname String False The Personalinfo_contactname field of the Employee object.
Personalinfo_prefix String False The Personalinfo_prefix field of the Employee object.
Personalinfo_firstname String False The Personalinfo_firstname field of the Employee object.
Personalinfo_initial String False The Personalinfo_initial field of the Employee object.
Personalinfo_lastname String False The Personalinfo_lastname field of the Employee object.
Personalinfo_companyname String False The Personalinfo_companyname field of the Employee object.
Personalinfo_printas String False The Personalinfo_printas field of the Employee object.
Personalinfo_phone1 String False The Personalinfo_phone1 field of the Employee object.
Personalinfo_phone2 String False The Personalinfo_phone2 field of the Employee object.
Personalinfo_cellphone String False The Personalinfo_cellphone field of the Employee object.
Personalinfo_pager String False The Personalinfo_pager field of the Employee object.
Personalinfo_fax String False The Personalinfo_fax field of the Employee object.
Personalinfo_email1 String False The Personalinfo_email1 field of the Employee object.
Personalinfo_email2 String False The Personalinfo_email2 field of the Employee object.
Personalinfo_url1 String False The Personalinfo_url1 field of the Employee object.
Personalinfo_url2 String False The Personalinfo_url2 field of the Employee object.
Personalinfo_mailaddress_address1 String False The Personalinfo_mailaddress_address1 field of the Employee object.
Personalinfo_mailaddress_address2 String False The Personalinfo_mailaddress_address2 field of the Employee object.
Personalinfo_mailaddress_city String False The Personalinfo_mailaddress_city field of the Employee object.
Personalinfo_mailaddress_state String False The Personalinfo_mailaddress_state field of the Employee object.
Personalinfo_mailaddress_zip String False The Personalinfo_mailaddress_zip field of the Employee object.
Personalinfo_mailaddress_country String False The Personalinfo_mailaddress_country field of the Employee object.
Personalinfo_mailaddress_countrycode String False The Personalinfo_mailaddress_countrycode field of the Employee object.
Entity String False The Entity field of the Employee object.
Supdocfoldername String False The Supdocfoldername field of the Employee object.
Currency String False The Currency field of the Employee object.
Name1099 String False The Name1099 field of the Employee object.
Form1099type String False The Form1099type field of the Employee object.
Form1099box String False The Form1099box field of the Employee object.
Earningtypekey Int64 False The Earningtypekey field of the Employee object.
Earningtypename String False The Earningtypename field of the Employee object.
Earningtypemethod String False The Earningtypemethod field of the Employee object.
Postactualcost Boolean False The Postactualcost field of the Employee object.
Whencreated Datetime False The Whencreated field of the Employee object.
Whenmodified Datetime False The Whenmodified field of the Employee object.
Createdby Int64 False The Createdby field of the Employee object.
Modifiedby Int64 False The Modifiedby field of the Employee object.
Classid String False The Classid field of the Employee object.
Classname String False The Classname field of the Employee object.
Classkey Int64 False The Classkey field of the Employee object.
Paymethodkey Int64 False The Paymethodkey field of the Employee object.
Achenabled Boolean False The Achenabled field of the Employee object.
Achbankroutingnumber String False The Achbankroutingnumber field of the Employee object.
Achaccounttype String False The Achaccounttype field of the Employee object.
Achremittancetype String False The Achremittancetype field of the Employee object.
Paymentnotify Boolean False The Paymentnotify field of the Employee object.
Generic Boolean False The Generic field of the Employee object.
Mergepaymentreq Boolean False The Mergepaymentreq field of the Employee object.
Contactkey Int64 False The Contactkey field of the Employee object.
Megaentitykey Int64 False The Megaentitykey field of the Employee object.
Megaentityid String False The Megaentityid field of the Employee object.
Megaentityname String False The Megaentityname field of the Employee object.
Record_url String False The Record_url field of the Employee object.

EmployeeEntityContacts

Retrieves EmployeeEntityContacts report data.

Columns
Name Type ReadOnly Description
Recordno [KEY] String False The Recordno field of the EmployeeEntityContacts object.
Categoryname String False The Categoryname field of the EmployeeEntityContacts object.
Contact_name String False The Contact_name field of the EmployeeEntityContacts object.
Employee_employeeid String False The Employee_employeeid field of the EmployeeEntityContacts object.
Whencreated Datetime False The Whencreated field of the EmployeeEntityContacts object.
Whenmodified Datetime False The Whenmodified field of the EmployeeEntityContacts object.
Createdby Int64 False The Createdby field of the EmployeeEntityContacts object.
Modifiedby Int64 False The Modifiedby field of the EmployeeEntityContacts object.
Record_url String False The Record_url field of the EmployeeEntityContacts object.

EmployeeGroup

Retrieves EmployeeGroup report data.

Columns
Name Type ReadOnly Description
Recordno [KEY] String False The Recordno field of the EmployeeGroup object.
Id String False The ID field of the EmployeeGroup object.
Name String False The Name field of the EmployeeGroup object.
Description String False The Description field of the EmployeeGroup object.
Grouptype String False The Grouptype field of the EmployeeGroup object.
Whencreated Datetime False The Whencreated field of the EmployeeGroup object.
Whenmodified Datetime False The Whenmodified field of the EmployeeGroup object.
Createdby Int64 False The Createdby field of the EmployeeGroup object.
Modifiedby Int64 False The Modifiedby field of the EmployeeGroup object.
Megaentitykey Int64 False The Megaentitykey field of the EmployeeGroup object.
Megaentityid String False The Megaentityid field of the EmployeeGroup object.
Megaentityname String False The Megaentityname field of the EmployeeGroup object.
Record_url String False The Record_url field of the EmployeeGroup object.

EmployeeOutOfOffice

Retrieves EmployeeOutOfOffice report data.

Columns
Name Type ReadOnly Description
Recordno [KEY] String False The Recordno field of the EmployeeOutOfOffice object.
Employeekey Int64 False The Employeekey field of the EmployeeOutOfOffice object.
Employeeid String False The Employeeid field of the EmployeeOutOfOffice object.
Employeecontactname String False The Employeecontactname field of the EmployeeOutOfOffice object.
Whencreated Datetime False The Whencreated field of the EmployeeOutOfOffice object.
Whenmodified Datetime False The Whenmodified field of the EmployeeOutOfOffice object.
Createdby Int64 False The Createdby field of the EmployeeOutOfOffice object.
Modifiedby Int64 False The Modifiedby field of the EmployeeOutOfOffice object.
Record_url String False The Record_url field of the EmployeeOutOfOffice object.

EmployeePositionSkill

Retrieves EmployeePositionSkill report data.

Columns
Name Type ReadOnly Description
Recordno [KEY] String False The Recordno field of the EmployeePositionSkill object.
Positionskillkey Int64 False The Positionskillkey field of the EmployeePositionSkill object.
Positionskillname String False The Positionskillname field of the EmployeePositionSkill object.
Employeekey Int64 False The Employeekey field of the EmployeePositionSkill object.
Employeeid String False The Employeeid field of the EmployeePositionSkill object.
Whencreated Datetime False The Whencreated field of the EmployeePositionSkill object.
Whenmodified Datetime False The Whenmodified field of the EmployeePositionSkill object.
Createdby Int64 False The Createdby field of the EmployeePositionSkill object.
Modifiedby Int64 False The Modifiedby field of the EmployeePositionSkill object.
Record_url String False The Record_url field of the EmployeePositionSkill object.

EmployeeRate

Retrieves EmployeeRate report data.

Columns
Name Type ReadOnly Description
Recordno [KEY] String False The Recordno field of the EmployeeRate object.
Employeekey Int64 False The Employeekey field of the EmployeeRate object.
Employeeid String False The Employeeid field of the EmployeeRate object.
Employeename String False The Employeename field of the EmployeeRate object.
Billingrate Double False The Billingrate field of the EmployeeRate object.
Salaryrate Double False The Salaryrate field of the EmployeeRate object.
Ratestartdate Datetime False The Ratestartdate field of the EmployeeRate object.
Rateenddate Datetime False The Rateenddate field of the EmployeeRate object.
Whencreated Datetime False The Whencreated field of the EmployeeRate object.
Whenmodified Datetime False The Whenmodified field of the EmployeeRate object.
Createdby Int64 False The Createdby field of the EmployeeRate object.
Modifiedby Int64 False The Modifiedby field of the EmployeeRate object.
Record_url String False The Record_url field of the EmployeeRate object.

EmployeeType

Retrieves EmployeeType report data.

Columns
Name Type ReadOnly Description
Name [KEY] String False The Name field of the EmployeeType object.
Parent_name String False The Parent_name field of the EmployeeType object.
Status String False The Status field of the EmployeeType object.
Recordno Int64 False The Recordno field of the EmployeeType object.
Form1099type String False The Form1099type field of the EmployeeType object.
Form1099box String False The Form1099box field of the EmployeeType object.
Whencreated Datetime False The Whencreated field of the EmployeeType object.
Whenmodified Datetime False The Whenmodified field of the EmployeeType object.
Createdby Int64 False The Createdby field of the EmployeeType object.
Modifiedby Int64 False The Modifiedby field of the EmployeeType object.
Megaentitykey Int64 False The Megaentitykey field of the EmployeeType object.
Megaentityid String False The Megaentityid field of the EmployeeType object.
Megaentityname String False The Megaentityname field of the EmployeeType object.
Record_url String False The Record_url field of the EmployeeType object.

ExchangeRate

Retrieves ExchangeRate report data.

Columns
Name Type ReadOnly Description
Typename [KEY] String False The Typename field of the ExchangeRate object.
Recordno String False The Recordno field of the ExchangeRate object.
Type_id Int64 False The Type_id field of the ExchangeRate object.
From_currency String False The From_currency field of the ExchangeRate object.
To_currency String False The To_currency field of the ExchangeRate object.
Whencreated Datetime False The Whencreated field of the ExchangeRate object.
Whenmodified Datetime False The Whenmodified field of the ExchangeRate object.
Createdby Int64 False The Createdby field of the ExchangeRate object.
Modifiedby Int64 False The Modifiedby field of the ExchangeRate object.
Record_url String False The Record_url field of the ExchangeRate object.

ExpenseAdjustments

Retrieves ExpenseAdjustments report data.

Columns
Name Type ReadOnly Description
Recordid [KEY] String False The Recordid field of the ExpenseAdjustments object.
Contact_lastname String False The Contact_lastname field of the ExpenseAdjustments object.
Contact_firstname String False The Contact_firstname field of the ExpenseAdjustments object.
Recordno String False The Recordno field of the ExpenseAdjustments object.
Whencreated Datetime False The Whencreated field of the ExpenseAdjustments object.
Whenposted Datetime False The Whenposted field of the ExpenseAdjustments object.
Totalentered Double False The Totalentered field of the ExpenseAdjustments object.
State String False The State field of the ExpenseAdjustments object.
Totalpaid Double False The Totalpaid field of the ExpenseAdjustments object.
Totalselected Double False The Totalselected field of the ExpenseAdjustments object.
Totaldue Double False The Totaldue field of the ExpenseAdjustments object.
Recordtype String False The Recordtype field of the ExpenseAdjustments object.
Systemgenerated String False The Systemgenerated field of the ExpenseAdjustments object.
Prbatch String False The Prbatch field of the ExpenseAdjustments object.
Prbatchkey Int64 False The Prbatchkey field of the ExpenseAdjustments object.
Empentity String False The Empentity field of the ExpenseAdjustments object.
Description String False The Description field of the ExpenseAdjustments object.
Whenpaid Datetime False The Whenpaid field of the ExpenseAdjustments object.
Whenmodified Datetime False The Whenmodified field of the ExpenseAdjustments object.
Currency String False The Currency field of the ExpenseAdjustments object.
Basecurr String False The Basecurr field of the ExpenseAdjustments object.
Entity String False The Entity field of the ExpenseAdjustments object.
Userkey String False The Userkey field of the ExpenseAdjustments object.
Employeeid String False The Employeeid field of the ExpenseAdjustments object.
Docnumber String False The Docnumber field of the ExpenseAdjustments object.
Nr_totalentered Double False The Nr_totalentered field of the ExpenseAdjustments object.
Nr_trx_totalentered Double False The Nr_trx_totalentered field of the ExpenseAdjustments object.
Auwhencreated Datetime False The Auwhencreated field of the ExpenseAdjustments object.
Createdby Int64 False The Createdby field of the ExpenseAdjustments object.
Modifiedby Int64 False The Modifiedby field of the ExpenseAdjustments object.
Megaentitykey Int64 False The Megaentitykey field of the ExpenseAdjustments object.
Megaentityid String False The Megaentityid field of the ExpenseAdjustments object.
Record_url String False The Record_url field of the ExpenseAdjustments object.

ExpensePaymentType

Retrieves ExpensePaymentType report data.

Columns
Name Type ReadOnly Description
Recordno Int64 False The Recordno field of the ExpensePaymentType object.
Name [KEY] String False The Name field of the ExpensePaymentType object.
Description String False The Description field of the ExpensePaymentType object.
Nonreimbursable Boolean False The Nonreimbursable field of the ExpensePaymentType object.
Offsetacctkey Int64 False The Offsetacctkey field of the ExpensePaymentType object.
Offsetacctno String False The Offsetacctno field of the ExpensePaymentType object.
Status String False The Status field of the ExpensePaymentType object.
Whencreated Datetime False The Whencreated field of the ExpensePaymentType object.
Whenmodified Datetime False The Whenmodified field of the ExpensePaymentType object.
Createdby Int64 False The Createdby field of the ExpensePaymentType object.
Modifiedby Int64 False The Modifiedby field of the ExpensePaymentType object.
Megaentitykey Int64 False The Megaentitykey field of the ExpensePaymentType object.
Megaentityid String False The Megaentityid field of the ExpensePaymentType object.
Megaentityname String False The Megaentityname field of the ExpensePaymentType object.
Record_url String False The Record_url field of the ExpensePaymentType object.

GAAPAdjJrnl

Retrieves GAAPAdjJrnl report data.

Columns
Name Type ReadOnly Description
Recordno Int64 False The Recordno field of the GAAPAdjJrnl object.
Symbol String False The Symbol field of the GAAPAdjJrnl object.
Title [KEY] String False The Title field of the GAAPAdjJrnl object.
Status String False The Status field of the GAAPAdjJrnl object.
Whencreated Datetime False The Whencreated field of the GAAPAdjJrnl object.
Whenmodified Datetime False The Whenmodified field of the GAAPAdjJrnl object.
Createdby Int64 False The Createdby field of the GAAPAdjJrnl object.
Modifiedby Int64 False The Modifiedby field of the GAAPAdjJrnl object.
Record_url String False The Record_url field of the GAAPAdjJrnl object.

GLAccount

Retrieves GLAccount report data.

Columns
Name Type ReadOnly Description
Recordno Int64 False The Recordno field of the GLAccount object.
Accountno [KEY] String False The Accountno field of the GLAccount object.
Title String False The Title field of the GLAccount object.
Accounttype String False The Accounttype field of the GLAccount object.
Normalbalance String False The Normalbalance field of the GLAccount object.
Closingtype String False The Closingtype field of the GLAccount object.
Closingaccountno String False The Closingaccountno field of the GLAccount object.
Closingaccounttitle String False The Closingaccounttitle field of the GLAccount object.
Status String False The Status field of the GLAccount object.
Requiredept Boolean False The Requiredept field of the GLAccount object.
Requireloc Boolean False The Requireloc field of the GLAccount object.
Taxable Boolean False The Taxable field of the GLAccount object.
Categorykey String False The Categorykey field of the GLAccount object.
Category String False The Category field of the GLAccount object.
Taxcode String False The Taxcode field of the GLAccount object.
Mrccode String False The Mrccode field of the GLAccount object.
Closetoacctkey Int64 False The Closetoacctkey field of the GLAccount object.
Alternativeaccount String False The Alternativeaccount field of the GLAccount object.
Whencreated Datetime False The Whencreated field of the GLAccount object.
Whenmodified Datetime False The Whenmodified field of the GLAccount object.
Createdby Int64 False The Createdby field of the GLAccount object.
Modifiedby Int64 False The Modifiedby field of the GLAccount object.
Megaentitykey Int64 False The Megaentitykey field of the GLAccount object.
Megaentityid String False The Megaentityid field of the GLAccount object.
Megaentityname String False The Megaentityname field of the GLAccount object.
Requireproject Boolean False The Requireproject field of the GLAccount object.
Requirecustomer Boolean False The Requirecustomer field of the GLAccount object.
Requirevendor Boolean False The Requirevendor field of the GLAccount object.
Requireemployee Boolean False The Requireemployee field of the GLAccount object.
Requireitem Boolean False The Requireitem field of the GLAccount object.
Requireclass Boolean False The Requireclass field of the GLAccount object.
Record_url String False The Record_url field of the GLAccount object.

GLAcctGrp

Retrieves GLAcctGrp report data.

Columns
Name Type ReadOnly Description
Recordno Int64 False The Recordno field of the GLAcctGrp object.
Name [KEY] String False The Name field of the GLAcctGrp object.
Normal_balance String False The Normal_balance field of the GLAcctGrp object.
Asof String False The Asof field of the GLAcctGrp object.
Includechildamt Boolean False The Includechildamt field of the GLAcctGrp object.
Title String False The Title field of the GLAcctGrp object.
Totaltitle String False The Totaltitle field of the GLAcctGrp object.
Dbcr String False The Dbcr field of the GLAcctGrp object.
Filterdept String False The Filterdept field of the GLAcctGrp object.
Filterloc String False The Filterloc field of the GLAcctGrp object.
Membertype String False The Membertype field of the GLAcctGrp object.
Deptno String False The Deptno field of the GLAcctGrp object.
Locno String False The Locno field of the GLAcctGrp object.
Iskpi Boolean False The Iskpi field of the GLAcctGrp object.
Filtervendor String False The Filtervendor field of the GLAcctGrp object.
Filtercustomer String False The Filtercustomer field of the GLAcctGrp object.
Filterproject String False The Filterproject field of the GLAcctGrp object.
Filteremployee String False The Filteremployee field of the GLAcctGrp object.
Filteritem String False The Filteritem field of the GLAcctGrp object.
Filterclass String False The Filterclass field of the GLAcctGrp object.
Whencreated Datetime False The Whencreated field of the GLAcctGrp object.
Whenmodified Datetime False The Whenmodified field of the GLAcctGrp object.
Createdby Int64 False The Createdby field of the GLAcctGrp object.
Modifiedby Int64 False The Modifiedby field of the GLAcctGrp object.
Megaentitykey Int64 False The Megaentitykey field of the GLAcctGrp object.
Megaentityid String False The Megaentityid field of the GLAcctGrp object.
Megaentityname String False The Megaentityname field of the GLAcctGrp object.
Projectdimkey Int64 False The Projectdimkey field of the GLAcctGrp object.
Projectid String False The Projectid field of the GLAcctGrp object.
Projectname String False The Projectname field of the GLAcctGrp object.
Customerdimkey Int64 False The Customerdimkey field of the GLAcctGrp object.
Customerid String False The Customerid field of the GLAcctGrp object.
Customername String False The Customername field of the GLAcctGrp object.
Vendordimkey Int64 False The Vendordimkey field of the GLAcctGrp object.
Vendorid String False The Vendorid field of the GLAcctGrp object.
Vendorname String False The Vendorname field of the GLAcctGrp object.
Employeedimkey Int64 False The Employeedimkey field of the GLAcctGrp object.
Employeeid String False The Employeeid field of the GLAcctGrp object.
Employeename String False The Employeename field of the GLAcctGrp object.
Itemdimkey Int64 False The Itemdimkey field of the GLAcctGrp object.
Itemid String False The Itemid field of the GLAcctGrp object.
Itemname String False The Itemname field of the GLAcctGrp object.
Classdimkey Int64 False The Classdimkey field of the GLAcctGrp object.
Classid String False The Classid field of the GLAcctGrp object.
Classname String False The Classname field of the GLAcctGrp object.
Record_url String False The Record_url field of the GLAcctGrp object.

GLAcctGrpMember

Retrieves GLAcctGrpMember report data.

Columns
Name Type ReadOnly Description
Recordno [KEY] String False The Recordno field of the GLAcctGrpMember object.
Parentkey Int64 False The Parentkey field of the GLAcctGrpMember object.
Childname String False The Childname field of the GLAcctGrpMember object.
Childkey Int64 False The Childkey field of the GLAcctGrpMember object.
Sortord Int64 False The Sortord field of the GLAcctGrpMember object.
Whencreated Datetime False The Whencreated field of the GLAcctGrpMember object.
Whenmodified Datetime False The Whenmodified field of the GLAcctGrpMember object.
Createdby Int64 False The Createdby field of the GLAcctGrpMember object.
Modifiedby Int64 False The Modifiedby field of the GLAcctGrpMember object.
Record_url String False The Record_url field of the GLAcctGrpMember object.

GLBatch

Retrieves GLBatch report data.

Table Specific Information

Sage Intacct allows the user to update the GLBatch table and the associated GLEntry child table(read only) by adding new GLEntry items to the assocaited GLBatch object. The driver does this by using the ItemAggregate field. The following is an example of an UPDATE statemet:

UPDATE GLBatch SET [Batch_Title] = 'new title',
    ItemAggregate='    <GLENTRY>
    <ACCOUNTNO>6530/ACCOUNTNO>
    <DESCRIPTION>modifyme/DESCRIPTION>
    <LOCATIONKEY>4/LOCATIONKEY>
    <LOCATION>100/LOCATION>
    <LOCATIONNAME>corporate/LOCATIONNAME>
    <TRX_AMOUNT>20/TRX_AMOUNT> <TR_TYPE>-1/TR_TYPE>
    <GLDIMTYPE>location/GLDIMTYPE> <GLDIMSERVICE>service/GLDIMSERVICE>
    /GLENTRY>
    <GLENTRY>
    <ACCOUNTNO>6530/ACCOUNTNO> <DESCRIPTION>modified/DESCRIPTION>
    <LOCATIONKEY>4/LOCATIONKEY> <LOCATION>100/LOCATION> <LOCATIONNAME>corporate/LOCATIONNAME>
    <MODIFIEDBY>NULL/MODIFIEDBY><PROJECTID>null/PROJECTID><TRX_AMOUNT>20/TRX_AMOUNT>
    <TR_TYPE>1/TR_TYPE> <GLDIMTYPE>location/GLDIMTYPE> <GLDIMSERVICE>service
    /GLDIMSERVICE>
    /GLENTRY>'
where Recrdno='xxx'
Columns
Name Type ReadOnly Description
Recordno [KEY] String False The Recordno field of the GLBatch object.
Batchno Int64 False The Batchno field of the GLBatch object.
Batch_title String False The Batch_title field of the GLBatch object.
Balance Double False The Balance field of the GLBatch object.
Journal String False The Journal field of the GLBatch object.
Batch_date Datetime False The Batch_date field of the GLBatch object.
Module String False The Module field of the GLBatch object.
Userkey Int64 False The Userkey field of the GLBatch object.
Referenceno String False The Referenceno field of the GLBatch object.
Reversed Datetime False The Reversed field of the GLBatch object.
Reversedkey Int64 False The Reversedkey field of the GLBatch object.
Reversedfrom String False The Reversedfrom field of the GLBatch object.
Templatekey Int64 False The Templatekey field of the GLBatch object.
Prbatchkey Int64 False The Prbatchkey field of the GLBatch object.
Modified Datetime False The Modified field of the GLBatch object.
Modifiedbyid String False The Modifiedbyid field of the GLBatch object.
Schopkey Int64 False The Schopkey field of the GLBatch object.
Baselocation String False The Baselocation field of the GLBatch object.
Baselocation_no String False The Baselocation_no field of the GLBatch object.
Userinfo_loginid String False The Userinfo_loginid field of the GLBatch object.
Whencreated Datetime False The Whencreated field of the GLBatch object.
Whenmodified Datetime False The Whenmodified field of the GLBatch object.
Createdby Int64 False The Createdby field of the GLBatch object.
Modifiedby Int64 False The Modifiedby field of the GLBatch object.
State String False The State field of the GLBatch object.
Megaentitykey Int64 False The Megaentitykey field of the GLBatch object.
Megaentityid String False The Megaentityid field of the GLBatch object.
Megaentityname String False The Megaentityname field of the GLBatch object.
Record_url String False The Record_url field of the GLBatch object.
ItemAggregate String False The GLEntry items related to the GLBatch object.

Glbudgetheader

The GLBudgetHeader table

Columns
Name Type ReadOnly Description
Recordno [KEY] Long True Record number
Budgetid [KEY] String False Budget ID
Description String False Description
Systemgenerated String False True/false
Default_budget Bool False Default budget
User String False Modified by
Status String False Active or inactive
Whencreated Datetime True Timestamp marking last time this was created.
Whenmodified Datetime True Timestamp marking last time this was changed.
Createdby Long True User who created this.
Modifiedby Long True User who modified this.
Isconsolidated Bool False Single currency budget
Currency String False Consolidated currency
Ispabudget Bool False Project estimate
Ispcnbudget Bool False Project contract
Megaentitykey Long True Created at - Entity key
Megaentityid String True Created at - Entity ID
Megaentityname String True Created at - Entity name
Budget_custom String False Budget_Custom
Field_after String False Field after
Record_url String True A portable, user-independent, deep-link URL for viewing this record

Glbudgetitem

The GLBudgetItem table

Columns
Name Type ReadOnly Description
Recordno [KEY] Long False Record number
Budgetkey Long False Budget header key
Budgetid String False Budget ID
Currency String False Currency
Systemgenerated String False System generated
Periodkey Long False Period key
Accountkey Long False Account key
Deptkey Long False Department key
Locationkey Long False Location key
Amount Decimal False Amount
Basedon String False Based on
Growby Decimal False Grow by
Perperiod String False Per period
Note String False Note
Acct_no String False Account number
Account_type String False Account type
Accttitle String False Account title
Normalbalance Long False Normal balance
Statistical String False Statistical
Dept_no String False Department
Deptitle String False Department title
Location_no String False Location number
Locationtitle String False Location title
Periodname String False Period name
Reportingperiodname String False Reporting period name
Pstartdate Date False Start date
Penddate Date False End date
Megaentitykey Long True Created at - Entity key
Megaentityid String True Created at - Entity ID
Megaentityname String True Created at - Entity name
Projectdimkey Long False Projectdimkey
Projectid String False Project
Projectname String False Project name
Customerdimkey Long False Customerdimkey
Customerid String False Customer
Customername String False Customer name
Vendordimkey Long False Vendordimkey
Vendorid String False Vendor
Vendorname String False Vendor name
Employeedimkey Long False Employeedimkey
Employeeid String False Employee
Employeename String False Employee name
Itemdimkey Long False Itemdimkey
Itemid String False Item
Itemname String False Item name
Classdimkey Long False Classdimkey
Classid String False Class
Classname String False Class name
Warehousedimkey Long False Warehousedimkey
Warehouseid String False Warehouse
Warehousename String False Warehouse name
Contractdimkey Long False Contract key
Contractid String False Contract
Contractname String False Contract name
Record_url String True A portable, user-independent, deep-link URL for viewing this record
Gldimtestegi1 String False
Gldimtest String False

GLCoaCatMember

Retrieves GLCoaCatMember report data.

Columns
Name Type ReadOnly Description
Recordno [KEY] String False The Recordno field of the GLCoaCatMember object.
Parentkey Int64 False The Parentkey field of the GLCoaCatMember object.
Sortord Int64 False The Sortord field of the GLCoaCatMember object.
Categoryname String False The Categoryname field of the GLCoaCatMember object.
Whencreated Datetime False The Whencreated field of the GLCoaCatMember object.
Whenmodified Datetime False The Whenmodified field of the GLCoaCatMember object.
Createdby Int64 False The Createdby field of the GLCoaCatMember object.
Modifiedby Int64 False The Modifiedby field of the GLCoaCatMember object.
Record_url String False The Record_url field of the GLCoaCatMember object.

GLCompGrpMember

Retrieves GLCompGrpMember report data.

Columns
Name Type ReadOnly Description
Recordno [KEY] String False The Recordno field of the GLCompGrpMember object.
Parentkey Int64 False The Parentkey field of the GLCompGrpMember object.
Lhsacctno String False The Lhsacctno field of the GLCompGrpMember object.
Lhsacctgrpname String False The Lhsacctgrpname field of the GLCompGrpMember object.
Lhsconst String False The Lhsconst field of the GLCompGrpMember object.
Operator String False The Operator field of the GLCompGrpMember object.
Rhsacctno String False The Rhsacctno field of the GLCompGrpMember object.
Rhsacctgrpname String False The Rhsacctgrpname field of the GLCompGrpMember object.
Rhsconst String False The Rhsconst field of the GLCompGrpMember object.
Precision String False The Precision field of the GLCompGrpMember object.
Displayas String False The Displayas field of the GLCompGrpMember object.
Uom String False The Uom field of the GLCompGrpMember object.
Lhsasof String False The Lhsasof field of the GLCompGrpMember object.
Rhsasof String False The Rhsasof field of the GLCompGrpMember object.
Uomalignment String False The Uomalignment field of the GLCompGrpMember object.
Whencreated Datetime False The Whencreated field of the GLCompGrpMember object.
Whenmodified Datetime False The Whenmodified field of the GLCompGrpMember object.
Createdby Int64 False The Createdby field of the GLCompGrpMember object.
Modifiedby Int64 False The Modifiedby field of the GLCompGrpMember object.
Record_url String False The Record_url field of the GLCompGrpMember object.

ICRow

Retrieves ICRow report data.

Columns
Name Type ReadOnly Description
Recordno Int64 False The Recordno field of the ICRow object.
Rowkey [KEY] String False The Rowkey field of the ICRow object.
Rowdesc String False The Rowdesc field of the ICRow object.
Whencreated Datetime False The Whencreated field of the ICRow object.
Whenmodified Datetime False The Whenmodified field of the ICRow object.
Createdby Int64 False The Createdby field of the ICRow object.
Modifiedby Int64 False The Modifiedby field of the ICRow object.
Record_url String False The Record_url field of the ICRow object.

InvDocument

Retrieves InvDocument report data.

Columns
Name Type ReadOnly Description
Recordno [KEY] String False The Recordno field of the InvDocument object.
Docno String False The Docno field of the InvDocument object.
Docid String False The Docid field of the InvDocument object.
Createdfrom String False The Createdfrom field of the InvDocument object.
State String False The State field of the InvDocument object.
Closed Boolean False The Closed field of the InvDocument object.
Whencreated Datetime False The Whencreated field of the InvDocument object.
Whenmodified Datetime False The Whenmodified field of the InvDocument object.
Whendue Datetime False The Whendue field of the InvDocument object.
Status String False The Status field of the InvDocument object.
Ponumber String False The Ponumber field of the InvDocument object.
Vendordocno String False The Vendordocno field of the InvDocument object.
Docparid String False The Docparid field of the InvDocument object.
Docparkey String False The Docparkey field of the InvDocument object.
Docparclass String False The Docparclass field of the InvDocument object.
Term_name String False The Term_name field of the InvDocument object.
Note String False The Note field of the InvDocument object.
Warehouse_locationid String False The Warehouse_locationid field of the InvDocument object.
Shipvia String False The Shipvia field of the InvDocument object.
User String False The User field of the InvDocument object.
Createduser String False The Createduser field of the InvDocument object.
Userid String False The Userid field of the InvDocument object.
Createduserid String False The Createduserid field of the InvDocument object.
Contact_contactname String False The Contact_contactname field of the InvDocument object.
Contact_prefix String False The Contact_prefix field of the InvDocument object.
Contact_firstname String False The Contact_firstname field of the InvDocument object.
Contact_initial String False The Contact_initial field of the InvDocument object.
Contact_lastname String False The Contact_lastname field of the InvDocument object.
Contact_companyname String False The Contact_companyname field of the InvDocument object.
Contact_printas String False The Contact_printas field of the InvDocument object.
Contact_phone1 String False The Contact_phone1 field of the InvDocument object.
Contact_phone2 String False The Contact_phone2 field of the InvDocument object.
Contact_cellphone String False The Contact_cellphone field of the InvDocument object.
Contact_pager String False The Contact_pager field of the InvDocument object.
Contact_fax String False The Contact_fax field of the InvDocument object.
Contact_email1 String False The Contact_email1 field of the InvDocument object.
Contact_email2 String False The Contact_email2 field of the InvDocument object.
Contact_url1 String False The Contact_url1 field of the InvDocument object.
Contact_url2 String False The Contact_url2 field of the InvDocument object.
Contact_visible Boolean False The Contact_visible field of the InvDocument object.
Contact_mailaddress_address1 String False The Contact_mailaddress_address1 field of the InvDocument object.
Contact_mailaddress_address2 String False The Contact_mailaddress_address2 field of the InvDocument object.
Contact_mailaddress_city String False The Contact_mailaddress_city field of the InvDocument object.
Contact_mailaddress_state String False The Contact_mailaddress_state field of the InvDocument object.
Contact_mailaddress_zip String False The Contact_mailaddress_zip field of the InvDocument object.
Contact_mailaddress_country String False The Contact_mailaddress_country field of the InvDocument object.
Contact_mailaddress_countrycode String False The Contact_mailaddress_countrycode field of the InvDocument object.
Shiptokey String False The Shiptokey field of the InvDocument object.
Shipto_contactname String False The Shipto_contactname field of the InvDocument object.
Shipto_prefix String False The Shipto_prefix field of the InvDocument object.
Shipto_firstname String False The Shipto_firstname field of the InvDocument object.
Shipto_initial String False The Shipto_initial field of the InvDocument object.
Shipto_lastname String False The Shipto_lastname field of the InvDocument object.
Shipto_companyname String False The Shipto_companyname field of the InvDocument object.
Shipto_printas String False The Shipto_printas field of the InvDocument object.
Shipto_phone1 String False The Shipto_phone1 field of the InvDocument object.
Shipto_phone2 String False The Shipto_phone2 field of the InvDocument object.
Shipto_cellphone String False The Shipto_cellphone field of the InvDocument object.
Shipto_pager String False The Shipto_pager field of the InvDocument object.
Shipto_fax String False The Shipto_fax field of the InvDocument object.
Shipto_email1 String False The Shipto_email1 field of the InvDocument object.
Shipto_email2 String False The Shipto_email2 field of the InvDocument object.
Shipto_url1 String False The Shipto_url1 field of the InvDocument object.
Shipto_url2 String False The Shipto_url2 field of the InvDocument object.
Shipto_visible Boolean False The Shipto_visible field of the InvDocument object.
Shipto_mailaddress_address1 String False The Shipto_mailaddress_address1 field of the InvDocument object.
Shipto_mailaddress_address2 String False The Shipto_mailaddress_address2 field of the InvDocument object.
Shipto_mailaddress_city String False The Shipto_mailaddress_city field of the InvDocument object.
Shipto_mailaddress_state String False The Shipto_mailaddress_state field of the InvDocument object.
Shipto_mailaddress_zip String False The Shipto_mailaddress_zip field of the InvDocument object.
Shipto_mailaddress_country String False The Shipto_mailaddress_country field of the InvDocument object.
Shipto_mailaddress_countrycode String False The Shipto_mailaddress_countrycode field of the InvDocument object.
Billtokey String False The Billtokey field of the InvDocument object.
Billto_contactname String False The Billto_contactname field of the InvDocument object.
Billto_prefix String False The Billto_prefix field of the InvDocument object.
Billto_firstname String False The Billto_firstname field of the InvDocument object.
Billto_initial String False The Billto_initial field of the InvDocument object.
Billto_lastname String False The Billto_lastname field of the InvDocument object.
Billto_companyname String False The Billto_companyname field of the InvDocument object.
Billto_printas String False The Billto_printas field of the InvDocument object.
Billto_phone1 String False The Billto_phone1 field of the InvDocument object.
Billto_phone2 String False The Billto_phone2 field of the InvDocument object.
Billto_cellphone String False The Billto_cellphone field of the InvDocument object.
Billto_pager String False The Billto_pager field of the InvDocument object.
Billto_fax String False The Billto_fax field of the InvDocument object.
Billto_email1 String False The Billto_email1 field of the InvDocument object.
Billto_email2 String False The Billto_email2 field of the InvDocument object.
Billto_url1 String False The Billto_url1 field of the InvDocument object.
Billto_url2 String False The Billto_url2 field of the InvDocument object.
Billto_visible Boolean False The Billto_visible field of the InvDocument object.
Billto_mailaddress_address1 String False The Billto_mailaddress_address1 field of the InvDocument object.
Billto_mailaddress_address2 String False The Billto_mailaddress_address2 field of the InvDocument object.
Billto_mailaddress_city String False The Billto_mailaddress_city field of the InvDocument object.
Billto_mailaddress_state String False The Billto_mailaddress_state field of the InvDocument object.
Billto_mailaddress_zip String False The Billto_mailaddress_zip field of the InvDocument object.
Billto_mailaddress_country String False The Billto_mailaddress_country field of the InvDocument object.
Billto_mailaddress_countrycode String False The Billto_mailaddress_countrycode field of the InvDocument object.
Message String False The Message field of the InvDocument object.
Prrecordkey String False The Prrecordkey field of the InvDocument object.
Invbatchkey String False The Invbatchkey field of the InvDocument object.
Prinvbatchkey String False The Prinvbatchkey field of the InvDocument object.
Printed String False The Printed field of the InvDocument object.
Backorder String False The Backorder field of the InvDocument object.
Subtotal Double False The Subtotal field of the InvDocument object.
Total Double False The Total field of the InvDocument object.
Entglgroup Int64 False The Entglgroup field of the InvDocument object.
Currency String False The Currency field of the InvDocument object.
Exchratedate Datetime False The Exchratedate field of the InvDocument object.
Exchratetypes_name String False The Exchratetypes_name field of the InvDocument object.
Exchrate Double False The Exchrate field of the InvDocument object.
Schopkey String False The Schopkey field of the InvDocument object.
Salescontract String False The Salescontract field of the InvDocument object.
Usedascontract String False The Usedascontract field of the InvDocument object.
Trx_subtotal Double False The Trx_subtotal field of the InvDocument object.
Trx_total Double False The Trx_total field of the InvDocument object.
Exch_rate_type_id String False The Exch_rate_type_id field of the InvDocument object.
Reneweddoc String False The Reneweddoc field of the InvDocument object.
Basecurr String False The Basecurr field of the InvDocument object.
Systemgenerated String False The Systemgenerated field of the InvDocument object.
Invoicerunkey Int64 False The Invoicerunkey field of the InvDocument object.
Docpar_in_out String False The Docpar_in_out field of the InvDocument object.
Megaentitykey Int64 False The Megaentitykey field of the InvDocument object.
Megaentityid String False The Megaentityid field of the InvDocument object.
Megaentityname String False The Megaentityname field of the InvDocument object.
Record_url String False The Record_url field of the InvDocument object.

InvDocumentParams

Retrieves InvDocumentParams report data.

Columns
Name Type ReadOnly Description
Recordno [KEY] String False The Recordno field of the InvDocumentParams object.
Docid String False The Docid field of the InvDocumentParams object.
Description String False The Description field of the InvDocumentParams object.
Docclass String False The Docclass field of the InvDocumentParams object.
Category String False The Category field of the InvDocumentParams object.
Userperm Boolean False The Userperm field of the InvDocumentParams object.
Edittype String False The Edittype field of the InvDocumentParams object.
Deltype String False The Deltype field of the InvDocumentParams object.
Enable_seqnum Boolean False The Enable_seqnum field of the InvDocumentParams object.
Sequence String False The Sequence field of the InvDocumentParams object.
Preserve_seqnum Boolean False The Preserve_seqnum field of the InvDocumentParams object.
Inherit_source_docno Boolean False The Inherit_source_docno field of the InvDocumentParams object.
Updates_inv String False The Updates_inv field of the InvDocumentParams object.
In_out String False The In_out field of the InvDocumentParams object.
Convtype String False The Convtype field of the InvDocumentParams object.
Updates_cost Boolean False The Updates_cost field of the InvDocumentParams object.
Pricelistid String False The Pricelistid field of the InvDocumentParams object.
Special_pricelistid String False The Special_pricelistid field of the InvDocumentParams object.
Show_totals Boolean False The Show_totals field of the InvDocumentParams object.
Locoverride Boolean False The Locoverride field of the InvDocumentParams object.
Deptoverride Boolean False The Deptoverride field of the InvDocumentParams object.
Xsltemplate String False The Xsltemplate field of the InvDocumentParams object.
Fixed_mesg String False The Fixed_mesg field of the InvDocumentParams object.
Warnonlowqty Boolean False The Warnonlowqty field of the InvDocumentParams object.
Warehouseselmethod String False The Warehouseselmethod field of the InvDocumentParams object.
Default_warehouse String False The Default_warehouse field of the InvDocumentParams object.
Status String False The Status field of the InvDocumentParams object.
Sale_pur_trans String False The Sale_pur_trans field of the InvDocumentParams object.
Cust_vend String False The Cust_vend field of the InvDocumentParams object.
Whencreated Datetime False The Whencreated field of the InvDocumentParams object.
Whenmodified Datetime False The Whenmodified field of the InvDocumentParams object.
Createdby Int64 False The Createdby field of the InvDocumentParams object.
Modifiedby Int64 False The Modifiedby field of the InvDocumentParams object.
Createtype String False The Createtype field of the InvDocumentParams object.
Megaentitykey Int64 False The Megaentitykey field of the InvDocumentParams object.
Megaentityid String False The Megaentityid field of the InvDocumentParams object.
Megaentityname String False The Megaentityname field of the InvDocumentParams object.
Record_url String False The Record_url field of the InvDocumentParams object.

InvPriceList

Retrieves InvPriceList report data.

Columns
Name Type ReadOnly Description
Recordno Int64 False The Recordno field of the InvPriceList object.
Name [KEY] String False The Name field of the InvPriceList object.
Datefrom Datetime False The Datefrom field of the InvPriceList object.
Dateto Datetime False The Dateto field of the InvPriceList object.
Salepurchase String False The Salepurchase field of the InvPriceList object.
Status String False The Status field of the InvPriceList object.
Megaentitykey Int64 False The Megaentitykey field of the InvPriceList object.
Megaentityid String False The Megaentityid field of the InvPriceList object.
Megaentityname String False The Megaentityname field of the InvPriceList object.
Record_url String False The Record_url field of the InvPriceList object.

Item

Retrieves Item report data.

To retrieve multi-warehouse items, set the following:

  • UseLegacy: Set this to true to utilize the legacy API.
  • ReadByName: Set this to true to include the ReadByName clause in the XML request. The warehouseinfo field will not populate without ReadByName being set to True.

Setting ReadByName to true exposes the Warehouseinfo field, which can be used to query for the warehouse details for each item.

SELECT Warehouseinfo FROM Item WHERE Itemid IN (SELECT Itemid FROM Item)
Columns
Name Type ReadOnly Description
Recordno Int64 False The Recordno field of the Item object.
Itemid [KEY] String False The Itemid field of the Item object.
Status String False The Status field of the Item object.
Name String False The Name field of the Item object.
Extended_description String False The Extended_description field of the Item object.
Podescription String False The Podescription field of the Item object.
Sodescription String False The Sodescription field of the Item object.
Productlineid String False The Productlineid field of the Item object.
Cycle String False The Cycle field of the Item object.
Producttype String False The Producttype field of the Item object.
Substituteid String False The Substituteid field of the Item object.
Ship_weight Double False The Ship_weight field of the Item object.
Whenlastsold Datetime False The Whenlastsold field of the Item object.
Whenlastreceived Datetime False The Whenlastreceived field of the Item object.
Incomeacctkey String False The Incomeacctkey field of the Item object.
Expenseacctkey String False The Expenseacctkey field of the Item object.
Invacctkey String False The Invacctkey field of the Item object.
Cogsacctkey String False The Cogsacctkey field of the Item object.
Offsetoeglaccountkey String False The Offsetoeglaccountkey field of the Item object.
Offsetpoglaccountkey String False The Offsetpoglaccountkey field of the Item object.
Deferredrevacctkey String False The Deferredrevacctkey field of the Item object.
Defaultrevrectemplkey String False The Defaultrevrectemplkey field of the Item object.
Allow_backorder String False The Allow_backorder field of the Item object.
Taxable String False The Taxable field of the Item object.
Taxgroup_name String False The Taxgroup_name field of the Item object.
Taxcode String False The Taxcode field of the Item object.
Cost_method String False The Cost_method field of the Item object.
Standard_cost String False The Standard_cost field of the Item object.
Average_cost String False The Average_cost field of the Item object.
Uomgrp String False The Uomgrp field of the Item object.
Uom_invuomdetail_unit String False The Uom_invuomdetail_unit field of the Item object.
Uom_pouomdetail_unit String False The Uom_pouomdetail_unit field of the Item object.
Uom_pouomdetail_convfactor Double False The Uom_pouomdetail_convfactor field of the Item object.
Uom_souomdetail_unit String False The Uom_souomdetail_unit field of the Item object.
Uom_souomdetail_convfactor Double False The Uom_souomdetail_convfactor field of the Item object.
Default_warehouse String False The Default_warehouse field of the Item object.
Warehouseinfo String False The Itemwarehouse field of the Item object. Only exposed when ReadByName is set to True.
Glgroup String False The Glgroup field of the Item object.
Note String False The Note field of the Item object.
Inv_precision String False The Inv_precision field of the Item object.
Po_precision String False The Po_precision field of the Item object.
So_precision String False The So_precision field of the Item object.
Itemtype String False The Itemtype field of the Item object.
Enable_serialno String False The Enable_serialno field of the Item object.
Serial_maskkey String False The Serial_maskkey field of the Item object.
Enable_lot_category String False The Enable_lot_category field of the Item object.
Lot_categorykey String False The Lot_categorykey field of the Item object.
Enable_bins String False The Enable_bins field of the Item object.
Enable_expiration String False The Enable_expiration field of the Item object.
Upc String False The Upc field of the Item object.
Revposting String False The Revposting field of the Item object.
Revprinting String False The Revprinting field of the Item object.
Vsoecategory String False The Vsoecategory field of the Item object.
Vsoedlvrstatus String False The Vsoedlvrstatus field of the Item object.
Vsoerevdefstatus String False The Vsoerevdefstatus field of the Item object.
Hasstartenddates Boolean False The Hasstartenddates field of the Item object.
Termperiod String False The Termperiod field of the Item object.
Totalperiods Int64 False The Totalperiods field of the Item object.
Computeforshortterm Boolean False The Computeforshortterm field of the Item object.
Renewalmacroid String False The Renewalmacroid field of the Item object.
Renewalmacrokey Int64 False The Renewalmacrokey field of the Item object.
Itemglgroup_incomeaccount_acctno String False The Itemglgroup_incomeaccount_acctno field of the Item object.
Itemglgroup_expenseaccount_acctno String False The Itemglgroup_expenseaccount_acctno field of the Item object.
Itemglgroup_inventoryaccount_acctno String False The Itemglgroup_inventoryaccount_acctno field of the Item object.
Itemglgroup_cogsaccount_acctno String False The Itemglgroup_cogsaccount_acctno field of the Item object.
Itemglgroup_defrrglaccount_acctno String False The Itemglgroup_defrrglaccount_acctno field of the Item object.
Itemglgroup_oeglaccount_acctno String False The Itemglgroup_oeglaccount_acctno field of the Item object.
Itemglgroup_poglaccount_acctno String False The Itemglgroup_poglaccount_acctno field of the Item object.
Whencreated Datetime False The Whencreated field of the Item object.
Whenmodified Datetime False The Whenmodified field of the Item object.
Createdby Int64 False The Createdby field of the Item object.
Modifiedby Int64 False The Modifiedby field of the Item object.
Ionorder Double False The Ionorder field of the Item object.
Ionhand Double False The Ionhand field of the Item object.
Ionhold Double False The Ionhold field of the Item object.
Glgrpkey Int64 False The Glgrpkey field of the Item object.
Uomgrpkey Int64 False The Uomgrpkey field of the Item object.
Taxgroupkey Int64 False The Taxgroupkey field of the Item object.
Megaentitykey Int64 False The Megaentitykey field of the Item object.
Megaentityid String False The Megaentityid field of the Item object.
Megaentityname String False The Megaentityname field of the Item object.
Record_url String False The Record_url field of the Item object.

ItemTaxGroup

Retrieves ItemTaxGroup report data.

Columns
Name Type ReadOnly Description
Name [KEY] String False The Name field of the ItemTaxGroup object.
Recordno Int64 False The Recordno field of the ItemTaxGroup object.
Grouptype String False The Grouptype field of the ItemTaxGroup object.
Whencreated Datetime False The Whencreated field of the ItemTaxGroup object.
Whenmodified Datetime False The Whenmodified field of the ItemTaxGroup object.
Createdby Int64 False The Createdby field of the ItemTaxGroup object.
Modifiedby Int64 False The Modifiedby field of the ItemTaxGroup object.
Megaentitykey Int64 False The Megaentitykey field of the ItemTaxGroup object.
Megaentityid String False The Megaentityid field of the ItemTaxGroup object.
Megaentityname String False The Megaentityname field of the ItemTaxGroup object.
Record_url String False The Record_url field of the ItemTaxGroup object.

ItemWarehouseInfo

Retrieves Item Warehouse data.

Columns
Name Type ReadOnly Description
Recordno Int64 False The Recordno field of the Item object.
Itemid [KEY] String False The Itemid field of the Item object.
Warehouseid String False The Warehouseid field of the Item object.
DefaultSubsection String False The DefaultSubsection field of the Item object.
Cycle String False The Cycle field of the Item object.
StandardCost String False The StandardCost field of the Item object.
LastCost String False The LastCost field of the Item object.
AverageCost String False The AverageCost field of the Item object.
ReorderMethod String False The ReorderMethod field of the Item object.
EconomicOrderQty Int64 False The EconomicOrderQty field of the Item object.
ReorderPoint Int64 False The ReorderPoint field of the Item object.
ReorderQty Int64 False The ReorderQty field of the Item object.
MinOrderQty Int64 False The MinOrderQty field of the Item object.
MaxOrderQty Int64 False The MaxOrderQty field of the Item object.
MaxStock Int64 False The MaxStock field of the Item object.
MinStock Int64 False The MinStock field of the Item object.
DateLastsold Datetime False The DateLastsold field of the Item object.
DateLastreceived Datetime False The DateLastreceived field of the Item object.
DefaultAisle String False The DefaultAisle field of the Item object.
DefaultRow String False The DefaultRow field of the Item object.
DefaultBin String False The DefaultBin field of the Item object.
Wonorder Decimal False The Wonorder field of the Item object.
Wintransit Decimal False The Wintransit field of the Item object.
Wonhand Decimal False The Wonhand field of the Item object.
Wonhold Decimal False The Wonhold field of the Item object.
Wreserved Decimal False The Wreserved field of the Item object.
Wallocated Decimal False The Wallocated field of the Item object.
WhseCurrency String False The WhseCurrency field of the Item object.
SafetyStock Int64 False The SafetyStock field of the Item object.
ReplenishmentMethod String False The ReplenishmentMethod field of the Item object.
EnableReplenishment Bool False The EnableReplenishment field of the Item object.
RecordUrl String False The RecordUrl field of the Item object.

Journal

Retrieves Journal report data.

Columns
Name Type ReadOnly Description
RecordNUM Int64 False The Record# field of the Journal object.
Symbol String False The Symbol field of the Journal object.
Title [KEY] String False The Title field of the Journal object.
Status String False The Status field of the Journal object.
Whencreated Datetime False The Whencreated field of the Journal object.
Whenmodified Datetime False The Whenmodified field of the Journal object.
Createdby Int64 False The Createdby field of the Journal object.
Modifiedby Int64 False The Modifiedby field of the Journal object.
Record_url String False The Record_url field of the Journal object.

Location

Retrieves Location report data.

Columns
Name Type ReadOnly Description
Locationid [KEY] String False The Locationid field of the Location object.
Recordno Int64 False The Recordno field of the Location object.
Name String False The Name field of the Location object.
Parentid String False The Parentid field of the Location object.
Supervisorname String False The Supervisorname field of the Location object.
Supervisorid String False The Supervisorid field of the Location object.
Contactinfo_contactname String False The Contactinfo_contactname field of the Location object.
Contactinfo_printas String False The Contactinfo_printas field of the Location object.
Contactinfo_phone1 String False The Contactinfo_phone1 field of the Location object.
Contactinfo_phone2 String False The Contactinfo_phone2 field of the Location object.
Contactinfo_email1 String False The Contactinfo_email1 field of the Location object.
Contactinfo_email2 String False The Contactinfo_email2 field of the Location object.
Contactinfo_fax String False The Contactinfo_fax field of the Location object.
Contactinfo_mailaddress_address1 String False The Contactinfo_mailaddress_address1 field of the Location object.
Contactinfo_mailaddress_address2 String False The Contactinfo_mailaddress_address2 field of the Location object.
Contactinfo_mailaddress_city String False The Contactinfo_mailaddress_city field of the Location object.
Contactinfo_mailaddress_state String False The Contactinfo_mailaddress_state field of the Location object.
Contactinfo_mailaddress_zip String False The Contactinfo_mailaddress_zip field of the Location object.
Contactinfo_mailaddress_country String False The Contactinfo_mailaddress_country field of the Location object.
Contactinfo_mailaddress_countrycode String False The Contactinfo_mailaddress_countrycode field of the Location object.
Startdate Datetime False The Startdate field of the Location object.
Enddate Datetime False The Enddate field of the Location object.
Shipto_contactname String False The Shipto_contactname field of the Location object.
Shipto_phone1 String False The Shipto_phone1 field of the Location object.
Shipto_phone2 String False The Shipto_phone2 field of the Location object.
Shipto_mailaddress_address1 String False The Shipto_mailaddress_address1 field of the Location object.
Shipto_mailaddress_address2 String False The Shipto_mailaddress_address2 field of the Location object.
Shipto_mailaddress_city String False The Shipto_mailaddress_city field of the Location object.
Shipto_mailaddress_state String False The Shipto_mailaddress_state field of the Location object.
Shipto_mailaddress_zip String False The Shipto_mailaddress_zip field of the Location object.
Shipto_mailaddress_country String False The Shipto_mailaddress_country field of the Location object.
Shipto_mailaddress_countrycode String False The Shipto_mailaddress_countrycode field of the Location object.
Status String False The Status field of the Location object.
Whencreated Datetime False The Whencreated field of the Location object.
Whenmodified Datetime False The Whenmodified field of the Location object.
Federalid String False The Federalid field of the Location object.
Firstmonth String False The Firstmonth field of the Location object.
Weekstart String False The Weekstart field of the Location object.
Iepayable_account String False The Iepayable_account field of the Location object.
Iepayable_number String False The Iepayable_number field of the Location object.
Iereceivable_account String False The Iereceivable_account field of the Location object.
Iereceivable_number String False The Iereceivable_number field of the Location object.
Message_text String False The Message_text field of the Location object.
Marketing_text String False The Marketing_text field of the Location object.
Footnotetext String False The Footnotetext field of the Location object.
Reportprintas String False The Reportprintas field of the Location object.
Isroot String False The Isroot field of the Location object.
Reserveamt String False The Reserveamt field of the Location object.
Vendorname String False The Vendorname field of the Location object.
Vendorid String False The Vendorid field of the Location object.
Customerid String False The Customerid field of the Location object.
Customername String False The Customername field of the Location object.
Currency String False The Currency field of the Location object.
Has_ie_relation Boolean False The Has_ie_relation field of the Location object.
Custtitle String False The Custtitle field of the Location object.
Businessdays String False The Businessdays field of the Location object.
Weekends String False The Weekends field of the Location object.
Firstmonthtax String False The Firstmonthtax field of the Location object.
Contactkey Int64 False The Contactkey field of the Location object.
Supervisorkey Int64 False The Supervisorkey field of the Location object.
Parentkey Int64 False The Parentkey field of the Location object.
Shiptokey Int64 False The Shiptokey field of the Location object.
Vendentity String False The Vendentity field of the Location object.
Custentity String False The Custentity field of the Location object.
Taxid String False The Taxid field of the Location object.
Createdby Int64 False The Createdby field of the Location object.
Modifiedby Int64 False The Modifiedby field of the Location object.
Record_url String False The Record_url field of the Location object.

Misc_Supporting_Document

Retrieves Misc_Supporting_Document report data.

Columns
Name Type ReadOnly Description
Rcustomer [KEY] String False The Rcustomer field of the Misc_Supporting_Document object.
Rvendor String False The Rvendor field of the Misc_Supporting_Document object.
Record_url String False The Record_url field of the Misc_Supporting_Document object.

OutOfOffice

Retrieves OutOfOffice report data.

Columns
Name Type ReadOnly Description
Recordno [KEY] String False The Recordno field of the OutOfOffice object.
Empoutofofficekey Int64 False The Empoutofofficekey field of the OutOfOffice object.
Description String False The Description field of the OutOfOffice object.
Startdate Datetime False The Startdate field of the OutOfOffice object.
Enddate Datetime False The Enddate field of the OutOfOffice object.
Hoursperday Double False The Hoursperday field of the OutOfOffice object.
Whencreated Datetime False The Whencreated field of the OutOfOffice object.
Whenmodified Datetime False The Whenmodified field of the OutOfOffice object.
Createdby Int64 False The Createdby field of the OutOfOffice object.
Modifiedby Int64 False The Modifiedby field of the OutOfOffice object.
Record_url String False The Record_url field of the OutOfOffice object.

PODocumentParams

Retrieves PODocumentParams report data.

Columns
Name Type ReadOnly Description
Recordno [KEY] String False The Recordno field of the PODocumentParams object.
Docid String False The Docid field of the PODocumentParams object.
Docclass String False The Docclass field of the PODocumentParams object.
Category String False The Category field of the PODocumentParams object.
Description String False The Description field of the PODocumentParams object.
Userperm Boolean False The Userperm field of the PODocumentParams object.
Edittype String False The Edittype field of the PODocumentParams object.
Deltype String False The Deltype field of the PODocumentParams object.
Enable_seqnum Boolean False The Enable_seqnum field of the PODocumentParams object.
Sequence String False The Sequence field of the PODocumentParams object.
Preserve_seqnum Boolean False The Preserve_seqnum field of the PODocumentParams object.
Inherit_source_docno Boolean False The Inherit_source_docno field of the PODocumentParams object.
Updates_inv String False The Updates_inv field of the PODocumentParams object.
In_out String False The In_out field of the PODocumentParams object.
Updates_gl String False The Updates_gl field of the PODocumentParams object.
Convtype String False The Convtype field of the PODocumentParams object.
Updates_cost Boolean False The Updates_cost field of the PODocumentParams object.
Exchratetypes_name String False The Exchratetypes_name field of the PODocumentParams object.
Override_exch_rate_type Boolean False The Override_exch_rate_type field of the PODocumentParams object.
Display_basecurrency Boolean False The Display_basecurrency field of the PODocumentParams object.
Updates_pricelistid String False The Updates_pricelistid field of the PODocumentParams object.
Term_name String False The Term_name field of the PODocumentParams object.
Pricelistid String False The Pricelistid field of the PODocumentParams object.
Special_pricelistid String False The Special_pricelistid field of the PODocumentParams object.
Override_price Boolean False The Override_price field of the PODocumentParams object.
Recallonly Boolean False The Recallonly field of the PODocumentParams object.
Editable_price Boolean False The Editable_price field of the PODocumentParams object.
Show_totals Boolean False The Show_totals field of the PODocumentParams object.
Showexpandedtotals Boolean False The Showexpandedtotals field of the PODocumentParams object.
Enableoverridetax Boolean False The Enableoverridetax field of the PODocumentParams object.
Locoverride Boolean False The Locoverride field of the PODocumentParams object.
Deptoverride Boolean False The Deptoverride field of the PODocumentParams object.
Xsltemplate String False The Xsltemplate field of the PODocumentParams object.
Fixed_mesg String False The Fixed_mesg field of the PODocumentParams object.
Contacttitle1 String False The Contacttitle1 field of the PODocumentParams object.
Showtitle1 Boolean False The Showtitle1 field of the PODocumentParams object.
Alloweditbillto Boolean False The Alloweditbillto field of the PODocumentParams object.
Contacttitle2 String False The Contacttitle2 field of the PODocumentParams object.
Showtitle2 Boolean False The Showtitle2 field of the PODocumentParams object.
Alloweditshipto Boolean False The Alloweditshipto field of the PODocumentParams object.
Convert_units Boolean False The Convert_units field of the PODocumentParams object.
Warnonlowqty Boolean False The Warnonlowqty field of the PODocumentParams object.
Creditlimitcheck Boolean False The Creditlimitcheck field of the PODocumentParams object.
Warehouseselmethod String False The Warehouseselmethod field of the PODocumentParams object.
Default_warehouse String False The Default_warehouse field of the PODocumentParams object.
Status String False The Status field of the PODocumentParams object.
Posttogl Boolean False The Posttogl field of the PODocumentParams object.
Cust_vend String False The Cust_vend field of the PODocumentParams object.
Sale_pur_trans String False The Sale_pur_trans field of the PODocumentParams object.
Force_prices Boolean False The Force_prices field of the PODocumentParams object.
Whencreated Datetime False The Whencreated field of the PODocumentParams object.
Whenmodified Datetime False The Whenmodified field of the PODocumentParams object.
Createdby Int64 False The Createdby field of the PODocumentParams object.
Modifiedby Int64 False The Modifiedby field of the PODocumentParams object.
Createtype String False The Createtype field of the PODocumentParams object.
Megaentitykey Int64 False The Megaentitykey field of the PODocumentParams object.
Megaentityid String False The Megaentityid field of the PODocumentParams object.
Megaentityname String False The Megaentityname field of the PODocumentParams object.
Record_url String False The Record_url field of the PODocumentParams object.

POPriceList

Retrieves POPriceList report data.

Columns
Name Type ReadOnly Description
Recordno Int64 False The Recordno field of the POPriceList object.
Name [KEY] String False The Name field of the POPriceList object.
Datefrom Datetime False The Datefrom field of the POPriceList object.
Dateto Datetime False The Dateto field of the POPriceList object.
Salepurchase String False The Salepurchase field of the POPriceList object.
Status String False The Status field of the POPriceList object.
Megaentitykey Int64 False The Megaentitykey field of the POPriceList object.
Megaentityid String False The Megaentityid field of the POPriceList object.
Megaentityname String False The Megaentityname field of the POPriceList object.
Record_url String False The Record_url field of the POPriceList object.

PositionSkill

Retrieves PositionSkill report data.

Columns
Name Type ReadOnly Description
Recordno Int64 False The Recordno field of the PositionSkill object.
Name [KEY] String False The Name field of the PositionSkill object.
Description String False The Description field of the PositionSkill object.
Status String False The Status field of the PositionSkill object.
Whencreated Datetime False The Whencreated field of the PositionSkill object.
Whenmodified Datetime False The Whenmodified field of the PositionSkill object.
Createdby Int64 False The Createdby field of the PositionSkill object.
Modifiedby Int64 False The Modifiedby field of the PositionSkill object.
Megaentitykey Int64 False The Megaentitykey field of the PositionSkill object.
Megaentityid String False The Megaentityid field of the PositionSkill object.
Megaentityname String False The Megaentityname field of the PositionSkill object.
Record_url String False The Record_url field of the PositionSkill object.

ProductLine

Retrieves ProductLine report data.

Columns
Name Type ReadOnly Description
Recordno Int64 False The Recordno field of the ProductLine object.
ProductLineid [KEY] String False The ProductLineid field of the ProductLine object.
Description String False The Description field of the ProductLine object.
Parentline String False The Parentline field of the ProductLine object.
Status String False The Status field of the ProductLine object.
Whencreated Datetime False The Whencreated field of the ProductLine object.
Whenmodified Datetime False The Whenmodified field of the ProductLine object.
Createdby Int64 False The Createdby field of the ProductLine object.
Modifiedby Int64 False The Modifiedby field of the ProductLine object.
Megaentitykey Int64 False The Megaentitykey field of the ProductLine object.
Megaentityid String False The Megaentityid field of the ProductLine object.
Megaentityname String False The Megaentityname field of the ProductLine object.
Record_url String False The Record_url field of the ProductLine object.

Project

Retrieves Project report data.

Columns
Name Type ReadOnly Description
Recordno Int64 False The Recordno field of the Project object.
Projectid [KEY] String False The Projectid field of the Project object.
Name String False The Name field of the Project object.
Description String False The Description field of the Project object.
Currency String False The Currency field of the Project object.
Projectcategory String False The Projectcategory field of the Project object.
Projectstatuskey Int64 False The Projectstatuskey field of the Project object.
Projectstatus String False The Projectstatus field of the Project object.
Preventtimesheet Boolean False The Preventtimesheet field of the Project object.
Preventexpense Boolean False The Preventexpense field of the Project object.
Preventappo Boolean False The Preventappo field of the Project object.
Preventgeninvoice Boolean False The Preventgeninvoice field of the Project object.
Status String False The Status field of the Project object.
Begindate Datetime False The Begindate field of the Project object.
Enddate Datetime False The Enddate field of the Project object.
Budgetamount Double False The Budgetamount field of the Project object.
Contractamount Double False The Contractamount field of the Project object.
Actualamount Double False The Actualamount field of the Project object.
Budgetqty Double False The Budgetqty field of the Project object.
Estqty Double False The Estqty field of the Project object.
Actualqty Double False The Actualqty field of the Project object.
Approvedqty Double False The Approvedqty field of the Project object.
Remainingqty Double False The Remainingqty field of the Project object.
Percentcomplete Double False The Percentcomplete field of the Project object.
Obspercentcomplete Double False The Obspercentcomplete field of the Project object.
Billingtype String False The Billingtype field of the Project object.
Sonumber String False The Sonumber field of the Project object.
Ponumber String False The Ponumber field of the Project object.
Poamount Double False The Poamount field of the Project object.
Pqnumber String False The Pqnumber field of the Project object.
Sfdckey String False The Sfdckey field of the Project object.
Qarrowkey String False The Qarrowkey field of the Project object.
Oakey String False The Oakey field of the Project object.
Parentkey Int64 False The Parentkey field of the Project object.
Parentid String False The Parentid field of the Project object.
Parentname String False The Parentname field of the Project object.
Invoicewithparent Boolean False The Invoicewithparent field of the Project object.
Customerkey Int64 False The Customerkey field of the Project object.
Customerid String False The Customerid field of the Project object.
Customername String False The Customername field of the Project object.
Salescontactkey Int64 False The Salescontactkey field of the Project object.
Salescontactid String False The Salescontactid field of the Project object.
Salescontactname String False The Salescontactname field of the Project object.
Projecttypekey Int64 False The Projecttypekey field of the Project object.
Projecttype String False The Projecttype field of the Project object.
Managerkey Int64 False The Managerkey field of the Project object.
Managerid String False The Managerid field of the Project object.
Managercontactname String False The Managercontactname field of the Project object.
Projectdeptkey Int64 False The Projectdeptkey field of the Project object.
Departmentid String False The Departmentid field of the Project object.
Departmentname String False The Departmentname field of the Project object.
Projectlocationkey Int64 False The Projectlocationkey field of the Project object.
Locationid String False The Locationid field of the Project object.
Locationname String False The Locationname field of the Project object.
Contactinfo_contactname String False The Contactinfo_contactname field of the Project object.
Shipto_contactname String False The Shipto_contactname field of the Project object.
Billto_contactname String False The Billto_contactname field of the Project object.
Termskey Int64 False The Termskey field of the Project object.
Termname String False The Termname field of the Project object.
Docnumber String False The Docnumber field of the Project object.
Custuserkey Int64 False The Custuserkey field of the Project object.
Custuserid String False The Custuserid field of the Project object.
Whencreated Datetime False The Whencreated field of the Project object.
Whenmodified Datetime False The Whenmodified field of the Project object.
Createdby Int64 False The Createdby field of the Project object.
Modifiedby Int64 False The Modifiedby field of the Project object.
Budgetedcost Double False The Budgetedcost field of the Project object.
Classid String False The Classid field of the Project object.
Classname String False The Classname field of the Project object.
Classkey Int64 False The Classkey field of the Project object.
Userrestrictions String False The Userrestrictions field of the Project object.
Billableexpdefault Boolean False The Billableexpdefault field of the Project object.
Billableappodefault Boolean False The Billableappodefault field of the Project object.
Budgetid String False The Budgetid field of the Project object.
Budgetkey Int64 False The Budgetkey field of the Project object.
Billingrate Double False The Billingrate field of the Project object.
Billingpricing String False The Billingpricing field of the Project object.
Expenserate Double False The Expenserate field of the Project object.
Expensepricing String False The Expensepricing field of the Project object.
Poaprate Double False The Poaprate field of the Project object.
Poappricing String False The Poappricing field of the Project object.
Contactkey Int64 False The Contactkey field of the Project object.
Shiptokey Int64 False The Shiptokey field of the Project object.
Billtokey Int64 False The Billtokey field of the Project object.
Invoicemessage String False The Invoicemessage field of the Project object.
Invoicecurrency String False The Invoicecurrency field of the Project object.
Megaentitykey Int64 False The Megaentitykey field of the Project object.
Megaentityid String False The Megaentityid field of the Project object.
Megaentityname String False The Megaentityname field of the Project object.
Record_url String False The Record_url field of the Project object.

PjEstimate

Retreives Project Estimate report data

Table Specific Information

When updating the PjEstimate table, Sage Intacct needs to have LocationsId or ClientID connection properties set if updating IsPrimary field. One Entity-Level Project Estimate cannot be updated from the Top-Level. Therefore when updating the Project Estimate table, you must provide an ID representing the Entity to which the Project Estimate relates. The Above properties must be configured to the value of the MegaEntityId column, which is found in the ProjectEstimate table.

Columns
Name Type ReadOnly Description
Recordno [KEY] Long True Record number
Pjestimateid String False Estimate ID
Description String False Description
Estimatedate Date False Estimate date
Isprimary Bool False Primary
Status String False Active/Inactive/Finalized
Posted Bool False Post to GL budgets
Glbudgetheaderkey Long True GL Budget Header Key
Glbudgetid String False GL budget ID
Postto String False Posting period
Projectkey Long True Project key
Projectid String False Project ID
Projectname String True Project name
Pjestimatetypekey Long True Estimate type key
Pjestimatetypename String False Estimate type
Selectedwftypes String True Selected estimate entry workflow types
Currency String True Currency
Projectbegindate Date True Project begin date
Projectenddate Date True Project end date
Total Decimal True Estimate total
Locationkey Long True Location key
Locationid String True Location
Locationname String True Location name
Parentprojectkey Long True Parent project key
Parentprojectid String True Parent project ID
Parentprojectname String True Parent project name
Customerkey Long True Customer key
Customerid String True Customer
Customername String True Customer name
Supdocid String False Attachment
Whenmodified Datetime True timestamp marking last time this was changed.
Whencreated Datetime True timestamp marking last time this was created.
Modifiedby Long True User who modified this.
Createdby Long True User who created this.
Megaentitykey Long True No description specified
Megaentityid String True No description specified
Megaentityname String True No description specified

ProjectGroup

Retrieves ProjectGroup report data.

Columns
Name Type ReadOnly Description
Recordno [KEY] String False The Recordno field of the ProjectGroup object.
Id String False The ID field of the ProjectGroup object.
Name String False The Name field of the ProjectGroup object.
Description String False The Description field of the ProjectGroup object.
Grouptype String False The Grouptype field of the ProjectGroup object.
Whencreated Datetime False The Whencreated field of the ProjectGroup object.
Whenmodified Datetime False The Whenmodified field of the ProjectGroup object.
Createdby Int64 False The Createdby field of the ProjectGroup object.
Modifiedby Int64 False The Modifiedby field of the ProjectGroup object.
Megaentitykey Int64 False The Megaentitykey field of the ProjectGroup object.
Megaentityid String False The Megaentityid field of the ProjectGroup object.
Megaentityname String False The Megaentityname field of the ProjectGroup object.
Record_url String False The Record_url field of the ProjectGroup object.
Memberfilters String False The filters that are applied to a ProjectGroup object.

ProjectResources

Retrieves ProjectResources report data.

Columns
Name Type ReadOnly Description
Recordno [KEY] String False The Recordno field of the ProjectResources object.
Whencreated Datetime False The Whencreated field of the ProjectResources object.
Whenmodified Datetime False The Whenmodified field of the ProjectResources object.
Createdby Int64 False The Createdby field of the ProjectResources object.
Modifiedby Int64 False The Modifiedby field of the ProjectResources object.
Projectkey Int64 False The Projectkey field of the ProjectResources object.
Projectid String False The Projectid field of the ProjectResources object.
Projectname String False The Projectname field of the ProjectResources object.
Employeekey Int64 False The Employeekey field of the ProjectResources object.
Employeeid String False The Employeeid field of the ProjectResources object.
Employeecontactname String False The Employeecontactname field of the ProjectResources object.
Itemkey Int64 False The Itemkey field of the ProjectResources object.
Itemid String False The Itemid field of the ProjectResources object.
Itemname String False The Itemname field of the ProjectResources object.
Description String False The Description field of the ProjectResources object.
Startdate Datetime False The Startdate field of the ProjectResources object.
Billingpricing String False The Billingpricing field of the ProjectResources object.
Billingrate Double False The Billingrate field of the ProjectResources object.
Expensepricing String False The Expensepricing field of the ProjectResources object.
Expenserate Double False The Expenserate field of the ProjectResources object.
Poappricing String False The Poappricing field of the ProjectResources object.
Poaprate Double False The Poaprate field of the ProjectResources object.
Record_url String False The Record_url field of the ProjectResources object.

ProjectStatus

Retrieves ProjectStatus report data.

Columns
Name Type ReadOnly Description
Name [KEY] String False The Name field of the ProjectStatus object.
Description String False The Description field of the ProjectStatus object.
Preventtimesheet Boolean False The Preventtimesheet field of the ProjectStatus object.
Preventexpense Boolean False The Preventexpense field of the ProjectStatus object.
Preventappo Boolean False The Preventappo field of the ProjectStatus object.
Preventgeninvoice Boolean False The Preventgeninvoice field of the ProjectStatus object.
Status String False The Status field of the ProjectStatus object.
Recordno Int64 False The Recordno field of the ProjectStatus object.
Whencreated Datetime False The Whencreated field of the ProjectStatus object.
Whenmodified Datetime False The Whenmodified field of the ProjectStatus object.
Createdby Int64 False The Createdby field of the ProjectStatus object.
Modifiedby Int64 False The Modifiedby field of the ProjectStatus object.
Megaentitykey Int64 False The Megaentitykey field of the ProjectStatus object.
Megaentityid String False The Megaentityid field of the ProjectStatus object.
Megaentityname String False The Megaentityname field of the ProjectStatus object.
Record_url String False The Record_url field of the ProjectStatus object.

ProjectTransactionRule

Retrieves ProjectTransactionRule report data.

Columns
Name Type ReadOnly Description
Recordno [KEY] String False The Recordno field of the ProjectTransactionRule object.
Projectkey Int64 False The Projectkey field of the ProjectTransactionRule object.
Projectid String False The Projectid field of the ProjectTransactionRule object.
Rulekey Int64 False The Rulekey field of the ProjectTransactionRule object.
Rulename String False The Rulename field of the ProjectTransactionRule object.
Whencreated Datetime False The Whencreated field of the ProjectTransactionRule object.
Whenmodified Datetime False The Whenmodified field of the ProjectTransactionRule object.
Createdby Int64 False The Createdby field of the ProjectTransactionRule object.
Modifiedby Int64 False The Modifiedby field of the ProjectTransactionRule object.
Record_url String False The Record_url field of the ProjectTransactionRule object.

ProjectType

Retrieves ProjectType report data.

Columns
Name Type ReadOnly Description
Name [KEY] String False The Name field of the ProjectType object.
Parent_name String False The Parent_name field of the ProjectType object.
Status String False The Status field of the ProjectType object.
Recordno Int64 False The Recordno field of the ProjectType object.
Whencreated Datetime False The Whencreated field of the ProjectType object.
Whenmodified Datetime False The Whenmodified field of the ProjectType object.
Createdby Int64 False The Createdby field of the ProjectType object.
Modifiedby Int64 False The Modifiedby field of the ProjectType object.
Megaentitykey Int64 False The Megaentitykey field of the ProjectType object.
Megaentityid String False The Megaentityid field of the ProjectType object.
Megaentityname String False The Megaentityname field of the ProjectType object.
Record_url String False The Record_url field of the ProjectType object.

Ratetable

Retrieves Ratetable report data.

Table Specific Information

To retrieve information from the Ratetable table, Sage Intacct needs to have the Construction subscription enabled and the EnableSubscriptions connection property set.

Columns
Name Type ReadOnly Description
Recordno [KEY] Long True Record number
Ratetableid String False Rate table ID
Name String False Rate table name
Description String False Description
Status String False Active or inactive
Whencreated Datetime True Timestamp marking last time this was created.
Whenmodified Datetime True Timestamp marking last time this was changed.
Createdby Long True User who created this.
Modifiedby Long True User who modified this.
Megaentitykey Long True Created at - Entity key
Megaentityid String True Created at - Entity ID
Megaentityname String True Created at - Entity name
Record_url String True A portable, user-independent, deep-link URL for viewing this record

Ratetableapentry

Retrieves Ratetableapentry report data

Table Specific Information

To retrieve information from the Ratetablepoentry table, Sage Intacct needs to have the Construction subscription enabled and the EnableSubscriptions connection property set.

Columns
Name Type ReadOnly Description
Recordno [KEY] Long True Record number
Lineno Long True Line number
Ratetablekey Long True Rate table key
Ratetableid String False Rate table ID
Ratetablename String False Rate table name
Description String False Description
Whencreated Datetime True Timestamp marking last time this was created.
Whenmodified Datetime True Timestamp marking last time this was changed.
Createdby Long True User who created this.
Modifiedby Long True User who modified this.
Standardtaskid String False Standard cost code ID
Standardtaskkey Long True Standard cost code key
Standardtaskname String False Standard cost code name
Standardcosttypeid String False Standard cost type ID
Standardcosttypekey Long True Standard cost type key
Standardcosttypename String False Standard cost type name
Accumulationtypekey Long True Accumulation type key
Accumulationtypename String False Accumulation type name
Locationkey Long True Location key
Location String False Location
Locationname String False Location name
Departmentkey Long True Department key
Department String False Department
Departmenttitle String False Department title
Startdate Date False Start date
Markuppct Decimal False Markup percent
Projectdimkey Long False Projectdimkey
Projectid String False Job
Projectname String False Job name
Customerdimkey Long False Customerdimkey
Customerid String False Customer
Customername String False Customer name
Vendordimkey Long False Vendordimkey
Vendorid String False Vendor
Vendorname String False Vendor name
Employeedimkey Long False Employeedimkey
Employeeid String False Employee
Employeename String False Employee name
Itemdimkey Long False Itemdimkey
Itemid String False Item
Itemname String False Item name
Taskdimkey Long False Taskdimkey
Taskid String False Cost Code
Taskname String False Cost Code name
Costtypedimkey Long False Costtypedimkey
Costtypeid String False Cost type
Costtypename String False Cost type name
Record_url String True A portable, user-independent, deep-link URL for viewing this record

Ratetableccentry

Retrieves Ratetableccentry report data.

Table Specific Information

To retrieve information from the Ratetableccentry table, Sage Intacct needs to have the Construction subscription enabled and the EnableSubscriptions connection property set.

Columns
Name Type ReadOnly Description
Recordno [KEY] Long True Record number
Lineno Long True Line number
Ratetablekey Long True Rate table key
Ratetableid String False Rate table ID
Ratetablename String False Rate table name
Description String False Description
Whencreated Datetime True Timestamp marking last time this was created.
Whenmodified Datetime True Timestamp marking last time this was changed.
Createdby Long True User who created this.
Modifiedby Long True User who modified this.
Standardtaskid String False Standard cost code ID
Standardtaskkey Long True Standard cost code key
Standardtaskname String False Standard cost code name
Standardcosttypeid String False Standard cost type ID
Standardcosttypekey Long True Standard cost type key
Standardcosttypename String False Standard cost type name
Accumulationtypekey Long True Accumulation type key
Accumulationtypename String False Accumulation type name
Locationkey Long True Location key
Location String False Location
Locationname String False Location name
Departmentkey Long True Department key
Department String False Department
Departmenttitle String False Department title
Startdate Date False Start date
Markuppct Decimal False Markup percent
Projectdimkey Long False Projectdimkey
Projectid String False Job
Projectname String False Job name
Customerdimkey Long False Customerdimkey
Customerid String False Customer
Customername String False Customer name
Vendordimkey Long False Vendordimkey
Vendorid String False Vendor
Vendorname String False Vendor name
Employeedimkey Long False Employeedimkey
Employeeid String False Employee
Employeename String False Employee name
Itemdimkey Long False Itemdimkey
Itemid String False Item
Itemname String False Item name
Taskdimkey Long False Taskdimkey
Taskid String False Cost Code
Taskname String False Cost Code name
Costtypedimkey Long False Costtypedimkey
Costtypeid String False Cost type
Costtypename String False Cost type name
Record_url String True A portable, user-independent, deep-link URL for viewing this record

Ratetableexpenseentry

Retrieves Ratetableexpenseentry report data.

Table Specific Information

To retrieve information from the Ratetable table, Sage Intacct needs to have the Construction subscription enabled and the EnableSubscriptions connection property set.

Columns
Name Type ReadOnly Description
Recordno [KEY] Long True Record number
Lineno Long True Line number
Ratetablekey Long True Rate table key
Ratetableid String False Rate table ID
Ratetablename String False Rate table name
Description String False Description
Whencreated Datetime True Timestamp marking last time this was created.
Whenmodified Datetime True Timestamp marking last time this was changed.
Createdby Long True User who created this.
Modifiedby Long True User who modified this.
Standardtaskid String False Standard cost code ID
Standardtaskkey Long True Standard cost code key
Standardtaskname String False Standard cost code name
Standardcosttypeid String False Standard cost type ID
Standardcosttypekey Long True Standard cost type key
Standardcosttypename String False Standard cost type name
Accumulationtypekey Long True Accumulation type key
Accumulationtypename String False Accumulation type name
Locationkey Long True Location key
Location String False Location
Locationname String False Location name
Departmentkey Long True Department key
Department String False Department
Departmenttitle String False Department title
Startdate Date False Start date
Markuppct Decimal False Markup percent
Projectdimkey Long False Projectdimkey
Projectid String False Job
Projectname String False Job name
Customerdimkey Long False Customerdimkey
Customerid String False Customer
Customername String False Customer name
Vendordimkey Long False Vendordimkey
Vendorid String False Vendor
Vendorname String False Vendor name
Employeedimkey Long False Employeedimkey
Employeeid String False Employee
Employeename String False Employee name
Itemdimkey Long False Itemdimkey
Itemid String False Item
Itemname String False Item name
Taskdimkey Long False Taskdimkey
Taskid String False Cost Code
Taskname String False Cost Code name
Costtypedimkey Long False Costtypedimkey
Costtypeid String False Cost type
Costtypename String False Cost type name
Record_url String True A portable, user-independent, deep-link URL for viewing this record

Ratetableglentry

Retrieves Ratetableglentry report data.

Table Specific Information

To retrieve information from the Ratetableglentry table, Sage Intacct needs to have the Construction subscription enabled and the EnableSubscriptions connection property set.

Columns
Name Type ReadOnly Description
Recordno [KEY] Long True Record number
Lineno Long True Line number
Ratetablekey Long True Rate table key
Ratetableid String False Rate table ID
Ratetablename String False Rate table name
Description String False Description
Whencreated Datetime True Timestamp marking last time this was created.
Whenmodified Datetime True Timestamp marking last time this was changed.
Createdby Long True User who created this.
Modifiedby Long True User who modified this.
Standardtaskid String False Standard cost code ID
Standardtaskkey Long True Standard cost code key
Standardtaskname String False Standard cost code name
Standardcosttypeid String False Standard cost type ID
Standardcosttypekey Long True Standard cost type key
Standardcosttypename String False Standard cost type name
Accumulationtypekey Long True Accumulation type key
Accumulationtypename String False Accumulation type name
Locationkey Long True Location key
Location String False Location
Locationname String False Location name
Departmentkey Long True Department key
Department String False Department
Departmenttitle String False Department title
Startdate Date False Start date
Markuppct Decimal False Markup percent
Projectdimkey Long False Projectdimkey
Projectid String False Job
Projectname String False Job name
Customerdimkey Long False Customerdimkey
Customerid String False Customer
Customername String False Customer name
Vendordimkey Long False Vendordimkey
Vendorid String False Vendor
Vendorname String False Vendor name
Employeedimkey Long False Employeedimkey
Employeeid String False Employee
Employeename String False Employee name
Itemdimkey Long False Itemdimkey
Itemid String False Item
Itemname String False Item name
Taskdimkey Long False Taskdimkey
Taskid String False Cost Code
Taskname String False Cost Code name
Costtypedimkey Long False Costtypedimkey
Costtypeid String False Cost type
Costtypename String False Cost type name
Record_url String True A portable, user-independent, deep-link URL for viewing this record

Ratetablepoentry

Retrieves Ratetablepoentry report data.

Table Specific Information

To retrieve information from the Ratetable table, Sage Intacct needs to have the Construction subscription enabled and the EnableSubscriptions connection property set.

Columns
Name Type ReadOnly Description
Recordno [KEY] Long True Record number
Lineno Long True Line number
Ratetablekey Long True Rate table key
Ratetableid String False Rate table ID
Ratetablename String False Rate table name
Description String False Description
Whencreated Datetime True Timestamp marking last time this was created.
Whenmodified Datetime True Timestamp marking last time this was changed.
Createdby Long True User who created this.
Modifiedby Long True User who modified this.
Standardtaskid String False Standard cost code ID
Standardtaskkey Long True Standard cost code key
Standardtaskname String False Standard cost code name
Standardcosttypeid String False Standard cost type ID
Standardcosttypekey Long True Standard cost type key
Standardcosttypename String False Standard cost type name
Accumulationtypekey Long True Accumulation type key
Accumulationtypename String False Accumulation type name
Itemdimkey Long True Item key
Itemid String False Item ID
Itemname String False Item name
Locationkey Long True Location key
Location String False Location
Locationname String False Location name
Startdate Date False Start date
Markuppct Decimal False Markup percent
Unitprice Decimal False Unit price
Projectdimkey Long False Projectdimkey
Projectid String False Job
Projectname String False Job name
Customerdimkey Long False Customerdimkey
Customerid String False Customer
Customername String False Customer name
Vendordimkey Long False Vendordimkey
Vendorid String False Vendor
Vendorname String False Vendor name
Employeedimkey Long False Employeedimkey
Employeeid String False Employee
Employeename String False Employee name
Taskdimkey Long False Taskdimkey
Taskid String False Cost Code
Taskname String False Cost Code name
Costtypedimkey Long False Costtypedimkey
Costtypeid String False Cost type
Costtypename String False Cost type name
Record_url String True A portable, user-independent, deep-link URL for viewing this record

Ratetabletsentry

Retrieves Ratetabletsentry report data.

Table Specific Information

To retrieve information from the Ratetabletsentry table, Sage Intacct needs to have the Construction subscription enabled and the EnableSubscriptions connection property set.

Columns
Name Type ReadOnly Description
Recordno [KEY] Long True Record number
Lineno Long True Line number
Ratetablekey Long True Rate table key
Ratetableid String False Rate table ID
Ratetablename String False Rate table name
Description String False Description
Whencreated Datetime True Timestamp marking last time this was created.
Whenmodified Datetime True Timestamp marking last time this was changed.
Createdby Long True User who created this.
Modifiedby Long True User who modified this.
Standardtaskid String False Standard task ID
Standardtaskkey Long True Standard task key
Standardtaskname String False Standard task name
Standardcosttypeid String False Standard cost type ID
Standardcosttypekey Long True Standard cost type key
Standardcosttypename String False Standard cost type name
Accumulationtypekey Long True Accumulation type key
Accumulationtypename String False Accumulation type name
Emppositionkey Long True Employee position key
Emppositionid String False Employee position ID
Emppositionname String False Employee position name
Timetypekey Long True Time type key
Timetypename String False Time type name
Laborclasskey Long True Labor class key
Laborclassid String False Labor class ID
Laborclassname String False Labor class name
Laborshiftkey Long True Labor shift key
Laborshiftid String False Labor shift ID
Laborshiftname String False Labor shift name
Laborunionkey Long True Labor union key
Laborunionid String False Labor union ID
Laborunionname String False Labor union name
Locationkey Long True Location key
Location String False Location
Locationname String False Location name
Departmentkey Long True Department key
Department String False Department
Departmenttitle String False Department title
Startdate Date False Start date
Markuppct Decimal False Markup percent
Laborrate Decimal False Labor rate
Projectdimkey Long False Projectdimkey
Projectid String False Project
Projectname String False Project name
Customerdimkey Long False Customerdimkey
Customerid String False Customer
Customername String False Customer name
Vendordimkey Long False Vendordimkey
Vendorid String False Vendor
Vendorname String False Vendor name
Employeedimkey Long False Employeedimkey
Employeeid String False Employee
Employeename String False Employee name
Itemdimkey Long False Itemdimkey
Itemid String False Item
Itemname String False Item name
Classdimkey Long False Classdimkey
Classid String False Class
Classname String False Class name
Record_url String True A portable, user-independent, deep-link URL for viewing this record

RecurGLBatch

Retrieves RecurGLBatch report data.

Columns
Name Type ReadOnly Description
Recordno [KEY] String False The Recordno field of the RecurGLBatch object.
Transactionno Int64 False The Transactionno field of the RecurGLBatch object.
Description String False The Description field of the RecurGLBatch object.
Referenceno String False The Referenceno field of the RecurGLBatch object.
Journal String False The Journal field of the RecurGLBatch object.
Journalkey String False The Journalkey field of the RecurGLBatch object.
Journaltitle String False The Journaltitle field of the RecurGLBatch object.
Lastposted Datetime False The Lastposted field of the RecurGLBatch object.
Lastreversed Datetime False The Lastreversed field of the RecurGLBatch object.
Whencreated Datetime False The Whencreated field of the RecurGLBatch object.
Whenmodified Datetime False The Whenmodified field of the RecurGLBatch object.
Createdby Int64 False The Createdby field of the RecurGLBatch object.
Modifiedby Int64 False The Modifiedby field of the RecurGLBatch object.
Status String False The Status field of the RecurGLBatch object.
Statistical Boolean False The Statistical field of the RecurGLBatch object.
Startdateje Datetime False The Startdateje field of the RecurGLBatch object.
Occurje Int64 False The Occurje field of the RecurGLBatch object.
Enddateje Datetime False The Enddateje field of the RecurGLBatch object.
Repeatintervalje String False The Repeatintervalje field of the RecurGLBatch object.
Repeatje String False The Repeatje field of the RecurGLBatch object.
Eomje Boolean False The Eomje field of the RecurGLBatch object.
Jeexeccount Int64 False The Jeexeccount field of the RecurGLBatch object.
Jenextexecdate Datetime False The Jenextexecdate field of the RecurGLBatch object.
Emailje String False The Emailje field of the RecurGLBatch object.
Startdaterevje Datetime False The Startdaterevje field of the RecurGLBatch object.
Occurrevje Int64 False The Occurrevje field of the RecurGLBatch object.
Enddaterevje Datetime False The Enddaterevje field of the RecurGLBatch object.
Repeatintervalrevje String False The Repeatintervalrevje field of the RecurGLBatch object.
Repeatrevje String False The Repeatrevje field of the RecurGLBatch object.
Eomrevje Boolean False The Eomrevje field of the RecurGLBatch object.
Revjeexeccount Int64 False The Revjeexeccount field of the RecurGLBatch object.
Revjenextexecdate Datetime False The Revjenextexecdate field of the RecurGLBatch object.
Emailrevje String False The Emailrevje field of the RecurGLBatch object.
Ismanualpost Boolean False The Ismanualpost field of the RecurGLBatch object.
Autorepeatby String False The Autorepeatby field of the RecurGLBatch object.
Autorepeatinterval Int64 False The Autorepeatinterval field of the RecurGLBatch object.
Baselocation_no String False The Baselocation_no field of the RecurGLBatch object.
Megaentitykey Int64 False The Megaentitykey field of the RecurGLBatch object.
Megaentityid String False The Megaentityid field of the RecurGLBatch object.
Megaentityname String False The Megaentityname field of the RecurGLBatch object.
Record_url String False The Record_url field of the RecurGLBatch object.

RenewalMacro

Retrieves RenewalMacro report data.

Columns
Name Type ReadOnly Description
Recordno [KEY] String False The Recordno field of the RenewalMacro object.
Macroid String False The Macroid field of the RenewalMacro object.
Description String False The Description field of the RenewalMacro object.
Createsalestrans Boolean False The Createsalestrans field of the RenewalMacro object.
Salesdocid String False The Salesdocid field of the RenewalMacro object.
Salesdocrecordkey String False The Salesdocrecordkey field of the RenewalMacro object.
Createsalestranswhen String False The Createsalestranswhen field of the RenewalMacro object.
Createsalestransdays String False The Createsalestransdays field of the RenewalMacro object.
Reneweddocdate String False The Reneweddocdate field of the RenewalMacro object.
Renstartdateopt String False The Renstartdateopt field of the RenewalMacro object.
Pricingtype String False The Pricingtype field of the RenewalMacro object.
Pricingmarkup String False The Pricingmarkup field of the RenewalMacro object.
Pricingmarkupvalue String False The Pricingmarkupvalue field of the RenewalMacro object.
Emailtocustomer Boolean False The Emailtocustomer field of the RenewalMacro object.
Emailtocustomerfromemailid String False The Emailtocustomerfromemailid field of the RenewalMacro object.
Emailcontact String False The Emailcontact field of the RenewalMacro object.
Emailcontactfilename String False The Emailcontactfilename field of the RenewalMacro object.
Emailalert Boolean False The Emailalert field of the RenewalMacro object.
Emailalertfromemailid String False The Emailalertfromemailid field of the RenewalMacro object.
Emailalertfilename String False The Emailalertfilename field of the RenewalMacro object.
Emailalertaddresses String False The Emailalertaddresses field of the RenewalMacro object.
Emailalertwhen String False The Emailalertwhen field of the RenewalMacro object.
Emailalertdays String False The Emailalertdays field of the RenewalMacro object.
Createsalesopp Boolean False The Createsalesopp field of the RenewalMacro object.
Createsalesoppwhen String False The Createsalesoppwhen field of the RenewalMacro object.
Createsalesoppdays String False The Createsalesoppdays field of the RenewalMacro object.
Oppcustomname String False The Oppcustomname field of the RenewalMacro object.
Inheritoppproducts Boolean False The Inheritoppproducts field of the RenewalMacro object.
Stageofopportunity String False The Stageofopportunity field of the RenewalMacro object.
Latestversionkey Double False The Latestversionkey field of the RenewalMacro object.
Status String False The Status field of the RenewalMacro object.
Megaentitykey Int64 False The Megaentitykey field of the RenewalMacro object.
Megaentityid String False The Megaentityid field of the RenewalMacro object.
Megaentityname String False The Megaentityname field of the RenewalMacro object.
Record_url String False The Record_url field of the RenewalMacro object.

ReportingPeriod

Retrieves ReportingPeriod report data.

Columns
Name Type ReadOnly Description
RecordNUM [KEY] Int64 False The Record# field of the ReportingPeriod object.
Recordno Int64 False The Recordno field of the ReportingPeriod object.
Name String False The Name field of the ReportingPeriod object.
Header1 String False The Header1 field of the ReportingPeriod object.
Header2 String False The Header2 field of the ReportingPeriod object.
Start_date Datetime False The Start_date field of the ReportingPeriod object.
End_date Datetime False The End_date field of the ReportingPeriod object.
Budgeting String False The Budgeting field of the ReportingPeriod object.
Status String False The Status field of the ReportingPeriod object.
Whencreated Datetime False The Whencreated field of the ReportingPeriod object.
Whenmodified Datetime False The Whenmodified field of the ReportingPeriod object.
Createdby Int64 False The Createdby field of the ReportingPeriod object.
Modifiedby Int64 False The Modifiedby field of the ReportingPeriod object.
Megaentitykey Int64 False The Megaentitykey field of the ReportingPeriod object.
Megaentityid String False The Megaentityid field of the ReportingPeriod object.
Megaentityname String False The Megaentityname field of the ReportingPeriod object.
Record_url String False The Record_url field of the ReportingPeriod object.

Revrecschedule

Retrieves RevRecSchedule report data.

Columns
Name Type ReadOnly Description
Recordno [KEY] Long False Record Number
Revrectemplatekey Long False Rev Rec Template Key
Revrectemplateid String True Template
Templatepostingmethod String False Template posting method
Recmethod String True Recognition method
Milestonesource String False Percent or Milestone source
Pacalcsource String True Calculation Method
Pacalchours String True Based on
Scheduleperiod String True Schedule Period
Postingday String False Posting Day
Status String True Revenue posting status
Invoiceno String False INVOICENO
Invoicedate String False INVOICEDATE
Recordkey Long False prrecord record key
Dochdrkey Long False Document Header Key
Docid String False DOCID
Documentdate String False DOCUMENTDATE
Description String False Name
Prentrykey Long False PRENTRYKEY
Docentrykey Long False Document Entry Key
Revreccatkey Long False Rev Rec Category Key
Changecategory String True rev. rec. category
Changememo String False changememo
Dayslastperiod Long False Days in last period
Projectid String True Project ID
Projectname String True Project Name
Taskname String True Task Name
Taskid String False Task ID
Whencreated Datetime True timestamp marking last time this was created.
Whenmodified Datetime True timestamp marking last time this was changed.
Createdby Long True User who created this.
Modifiedby Long True User who modified this.
Megaentitykey Long True Created at - Entity key
Megaentityid String True Created at - Entity ID
Megaentityname String True Created at - Entity name
Record_url String True A portable, user-independent, deep-link URL for viewing this record

Revrecscheduleentry

Retrieves RevRecScheduleEntry report data.

Columns
Name Type ReadOnly Description
Recordno [KEY] Long False Record Number
Revrecschedulekey Long False REVRECSCHEDULEKEY
Posted String True Period Offset
Position String False Position
Next String False Next
Postingdate Date False Posting Date
Revacctkey String False Account Key
Accountno String False ACCOUNTNO
Accounttitle String False ACCOUNTTITLE
Journalkey Long False GL Journal Key
Gljournal String True GL Journal Key
Deferredrevacctkey String False Defered Rev Acct Key
Amount Decimal True Amount
Glbatchkey Long False GLBATCHKEY
Schopkey Long False SCHOPKEY
Tr_type Long False tr type
Trx_amount Decimal False Amount
Currency String True Currency
Posted_amount Decimal True Amount
Basecurr String True Base Currency
Exch_rate_date Date False Exchange Rate Date
Exch_rate_type_id Long False Exchange Rate Type
Exchange_rate Decimal False Exchange Rate
Description String False Description
Parentstatus String True Revenue Posting Status
Unscheduled Bool False
Budgetqty Decimal True Budgeted hours
Estqty Decimal True Estimated hours
Plannedqty Decimal True Planned hours
Actualqty Decimal True Approved hours
Percentcompleted Decimal True Percent Completed
Percentrecognized Decimal True Percent Recognized
Obspercentcomplete Decimal True Observed Percent Completed
Budgetedcost Decimal True Budgeted Cost
Totalcost Decimal True Actual Cost
Whencreated Datetime True timestamp marking last time this was created.
Whenmodified Datetime True timestamp marking last time this was changed.
Createdby Long True User who created this.
Modifiedby Long True User who modified this.
Projectdimkey Long False Projectdimkey
Projectid String False Project
Projectname String False Project Name
Customerdimkey Long False Customerdimkey
Customerid String False Customer
Customername String False Customer Name
Vendordimkey Long False Vendordimkey
Vendorid String False Vendor
Vendorname String False Vendor Name
Employeedimkey Long False Employeedimkey
Employeeid String False Employee
Employeename String False Employee Name
Itemdimkey Long False Itemdimkey
Itemid String False Item
Itemname String False Item Name
Classdimkey Long False Classdimkey
Classid String False Class
Classname String False Class Name
Warehousedimkey Long False Warehousedimkey
Warehouseid String False Warehouse
Warehousename String False Warehouse Name
Contractdimkey Long False Contractdimkey
Contractid String False Contract
Contractname String False Contract Name
Record_url String True A portable, user-independent, deep-link URL for viewing this record
Gldimtestegi1 String False
Gldimtest String False

RevRecTemplate

Retrieves RevRecTemplate report data.

Columns
Name Type ReadOnly Description
Recordno [KEY] String False The Recordno field of the RevRecTemplate object.
Templateid String False The Templateid field of the RevRecTemplate object.
Description String False The Description field of the RevRecTemplate object.
Usestandard Boolean False The Usestandard field of the RevRecTemplate object.
Scheduleperiod String False The Scheduleperiod field of the RevRecTemplate object.
Postingday Int64 False The Postingday field of the RevRecTemplate object.
Totalperiods Int64 False The Totalperiods field of the RevRecTemplate object.
Recmethod String False The Recmethod field of the RevRecTemplate object.
Recstartdate String False The Recstartdate field of the RevRecTemplate object.
Postingmethod String False The Postingmethod field of the RevRecTemplate object.
Status String False The Status field of the RevRecTemplate object.
Latestversionkey Double False The Latestversionkey field of the RevRecTemplate object.
Recognitionterm String False The Recognitionterm field of the RevRecTemplate object.
Resumeoption String False The Resumeoption field of the RevRecTemplate object.
Milestonesource String False The Milestonesource field of the RevRecTemplate object.
Pacalcsource String False The Pacalcsource field of the RevRecTemplate object.
Pacalchours String False The Pacalchours field of the RevRecTemplate object.
Whencreated Datetime False The Whencreated field of the RevRecTemplate object.
Whenmodified Datetime False The Whenmodified field of the RevRecTemplate object.
Createdby Int64 False The Createdby field of the RevRecTemplate object.
Modifiedby Int64 False The Modifiedby field of the RevRecTemplate object.
Megaentitykey Int64 False The Megaentitykey field of the RevRecTemplate object.
Megaentityid String False The Megaentityid field of the RevRecTemplate object.
Megaentityname String False The Megaentityname field of the RevRecTemplate object.
Record_url String False The Record_url field of the RevRecTemplate object.

RevRecTemplMilestone

Retrieves RevRecTemplMilestone report data.

Columns
Name Type ReadOnly Description
Recordno [KEY] String False The Recordno field of the RevRecTemplMilestone object.
Templatekey Int64 False The Templatekey field of the RevRecTemplMilestone object.
Mperiodoffset Int64 False The Mperiodoffset field of the RevRecTemplMilestone object.
Percamount Double False The Percamount field of the RevRecTemplMilestone object.
Description String False The Description field of the RevRecTemplMilestone object.
Record_url String False The Record_url field of the RevRecTemplMilestone object.

SavingsAccount

Retrieves SavingsAccount report data.

Columns
Name Type ReadOnly Description
Bankaccountid [KEY] String False The Bankaccountid field of the SavingsAccount object.
Bankaccountno String False The Bankaccountno field of the SavingsAccount object.
Glaccountno String False The Glaccountno field of the SavingsAccount object.
Bankname String False The Bankname field of the SavingsAccount object.
Routingno String False The Routingno field of the SavingsAccount object.
Branchid String False The Branchid field of the SavingsAccount object.
Bankaccounttype String False The Bankaccounttype field of the SavingsAccount object.
Phone String False The Phone field of the SavingsAccount object.
Checklayout_sigline2amount String False The Checklayout_sigline2amount field of the SavingsAccount object.
Checklayout_checkpaperformat String False The Checklayout_checkpaperformat field of the SavingsAccount object.
Checklayout_checkprintformat String False The Checklayout_checkprintformat field of the SavingsAccount object.
Checklayout_signatureimage1 String False The Checklayout_signatureimage1 field of the SavingsAccount object.
Checklayout_signatureimage2 String False The Checklayout_signatureimage2 field of the SavingsAccount object.
Checklayout_printlineitems Boolean False The Checklayout_printlineitems field of the SavingsAccount object.
Checklayout_displaylocationas String False The Checklayout_displaylocationas field of the SavingsAccount object.
Checklayout_bankacctalign String False The Checklayout_bankacctalign field of the SavingsAccount object.
Checklayout_spacestoappend String False The Checklayout_spacestoappend field of the SavingsAccount object.
Checklayout_checknolength String False The Checklayout_checknolength field of the SavingsAccount object.
Checklayout_dfltcnyaddr Boolean False The Checklayout_dfltcnyaddr field of the SavingsAccount object.
Checklayout_voidtext String False The Checklayout_voidtext field of the SavingsAccount object.
Checklayout_usesig1belowamt String False The Checklayout_usesig1belowamt field of the SavingsAccount object.
Checklayout_usesig2belowamt String False The Checklayout_usesig2belowamt field of the SavingsAccount object.
Checklayout_micrtranscode Boolean False The Checklayout_micrtranscode field of the SavingsAccount object.
Checklayout_usdtext Boolean False The Checklayout_usdtext field of the SavingsAccount object.
Checklayout_onus Boolean False The Checklayout_onus field of the SavingsAccount object.
Checklayout_onus32 String False The Checklayout_onus32 field of the SavingsAccount object.
Mailaddress_address1 String False The Mailaddress_address1 field of the SavingsAccount object.
Mailaddress_address2 String False The Mailaddress_address2 field of the SavingsAccount object.
Mailaddress_city String False The Mailaddress_city field of the SavingsAccount object.
Mailaddress_state String False The Mailaddress_state field of the SavingsAccount object.
Mailaddress_zip String False The Mailaddress_zip field of the SavingsAccount object.
Mailaddress_country String False The Mailaddress_country field of the SavingsAccount object.
Mailaddress_countrycode String False The Mailaddress_countrycode field of the SavingsAccount object.
Checkinfocontact_contactname String False The Checkinfocontact_contactname field of the SavingsAccount object.
Checkinfocontact_companyname String False The Checkinfocontact_companyname field of the SavingsAccount object.
Checkinfocontact_mailaddress_address1 String False The Checkinfocontact_mailaddress_address1 field of the SavingsAccount object.
Checkinfocontact_mailaddress_address2 String False The Checkinfocontact_mailaddress_address2 field of the SavingsAccount object.
Checkinfocontact_mailaddress_city String False The Checkinfocontact_mailaddress_city field of the SavingsAccount object.
Checkinfocontact_mailaddress_state String False The Checkinfocontact_mailaddress_state field of the SavingsAccount object.
Checkinfocontact_mailaddress_zip String False The Checkinfocontact_mailaddress_zip field of the SavingsAccount object.
Checkinfocontact_mailaddress_country String False The Checkinfocontact_mailaddress_country field of the SavingsAccount object.
Checkinfocontact_mailaddress_countrycode String False The Checkinfocontact_mailaddress_countrycode field of the SavingsAccount object.
Checkinfocontact_phone1 String False The Checkinfocontact_phone1 field of the SavingsAccount object.
Financialdata_apjournal String False The Financialdata_apjournal field of the SavingsAccount object.
Financialdata_arjournal String False The Financialdata_arjournal field of the SavingsAccount object.
Servicechargeglaccount String False The Servicechargeglaccount field of the SavingsAccount object.
Servicechargeaccountlabel String False The Servicechargeaccountlabel field of the SavingsAccount object.
Interestearnedglaccount String False The Interestearnedglaccount field of the SavingsAccount object.
Interestearnedaccountlabel String False The Interestearnedaccountlabel field of the SavingsAccount object.
Departmentid String False The Departmentid field of the SavingsAccount object.
Locationid String False The Locationid field of the SavingsAccount object.
Status String False The Status field of the SavingsAccount object.
Lastreconciledbalance String False The Lastreconciledbalance field of the SavingsAccount object.
Lastreconcileddate Datetime False The Lastreconcileddate field of the SavingsAccount object.
Nextcheck String False The Nextcheck field of the SavingsAccount object.
Sharecheckno Boolean False The Sharecheckno field of the SavingsAccount object.
Cutoffdate Datetime False The Cutoffdate field of the SavingsAccount object.
Financialdata_reconmode String False The Financialdata_reconmode field of the SavingsAccount object.
Currency String False The Currency field of the SavingsAccount object.
Forwfpm Boolean False The Forwfpm field of the SavingsAccount object.
Achcompanyid String False The Achcompanyid field of the SavingsAccount object.
Pmchecktemplateid String False The Pmchecktemplateid field of the SavingsAccount object.
Whencreated Datetime False The Whencreated field of the SavingsAccount object.
Whenmodified Datetime False The Whenmodified field of the SavingsAccount object.
Createdby Int64 False The Createdby field of the SavingsAccount object.
Modifiedby Int64 False The Modifiedby field of the SavingsAccount object.
Recordno Int64 False The Recordno field of the SavingsAccount object.
Outsourcecheck String False The Outsourcecheck field of the SavingsAccount object.
Fractionalroutingno String False The Fractionalroutingno field of the SavingsAccount object.
Nameontheaccount String False The Nameontheaccount field of the SavingsAccount object.
Megaentitykey Int64 False The Megaentitykey field of the SavingsAccount object.
Megaentityid String False The Megaentityid field of the SavingsAccount object.
Megaentityname String False The Megaentityname field of the SavingsAccount object.
Record_url String False The Record_url field of the SavingsAccount object.

Seminar

Retrieves Seminar report data.

Columns
Name Type ReadOnly Description
Rlocation [KEY] String False The Rlocation field of the Seminar object.
Rpodocument String False The Rpodocument field of the Seminar object.
Rvendor String False The Rvendor field of the Seminar object.
Record_url String False The Record_url field of the Seminar object.

Seminar_Package

Retrieves Seminar_Package report data.

Columns
Name Type ReadOnly Description
Rglaccount [KEY] String False The Rglaccount field of the Seminar_Package object.
Ritem String False The Ritem field of the Seminar_Package object.
Record_url String False The Record_url field of the Seminar_Package object.

Seminar_Registration

Retrieves Seminar_Registration report data.

Columns
Name Type ReadOnly Description
Rarinvoice [KEY] String False The Rarinvoice field of the Seminar_Registration object.
Record_url String False The Record_url field of the Seminar_Registration object.

SODocument

Retrieves SODocument report data.

Columns
Name Type ReadOnly Description
Recordno [KEY] String False The Recordno field of the SODocument object.
Docno String False The Docno field of the SODocument object.
Docid String False The Docid field of the SODocument object.
Createdfrom String False The Createdfrom field of the SODocument object.
State String False The State field of the SODocument object.
Closed Boolean False The Closed field of the SODocument object.
Whencreated Datetime False The Whencreated field of the SODocument object.
Whenmodified Datetime False The Whenmodified field of the SODocument object.
Whendue Datetime False The Whendue field of the SODocument object.
Status String False The Status field of the SODocument object.
Ponumber String False The Ponumber field of the SODocument object.
Vendordocno String False The Vendordocno field of the SODocument object.
Docparid String False The Docparid field of the SODocument object.
Docparkey String False The Docparkey field of the SODocument object.
Docparclass String False The Docparclass field of the SODocument object.
Term_name String False The Term_name field of the SODocument object.
Note String False The Note field of the SODocument object.
Warehouse_locationid String False The Warehouse_locationid field of the SODocument object.
Shipvia String False The Shipvia field of the SODocument object.
User String False The User field of the SODocument object.
Createduser String False The Createduser field of the SODocument object.
Userid String False The Userid field of the SODocument object.
Createduserid String False The Createduserid field of the SODocument object.
Contact_contactname String False The Contact_contactname field of the SODocument object.
Contact_prefix String False The Contact_prefix field of the SODocument object.
Contact_firstname String False The Contact_firstname field of the SODocument object.
Contact_initial String False The Contact_initial field of the SODocument object.
Contact_lastname String False The Contact_lastname field of the SODocument object.
Contact_companyname String False The Contact_companyname field of the SODocument object.
Contact_printas String False The Contact_printas field of the SODocument object.
Contact_phone1 String False The Contact_phone1 field of the SODocument object.
Contact_phone2 String False The Contact_phone2 field of the SODocument object.
Contact_cellphone String False The Contact_cellphone field of the SODocument object.
Contact_pager String False The Contact_pager field of the SODocument object.
Contact_fax String False The Contact_fax field of the SODocument object.
Contact_email1 String False The Contact_email1 field of the SODocument object.
Contact_email2 String False The Contact_email2 field of the SODocument object.
Contact_url1 String False The Contact_url1 field of the SODocument object.
Contact_url2 String False The Contact_url2 field of the SODocument object.
Contact_visible Boolean False The Contact_visible field of the SODocument object.
Contact_mailaddress_address1 String False The Contact_mailaddress_address1 field of the SODocument object.
Contact_mailaddress_address2 String False The Contact_mailaddress_address2 field of the SODocument object.
Contact_mailaddress_city String False The Contact_mailaddress_city field of the SODocument object.
Contact_mailaddress_state String False The Contact_mailaddress_state field of the SODocument object.
Contact_mailaddress_zip String False The Contact_mailaddress_zip field of the SODocument object.
Contact_mailaddress_country String False The Contact_mailaddress_country field of the SODocument object.
Contact_mailaddress_countrycode String False The Contact_mailaddress_countrycode field of the SODocument object.
Shiptokey String False The Shiptokey field of the SODocument object.
Shipto_contactname String False The Shipto_contactname field of the SODocument object.
Shipto_prefix String False The Shipto_prefix field of the SODocument object.
Shipto_firstname String False The Shipto_firstname field of the SODocument object.
Shipto_initial String False The Shipto_initial field of the SODocument object.
Shipto_lastname String False The Shipto_lastname field of the SODocument object.
Shipto_companyname String False The Shipto_companyname field of the SODocument object.
Shipto_printas String False The Shipto_printas field of the SODocument object.
Shipto_phone1 String False The Shipto_phone1 field of the SODocument object.
Shipto_phone2 String False The Shipto_phone2 field of the SODocument object.
Shipto_cellphone String False The Shipto_cellphone field of the SODocument object.
Shipto_pager String False The Shipto_pager field of the SODocument object.
Shipto_fax String False The Shipto_fax field of the SODocument object.
Shipto_email1 String False The Shipto_email1 field of the SODocument object.
Shipto_email2 String False The Shipto_email2 field of the SODocument object.
Shipto_url1 String False The Shipto_url1 field of the SODocument object.
Shipto_url2 String False The Shipto_url2 field of the SODocument object.
Shipto_visible Boolean False The Shipto_visible field of the SODocument object.
Shipto_mailaddress_address1 String False The Shipto_mailaddress_address1 field of the SODocument object.
Shipto_mailaddress_address2 String False The Shipto_mailaddress_address2 field of the SODocument object.
Shipto_mailaddress_city String False The Shipto_mailaddress_city field of the SODocument object.
Shipto_mailaddress_state String False The Shipto_mailaddress_state field of the SODocument object.
Shipto_mailaddress_zip String False The Shipto_mailaddress_zip field of the SODocument object.
Shipto_mailaddress_country String False The Shipto_mailaddress_country field of the SODocument object.
Shipto_mailaddress_countrycode String False The Shipto_mailaddress_countrycode field of the SODocument object.
Billtokey String False The Billtokey field of the SODocument object.
Billto_contactname String False The Billto_contactname field of the SODocument object.
Billto_prefix String False The Billto_prefix field of the SODocument object.
Billto_firstname String False The Billto_firstname field of the SODocument object.
Billto_initial String False The Billto_initial field of the SODocument object.
Billto_lastname String False The Billto_lastname field of the SODocument object.
Billto_companyname String False The Billto_companyname field of the SODocument object.
Billto_printas String False The Billto_printas field of the SODocument object.
Billto_phone1 String False The Billto_phone1 field of the SODocument object.
Billto_phone2 String False The Billto_phone2 field of the SODocument object.
Billto_cellphone String False The Billto_cellphone field of the SODocument object.
Billto_pager String False The Billto_pager field of the SODocument object.
Billto_fax String False The Billto_fax field of the SODocument object.
Billto_email1 String False The Billto_email1 field of the SODocument object.
Billto_email2 String False The Billto_email2 field of the SODocument object.
Billto_url1 String False The Billto_url1 field of the SODocument object.
Billto_url2 String False The Billto_url2 field of the SODocument object.
Billto_visible Boolean False The Billto_visible field of the SODocument object.
Billto_mailaddress_address1 String False The Billto_mailaddress_address1 field of the SODocument object.
Billto_mailaddress_address2 String False The Billto_mailaddress_address2 field of the SODocument object.
Billto_mailaddress_city String False The Billto_mailaddress_city field of the SODocument object.
Billto_mailaddress_state String False The Billto_mailaddress_state field of the SODocument object.
Billto_mailaddress_zip String False The Billto_mailaddress_zip field of the SODocument object.
Billto_mailaddress_country String False The Billto_mailaddress_country field of the SODocument object.
Billto_mailaddress_countrycode String False The Billto_mailaddress_countrycode field of the SODocument object.
Message String False The Message field of the SODocument object.
Prrecordkey String False The Prrecordkey field of the SODocument object.
Invbatchkey String False The Invbatchkey field of the SODocument object.
Prinvbatchkey String False The Prinvbatchkey field of the SODocument object.
Printed String False The Printed field of the SODocument object.
Backorder String False The Backorder field of the SODocument object.
Subtotal Double False The Subtotal field of the SODocument object.
Total Double False The Total field of the SODocument object.
Entglgroup Int64 False The Entglgroup field of the SODocument object.
Currency String False The Currency field of the SODocument object.
Exchratedate Datetime False The Exchratedate field of the SODocument object.
Exchratetypes_name String False The Exchratetypes_name field of the SODocument object.
Exchrate Double False The Exchrate field of the SODocument object.
Schopkey String False The Schopkey field of the SODocument object.
Salescontract String False The Salescontract field of the SODocument object.
Usedascontract String False The Usedascontract field of the SODocument object.
Trx_subtotal Double False The Trx_subtotal field of the SODocument object.
Trx_total Double False The Trx_total field of the SODocument object.
Exch_rate_type_id String False The Exch_rate_type_id field of the SODocument object.
Reneweddoc String False The Reneweddoc field of the SODocument object.
Basecurr String False The Basecurr field of the SODocument object.
Systemgenerated String False The Systemgenerated field of the SODocument object.
Invoicerunkey Int64 False The Invoicerunkey field of the SODocument object.
Docpar_in_out String False The Docpar_in_out field of the SODocument object.
Custvendid String False The Custvendid field of the SODocument object.
Custvendname String False The Custvendname field of the SODocument object.
Haspostedrevrec String False The Haspostedrevrec field of the SODocument object.
Contractid String False The Contractid field of the SODocument object.
Contractdesc String False The Contractdesc field of the SODocument object.
Trx_totalpaid String False The Trx_totalpaid field of the SODocument object.
Totalpaid String False The Totalpaid field of the SODocument object.
Trx_totalentered String False The Trx_totalentered field of the SODocument object.
Totalentered String False The Totalentered field of the SODocument object.
Trx_totaldue String False The Trx_totaldue field of the SODocument object.
Totaldue String False The Totaldue field of the SODocument object.
Paymentstatus String False The Paymentstatus field of the SODocument object.
Sign_flag Int64 False The Sign_flag field of the SODocument object.
Vsoepricelist String False The Vsoepricelist field of the SODocument object.
Vsoeprclstkey String False The Vsoeprclstkey field of the SODocument object.
Origdocdate Datetime False The Origdocdate field of the SODocument object.
Hasadvbilling Boolean False The Hasadvbilling field of the SODocument object.
Invoicerun_expensepricemarkup Double False The Invoicerun_expensepricemarkup field of the SODocument object.
Invoicerun_description String False The Invoicerun_description field of the SODocument object.
Projectkey Int64 False The Projectkey field of the SODocument object.
Project String False The Project field of the SODocument object.
Projectname String False The Projectname field of the SODocument object.
Megaentitykey Int64 False The Megaentitykey field of the SODocument object.
Megaentityid String False The Megaentityid field of the SODocument object.
Megaentityname String False The Megaentityname field of the SODocument object.
Record_url String False The Record_url field of the SODocument object.

SODocumentParams

Retrieves SODocumentParams report data.

Columns
Name Type ReadOnly Description
Recordno [KEY] String False The Recordno field of the SODocumentParams object.
Docid String False The Docid field of the SODocumentParams object.
Docclass String False The Docclass field of the SODocumentParams object.
Category String False The Category field of the SODocumentParams object.
Description String False The Description field of the SODocumentParams object.
Userperm Boolean False The Userperm field of the SODocumentParams object.
Edittype String False The Edittype field of the SODocumentParams object.
Deltype String False The Deltype field of the SODocumentParams object.
Enable_seqnum Boolean False The Enable_seqnum field of the SODocumentParams object.
Sequence String False The Sequence field of the SODocumentParams object.
Preserve_seqnum Boolean False The Preserve_seqnum field of the SODocumentParams object.
Inherit_source_docno Boolean False The Inherit_source_docno field of the SODocumentParams object.
Updates_inv String False The Updates_inv field of the SODocumentParams object.
In_out String False The In_out field of the SODocumentParams object.
Updates_gl String False The Updates_gl field of the SODocumentParams object.
Convtype String False The Convtype field of the SODocumentParams object.
Updates_cost Boolean False The Updates_cost field of the SODocumentParams object.
Exchratetypes_name String False The Exchratetypes_name field of the SODocumentParams object.
Override_exch_rate_type Boolean False The Override_exch_rate_type field of the SODocumentParams object.
Display_basecurrency Boolean False The Display_basecurrency field of the SODocumentParams object.
Updates_pricelistid String False The Updates_pricelistid field of the SODocumentParams object.
Term_name String False The Term_name field of the SODocumentParams object.
Pricelistid String False The Pricelistid field of the SODocumentParams object.
Special_pricelistid String False The Special_pricelistid field of the SODocumentParams object.
Override_price Boolean False The Override_price field of the SODocumentParams object.
Enable_discount_charge Boolean False The Enable_discount_charge field of the SODocumentParams object.
Require_discount_memo Boolean False The Require_discount_memo field of the SODocumentParams object.
Recallonly Boolean False The Recallonly field of the SODocumentParams object.
Editable_price Boolean False The Editable_price field of the SODocumentParams object.
Show_totals Boolean False The Show_totals field of the SODocumentParams object.
Showexpandedtotals Boolean False The Showexpandedtotals field of the SODocumentParams object.
Enableoverridetax Boolean False The Enableoverridetax field of the SODocumentParams object.
Enablerevrec String False The Enablerevrec field of the SODocumentParams object.
Enablerenewals String False The Enablerenewals field of the SODocumentParams object.
Enableschedule Boolean False The Enableschedule field of the SODocumentParams object.
Renewonlyconvertedline Boolean False The Renewonlyconvertedline field of the SODocumentParams object.
Locoverride Boolean False The Locoverride field of the SODocumentParams object.
Deptoverride Boolean False The Deptoverride field of the SODocumentParams object.
Xsltemplate String False The Xsltemplate field of the SODocumentParams object.
Fixed_mesg String False The Fixed_mesg field of the SODocumentParams object.
Convert_units Boolean False The Convert_units field of the SODocumentParams object.
Contacttitle1 String False The Contacttitle1 field of the SODocumentParams object.
Showtitle1 Boolean False The Showtitle1 field of the SODocumentParams object.
Alloweditbillto Boolean False The Alloweditbillto field of the SODocumentParams object.
Showtitle2 Boolean False The Showtitle2 field of the SODocumentParams object.
Contacttitle2 String False The Contacttitle2 field of the SODocumentParams object.
Alloweditshipto Boolean False The Alloweditshipto field of the SODocumentParams object.
Warnonlowqty Boolean False The Warnonlowqty field of the SODocumentParams object.
Creditlimitcheck Boolean False The Creditlimitcheck field of the SODocumentParams object.
Warehouseselmethod String False The Warehouseselmethod field of the SODocumentParams object.
Default_warehouse String False The Default_warehouse field of the SODocumentParams object.
Status String False The Status field of the SODocumentParams object.
Zuoratype String False The Zuoratype field of the SODocumentParams object.
Enablepayments Boolean False The Enablepayments field of the SODocumentParams object.
Cust_vend String False The Cust_vend field of the SODocumentParams object.
Sale_pur_trans String False The Sale_pur_trans field of the SODocumentParams object.
Posttogl Boolean False The Posttogl field of the SODocumentParams object.
Force_prices Boolean False The Force_prices field of the SODocumentParams object.
Enable_costing Boolean False The Enable_costing field of the SODocumentParams object.
Whencreated Datetime False The Whencreated field of the SODocumentParams object.
Whenmodified Datetime False The Whenmodified field of the SODocumentParams object.
Createdby Int64 False The Createdby field of the SODocumentParams object.
Modifiedby Int64 False The Modifiedby field of the SODocumentParams object.
Createtype String False The Createtype field of the SODocumentParams object.
Megaentitykey Int64 False The Megaentitykey field of the SODocumentParams object.
Megaentityid String False The Megaentityid field of the SODocumentParams object.
Megaentityname String False The Megaentityname field of the SODocumentParams object.
Record_url String False The Record_url field of the SODocumentParams object.

SOPriceList

Retrieves SOPriceList report data.

Columns
Name Type ReadOnly Description
Recordno Int64 False The Recordno field of the SOPriceList object.
Name [KEY] String False The Name field of the SOPriceList object.
Datefrom Datetime False The Datefrom field of the SOPriceList object.
Dateto Datetime False The Dateto field of the SOPriceList object.
Salepurchase String False The Salepurchase field of the SOPriceList object.
Status String False The Status field of the SOPriceList object.
Megaentitykey Int64 False The Megaentitykey field of the SOPriceList object.
Megaentityid String False The Megaentityid field of the SOPriceList object.
Megaentityname String False The Megaentityname field of the SOPriceList object.
Record_url String False The Record_url field of the SOPriceList object.

StatAccount

Retrieves StatAccount report data.

Columns
Name Type ReadOnly Description
Recordno Int64 False The Recordno field of the StatAccount object.
Accountno [KEY] String False The Accountno field of the StatAccount object.
Title String False The Title field of the StatAccount object.
Accounttype String False The Accounttype field of the StatAccount object.
Status String False The Status field of the StatAccount object.
Whenmodified Datetime False The Whenmodified field of the StatAccount object.
Requiredept Boolean False The Requiredept field of the StatAccount object.
Requireloc Boolean False The Requireloc field of the StatAccount object.
Taxable Boolean False The Taxable field of the StatAccount object.
Statistical Boolean False The Statistical field of the StatAccount object.
Category String False The Category field of the StatAccount object.
Whencreated Datetime False The Whencreated field of the StatAccount object.
Createdby Int64 False The Createdby field of the StatAccount object.
Modifiedby Int64 False The Modifiedby field of the StatAccount object.
Megaentitykey Int64 False The Megaentitykey field of the StatAccount object.
Megaentityid String False The Megaentityid field of the StatAccount object.
Megaentityname String False The Megaentityname field of the StatAccount object.
Record_url String False The Record_url field of the StatAccount object.

StatJournal

Retrieves StatJournal report data.

Columns
Name Type ReadOnly Description
RecordNUM Int64 False The Record# field of the StatJournal object.
Symbol String False The Symbol field of the StatJournal object.
Title [KEY] String False The Title field of the StatJournal object.
Status String False The Status field of the StatJournal object.
Whencreated Datetime False The Whencreated field of the StatJournal object.
Whenmodified Datetime False The Whenmodified field of the StatJournal object.
Createdby Int64 False The Createdby field of the StatJournal object.
Modifiedby Int64 False The Modifiedby field of the StatJournal object.
Record_url String False The Record_url field of the StatJournal object.

STKitDocument

Retrieves STKitDocument report data.

Columns
Name Type ReadOnly Description
Recordno [KEY] String False The Recordno field of the STKitDocument object.
Docno String False The Docno field of the STKitDocument object.
Docid String False The Docid field of the STKitDocument object.
Createdfrom String False The Createdfrom field of the STKitDocument object.
State String False The State field of the STKitDocument object.
Closed Boolean False The Closed field of the STKitDocument object.
Whencreated Datetime False The Whencreated field of the STKitDocument object.
Whenmodified Datetime False The Whenmodified field of the STKitDocument object.
Whendue Datetime False The Whendue field of the STKitDocument object.
Status String False The Status field of the STKitDocument object.
Ponumber String False The Ponumber field of the STKitDocument object.
Vendordocno String False The Vendordocno field of the STKitDocument object.
Docparid String False The Docparid field of the STKitDocument object.
Docparkey String False The Docparkey field of the STKitDocument object.
Docparclass String False The Docparclass field of the STKitDocument object.
Term_name String False The Term_name field of the STKitDocument object.
Note String False The Note field of the STKitDocument object.
Warehouse_locationid String False The Warehouse_locationid field of the STKitDocument object.
Shipvia String False The Shipvia field of the STKitDocument object.
User String False The User field of the STKitDocument object.
Createduser String False The Createduser field of the STKitDocument object.
Userid String False The Userid field of the STKitDocument object.
Createduserid String False The Createduserid field of the STKitDocument object.
Contact_contactname String False The Contact_contactname field of the STKitDocument object.
Contact_prefix String False The Contact_prefix field of the STKitDocument object.
Contact_firstname String False The Contact_firstname field of the STKitDocument object.
Contact_initial String False The Contact_initial field of the STKitDocument object.
Contact_lastname String False The Contact_lastname field of the STKitDocument object.
Contact_companyname String False The Contact_companyname field of the STKitDocument object.
Contact_printas String False The Contact_printas field of the STKitDocument object.
Contact_phone1 String False The Contact_phone1 field of the STKitDocument object.
Contact_phone2 String False The Contact_phone2 field of the STKitDocument object.
Contact_cellphone String False The Contact_cellphone field of the STKitDocument object.
Contact_pager String False The Contact_pager field of the STKitDocument object.
Contact_fax String False The Contact_fax field of the STKitDocument object.
Contact_email1 String False The Contact_email1 field of the STKitDocument object.
Contact_email2 String False The Contact_email2 field of the STKitDocument object.
Contact_url1 String False The Contact_url1 field of the STKitDocument object.
Contact_url2 String False The Contact_url2 field of the STKitDocument object.
Contact_visible Boolean False The Contact_visible field of the STKitDocument object.
Contact_mailaddress_address1 String False The Contact_mailaddress_address1 field of the STKitDocument object.
Contact_mailaddress_address2 String False The Contact_mailaddress_address2 field of the STKitDocument object.
Contact_mailaddress_city String False The Contact_mailaddress_city field of the STKitDocument object.
Contact_mailaddress_state String False The Contact_mailaddress_state field of the STKitDocument object.
Contact_mailaddress_zip String False The Contact_mailaddress_zip field of the STKitDocument object.
Contact_mailaddress_country String False The Contact_mailaddress_country field of the STKitDocument object.
Contact_mailaddress_countrycode String False The Contact_mailaddress_countrycode field of the STKitDocument object.
Shiptokey String False The Shiptokey field of the STKitDocument object.
Shipto_contactname String False The Shipto_contactname field of the STKitDocument object.
Shipto_prefix String False The Shipto_prefix field of the STKitDocument object.
Shipto_firstname String False The Shipto_firstname field of the STKitDocument object.
Shipto_initial String False The Shipto_initial field of the STKitDocument object.
Shipto_lastname String False The Shipto_lastname field of the STKitDocument object.
Shipto_companyname String False The Shipto_companyname field of the STKitDocument object.
Shipto_printas String False The Shipto_printas field of the STKitDocument object.
Shipto_phone1 String False The Shipto_phone1 field of the STKitDocument object.
Shipto_phone2 String False The Shipto_phone2 field of the STKitDocument object.
Shipto_cellphone String False The Shipto_cellphone field of the STKitDocument object.
Shipto_pager String False The Shipto_pager field of the STKitDocument object.
Shipto_fax String False The Shipto_fax field of the STKitDocument object.
Shipto_email1 String False The Shipto_email1 field of the STKitDocument object.
Shipto_email2 String False The Shipto_email2 field of the STKitDocument object.
Shipto_url1 String False The Shipto_url1 field of the STKitDocument object.
Shipto_url2 String False The Shipto_url2 field of the STKitDocument object.
Shipto_visible Boolean False The Shipto_visible field of the STKitDocument object.
Shipto_mailaddress_address1 String False The Shipto_mailaddress_address1 field of the STKitDocument object.
Shipto_mailaddress_address2 String False The Shipto_mailaddress_address2 field of the STKitDocument object.
Shipto_mailaddress_city String False The Shipto_mailaddress_city field of the STKitDocument object.
Shipto_mailaddress_state String False The Shipto_mailaddress_state field of the STKitDocument object.
Shipto_mailaddress_zip String False The Shipto_mailaddress_zip field of the STKitDocument object.
Shipto_mailaddress_country String False The Shipto_mailaddress_country field of the STKitDocument object.
Shipto_mailaddress_countrycode String False The Shipto_mailaddress_countrycode field of the STKitDocument object.
Billtokey String False The Billtokey field of the STKitDocument object.
Billto_contactname String False The Billto_contactname field of the STKitDocument object.
Billto_prefix String False The Billto_prefix field of the STKitDocument object.
Billto_firstname String False The Billto_firstname field of the STKitDocument object.
Billto_initial String False The Billto_initial field of the STKitDocument object.
Billto_lastname String False The Billto_lastname field of the STKitDocument object.
Billto_companyname String False The Billto_companyname field of the STKitDocument object.
Billto_printas String False The Billto_printas field of the STKitDocument object.
Billto_phone1 String False The Billto_phone1 field of the STKitDocument object.
Billto_phone2 String False The Billto_phone2 field of the STKitDocument object.
Billto_cellphone String False The Billto_cellphone field of the STKitDocument object.
Billto_pager String False The Billto_pager field of the STKitDocument object.
Billto_fax String False The Billto_fax field of the STKitDocument object.
Billto_email1 String False The Billto_email1 field of the STKitDocument object.
Billto_email2 String False The Billto_email2 field of the STKitDocument object.
Billto_url1 String False The Billto_url1 field of the STKitDocument object.
Billto_url2 String False The Billto_url2 field of the STKitDocument object.
Billto_visible Boolean False The Billto_visible field of the STKitDocument object.
Billto_mailaddress_address1 String False The Billto_mailaddress_address1 field of the STKitDocument object.
Billto_mailaddress_address2 String False The Billto_mailaddress_address2 field of the STKitDocument object.
Billto_mailaddress_city String False The Billto_mailaddress_city field of the STKitDocument object.
Billto_mailaddress_state String False The Billto_mailaddress_state field of the STKitDocument object.
Billto_mailaddress_zip String False The Billto_mailaddress_zip field of the STKitDocument object.
Billto_mailaddress_country String False The Billto_mailaddress_country field of the STKitDocument object.
Billto_mailaddress_countrycode String False The Billto_mailaddress_countrycode field of the STKitDocument object.
Message String False The Message field of the STKitDocument object.
Prrecordkey String False The Prrecordkey field of the STKitDocument object.
Invbatchkey String False The Invbatchkey field of the STKitDocument object.
Prinvbatchkey String False The Prinvbatchkey field of the STKitDocument object.
Printed String False The Printed field of the STKitDocument object.
Backorder String False The Backorder field of the STKitDocument object.
Subtotal Double False The Subtotal field of the STKitDocument object.
Total Double False The Total field of the STKitDocument object.
Entglgroup Int64 False The Entglgroup field of the STKitDocument object.
Currency String False The Currency field of the STKitDocument object.
Exchratedate Datetime False The Exchratedate field of the STKitDocument object.
Exchratetypes_name String False The Exchratetypes_name field of the STKitDocument object.
Exchrate Double False The Exchrate field of the STKitDocument object.
Schopkey String False The Schopkey field of the STKitDocument object.
Salescontract String False The Salescontract field of the STKitDocument object.
Usedascontract String False The Usedascontract field of the STKitDocument object.
Trx_subtotal Double False The Trx_subtotal field of the STKitDocument object.
Trx_total Double False The Trx_total field of the STKitDocument object.
Exch_rate_type_id String False The Exch_rate_type_id field of the STKitDocument object.
Reneweddoc String False The Reneweddoc field of the STKitDocument object.
Basecurr String False The Basecurr field of the STKitDocument object.
Systemgenerated String False The Systemgenerated field of the STKitDocument object.
Invoicerunkey Int64 False The Invoicerunkey field of the STKitDocument object.
Docpar_in_out String False The Docpar_in_out field of the STKitDocument object.
Megaentitykey Int64 False The Megaentitykey field of the STKitDocument object.
Megaentityid String False The Megaentityid field of the STKitDocument object.
Megaentityname String False The Megaentityname field of the STKitDocument object.
Record_url String False The Record_url field of the STKitDocument object.

Task

Retrieves Task report data.

Columns
Name Type ReadOnly Description
Recordno [KEY] String False The Recordno field of the Task object.
Parentkey Int64 False The Parentkey field of the Task object.
Name String False The Name field of the Task object.
Parenttaskname String False The Parenttaskname field of the Task object.
Projectkey Int64 False The Projectkey field of the Task object.
Projectid String False The Projectid field of the Task object.
Projectname String False The Projectname field of the Task object.
Projectbegindate Datetime False The Projectbegindate field of the Task object.
Projectenddate Datetime False The Projectenddate field of the Task object.
Customerkey Int64 False The Customerkey field of the Task object.
Customerid String False The Customerid field of the Task object.
Customername String False The Customername field of the Task object.
Itemkey Int64 False The Itemkey field of the Task object.
Itemid String False The Itemid field of the Task object.
Itemname String False The Itemname field of the Task object.
Pbegindate Datetime False The Pbegindate field of the Task object.
Penddate Datetime False The Penddate field of the Task object.
Abegindate Datetime False The Abegindate field of the Task object.
Aenddate Datetime False The Aenddate field of the Task object.
Budgetqty Double False The Budgetqty field of the Task object.
Estqty Double False The Estqty field of the Task object.
Actualqty Double False The Actualqty field of the Task object.
Remainingqty Double False The Remainingqty field of the Task object.
Approvedqty Double False The Approvedqty field of the Task object.
Percentcomplete Double False The Percentcomplete field of the Task object.
Obspercentcomplete Double False The Obspercentcomplete field of the Task object.
Description String False The Description field of the Task object.
Ismilestone Boolean False The Ismilestone field of the Task object.
Utilized Boolean False The Utilized field of the Task object.
Billable Boolean False The Billable field of the Task object.
Taskno Int64 False The Taskno field of the Task object.
Priority Int64 False The Priority field of the Task object.
Taskstatus String False The Taskstatus field of the Task object.
Timetypekey Int64 False The Timetypekey field of the Task object.
Timetypename String False The Timetypename field of the Task object.
Classid String False The Classid field of the Task object.
Classname String False The Classname field of the Task object.
Classkey Int64 False The Classkey field of the Task object.
Whencreated Datetime False The Whencreated field of the Task object.
Whenmodified Datetime False The Whenmodified field of the Task object.
Createdby Int64 False The Createdby field of the Task object.
Modifiedby Int64 False The Modifiedby field of the Task object.
Record_url String False The Record_url field of the Task object.

TaskResources

Retrieves TaskResources report data.

Columns
Name Type ReadOnly Description
Recordno [KEY] String False The Recordno field of the TaskResources object.
Taskkey String False The Taskkey field of the TaskResources object.
Taskname String False The Taskname field of the TaskResources object.
Projectkey Int64 False The Projectkey field of the TaskResources object.
Projectid String False The Projectid field of the TaskResources object.
Projectname String False The Projectname field of the TaskResources object.
Employeekey Int64 False The Employeekey field of the TaskResources object.
Employeeid String False The Employeeid field of the TaskResources object.
Employeecontactname String False The Employeecontactname field of the TaskResources object.
Pbegindate Datetime False The Pbegindate field of the TaskResources object.
Penddate Datetime False The Penddate field of the TaskResources object.
Abegindate Datetime False The Abegindate field of the TaskResources object.
Aenddate Datetime False The Aenddate field of the TaskResources object.
Budgetqty Double False The Budgetqty field of the TaskResources object.
Estqty Double False The Estqty field of the TaskResources object.
Actualqty Double False The Actualqty field of the TaskResources object.
Remainingqty Double False The Remainingqty field of the TaskResources object.
Approvedqty Double False The Approvedqty field of the TaskResources object.
Percentcomplete Double False The Percentcomplete field of the TaskResources object.
Description String False The Description field of the TaskResources object.
Isfulltime Boolean False The Isfulltime field of the TaskResources object.
Whencreated Datetime False The Whencreated field of the TaskResources object.
Whenmodified Datetime False The Whenmodified field of the TaskResources object.
Createdby Int64 False The Createdby field of the TaskResources object.
Modifiedby Int64 False The Modifiedby field of the TaskResources object.
Record_url String False The Record_url field of the TaskResources object.

TaxGroup

Retrieves TaxGroup report data.

Columns
Name Type ReadOnly Description
Name [KEY] String False The Name field of the TaxGroup object.
Recordno Int64 False The Recordno field of the TaxGroup object.
Grouptype String False The Grouptype field of the TaxGroup object.
Whencreated Datetime False The Whencreated field of the TaxGroup object.
Whenmodified Datetime False The Whenmodified field of the TaxGroup object.
Createdby Int64 False The Createdby field of the TaxGroup object.
Modifiedby Int64 False The Modifiedby field of the TaxGroup object.
Megaentitykey Int64 False The Megaentitykey field of the TaxGroup object.
Megaentityid String False The Megaentityid field of the TaxGroup object.
Megaentityname String False The Megaentityname field of the TaxGroup object.
Record_url String False The Record_url field of the TaxGroup object.

TerritoryGroup

Retrieves TerritoryGroup report data.

Columns
Name Type ReadOnly Description
Recordno [KEY] String False The Recordno field of the TerritoryGroup object.
Id String False The ID field of the TerritoryGroup object.
Name String False The Name field of the TerritoryGroup object.
Description String False The Description field of the TerritoryGroup object.
Whencreated Datetime False The Whencreated field of the TerritoryGroup object.
Whenmodified Datetime False The Whenmodified field of the TerritoryGroup object.
Createdby Int64 False The Createdby field of the TerritoryGroup object.
Modifiedby Int64 False The Modifiedby field of the TerritoryGroup object.
Megaentitykey Int64 False The Megaentitykey field of the TerritoryGroup object.
Megaentityid String False The Megaentityid field of the TerritoryGroup object.
Megaentityname String False The Megaentityname field of the TerritoryGroup object.
Record_url String False The Record_url field of the TerritoryGroup object.

Timesheet

Retrieves Timesheet report data.

Columns
Name Type ReadOnly Description
Recordno [KEY] String False The Recordno field of the Timesheet object.
Description String False The Description field of the Timesheet object.
Employeekey Int64 False The Employeekey field of the Timesheet object.
Begindate Datetime False The Begindate field of the Timesheet object.
Enddate Datetime False The Enddate field of the Timesheet object.
Employeeid String False The Employeeid field of the Timesheet object.
Employeename String False The Employeename field of the Timesheet object.
State String False The State field of the Timesheet object.
LinesNUM Int64 False The Lines# field of the Timesheet object.
Employeefirstname String False The Employeefirstname field of the Timesheet object.
Employeelastname String False The Employeelastname field of the Timesheet object.
Config String False The Config field of the Timesheet object.
Uom String False The Uom field of the Timesheet object.
Hoursinday Double False The Hoursinday field of the Timesheet object.
Employee_locationid String False The Employee_locationid field of the Timesheet object.
Employee_departmentid String False The Employee_departmentid field of the Timesheet object.
Employee_classid String False The Employee_classid field of the Timesheet object.
Method String False The Method field of the Timesheet object.
Actualcost Boolean False The Actualcost field of the Timesheet object.
Locationkey Int64 False The Locationkey field of the Timesheet object.
Whencreated Datetime False The Whencreated field of the Timesheet object.
Whenmodified Datetime False The Whenmodified field of the Timesheet object.
Createdby Int64 False The Createdby field of the Timesheet object.
Modifiedby Int64 False The Modifiedby field of the Timesheet object.
Megaentitykey Int64 False The Megaentitykey field of the Timesheet object.
Megaentityid String False The Megaentityid field of the Timesheet object.
Megaentityname String False The Megaentityname field of the Timesheet object.
Record_url String False The Record_url field of the Timesheet object.

TimeType

Retrieves TimeType report data.

Columns
Name Type ReadOnly Description
Recordno [KEY] Int64 False The Recordno field of the TimeType object.
Name String False The Name field of the TimeType object.
Accountkey Int64 False The Accountkey field of the TimeType object.
Accountno String False The Accountno field of the TimeType object.
Accounttitle String False The Accounttitle field of the TimeType object.
Offsetaccountkey Int64 False The Offsetaccountkey field of the TimeType object.
Offsetaccountno String False The Offsetaccountno field of the TimeType object.
Offsetaccounttitle String False The Offsetaccounttitle field of the TimeType object.
Contraaccountkey Int64 False The Contraaccountkey field of the TimeType object.
Contraaccountno String False The Contraaccountno field of the TimeType object.
Contraaccounttitle String False The Contraaccounttitle field of the TimeType object.
Status String False The Status field of the TimeType object.
Earningtypekey Int64 False The Earningtypekey field of the TimeType object.
Earningtypename String False The Earningtypename field of the TimeType object.
Megaentitykey Int64 False The Megaentitykey field of the TimeType object.
Megaentityid String False The Megaentityid field of the TimeType object.
Megaentityname String False The Megaentityname field of the TimeType object.
Record_url String False The Record_url field of the TimeType object.

Track

A collection of Track items.

Columns
Name Type ReadOnly Description
Createdat Datetime True
Createdby String True
Name String False
Id [KEY] Long True
Track_description String False
Updatedat Datetime True
Updatedby String True
Comment String False
Record_url String True

TransactionRule

Retrieves TransactionRule report data.

Columns
Name Type ReadOnly Description
Recordno Int64 False The Recordno field of the TransactionRule object.
Name [KEY] String False The Name field of the TransactionRule object.
Description String False The Description field of the TransactionRule object.
Journalid String False The Journalid field of the TransactionRule object.
Status String False The Status field of the TransactionRule object.
Whencreated Datetime False The Whencreated field of the TransactionRule object.
Whenmodified Datetime False The Whenmodified field of the TransactionRule object.
Createdby Int64 False The Createdby field of the TransactionRule object.
Modifiedby Int64 False The Modifiedby field of the TransactionRule object.
Megaentitykey Int64 False The Megaentitykey field of the TransactionRule object.
Megaentityid String False The Megaentityid field of the TransactionRule object.
Megaentityname String False The Megaentityname field of the TransactionRule object.
Record_url String False The Record_url field of the TransactionRule object.

TransactionRuleDetail

Retrieves TransactionRuleDetail report data.

Columns
Name Type ReadOnly Description
Recordno [KEY] String False The Recordno field of the TransactionRuleDetail object.
Rulekey Int64 False The Rulekey field of the TransactionRuleDetail object.
Rulename String False The Rulename field of the TransactionRuleDetail object.
Seqno Int64 False The Seqno field of the TransactionRuleDetail object.
Description String False The Description field of the TransactionRuleDetail object.
Action String False The Action field of the TransactionRuleDetail object.
Itemglgroupkey Int64 False The Itemglgroupkey field of the TransactionRuleDetail object.
Itemglgroupname String False The Itemglgroupname field of the TransactionRuleDetail object.
Post Boolean False The Post field of the TransactionRuleDetail object.
Subtotalrange String False The Subtotalrange field of the TransactionRuleDetail object.
Source String False The Source field of the TransactionRuleDetail object.
Rate Double False The Rate field of the TransactionRuleDetail object.
Ratenote String False The Ratenote field of the TransactionRuleDetail object.
Dbglacctkey Int64 False The Dbglacctkey field of the TransactionRuleDetail object.
Dbglacctno String False The Dbglacctno field of the TransactionRuleDetail object.
Dblockey Int64 False The Dblockey field of the TransactionRuleDetail object.
Dblocid String False The Dblocid field of the TransactionRuleDetail object.
Dblocname String False The Dblocname field of the TransactionRuleDetail object.
Dbdeptkey Int64 False The Dbdeptkey field of the TransactionRuleDetail object.
Dbdeptid String False The Dbdeptid field of the TransactionRuleDetail object.
Dbdeptname String False The Dbdeptname field of the TransactionRuleDetail object.
Dbclasskey Int64 False The Dbclasskey field of the TransactionRuleDetail object.
Dbclassid String False The Dbclassid field of the TransactionRuleDetail object.
Dbclassname String False The Dbclassname field of the TransactionRuleDetail object.
Dbprojectkey Int64 False The Dbprojectkey field of the TransactionRuleDetail object.
Dbprojectid String False The Dbprojectid field of the TransactionRuleDetail object.
Dbprojectname String False The Dbprojectname field of the TransactionRuleDetail object.
Crglacctkey Int64 False The Crglacctkey field of the TransactionRuleDetail object.
Crglacctno String False The Crglacctno field of the TransactionRuleDetail object.
Crlockey Int64 False The Crlockey field of the TransactionRuleDetail object.
Crlocid String False The Crlocid field of the TransactionRuleDetail object.
Crlocname String False The Crlocname field of the TransactionRuleDetail object.
Crdeptkey Int64 False The Crdeptkey field of the TransactionRuleDetail object.
Crdeptid String False The Crdeptid field of the TransactionRuleDetail object.
Crdeptname String False The Crdeptname field of the TransactionRuleDetail object.
Crclasskey Int64 False The Crclasskey field of the TransactionRuleDetail object.
Crclassid String False The Crclassid field of the TransactionRuleDetail object.
Crclassname String False The Crclassname field of the TransactionRuleDetail object.
Crprojectkey Int64 False The Crprojectkey field of the TransactionRuleDetail object.
Crprojectid String False The Crprojectid field of the TransactionRuleDetail object.
Crprojectname String False The Crprojectname field of the TransactionRuleDetail object.
Whencreated Datetime False The Whencreated field of the TransactionRuleDetail object.
Whenmodified Datetime False The Whenmodified field of the TransactionRuleDetail object.
Createdby Int64 False The Createdby field of the TransactionRuleDetail object.
Modifiedby Int64 False The Modifiedby field of the TransactionRuleDetail object.
Record_url String False The Record_url field of the TransactionRuleDetail object.

TrxCurrencies

Retrieves TrxCurrencies report data.

Columns
Name Type ReadOnly Description
Recordno Int64 False The Recordno field of the TrxCurrencies object.
Code [KEY] String False The Code field of the TrxCurrencies object.
Fullname String False The Fullname field of the TrxCurrencies object.
Symbol String False The Symbol field of the TrxCurrencies object.
Iso_code String False The Iso_code field of the TrxCurrencies object.
Format String False The Format field of the TrxCurrencies object.
Name String False The Name field of the TrxCurrencies object.
Subname String False The Subname field of the TrxCurrencies object.
Decimal_sep String False The Decimal_sep field of the TrxCurrencies object.
Thousand_sep String False The Thousand_sep field of the TrxCurrencies object.
Alignment String False The Alignment field of the TrxCurrencies object.
Numbering_sys String False The Numbering_sys field of the TrxCurrencies object.
Isbasecurr String False The Isbasecurr field of the TrxCurrencies object.
Locationkey Int64 False The Locationkey field of the TrxCurrencies object.
Whencreated Datetime False The Whencreated field of the TrxCurrencies object.
Whenmodified Datetime False The Whenmodified field of the TrxCurrencies object.
Createdby Int64 False The Createdby field of the TrxCurrencies object.
Modifiedby Int64 False The Modifiedby field of the TrxCurrencies object.
Record_url String False The Record_url field of the TrxCurrencies object.

UoM

Retrieves UoM report data.

Columns
Name Type ReadOnly Description
Recordno Int64 False The Recordno field of the UoM object.
Name [KEY] String False The Name field of the UoM object.
Issystem Boolean False The Issystem field of the UoM object.
Invuom String False The Invuom field of the UoM object.
Pouom String False The Pouom field of the UoM object.
Oeuom String False The Oeuom field of the UoM object.
Whencreated Datetime False The Whencreated field of the UoM object.
Whenmodified Datetime False The Whenmodified field of the UoM object.
Createdby Int64 False The Createdby field of the UoM object.
Modifiedby Int64 False The Modifiedby field of the UoM object.
Record_url String False The Record_url field of the UoM object.

UserAdjJrnl

Retrieves UserAdjJrnl report data.

Columns
Name Type ReadOnly Description
Recordno Int64 False The Recordno field of the UserAdjJrnl object.
Symbol String False The Symbol field of the UserAdjJrnl object.
Title [KEY] String False The Title field of the UserAdjJrnl object.
Status String False The Status field of the UserAdjJrnl object.
Whencreated Datetime False The Whencreated field of the UserAdjJrnl object.
Whenmodified Datetime False The Whenmodified field of the UserAdjJrnl object.
Createdby Int64 False The Createdby field of the UserAdjJrnl object.
Modifiedby Int64 False The Modifiedby field of the UserAdjJrnl object.
Useradjbookkey String False The Useradjbookkey field of the UserAdjJrnl object.
Useradjbookid String False The Useradjbookid field of the UserAdjJrnl object.
Record_url String False The Record_url field of the UserAdjJrnl object.

UserInfo

Retrieves UserInfo report data.

Columns
Name Type ReadOnly Description
Loginid [KEY] String False The Loginid field of the UserInfo object.
Description String False The Description field of the UserInfo object.
Contactinfo_contactname String False The Contactinfo_contactname field of the UserInfo object.
Contactinfo_prefix String False The Contactinfo_prefix field of the UserInfo object.
Contactinfo_firstname String False The Contactinfo_firstname field of the UserInfo object.
Contactinfo_initial String False The Contactinfo_initial field of the UserInfo object.
Contactinfo_lastname String False The Contactinfo_lastname field of the UserInfo object.
Contactinfo_companyname String False The Contactinfo_companyname field of the UserInfo object.
Contactinfo_printas String False The Contactinfo_printas field of the UserInfo object.
Contactinfo_phone1 String False The Contactinfo_phone1 field of the UserInfo object.
Contactinfo_phone2 String False The Contactinfo_phone2 field of the UserInfo object.
Contactinfo_cellphone String False The Contactinfo_cellphone field of the UserInfo object.
Contactinfo_pager String False The Contactinfo_pager field of the UserInfo object.
Contactinfo_fax String False The Contactinfo_fax field of the UserInfo object.
Contactinfo_email1 String False The Contactinfo_email1 field of the UserInfo object.
Contactinfo_email2 String False The Contactinfo_email2 field of the UserInfo object.
Contactinfo_url1 String False The Contactinfo_url1 field of the UserInfo object.
Contactinfo_url2 String False The Contactinfo_url2 field of the UserInfo object.
Contactinfo_mailaddress_address1 String False The Contactinfo_mailaddress_address1 field of the UserInfo object.
Contactinfo_mailaddress_address2 String False The Contactinfo_mailaddress_address2 field of the UserInfo object.
Contactinfo_mailaddress_city String False The Contactinfo_mailaddress_city field of the UserInfo object.
Contactinfo_mailaddress_state String False The Contactinfo_mailaddress_state field of the UserInfo object.
Contactinfo_mailaddress_zip String False The Contactinfo_mailaddress_zip field of the UserInfo object.
Contactinfo_mailaddress_country String False The Contactinfo_mailaddress_country field of the UserInfo object.
Contactinfo_mailaddress_countrycode String False The Contactinfo_mailaddress_countrycode field of the UserInfo object.
Admin String False The Admin field of the UserInfo object.
Usertype String False The Usertype field of the UserInfo object.
Visible String False The Visible field of the UserInfo object.
Status String False The Status field of the UserInfo object.
Unrestricted Boolean False The Unrestricted field of the UserInfo object.
Logindisabled Boolean False The Logindisabled field of the UserInfo object.
Pwdneverexpires Boolean False The Pwdneverexpires field of the UserInfo object.
Resetpassword String False The Resetpassword field of the UserInfo object.
Pwdqlynotenforced Boolean False The Pwdqlynotenforced field of the UserInfo object.
Whencreated Datetime False The Whencreated field of the UserInfo object.
Whenmodified Datetime False The Whenmodified field of the UserInfo object.
Createdby Int64 False The Createdby field of the UserInfo object.
Modifiedby Int64 False The Modifiedby field of the UserInfo object.
Recordno Int64 False The Recordno field of the UserInfo object.
Contactkey Int64 False The Contactkey field of the UserInfo object.
Chatter_disabled Boolean False The Chatter_disabled field of the UserInfo object.
Megaentitykey Int64 False The Megaentitykey field of the UserInfo object.
Megaentityid String False The Megaentityid field of the UserInfo object.
Megaentityname String False The Megaentityname field of the UserInfo object.
Record_url String False The Record_url field of the UserInfo object.

UserRoles

Retrieves UserRoles report data.

Columns
Name Type ReadOnly Description
Rolename [KEY] String False The Rolename field of the UserRoles object.
Userid String False The Userid field of the UserRoles object.
Record_url String False The Record_url field of the UserRoles object.

Vendor

Retrieves Vendor report data.

Columns
Name Type ReadOnly Description
Recordno Int64 False The Recordno field of the Vendor object.
Vendorid [KEY] String False The Vendorid field of the Vendor object.
Name String False The Name field of the Vendor object.
Name1099 String False The Name1099 field of the Vendor object.
Parentkey String False The Parentkey field of the Vendor object.
Parentid String False The Parentid field of the Vendor object.
Parentname String False The Parentname field of the Vendor object.
Displaycontact_contactname String False The Displaycontact_contactname field of the Vendor object.
Displaycontact_companyname String False The Displaycontact_companyname field of the Vendor object.
Displaycontact_prefix String False The Displaycontact_prefix field of the Vendor object.
Displaycontact_firstname String False The Displaycontact_firstname field of the Vendor object.
Displaycontact_lastname String False The Displaycontact_lastname field of the Vendor object.
Displaycontact_initial String False The Displaycontact_initial field of the Vendor object.
Displaycontact_printas String False The Displaycontact_printas field of the Vendor object.
Displaycontact_taxable Boolean False The Displaycontact_taxable field of the Vendor object.
Displaycontact_taxgroup String False The Displaycontact_taxgroup field of the Vendor object.
Displaycontact_phone1 String False The Displaycontact_phone1 field of the Vendor object.
Displaycontact_phone2 String False The Displaycontact_phone2 field of the Vendor object.
Displaycontact_cellphone String False The Displaycontact_cellphone field of the Vendor object.
Displaycontact_pager String False The Displaycontact_pager field of the Vendor object.
Displaycontact_fax String False The Displaycontact_fax field of the Vendor object.
Displaycontact_email1 String False The Displaycontact_email1 field of the Vendor object.
Displaycontact_email2 String False The Displaycontact_email2 field of the Vendor object.
Displaycontact_url1 String False The Displaycontact_url1 field of the Vendor object.
Displaycontact_url2 String False The Displaycontact_url2 field of the Vendor object.
Displaycontact_visible Boolean False The Displaycontact_visible field of the Vendor object.
Displaycontact_mailaddress_address1 String False The Displaycontact_mailaddress_address1 field of the Vendor object.
Displaycontact_mailaddress_address2 String False The Displaycontact_mailaddress_address2 field of the Vendor object.
Displaycontact_mailaddress_city String False The Displaycontact_mailaddress_city field of the Vendor object.
Displaycontact_mailaddress_state String False The Displaycontact_mailaddress_state field of the Vendor object.
Displaycontact_mailaddress_zip String False The Displaycontact_mailaddress_zip field of the Vendor object.
Displaycontact_mailaddress_country String False The Displaycontact_mailaddress_country field of the Vendor object.
Displaycontact_mailaddress_countrycode String False The Displaycontact_mailaddress_countrycode field of the Vendor object.
Displaycontact_status String False The Displaycontact_status field of the Vendor object.
Entity String False The Entity field of the Vendor object.
Termname String False The Termname field of the Vendor object.
Termvalue String False The Termvalue field of the Vendor object.
Vendoraccountno String False The Vendoraccountno field of the Vendor object.
Taxid String False The Taxid field of the Vendor object.
Creditlimit Double False The Creditlimit field of the Vendor object.
Totaldue Double False The Totaldue field of the Vendor object.
Billingtype String False The Billingtype field of the Vendor object.
Vendtype String False The Vendtype field of the Vendor object.
Vendtype1099type String False The Vendtype1099type field of the Vendor object.
Glgroup String False The Glgroup field of the Vendor object.
Priceschedule String False The Priceschedule field of the Vendor object.
Discount Double False The Discount field of the Vendor object.
Pricelist String False The Pricelist field of the Vendor object.
Comments String False The Comments field of the Vendor object.
Accountlabel String False The Accountlabel field of the Vendor object.
Apaccount String False The Apaccount field of the Vendor object.
Apaccounttitle String False The Apaccounttitle field of the Vendor object.
Form1099type String False The Form1099type field of the Vendor object.
Form1099box String False The Form1099box field of the Vendor object.
Paymentpriority String False The Paymentpriority field of the Vendor object.
Contactinfo_contactname String False The Contactinfo_contactname field of the Vendor object.
Contactinfo_prefix String False The Contactinfo_prefix field of the Vendor object.
Contactinfo_firstname String False The Contactinfo_firstname field of the Vendor object.
Contactinfo_initial String False The Contactinfo_initial field of the Vendor object.
Contactinfo_lastname String False The Contactinfo_lastname field of the Vendor object.
Contactinfo_companyname String False The Contactinfo_companyname field of the Vendor object.
Contactinfo_printas String False The Contactinfo_printas field of the Vendor object.
Contactinfo_phone1 String False The Contactinfo_phone1 field of the Vendor object.
Contactinfo_phone2 String False The Contactinfo_phone2 field of the Vendor object.
Contactinfo_cellphone String False The Contactinfo_cellphone field of the Vendor object.
Contactinfo_pager String False The Contactinfo_pager field of the Vendor object.
Contactinfo_fax String False The Contactinfo_fax field of the Vendor object.
Contactinfo_email1 String False The Contactinfo_email1 field of the Vendor object.
Contactinfo_email2 String False The Contactinfo_email2 field of the Vendor object.
Contactinfo_url1 String False The Contactinfo_url1 field of the Vendor object.
Contactinfo_url2 String False The Contactinfo_url2 field of the Vendor object.
Contactinfo_visible Boolean False The Contactinfo_visible field of the Vendor object.
Contactinfo_mailaddress_address1 String False The Contactinfo_mailaddress_address1 field of the Vendor object.
Contactinfo_mailaddress_address2 String False The Contactinfo_mailaddress_address2 field of the Vendor object.
Contactinfo_mailaddress_city String False The Contactinfo_mailaddress_city field of the Vendor object.
Contactinfo_mailaddress_state String False The Contactinfo_mailaddress_state field of the Vendor object.
Contactinfo_mailaddress_zip String False The Contactinfo_mailaddress_zip field of the Vendor object.
Contactinfo_mailaddress_country String False The Contactinfo_mailaddress_country field of the Vendor object.
Contactinfo_mailaddress_countrycode String False The Contactinfo_mailaddress_countrycode field of the Vendor object.
Payto_contactname String False The Payto_contactname field of the Vendor object.
Payto_prefix String False The Payto_prefix field of the Vendor object.
Payto_firstname String False The Payto_firstname field of the Vendor object.
Payto_initial String False The Payto_initial field of the Vendor object.
Payto_lastname String False The Payto_lastname field of the Vendor object.
Payto_companyname String False The Payto_companyname field of the Vendor object.
Payto_printas String False The Payto_printas field of the Vendor object.
Payto_phone1 String False The Payto_phone1 field of the Vendor object.
Payto_phone2 String False The Payto_phone2 field of the Vendor object.
Payto_cellphone String False The Payto_cellphone field of the Vendor object.
Payto_pager String False The Payto_pager field of the Vendor object.
Payto_fax String False The Payto_fax field of the Vendor object.
Payto_email1 String False The Payto_email1 field of the Vendor object.
Payto_email2 String False The Payto_email2 field of the Vendor object.
Payto_url1 String False The Payto_url1 field of the Vendor object.
Payto_url2 String False The Payto_url2 field of the Vendor object.
Payto_visible Boolean False The Payto_visible field of the Vendor object.
Payto_mailaddress_address1 String False The Payto_mailaddress_address1 field of the Vendor object.
Payto_mailaddress_address2 String False The Payto_mailaddress_address2 field of the Vendor object.
Payto_mailaddress_city String False The Payto_mailaddress_city field of the Vendor object.
Payto_mailaddress_state String False The Payto_mailaddress_state field of the Vendor object.
Payto_mailaddress_zip String False The Payto_mailaddress_zip field of the Vendor object.
Payto_mailaddress_country String False The Payto_mailaddress_country field of the Vendor object.
Payto_mailaddress_countrycode String False The Payto_mailaddress_countrycode field of the Vendor object.
Returnto_contactname String False The Returnto_contactname field of the Vendor object.
Returnto_prefix String False The Returnto_prefix field of the Vendor object.
Returnto_firstname String False The Returnto_firstname field of the Vendor object.
Returnto_initial String False The Returnto_initial field of the Vendor object.
Returnto_lastname String False The Returnto_lastname field of the Vendor object.
Returnto_companyname String False The Returnto_companyname field of the Vendor object.
Returnto_printas String False The Returnto_printas field of the Vendor object.
Returnto_phone1 String False The Returnto_phone1 field of the Vendor object.
Returnto_phone2 String False The Returnto_phone2 field of the Vendor object.
Returnto_cellphone String False The Returnto_cellphone field of the Vendor object.
Returnto_pager String False The Returnto_pager field of the Vendor object.
Returnto_fax String False The Returnto_fax field of the Vendor object.
Returnto_email1 String False The Returnto_email1 field of the Vendor object.
Returnto_email2 String False The Returnto_email2 field of the Vendor object.
Returnto_url1 String False The Returnto_url1 field of the Vendor object.
Returnto_url2 String False The Returnto_url2 field of the Vendor object.
Returnto_visible Boolean False The Returnto_visible field of the Vendor object.
Returnto_mailaddress_address1 String False The Returnto_mailaddress_address1 field of the Vendor object.
Returnto_mailaddress_address2 String False The Returnto_mailaddress_address2 field of the Vendor object.
Returnto_mailaddress_city String False The Returnto_mailaddress_city field of the Vendor object.
Returnto_mailaddress_state String False The Returnto_mailaddress_state field of the Vendor object.
Returnto_mailaddress_zip String False The Returnto_mailaddress_zip field of the Vendor object.
Returnto_mailaddress_country String False The Returnto_mailaddress_country field of the Vendor object.
Returnto_mailaddress_countrycode String False The Returnto_mailaddress_countrycode field of the Vendor object.
Status String False The Status field of the Vendor object.
Paydatevalue String False The Paydatevalue field of the Vendor object.
Onetime Boolean False The Onetime field of the Vendor object.
Onhold Boolean False The Onhold field of the Vendor object.
Whenmodified Datetime False The Whenmodified field of the Vendor object.
Isowner Boolean False The Isowner field of the Vendor object.
Donotcutcheck Boolean False The Donotcutcheck field of the Vendor object.
Owner_eqglaccount String False The Owner_eqglaccount field of the Vendor object.
Owner_eqglaccountlabel String False The Owner_eqglaccountlabel field of the Vendor object.
Owner_holddist Boolean False The Owner_holddist field of the Vendor object.
Owner_accountlabel_label String False The Owner_accountlabel_label field of the Vendor object.
Currency String False The Currency field of the Vendor object.
Achenabled Boolean False The Achenabled field of the Vendor object.
Wireenabled Boolean False The Wireenabled field of the Vendor object.
Checkenabled Boolean False The Checkenabled field of the Vendor object.
Achbankroutingnumber String False The Achbankroutingnumber field of the Vendor object.
Achaccounttype String False The Achaccounttype field of the Vendor object.
Achremittancetype String False The Achremittancetype field of the Vendor object.
Wirebankname String False The Wirebankname field of the Vendor object.
Wirebankroutingnumber String False The Wirebankroutingnumber field of the Vendor object.
Wireaccounttype String False The Wireaccounttype field of the Vendor object.
Pmplusremittancetype String False The Pmplusremittancetype field of the Vendor object.
Pmplusemail String False The Pmplusemail field of the Vendor object.
Pmplusfax String False The Pmplusfax field of the Vendor object.
Displaytermdiscount Boolean False The Displaytermdiscount field of the Vendor object.
Oeprclstkey Int64 False The Oeprclstkey field of the Vendor object.
Displocacctnocheck Boolean False The Displocacctnocheck field of the Vendor object.
Whencreated Datetime False The Whencreated field of the Vendor object.
Createdby Int64 False The Createdby field of the Vendor object.
Modifiedby Int64 False The Modifiedby field of the Vendor object.
Paymentnotify Boolean False The Paymentnotify field of the Vendor object.
Paymethodkey String False The Paymethodkey field of the Vendor object.
Objectrestriction String False The Objectrestriction field of the Vendor object.
Mergepaymentreq Boolean False The Mergepaymentreq field of the Vendor object.
Displaycontactkey Int64 False The Displaycontactkey field of the Vendor object.
Primarycontactkey Int64 False The Primarycontactkey field of the Vendor object.
Paytokey Int64 False The Paytokey field of the Vendor object.
Returntokey Int64 False The Returntokey field of the Vendor object.
Accountlabelkey Int64 False The Accountlabelkey field of the Vendor object.
Accountkey Int64 False The Accountkey field of the Vendor object.
Vendtypekey Int64 False The Vendtypekey field of the Vendor object.
Glgrpkey Int64 False The Glgrpkey field of the Vendor object.
Termskey Int64 False The Termskey field of the Vendor object.
Vendoracctnokey Int64 False The Vendoracctnokey field of the Vendor object.
Paymethodrec Int64 False The Paymethodrec field of the Vendor object.
Outsourcecheck Boolean False The Outsourcecheck field of the Vendor object.
Outsourcecheckstate String False The Outsourcecheckstate field of the Vendor object.
Outsourceach Boolean False The Outsourceach field of the Vendor object.
Outsourceachstate String False The Outsourceachstate field of the Vendor object.
Vendorachaccountid String False The Vendorachaccountid field of the Vendor object.
Vendoraccountoutsourceach String False The Vendoraccountoutsourceach field of the Vendor object.
Offsetglaccountno String False The Offsetglaccountno field of the Vendor object.
Offsetglaccountnotitle String False The Offsetglaccountnotitle field of the Vendor object.
Megaentitykey Int64 False The Megaentitykey field of the Vendor object.
Megaentityid String False The Megaentityid field of the Vendor object.
Megaentityname String False The Megaentityname field of the Vendor object.
Record_url String False The Record_url field of the Vendor object.

VendorGroup

Retrieves VendorGroup report data.

Columns
Name Type ReadOnly Description
Recordno [KEY] String False The Recordno field of the VendorGroup object.
Id String False The ID field of the VendorGroup object.
Name String False The Name field of the VendorGroup object.
Description String False The Description field of the VendorGroup object.
Grouptype String False The Grouptype field of the VendorGroup object.
Whencreated Datetime False The Whencreated field of the VendorGroup object.
Whenmodified Datetime False The Whenmodified field of the VendorGroup object.
Createdby Int64 False The Createdby field of the VendorGroup object.
Modifiedby Int64 False The Modifiedby field of the VendorGroup object.
Megaentitykey Int64 False The Megaentitykey field of the VendorGroup object.
Megaentityid String False The Megaentityid field of the VendorGroup object.
Megaentityname String False The Megaentityname field of the VendorGroup object.
Record_url String False The Record_url field of the VendorGroup object.

VendorVisibility

Retrieves VendorVisibility report data.

Columns
Name Type ReadOnly Description
Vendorid [KEY] String False The Vendorid field of the VendorVisibility object.
Name String False The Name field of the VendorVisibility object.
Visibility String False The Visibility field of the VendorVisibility object.
Restrictedlocations String False The Restrictedlocations field of the VendorVisibility object.
Restricteddepartments String False The Restricteddepartments field of the VendorVisibility object.
Record_url String False The Record_url field of the VendorVisibility object.

VendType

Retrieves VendType report data.

Columns
Name Type ReadOnly Description
Name [KEY] String False The Name field of the VendType object.
Parent_name String False The Parent_name field of the VendType object.
Status String False The Status field of the VendType object.
Form1099type String False The Form1099type field of the VendType object.
Form1099box String False The Form1099box field of the VendType object.
Recordno Int64 False The Recordno field of the VendType object.
Whencreated Datetime False The Whencreated field of the VendType object.
Whenmodified Datetime False The Whenmodified field of the VendType object.
Createdby Int64 False The Createdby field of the VendType object.
Modifiedby Int64 False The Modifiedby field of the VendType object.
Megaentitykey Int64 False The Megaentitykey field of the VendType object.
Megaentityid String False The Megaentityid field of the VendType object.
Megaentityname String False The Megaentityname field of the VendType object.
Record_url String False The Record_url field of the VendType object.

Warehouse

Retrieves Warehouse report data.

Columns
Name Type ReadOnly Description
Recordno Int64 False The Recordno field of the Warehouse object.
Locationid [KEY] String False The Locationid field of the Warehouse object.
Name String False The Name field of the Warehouse object.
Parent_locationid String False The Parent_locationid field of the Warehouse object.
Manager_name String False The Manager_name field of the Warehouse object.
Managerid String False The Managerid field of the Warehouse object.
Contactinfo_contactname String False The Contactinfo_contactname field of the Warehouse object.
Shipto_contactname String False The Shipto_contactname field of the Warehouse object.
Usedingl Boolean False The Usedingl field of the Warehouse object.
Status String False The Status field of the Warehouse object.
Whencreated Datetime False The Whencreated field of the Warehouse object.
Whenmodified Datetime False The Whenmodified field of the Warehouse object.
Createdby Int64 False The Createdby field of the Warehouse object.
Modifiedby Int64 False The Modifiedby field of the Warehouse object.
Megaentitykey Int64 False The Megaentitykey field of the Warehouse object.
Megaentityid String False The Megaentityid field of the Warehouse object.
Megaentityname String False The Megaentityname field of the Warehouse object.
Record_url String False The Record_url field of the Warehouse object.

Views

Views are composed of columns and pseudo columns. Views are similar to tables in the way that data is represented; however, views do not support updates. Entities that are represented as views are typically read-only entities. Often, a stored procedure is available to update the data if such functionality is applicable to the data source.

Queries can be executed against a view as if it were a normal table, and the data that comes back is similar in that regard.

Dynamic views, such as queries exposed as views, and views for looking up specific combinations of project_team work items are supported.

Sage Intacct Connector Views

Name Description
AccountBalance View containing detailed account balance data.
ACHBank Retrieves ACHBank report data.
AllocationEntry Retrieves AllocationEntry report data.
APAdjustmentItem Retrieves APAdjustmentItem report data.
APBillItem Retrieves APBillItem report data.
APBillPayment Retrieves APBillPayment report data.
APIUsageDetail Retrieves APIUsageDetail report data.
APIUsageSummary Retrieves APIUsageSummary report data.
APPayment Retrieves APPayment report data.
APPaymentItem Retrieves APPaymentItem report data.
APPaymentRequest Retrieves APPaymentRequest report data.
APRecurBillEntry Retrieves APRecurBillEntry report data.
ARAdjustmentItem Retrieves ARAdjustmentItem report data.
ARInvoiceItem Retrieves ARInvoiceItem report data.
ARPayment Retrieves ARPayment report data.
ARPaymentItem Retrieves ARPaymentItem report data.
ARRecurInvoice Retrieves ARRecurInvoice report data.
ARRecurInvoiceEntry Retrieves ARRecurInvoiceEntry report data.
Attachments Usage information for the operation Attachments.rsd.
BankFee Retrieves BankFee report data.
BankFeeEntry Retrieves BankFeeEntry report data.
BillingSchedule Retrieves BillingSchedule report data.
CCTransaction Retrieves CCTransaction report data.
CCTransactionEntry Retrieves CCTransactionEntry report data.
ChargePayoff Retrieves ChargePayoff report data.
ChargePayoffEntry Retrieves ChargePayoffEntry report data.
ClassGroup Retrieves ClassGroup report data.
CNSAcctBal Retrieves CNSAcctBal report data.
Company Retrieves Company report data.
Contractbillingschedule null
Contractrevenueschedule null
CreditCardFee Retrieves CreditCardFee report data.
CreditCardFeeEntry Retrieves CreditCardFeeEntry report data.
DDSJob Retrieves DDSJob report data.
DepartmentGroup Retrieves DepartmentGroup report data.
Deposit Retrieves Deposit report data.
DepositEntry Retrieves DepositEntry report data.
DimensionRelationships List all relationships between dimension type objects along with helpful integration information about the relationship.
Dimensions Lists all standard dimensions and UDDs in a company along with helpful integration information about the object.
EExpensesItem Retrieves EExpensesItem report data.
EExpensesPayment Retrieves EExpensesPayment report data.
EPPayment Retrieves EPPayment report data.
EPPaymentItem Retrieves EPPaymentItem report data.
EPPaymentRequest Retrieves EPPaymentRequest report data.
ExchangeRateEntry Retrieves ExchangeRateEntry report data.
ExchangeRateTypes Retrieves ExchangeRateTypes report data.
ExpenseAdjustmentsItem Retrieves ExpenseAdjustmentsItem report data.
FundsTransfer Retrieves FundsTransfer report data.
FundsTransferEntry Retrieves FundsTransferEntry report data.
GLAccountBalance Retrieves GLAccountBalance report data.
GLAcctGrpHierarchy Retrieves GLAcctGrpHierarchy report data.
GLDetail Retrieves GLDetail report data.
GLEntry Retrieves GLEntry report data.
GLResolve Retrieves GLResolve report data.
InvDocumentEntry Retrieves InvDocumentEntry report data.
InvDocumentSubtotals Retrieves InvDocumentSubtotals report data.
InvoiceRun Retrieves InvoiceRun report data.
InvPriceListEntry Retrieves InvPriceListEntry report data.
InvRecurSubtotals Retrieves InvRecurSubtotals report data.
ItemComponent Retrieves ItemComponent report data.
ItemGroup Retrieves ItemGroup report data.
LocationGroup Retrieves LocationGroup report data.
OtherReceipts Retrieves OtherReceipts report data.
OtherReceiptsEntry Retrieves OtherReceiptsEntry report data.
Podocument null
PODocumentEntry Retrieves PODocumentEntry report data.
PODocumentSubtotals Retrieves PODocumentSubtotals report data.
POPriceListEntry Retrieves POPriceListEntry report data.
PORecurSubtotals Retrieves PORecurSubtotals report data.
PSADocumentEntry Retrieves PSADocumentEntry report data.
RecurDocumentEntry Retrieves RecurDocumentEntry report data.
RecurGLEntry Retrieves RecurGLEntry report data.
RevRecChangeLog Retrieves RevRecChangeLog report data.
RevRecScheduleEntryTask Retrieves RevRecScheduleEntryTask report data.
SODocumentEntry Retrieves SODocumentEntry report data.
SODocumentSubtotals Retrieves SODocumentSubtotals report data.
SOPriceListEntry Retrieves SOPriceListEntry report data.
SORecurDocument Retrieves SORecurDocument report data.
SORecurSubtotals Retrieves SORecurSubtotals report data.
STKitDocumentEntry Retrieves STKitDocumentEntry report data.
Subscriptions Subscriptions data.
TerritoryGrpMember Retrieves TerritoryGrpMember report data.
TimesheetEntry Retrieves TimesheetEntry report data.
TransTmplBatch Retrieves TransTmplBatch report data.
TransTmplEntry Retrieves TransTmplEntry report data.
TrialBalances Retrieves TrialBalances data.
TrialBalancesDepartmentDetail Trial Balance view with department detail data.
TrialBalancesLocationDetail Trial balance view with location detail data.
UoMDetail Retrieves UoMDetail report data.
UserRights Retrieves UserRights report data.
WfpmPaymentRequest Retrieves WfpmPaymentRequest report data.

AccountBalance

View containing detailed account balance data.

Columns
Name Type Description
Glaccountno Double The Glaccountno field of the AccountBalance object.
StartBalance Double The StartBalance field of the AccountBalance object.
Debits Double The Debits field of the AccountBalance object.
Credits Double The Credits field of the AccountBalance object.
AdjDebits Double The AdjDebits field of the AccountBalance object.
AdjCredits Double The AdjCredits field of the AccountBalance object.
EndBalance Double The EndBalance field of the AccountBalance object.
ReportingBook String The ReportingBook field of the AccountBalance object.
Currency String The Currency field of the AccountBalance object.
Pseudo-Columns
Name Type Description
StartDate String Required if not using reportingperiodname
EndDate String Required if not using reportingperiodname
StartAccountNo String Required if not using reportingperiodname
EndAccountNo String Required if not using reportingperiodname
ShowZeroBalances String Return zero balances

ACHBank

Retrieves ACHBank report data.

Columns
Name Type Description
ACHBankid [KEY] String The ACHBankid field of the ACHBank object.
Destinationname String The Destinationname field of the ACHBank object.
Destinationid String The Destinationid field of the ACHBank object.
Originname String The Originname field of the ACHBank object.
Originid String The Originid field of the ACHBank object.
Referencecode String The Referencecode field of the ACHBank object.
Status String The Status field of the ACHBank object.
Whencreated Datetime The Whencreated field of the ACHBank object.
Whenmodified Datetime The Whenmodified field of the ACHBank object.
Createdby Int64 The Createdby field of the ACHBank object.
Modifiedby Int64 The Modifiedby field of the ACHBank object.
Recordno Int64 The Recordno field of the ACHBank object.
Eofmarker Boolean The Eofmarker field of the ACHBank object.
Megaentitykey Int64 The Megaentitykey field of the ACHBank object.
Megaentityid String The Megaentityid field of the ACHBank object.
Megaentityname String The Megaentityname field of the ACHBank object.
Record_url String The Record_url field of the ACHBank object.

AllocationEntry

Retrieves AllocationEntry report data.

Columns
Name Type Description
Recordno [KEY] String The Recordno field of the AllocationEntry object.
Value Double The Value field of the AllocationEntry object.
Locationid String The Locationid field of the AllocationEntry object.
Departmentid String The Departmentid field of the AllocationEntry object.
Projectid String The Projectid field of the AllocationEntry object.
Projectname String The Projectname field of the AllocationEntry object.
Customerid String The Customerid field of the AllocationEntry object.
Customername String The Customername field of the AllocationEntry object.
Vendorid String The Vendorid field of the AllocationEntry object.
Vendorname String The Vendorname field of the AllocationEntry object.
Employeeid String The Employeeid field of the AllocationEntry object.
Employeename String The Employeename field of the AllocationEntry object.
Itemid String The Itemid field of the AllocationEntry object.
Itemname String The Itemname field of the AllocationEntry object.
Classid String The Classid field of the AllocationEntry object.
Classname String The Classname field of the AllocationEntry object.
Whencreated Datetime The Whencreated field of the AllocationEntry object.
Whenmodified Datetime The Whenmodified field of the AllocationEntry object.
Createdby Int64 The Createdby field of the AllocationEntry object.
Modifiedby Int64 The Modifiedby field of the AllocationEntry object.
Projectdimkey Int64 The Projectdimkey field of the AllocationEntry object.
Customerdimkey Int64 The Customerdimkey field of the AllocationEntry object.
Vendordimkey Int64 The Vendordimkey field of the AllocationEntry object.
Employeedimkey Int64 The Employeedimkey field of the AllocationEntry object.
Itemdimkey Int64 The Itemdimkey field of the AllocationEntry object.
Classdimkey Int64 The Classdimkey field of the AllocationEntry object.
Record_url String The Record_url field of the AllocationEntry object.

APAdjustmentItem

Retrieves APAdjustmentItem report data.

Columns
Name Type Description
Recordno [KEY] String The Recordno field of the APAdjustmentItem object.
Recordkey Int64 The Recordkey field of the APAdjustmentItem object.
Accountkey Int64 The Accountkey field of the APAdjustmentItem object.
Accountno String The Accountno field of the APAdjustmentItem object.
Offsetglaccountno String The Offsetglaccountno field of the APAdjustmentItem object.
Offsetglaccounttitle String The Offsetglaccounttitle field of the APAdjustmentItem object.
Accounttitle String The Accounttitle field of the APAdjustmentItem object.
Accountlabelkey Int64 The Accountlabelkey field of the APAdjustmentItem object.
Accountlabel String The Accountlabel field of the APAdjustmentItem object.
Entry_date Datetime The Entry_date field of the APAdjustmentItem object.
Amount Double The Amount field of the APAdjustmentItem object.
Trx_amount Double The Trx_amount field of the APAdjustmentItem object.
Departmentid String The Departmentid field of the APAdjustmentItem object.
Departmentname String The Departmentname field of the APAdjustmentItem object.
Locationid String The Locationid field of the APAdjustmentItem object.
Locationname String The Locationname field of the APAdjustmentItem object.
Entrydescription String The Entrydescription field of the APAdjustmentItem object.
Exch_rate_date Datetime The Exch_rate_date field of the APAdjustmentItem object.
Exch_rate_type_id Int64 The Exch_rate_type_id field of the APAdjustmentItem object.
Exchange_rate Double The Exchange_rate field of the APAdjustmentItem object.
Lineitem String The Lineitem field of the APAdjustmentItem object.
Line_no String The Line_no field of the APAdjustmentItem object.
Currency String The Currency field of the APAdjustmentItem object.
Basecurr String The Basecurr field of the APAdjustmentItem object.
Totalpaid Double The Totalpaid field of the APAdjustmentItem object.
Trx_totalpaid Double The Trx_totalpaid field of the APAdjustmentItem object.
Totalselected Double The Totalselected field of the APAdjustmentItem object.
Trx_totalselected Double The Trx_totalselected field of the APAdjustmentItem object.
Parententry Int64 The Parententry field of the APAdjustmentItem object.
Baselocation Int64 The Baselocation field of the APAdjustmentItem object.
State String The State field of the APAdjustmentItem object.
Recordtype String The Recordtype field of the APAdjustmentItem object.
Whencreated Datetime The Whencreated field of the APAdjustmentItem object.
Whenmodified Datetime The Whenmodified field of the APAdjustmentItem object.
Createdby Int64 The Createdby field of the APAdjustmentItem object.
Modifiedby Int64 The Modifiedby field of the APAdjustmentItem object.
Projectdimkey Int64 The Projectdimkey field of the APAdjustmentItem object.
Projectid String The Projectid field of the APAdjustmentItem object.
Projectname String The Projectname field of the APAdjustmentItem object.
Customerdimkey Int64 The Customerdimkey field of the APAdjustmentItem object.
Customerid String The Customerid field of the APAdjustmentItem object.
Customername String The Customername field of the APAdjustmentItem object.
Vendordimkey Int64 The Vendordimkey field of the APAdjustmentItem object.
Vendorid String The Vendorid field of the APAdjustmentItem object.
Vendorname String The Vendorname field of the APAdjustmentItem object.
Employeedimkey Int64 The Employeedimkey field of the APAdjustmentItem object.
Employeeid String The Employeeid field of the APAdjustmentItem object.
Employeename String The Employeename field of the APAdjustmentItem object.
Itemdimkey Int64 The Itemdimkey field of the APAdjustmentItem object.
Itemid String The Itemid field of the APAdjustmentItem object.
Itemname String The Itemname field of the APAdjustmentItem object.
Classdimkey Int64 The Classdimkey field of the APAdjustmentItem object.
Classid String The Classid field of the APAdjustmentItem object.
Classname String The Classname field of the APAdjustmentItem object.
Record_url String The Record_url field of the APAdjustmentItem object.

APBillItem

Retrieves APBillItem report data.

Columns
Name Type Description
Recordno [KEY] String The Recordno field of the APBillItem object.
Recordkey Int64 The Recordkey field of the APBillItem object.
Accountkey Int64 The Accountkey field of the APBillItem object.
Accountno String The Accountno field of the APBillItem object.
Offsetglaccountno String The Offsetglaccountno field of the APBillItem object.
Offsetglaccounttitle String The Offsetglaccounttitle field of the APBillItem object.
Accounttitle String The Accounttitle field of the APBillItem object.
Accountlabelkey Int64 The Accountlabelkey field of the APBillItem object.
Accountlabel String The Accountlabel field of the APBillItem object.
Entry_date Datetime The Entry_date field of the APBillItem object.
Amount Double The Amount field of the APBillItem object.
Trx_amount Double The Trx_amount field of the APBillItem object.
Departmentid String The Departmentid field of the APBillItem object.
Departmentname String The Departmentname field of the APBillItem object.
Locationid String The Locationid field of the APBillItem object.
Locationname String The Locationname field of the APBillItem object.
Entrydescription String The Entrydescription field of the APBillItem object.
Exch_rate_date Datetime The Exch_rate_date field of the APBillItem object.
Exch_rate_type_id String The Exch_rate_type_id field of the APBillItem object.
Exchange_rate Double The Exchange_rate field of the APBillItem object.
Allocation String The Allocation field of the APBillItem object.
Allocationkey Int64 The Allocationkey field of the APBillItem object.
Form1099 String The Form1099 field of the APBillItem object.
Lineitem String The Lineitem field of the APBillItem object.
Line_no String The Line_no field of the APBillItem object.
Currency String The Currency field of the APBillItem object.
Basecurr String The Basecurr field of the APBillItem object.
Totalpaid Double The Totalpaid field of the APBillItem object.
Trx_totalpaid Double The Trx_totalpaid field of the APBillItem object.
Totalselected Double The Totalselected field of the APBillItem object.
Trx_totalselected Double The Trx_totalselected field of the APBillItem object.
Billable Boolean The Billable field of the APBillItem object.
Billed Boolean The Billed field of the APBillItem object.
Releasetopay Boolean The Releasetopay field of the APBillItem object.
Parententry Int64 The Parententry field of the APBillItem object.
Baselocation Int64 The Baselocation field of the APBillItem object.
State String The State field of the APBillItem object.
Recordtype String The Recordtype field of the APBillItem object.
Whencreated Datetime The Whencreated field of the APBillItem object.
Whenmodified Datetime The Whenmodified field of the APBillItem object.
Createdby Int64 The Createdby field of the APBillItem object.
Modifiedby Int64 The Modifiedby field of the APBillItem object.
Projectdimkey Int64 The Projectdimkey field of the APBillItem object.
Projectid String The Projectid field of the APBillItem object.
Projectname String The Projectname field of the APBillItem object.
Customerdimkey Int64 The Customerdimkey field of the APBillItem object.
Customerid String The Customerid field of the APBillItem object.
Customername String The Customername field of the APBillItem object.
Vendordimkey Int64 The Vendordimkey field of the APBillItem object.
Vendorid String The Vendorid field of the APBillItem object.
Vendorname String The Vendorname field of the APBillItem object.
Employeedimkey Int64 The Employeedimkey field of the APBillItem object.
Employeeid String The Employeeid field of the APBillItem object.
Employeename String The Employeename field of the APBillItem object.
Itemdimkey Int64 The Itemdimkey field of the APBillItem object.
Itemid String The Itemid field of the APBillItem object.
Itemname String The Itemname field of the APBillItem object.
Classdimkey Int64 The Classdimkey field of the APBillItem object.
Classid String The Classid field of the APBillItem object.
Classname String The Classname field of the APBillItem object.
Record_url String The Record_url field of the APBillItem object.

APBillPayment

Retrieves APBillPayment report data.

Columns
Name Type Description
Paymentkey Int64 The Paymentkey field of the APBillPayment object.
Payitemkey [KEY] Int64 The Payitemkey field of the APBillPayment object.
Recordkey String The Recordkey field of the APBillPayment object.
Paiditemkey Int64 The Paiditemkey field of the APBillPayment object.
Amount Double The Amount field of the APBillPayment object.
State String The State field of the APBillPayment object.
Parentpymt Int64 The Parentpymt field of the APBillPayment object.
Paymentdate Datetime The Paymentdate field of the APBillPayment object.
Record_url String The Record_url field of the APBillPayment object.

APIUsageDetail

Retrieves APIUsageDetail report data.

Columns
Name Type Description
Recordno [KEY] String The Recordno field of the APIUsageDetail object.
Client_type String The Client_type field of the APIUsageDetail object.
Partnerid String The Partnerid field of the APIUsageDetail object.
Function String The Function field of the APIUsageDetail object.
Controlid String The Controlid field of the APIUsageDetail object.
Policyid String The Policyid field of the APIUsageDetail object.
Dtdversion String The Dtdversion field of the APIUsageDetail object.
Doccontrolid String The Doccontrolid field of the APIUsageDetail object.
Loginid String The Loginid field of the APIUsageDetail object.
N_trans Int64 The N_trans field of the APIUsageDetail object.
Created_date Datetime The Created_date field of the APIUsageDetail object.
Created_time Datetime The Created_time field of the APIUsageDetail object.
Status String The Status field of the APIUsageDetail object.
Record_url String The Record_url field of the APIUsageDetail object.

APIUsageSummary

Retrieves APIUsageSummary report data.

Columns
Name Type Description
Recordno [KEY] String The Recordno field of the APIUsageSummary object.
Total_trans Int64 The Total_trans field of the APIUsageSummary object.
Daily_sum Int64 The Daily_sum field of the APIUsageSummary object.
Client_type String The Client_type field of the APIUsageSummary object.
Today Datetime The Today field of the APIUsageSummary object.
Record_url String The Record_url field of the APIUsageSummary object.

APPayment

Retrieves APPayment report data.

Columns
Name Type Description
Recordno [KEY] String The Recordno field of the APPayment object.
Prbatchkey Int64 The Prbatchkey field of the APPayment object.
Recordtype String The Recordtype field of the APPayment object.
Description String The Description field of the APPayment object.
Totalentered Double The Totalentered field of the APPayment object.
Totalpaid Double The Totalpaid field of the APPayment object.
Totalselected Double The Totalselected field of the APPayment object.
Totaldue Double The Totaldue field of the APPayment object.
State String The State field of the APPayment object.
Whencreated Datetime The Whencreated field of the APPayment object.
Whenpaid Datetime The Whenpaid field of the APPayment object.
Termkey Int64 The Termkey field of the APPayment object.
Termname String The Termname field of the APPayment object.
Whendiscount Datetime The Whendiscount field of the APPayment object.
Recordid String The Recordid field of the APPayment object.
Userkey Int64 The Userkey field of the APPayment object.
Whendue Datetime The Whendue field of the APPayment object.
Docnumber String The Docnumber field of the APPayment object.
Cleared String The Cleared field of the APPayment object.
Clrdate Datetime The Clrdate field of the APPayment object.
Modulekey String The Modulekey field of the APPayment object.
Status String The Status field of the APPayment object.
Systemgenerated String The Systemgenerated field of the APPayment object.
Whenposted Datetime The Whenposted field of the APPayment object.
Onhold Boolean The Onhold field of the APPayment object.
Currency String The Currency field of the APPayment object.
Trx_totalentered Double The Trx_totalentered field of the APPayment object.
Trx_totalpaid Double The Trx_totalpaid field of the APPayment object.
Trx_totalselected Double The Trx_totalselected field of the APPayment object.
Trx_totaldue Double The Trx_totaldue field of the APPayment object.
Deliverymethod String The Deliverymethod field of the APPayment object.
Recon_date Datetime The Recon_date field of the APPayment object.
Basecurr String The Basecurr field of the APPayment object.
Locationkey Int64 The Locationkey field of the APPayment object.
Auwhencreated Datetime The Auwhencreated field of the APPayment object.
Whenmodified Datetime The Whenmodified field of the APPayment object.
Createdby Int64 The Createdby field of the APPayment object.
Modifiedby Int64 The Modifiedby field of the APPayment object.
Nr_totalentered Double The Nr_totalentered field of the APPayment object.
Nr_trx_totalentered Double The Nr_trx_totalentered field of the APPayment object.
Paymenttype String The Paymenttype field of the APPayment object.
Paymentdate Datetime The Paymentdate field of the APPayment object.
Receiptdate Datetime The Receiptdate field of the APPayment object.
Paymentamount Double The Paymentamount field of the APPayment object.
Documentnumber String The Documentnumber field of the APPayment object.
Memo String The Memo field of the APPayment object.
Financialaccount String The Financialaccount field of the APPayment object.
Vendorname String The Vendorname field of the APPayment object.
Vendorid String The Vendorid field of the APPayment object.
Megaentitykey Int64 The Megaentitykey field of the APPayment object.
Megaentityid String The Megaentityid field of the APPayment object.
Record_url String The Record_url field of the APPayment object.

APPaymentItem

Retrieves APPaymentItem report data.

Columns
Name Type Description
Recordno [KEY] String The Recordno field of the APPaymentItem object.
Recordtype String The Recordtype field of the APPaymentItem object.
Entry_date Datetime The Entry_date field of the APPaymentItem object.
Recordkey Int64 The Recordkey field of the APPaymentItem object.
Vendoracctnokeyversion Int64 The Vendoracctnokeyversion field of the APPaymentItem object.
Entrydescription String The Entrydescription field of the APPaymentItem object.
Accountkey Int64 The Accountkey field of the APPaymentItem object.
Glaccountno String The Glaccountno field of the APPaymentItem object.
Glaccounttitle String The Glaccounttitle field of the APPaymentItem object.
Amount Double The Amount field of the APPaymentItem object.
Locationid String The Locationid field of the APPaymentItem object.
Locationname String The Locationname field of the APPaymentItem object.
Departmentid String The Departmentid field of the APPaymentItem object.
Departmentname String The Departmentname field of the APPaymentItem object.
Line_no String The Line_no field of the APPaymentItem object.
Form1099 String The Form1099 field of the APPaymentItem object.
Accountlabel String The Accountlabel field of the APPaymentItem object.
Totalselected Double The Totalselected field of the APPaymentItem object.
Totalpaid Double The Totalpaid field of the APPaymentItem object.
Parententry Int64 The Parententry field of the APPaymentItem object.
Lineitem String The Lineitem field of the APPaymentItem object.
Gloffset Int64 The Gloffset field of the APPaymentItem object.
Baselocation Int64 The Baselocation field of the APPaymentItem object.
Allocationkey Int64 The Allocationkey field of the APPaymentItem object.
Allocation String The Allocation field of the APPaymentItem object.
Subtotal String The Subtotal field of the APPaymentItem object.
Deferrevenue Boolean The Deferrevenue field of the APPaymentItem object.
Revrectemplatekey Int64 The Revrectemplatekey field of the APPaymentItem object.
Revrectemplate String The Revrectemplate field of the APPaymentItem object.
Deferredrevacctkey Int64 The Deferredrevacctkey field of the APPaymentItem object.
Deferredrevacctno String The Deferredrevacctno field of the APPaymentItem object.
Deferredrevaccttitle String The Deferredrevaccttitle field of the APPaymentItem object.
Revrecstartdate Datetime The Revrecstartdate field of the APPaymentItem object.
Revrecenddate Datetime The Revrecenddate field of the APPaymentItem object.
Entrycurrency String The Entrycurrency field of the APPaymentItem object.
Entryexchratedate Datetime The Entryexchratedate field of the APPaymentItem object.
Entryexchratetype Int64 The Entryexchratetype field of the APPaymentItem object.
Entryexchrate Double The Entryexchrate field of the APPaymentItem object.
Trx_amount Double The Trx_amount field of the APPaymentItem object.
Trx_totalselected Double The Trx_totalselected field of the APPaymentItem object.
Trx_totalpaid Double The Trx_totalpaid field of the APPaymentItem object.
Billable Boolean The Billable field of the APPaymentItem object.
Billed Boolean The Billed field of the APPaymentItem object.
State String The State field of the APPaymentItem object.
Releasetopay Boolean The Releasetopay field of the APPaymentItem object.
Whencreated Datetime The Whencreated field of the APPaymentItem object.
Whenmodified Datetime The Whenmodified field of the APPaymentItem object.
Createdby Int64 The Createdby field of the APPaymentItem object.
Modifiedby Int64 The Modifiedby field of the APPaymentItem object.
Locationkey Int64 The Locationkey field of the APPaymentItem object.
Departmentkey Int64 The Departmentkey field of the APPaymentItem object.
Currency String The Currency field of the APPaymentItem object.
Accountno String The Accountno field of the APPaymentItem object.
Accounttitle String The Accounttitle field of the APPaymentItem object.
Exch_rate_date Datetime The Exch_rate_date field of the APPaymentItem object.
Exch_rate_type_id Int64 The Exch_rate_type_id field of the APPaymentItem object.
Exchange_rate Double The Exchange_rate field of the APPaymentItem object.
Projectdimkey Int64 The Projectdimkey field of the APPaymentItem object.
Projectid String The Projectid field of the APPaymentItem object.
Projectname String The Projectname field of the APPaymentItem object.
Customerdimkey Int64 The Customerdimkey field of the APPaymentItem object.
Customerid String The Customerid field of the APPaymentItem object.
Customername String The Customername field of the APPaymentItem object.
Employeedimkey Int64 The Employeedimkey field of the APPaymentItem object.
Employeeid String The Employeeid field of the APPaymentItem object.
Employeename String The Employeename field of the APPaymentItem object.
Itemdimkey Int64 The Itemdimkey field of the APPaymentItem object.
Itemid String The Itemid field of the APPaymentItem object.
Itemname String The Itemname field of the APPaymentItem object.
Record_url String The Record_url field of the APPaymentItem object.

APPaymentRequest

Retrieves APPaymentRequest report data.

Columns
Name Type Description
Recordno [KEY] String The Recordno field of the APPaymentRequest object.
Prbatchkey Int64 The Prbatchkey field of the APPaymentRequest object.
Recordtype String The Recordtype field of the APPaymentRequest object.
Description String The Description field of the APPaymentRequest object.
Totalentered Double The Totalentered field of the APPaymentRequest object.
Totalpaid Double The Totalpaid field of the APPaymentRequest object.
Totalselected Double The Totalselected field of the APPaymentRequest object.
Totaldue Double The Totaldue field of the APPaymentRequest object.
State String The State field of the APPaymentRequest object.
Whencreated Datetime The Whencreated field of the APPaymentRequest object.
Whenpaid Datetime The Whenpaid field of the APPaymentRequest object.
Termkey Int64 The Termkey field of the APPaymentRequest object.
Termname String The Termname field of the APPaymentRequest object.
Whendiscount Datetime The Whendiscount field of the APPaymentRequest object.
Recordid String The Recordid field of the APPaymentRequest object.
Userkey Int64 The Userkey field of the APPaymentRequest object.
Whendue Datetime The Whendue field of the APPaymentRequest object.
Docnumber String The Docnumber field of the APPaymentRequest object.
Cleared String The Cleared field of the APPaymentRequest object.
Clrdate Datetime The Clrdate field of the APPaymentRequest object.
Modulekey String The Modulekey field of the APPaymentRequest object.
Status String The Status field of the APPaymentRequest object.
Systemgenerated String The Systemgenerated field of the APPaymentRequest object.
Whenposted Datetime The Whenposted field of the APPaymentRequest object.
Onhold Boolean The Onhold field of the APPaymentRequest object.
Currency String The Currency field of the APPaymentRequest object.
Trx_totalentered Double The Trx_totalentered field of the APPaymentRequest object.
Trx_totalpaid Double The Trx_totalpaid field of the APPaymentRequest object.
Trx_totalselected Double The Trx_totalselected field of the APPaymentRequest object.
Trx_totaldue Double The Trx_totaldue field of the APPaymentRequest object.
Deliverymethod String The Deliverymethod field of the APPaymentRequest object.
Recon_date Datetime The Recon_date field of the APPaymentRequest object.
Basecurr String The Basecurr field of the APPaymentRequest object.
Locationkey Int64 The Locationkey field of the APPaymentRequest object.
Auwhencreated Datetime The Auwhencreated field of the APPaymentRequest object.
Whenmodified Datetime The Whenmodified field of the APPaymentRequest object.
Createdby Int64 The Createdby field of the APPaymentRequest object.
Modifiedby Int64 The Modifiedby field of the APPaymentRequest object.
Nr_totalentered Double The Nr_totalentered field of the APPaymentRequest object.
Nr_trx_totalentered Double The Nr_trx_totalentered field of the APPaymentRequest object.
Paymenttype String The Paymenttype field of the APPaymentRequest object.
Paymentdate Datetime The Paymentdate field of the APPaymentRequest object.
Receiptdate Datetime The Receiptdate field of the APPaymentRequest object.
Paymentamount Double The Paymentamount field of the APPaymentRequest object.
Documentnumber String The Documentnumber field of the APPaymentRequest object.
Memo String The Memo field of the APPaymentRequest object.
Financialaccount String The Financialaccount field of the APPaymentRequest object.
Vendorname String The Vendorname field of the APPaymentRequest object.
Vendorid String The Vendorid field of the APPaymentRequest object.
Megaentitykey Int64 The Megaentitykey field of the APPaymentRequest object.
Megaentityid String The Megaentityid field of the APPaymentRequest object.
Record_url String The Record_url field of the APPaymentRequest object.

APRecurBillEntry

Retrieves APRecurBillEntry report data.

Columns
Name Type Description
Recordno [KEY] String The Recordno field of the APRecurBillEntry object.
Entrydescription String The Entrydescription field of the APRecurBillEntry object.
Amount String The Amount field of the APRecurBillEntry object.
Line_no String The Line_no field of the APRecurBillEntry object.
Form1099 String The Form1099 field of the APRecurBillEntry object.
Trx_amount String The Trx_amount field of the APRecurBillEntry object.
Allocation String The Allocation field of the APRecurBillEntry object.
Billable Boolean The Billable field of the APRecurBillEntry object.
Projectdimkey Int64 The Projectdimkey field of the APRecurBillEntry object.
Projectid String The Projectid field of the APRecurBillEntry object.
Projectname String The Projectname field of the APRecurBillEntry object.
Customerdimkey Int64 The Customerdimkey field of the APRecurBillEntry object.
Customerid String The Customerid field of the APRecurBillEntry object.
Customername String The Customername field of the APRecurBillEntry object.
Employeedimkey Int64 The Employeedimkey field of the APRecurBillEntry object.
Employeeid String The Employeeid field of the APRecurBillEntry object.
Employeename String The Employeename field of the APRecurBillEntry object.
Itemdimkey Int64 The Itemdimkey field of the APRecurBillEntry object.
Itemid String The Itemid field of the APRecurBillEntry object.
Itemname String The Itemname field of the APRecurBillEntry object.
Record_url String The Record_url field of the APRecurBillEntry object.

ARAdjustmentItem

Retrieves ARAdjustmentItem report data.

Columns
Name Type Description
Recordno [KEY] String The Recordno field of the ARAdjustmentItem object.
Recordkey Int64 The Recordkey field of the ARAdjustmentItem object.
Accountkey Int64 The Accountkey field of the ARAdjustmentItem object.
Accountno String The Accountno field of the ARAdjustmentItem object.
Offsetglaccountno String The Offsetglaccountno field of the ARAdjustmentItem object.
Offsetglaccounttitle String The Offsetglaccounttitle field of the ARAdjustmentItem object.
Accounttitle String The Accounttitle field of the ARAdjustmentItem object.
Accountlabelkey Int64 The Accountlabelkey field of the ARAdjustmentItem object.
Accountlabel String The Accountlabel field of the ARAdjustmentItem object.
Entry_date Datetime The Entry_date field of the ARAdjustmentItem object.
Amount Double The Amount field of the ARAdjustmentItem object.
Trx_amount Double The Trx_amount field of the ARAdjustmentItem object.
Departmentid String The Departmentid field of the ARAdjustmentItem object.
Departmentname String The Departmentname field of the ARAdjustmentItem object.
Locationid String The Locationid field of the ARAdjustmentItem object.
Locationname String The Locationname field of the ARAdjustmentItem object.
Entrydescription String The Entrydescription field of the ARAdjustmentItem object.
Exch_rate_date Datetime The Exch_rate_date field of the ARAdjustmentItem object.
Exch_rate_type_id Int64 The Exch_rate_type_id field of the ARAdjustmentItem object.
Exchange_rate Double The Exchange_rate field of the ARAdjustmentItem object.
Lineitem String The Lineitem field of the ARAdjustmentItem object.
Line_no String The Line_no field of the ARAdjustmentItem object.
Currency String The Currency field of the ARAdjustmentItem object.
Basecurr String The Basecurr field of the ARAdjustmentItem object.
Totalpaid Double The Totalpaid field of the ARAdjustmentItem object.
Trx_totalpaid Double The Trx_totalpaid field of the ARAdjustmentItem object.
Totalselected Double The Totalselected field of the ARAdjustmentItem object.
Trx_totalselected Double The Trx_totalselected field of the ARAdjustmentItem object.
Parententry Int64 The Parententry field of the ARAdjustmentItem object.
Baselocation Int64 The Baselocation field of the ARAdjustmentItem object.
State String The State field of the ARAdjustmentItem object.
Recordtype String The Recordtype field of the ARAdjustmentItem object.
Whencreated Datetime The Whencreated field of the ARAdjustmentItem object.
Whenmodified Datetime The Whenmodified field of the ARAdjustmentItem object.
Createdby Int64 The Createdby field of the ARAdjustmentItem object.
Modifiedby Int64 The Modifiedby field of the ARAdjustmentItem object.
Projectdimkey Int64 The Projectdimkey field of the ARAdjustmentItem object.
Projectid String The Projectid field of the ARAdjustmentItem object.
Projectname String The Projectname field of the ARAdjustmentItem object.
Customerdimkey Int64 The Customerdimkey field of the ARAdjustmentItem object.
Customerid String The Customerid field of the ARAdjustmentItem object.
Customername String The Customername field of the ARAdjustmentItem object.
Vendordimkey Int64 The Vendordimkey field of the ARAdjustmentItem object.
Vendorid String The Vendorid field of the ARAdjustmentItem object.
Vendorname String The Vendorname field of the ARAdjustmentItem object.
Employeedimkey Int64 The Employeedimkey field of the ARAdjustmentItem object.
Employeeid String The Employeeid field of the ARAdjustmentItem object.
Employeename String The Employeename field of the ARAdjustmentItem object.
Itemdimkey Int64 The Itemdimkey field of the ARAdjustmentItem object.
Itemid String The Itemid field of the ARAdjustmentItem object.
Itemname String The Itemname field of the ARAdjustmentItem object.
Classdimkey Int64 The Classdimkey field of the ARAdjustmentItem object.
Classid String The Classid field of the ARAdjustmentItem object.
Classname String The Classname field of the ARAdjustmentItem object.
Record_url String The Record_url field of the ARAdjustmentItem object.

ARInvoiceItem

Retrieves ARInvoiceItem report data.

Columns
Name Type Description
Recordno [KEY] String The Recordno field of the ARInvoiceItem object.
Recordkey Int64 The Recordkey field of the ARInvoiceItem object.
Accountkey Int64 The Accountkey field of the ARInvoiceItem object.
Accountno String The Accountno field of the ARInvoiceItem object.
Offsetglaccountno String The Offsetglaccountno field of the ARInvoiceItem object.
Offsetglaccounttitle String The Offsetglaccounttitle field of the ARInvoiceItem object.
Accounttitle String The Accounttitle field of the ARInvoiceItem object.
Accountlabelkey Int64 The Accountlabelkey field of the ARInvoiceItem object.
Accountlabel String The Accountlabel field of the ARInvoiceItem object.
Entry_date Datetime The Entry_date field of the ARInvoiceItem object.
Amount Double The Amount field of the ARInvoiceItem object.
Trx_amount Double The Trx_amount field of the ARInvoiceItem object.
Departmentid String The Departmentid field of the ARInvoiceItem object.
Departmentname String The Departmentname field of the ARInvoiceItem object.
Locationid String The Locationid field of the ARInvoiceItem object.
Locationname String The Locationname field of the ARInvoiceItem object.
Entrydescription String The Entrydescription field of the ARInvoiceItem object.
Exch_rate_date Datetime The Exch_rate_date field of the ARInvoiceItem object.
Exch_rate_type_id Int64 The Exch_rate_type_id field of the ARInvoiceItem object.
Exchange_rate Double The Exchange_rate field of the ARInvoiceItem object.
Allocationkey Int64 The Allocationkey field of the ARInvoiceItem object.
Allocation String The Allocation field of the ARInvoiceItem object.
Lineitem String The Lineitem field of the ARInvoiceItem object.
Line_no String The Line_no field of the ARInvoiceItem object.
Currency String The Currency field of the ARInvoiceItem object.
Basecurr String The Basecurr field of the ARInvoiceItem object.
Totalpaid Double The Totalpaid field of the ARInvoiceItem object.
Trx_totalpaid Double The Trx_totalpaid field of the ARInvoiceItem object.
Totalselected Double The Totalselected field of the ARInvoiceItem object.
Trx_totalselected Double The Trx_totalselected field of the ARInvoiceItem object.
Subtotal String The Subtotal field of the ARInvoiceItem object.
Parententry Int64 The Parententry field of the ARInvoiceItem object.
Deferrevenue Boolean The Deferrevenue field of the ARInvoiceItem object.
Revrectemplatekey Int64 The Revrectemplatekey field of the ARInvoiceItem object.
Revrectemplate String The Revrectemplate field of the ARInvoiceItem object.
Deferredrevacctkey Int64 The Deferredrevacctkey field of the ARInvoiceItem object.
Deferredrevacctno String The Deferredrevacctno field of the ARInvoiceItem object.
Deferredrevaccttitle String The Deferredrevaccttitle field of the ARInvoiceItem object.
Revrecstartdate Datetime The Revrecstartdate field of the ARInvoiceItem object.
Revrecenddate Datetime The Revrecenddate field of the ARInvoiceItem object.
Baselocation Int64 The Baselocation field of the ARInvoiceItem object.
State String The State field of the ARInvoiceItem object.
Recordtype String The Recordtype field of the ARInvoiceItem object.
Whencreated Datetime The Whencreated field of the ARInvoiceItem object.
Whenmodified Datetime The Whenmodified field of the ARInvoiceItem object.
Createdby Int64 The Createdby field of the ARInvoiceItem object.
Modifiedby Int64 The Modifiedby field of the ARInvoiceItem object.
Projectdimkey Int64 The Projectdimkey field of the ARInvoiceItem object.
Projectid String The Projectid field of the ARInvoiceItem object.
Projectname String The Projectname field of the ARInvoiceItem object.
Customerdimkey Int64 The Customerdimkey field of the ARInvoiceItem object.
Customerid String The Customerid field of the ARInvoiceItem object.
Customername String The Customername field of the ARInvoiceItem object.
Vendordimkey Int64 The Vendordimkey field of the ARInvoiceItem object.
Vendorid String The Vendorid field of the ARInvoiceItem object.
Vendorname String The Vendorname field of the ARInvoiceItem object.
Employeedimkey Int64 The Employeedimkey field of the ARInvoiceItem object.
Employeeid String The Employeeid field of the ARInvoiceItem object.
Employeename String The Employeename field of the ARInvoiceItem object.
Itemdimkey Int64 The Itemdimkey field of the ARInvoiceItem object.
Itemid String The Itemid field of the ARInvoiceItem object.
Itemname String The Itemname field of the ARInvoiceItem object.
Classdimkey Int64 The Classdimkey field of the ARInvoiceItem object.
Classid String The Classid field of the ARInvoiceItem object.
Classname String The Classname field of the ARInvoiceItem object.
Record_url String The Record_url field of the ARInvoiceItem object.

ARPayment

Retrieves ARPayment report data.

Columns
Name Type Description
Recordno [KEY] String The Recordno field of the ARPayment object.
Prbatchkey Int64 The Prbatchkey field of the ARPayment object.
Prbatch String The Prbatch field of the ARPayment object.
Recordtype String The Recordtype field of the ARPayment object.
Description String The Description field of the ARPayment object.
Totalentered Double The Totalentered field of the ARPayment object.
Totalpaid Double The Totalpaid field of the ARPayment object.
Totalselected Double The Totalselected field of the ARPayment object.
Totaldue Double The Totaldue field of the ARPayment object.
State String The State field of the ARPayment object.
Whencreated Datetime The Whencreated field of the ARPayment object.
Whenpaid Datetime The Whenpaid field of the ARPayment object.
Termkey Int64 The Termkey field of the ARPayment object.
Termname String The Termname field of the ARPayment object.
Whendiscount Datetime The Whendiscount field of the ARPayment object.
Recordid String The Recordid field of the ARPayment object.
Userkey Int64 The Userkey field of the ARPayment object.
Whendue Datetime The Whendue field of the ARPayment object.
Docnumber String The Docnumber field of the ARPayment object.
Cleared String The Cleared field of the ARPayment object.
Clrdate Datetime The Clrdate field of the ARPayment object.
Modulekey String The Modulekey field of the ARPayment object.
Status String The Status field of the ARPayment object.
Systemgenerated String The Systemgenerated field of the ARPayment object.
Whenposted Datetime The Whenposted field of the ARPayment object.
Onhold Boolean The Onhold field of the ARPayment object.
Currency String The Currency field of the ARPayment object.
Trx_totalentered Double The Trx_totalentered field of the ARPayment object.
Trx_totalpaid Double The Trx_totalpaid field of the ARPayment object.
Trx_totalselected Double The Trx_totalselected field of the ARPayment object.
Trx_totaldue Double The Trx_totaldue field of the ARPayment object.
Deliverymethod String The Deliverymethod field of the ARPayment object.
Recon_date Datetime The Recon_date field of the ARPayment object.
Basecurr String The Basecurr field of the ARPayment object.
Locationkey Int64 The Locationkey field of the ARPayment object.
Auwhencreated Datetime The Auwhencreated field of the ARPayment object.
Whenmodified Datetime The Whenmodified field of the ARPayment object.
Createdby Int64 The Createdby field of the ARPayment object.
Modifiedby Int64 The Modifiedby field of the ARPayment object.
Nr_totalentered Double The Nr_totalentered field of the ARPayment object.
Nr_trx_totalentered Double The Nr_trx_totalentered field of the ARPayment object.
Paymentdate Datetime The Paymentdate field of the ARPayment object.
Receiptdate Datetime The Receiptdate field of the ARPayment object.
Paymentamount Double The Paymentamount field of the ARPayment object.
Documentnumber String The Documentnumber field of the ARPayment object.
Memo String The Memo field of the ARPayment object.
Paymenttype String The Paymenttype field of the ARPayment object.
Financialaccount String The Financialaccount field of the ARPayment object.
Customername String The Customername field of the ARPayment object.
Customerid String The Customerid field of the ARPayment object.
Batchtitle String The Batchtitle field of the ARPayment object.
Postingdate Datetime The Postingdate field of the ARPayment object.
Megaentitykey Int64 The Megaentitykey field of the ARPayment object.
Megaentityid String The Megaentityid field of the ARPayment object.
Record_url String The Record_url field of the ARPayment object.

ARPaymentItem

Retrieves ARPaymentItem report data.

Columns
Name Type Description
Recordno [KEY] String The Recordno field of the ARPaymentItem object.
Recordtype String The Recordtype field of the ARPaymentItem object.
Entry_date Datetime The Entry_date field of the ARPaymentItem object.
Recordkey Int64 The Recordkey field of the ARPaymentItem object.
Vendoracctnokeyversion Int64 The Vendoracctnokeyversion field of the ARPaymentItem object.
Entrydescription String The Entrydescription field of the ARPaymentItem object.
Accountkey Int64 The Accountkey field of the ARPaymentItem object.
Glaccountno String The Glaccountno field of the ARPaymentItem object.
Glaccounttitle String The Glaccounttitle field of the ARPaymentItem object.
Amount Double The Amount field of the ARPaymentItem object.
Locationid String The Locationid field of the ARPaymentItem object.
Locationname String The Locationname field of the ARPaymentItem object.
Departmentid String The Departmentid field of the ARPaymentItem object.
Departmentname String The Departmentname field of the ARPaymentItem object.
Line_no String The Line_no field of the ARPaymentItem object.
Form1099 String The Form1099 field of the ARPaymentItem object.
Accountlabel String The Accountlabel field of the ARPaymentItem object.
Totalselected Double The Totalselected field of the ARPaymentItem object.
Totalpaid Double The Totalpaid field of the ARPaymentItem object.
Parententry Int64 The Parententry field of the ARPaymentItem object.
Lineitem String The Lineitem field of the ARPaymentItem object.
Gloffset Int64 The Gloffset field of the ARPaymentItem object.
Baselocation Int64 The Baselocation field of the ARPaymentItem object.
Allocationkey Int64 The Allocationkey field of the ARPaymentItem object.
Allocation String The Allocation field of the ARPaymentItem object.
Subtotal String The Subtotal field of the ARPaymentItem object.
Deferrevenue Boolean The Deferrevenue field of the ARPaymentItem object.
Revrectemplatekey Int64 The Revrectemplatekey field of the ARPaymentItem object.
Revrectemplate String The Revrectemplate field of the ARPaymentItem object.
Deferredrevacctkey Int64 The Deferredrevacctkey field of the ARPaymentItem object.
Deferredrevacctno String The Deferredrevacctno field of the ARPaymentItem object.
Deferredrevaccttitle String The Deferredrevaccttitle field of the ARPaymentItem object.
Revrecstartdate Datetime The Revrecstartdate field of the ARPaymentItem object.
Revrecenddate Datetime The Revrecenddate field of the ARPaymentItem object.
Entrycurrency String The Entrycurrency field of the ARPaymentItem object.
Entryexchratedate Datetime The Entryexchratedate field of the ARPaymentItem object.
Entryexchratetype Int64 The Entryexchratetype field of the ARPaymentItem object.
Entryexchrate Double The Entryexchrate field of the ARPaymentItem object.
Trx_amount Double The Trx_amount field of the ARPaymentItem object.
Trx_totalselected Double The Trx_totalselected field of the ARPaymentItem object.
Trx_totalpaid Double The Trx_totalpaid field of the ARPaymentItem object.
Billable Boolean The Billable field of the ARPaymentItem object.
Billed Boolean The Billed field of the ARPaymentItem object.
State String The State field of the ARPaymentItem object.
Releasetopay Boolean The Releasetopay field of the ARPaymentItem object.
Whencreated Datetime The Whencreated field of the ARPaymentItem object.
Whenmodified Datetime The Whenmodified field of the ARPaymentItem object.
Createdby Int64 The Createdby field of the ARPaymentItem object.
Modifiedby Int64 The Modifiedby field of the ARPaymentItem object.
Locationkey Int64 The Locationkey field of the ARPaymentItem object.
Departmentkey Int64 The Departmentkey field of the ARPaymentItem object.
Currency String The Currency field of the ARPaymentItem object.
Accountno String The Accountno field of the ARPaymentItem object.
Accounttitle String The Accounttitle field of the ARPaymentItem object.
Exch_rate_date Datetime The Exch_rate_date field of the ARPaymentItem object.
Exch_rate_type_id Int64 The Exch_rate_type_id field of the ARPaymentItem object.
Exchange_rate Double The Exchange_rate field of the ARPaymentItem object.
Projectdimkey Int64 The Projectdimkey field of the ARPaymentItem object.
Projectid String The Projectid field of the ARPaymentItem object.
Projectname String The Projectname field of the ARPaymentItem object.
Vendordimkey Int64 The Vendordimkey field of the ARPaymentItem object.
Vendorid String The Vendorid field of the ARPaymentItem object.
Vendorname String The Vendorname field of the ARPaymentItem object.
Employeedimkey Int64 The Employeedimkey field of the ARPaymentItem object.
Employeeid String The Employeeid field of the ARPaymentItem object.
Employeename String The Employeename field of the ARPaymentItem object.
Itemdimkey Int64 The Itemdimkey field of the ARPaymentItem object.
Itemid String The Itemid field of the ARPaymentItem object.
Itemname String The Itemname field of the ARPaymentItem object.
Record_url String The Record_url field of the ARPaymentItem object.

ARRecurInvoice

Retrieves ARRecurInvoice report data.

Columns
Name Type Description
Status [KEY] String The Status field of the ARRecurInvoice object.
Megaentitykey Int64 The Megaentitykey field of the ARRecurInvoice object.
Megaentityid String The Megaentityid field of the ARRecurInvoice object.
Megaentityname String The Megaentityname field of the ARRecurInvoice object.
Record_url String The Record_url field of the ARRecurInvoice object.

ARRecurInvoiceEntry

Retrieves ARRecurInvoiceEntry report data.

Columns
Name Type Description
Recordno [KEY] String The Recordno field of the ARRecurInvoiceEntry object.
Entrydescription String The Entrydescription field of the ARRecurInvoiceEntry object.
Amount String The Amount field of the ARRecurInvoiceEntry object.
Line_no String The Line_no field of the ARRecurInvoiceEntry object.
Form1099 String The Form1099 field of the ARRecurInvoiceEntry object.
Trx_amount String The Trx_amount field of the ARRecurInvoiceEntry object.
Allocation String The Allocation field of the ARRecurInvoiceEntry object.
Billable Boolean The Billable field of the ARRecurInvoiceEntry object.
Revrecstartdate Datetime The Revrecstartdate field of the ARRecurInvoiceEntry object.
Revrecenddate Datetime The Revrecenddate field of the ARRecurInvoiceEntry object.
Revrectemplate String The Revrectemplate field of the ARRecurInvoiceEntry object.
Projectdimkey Int64 The Projectdimkey field of the ARRecurInvoiceEntry object.
Projectid String The Projectid field of the ARRecurInvoiceEntry object.
Projectname String The Projectname field of the ARRecurInvoiceEntry object.
Vendordimkey Int64 The Vendordimkey field of the ARRecurInvoiceEntry object.
Vendorid String The Vendorid field of the ARRecurInvoiceEntry object.
Vendorname String The Vendorname field of the ARRecurInvoiceEntry object.
Employeedimkey Int64 The Employeedimkey field of the ARRecurInvoiceEntry object.
Employeeid String The Employeeid field of the ARRecurInvoiceEntry object.
Employeename String The Employeename field of the ARRecurInvoiceEntry object.
Itemdimkey Int64 The Itemdimkey field of the ARRecurInvoiceEntry object.
Itemid String The Itemid field of the ARRecurInvoiceEntry object.
Itemname String The Itemname field of the ARRecurInvoiceEntry object.
Record_url String The Record_url field of the ARRecurInvoiceEntry object.

Attachments

Usage information for the operation Attachments.rsd.

Columns
Name Type Description
RecordNo String Base currency
SupDocId [KEY] String Default accounting book
SupDocName String Numeric value for first fiscal month
Folder String Boolean for multiple base currencies
Description String Boolean for multiple books
CreationDate Datetime Boolean for multiple currencies
CreatedBy String Boolean for being shared by multiple entities
AttachmentName [KEY] String Boolean for being shared by multiple entities
AttachmentType String Boolean for being shared by multiple entities
AttachmentData String Boolean for being shared by multiple entities

BankFee

Retrieves BankFee report data.

Columns
Name Type Description
Recordno [KEY] String The Recordno field of the BankFee object.
Financialentity String The Financialentity field of the BankFee object.
Bankaccountcurr String The Bankaccountcurr field of the BankFee object.
Whencreated Datetime The Whencreated field of the BankFee object.
Recordid String The Recordid field of the BankFee object.
Recordtype String The Recordtype field of the BankFee object.
Transactiontype String The Transactiontype field of the BankFee object.
Description String The Description field of the BankFee object.
Prbatchkey Int64 The Prbatchkey field of the BankFee object.
Basecurr String The Basecurr field of the BankFee object.
Currency String The Currency field of the BankFee object.
Exch_rate_date Datetime The Exch_rate_date field of the BankFee object.
Exch_rate_type_id String The Exch_rate_type_id field of the BankFee object.
Exchange_rate Double The Exchange_rate field of the BankFee object.
Totalentered Double The Totalentered field of the BankFee object.
Trx_totalentered Double The Trx_totalentered field of the BankFee object.
State String The State field of the BankFee object.
Rawstate String The Rawstate field of the BankFee object.
Cleared String The Cleared field of the BankFee object.
Reversalkey Int64 The Reversalkey field of the BankFee object.
Reversaldate String The Reversaldate field of the BankFee object.
Reversedkey Int64 The Reversedkey field of the BankFee object.
Reverseddate String The Reverseddate field of the BankFee object.
Auwhencreated Datetime The Auwhencreated field of the BankFee object.
Whenmodified Datetime The Whenmodified field of the BankFee object.
Createdby Int64 The Createdby field of the BankFee object.
Modifiedby Int64 The Modifiedby field of the BankFee object.
Megaentitykey Int64 The Megaentitykey field of the BankFee object.
Megaentityid String The Megaentityid field of the BankFee object.
Megaentityname String The Megaentityname field of the BankFee object.
Record_url String The Record_url field of the BankFee object.

BankFeeEntry

Retrieves BankFeeEntry report data.

Columns
Name Type Description
Recordno [KEY] String The Recordno field of the BankFeeEntry object.
Recordkey Int64 The Recordkey field of the BankFeeEntry object.
Recordtype String The Recordtype field of the BankFeeEntry object.
Accountkey Int64 The Accountkey field of the BankFeeEntry object.
Accountno String The Accountno field of the BankFeeEntry object.
Accounttitle String The Accounttitle field of the BankFeeEntry object.
Accountlabelkey Int64 The Accountlabelkey field of the BankFeeEntry object.
Accountlabel String The Accountlabel field of the BankFeeEntry object.
Amount Double The Amount field of the BankFeeEntry object.
Trx_amount Double The Trx_amount field of the BankFeeEntry object.
DeptNUM Int64 The Dept# field of the BankFeeEntry object.
Departmentid String The Departmentid field of the BankFeeEntry object.
Departmentname String The Departmentname field of the BankFeeEntry object.
LocationNUM Int64 The Location# field of the BankFeeEntry object.
Locationid String The Locationid field of the BankFeeEntry object.
Locationname String The Locationname field of the BankFeeEntry object.
Description String The Description field of the BankFeeEntry object.
Exch_rate_date Datetime The Exch_rate_date field of the BankFeeEntry object.
Exch_rate_type_id String The Exch_rate_type_id field of the BankFeeEntry object.
Exchange_rate Double The Exchange_rate field of the BankFeeEntry object.
Lineitem String The Lineitem field of the BankFeeEntry object.
Line_no String The Line_no field of the BankFeeEntry object.
Currency String The Currency field of the BankFeeEntry object.
Basecurr String The Basecurr field of the BankFeeEntry object.
Baselocation Int64 The Baselocation field of the BankFeeEntry object.
Status String The Status field of the BankFeeEntry object.
Whencreated Datetime The Whencreated field of the BankFeeEntry object.
Whenmodified Datetime The Whenmodified field of the BankFeeEntry object.
Createdby Int64 The Createdby field of the BankFeeEntry object.
Modifiedby Int64 The Modifiedby field of the BankFeeEntry object.
Departmentkey Int64 The Departmentkey field of the BankFeeEntry object.
Locationkey Int64 The Locationkey field of the BankFeeEntry object.
Projectdimkey Int64 The Projectdimkey field of the BankFeeEntry object.
Projectid String The Projectid field of the BankFeeEntry object.
Projectname String The Projectname field of the BankFeeEntry object.
Customerdimkey Int64 The Customerdimkey field of the BankFeeEntry object.
Customerid String The Customerid field of the BankFeeEntry object.
Customername String The Customername field of the BankFeeEntry object.
Vendordimkey Int64 The Vendordimkey field of the BankFeeEntry object.
Vendorid String The Vendorid field of the BankFeeEntry object.
Vendorname String The Vendorname field of the BankFeeEntry object.
Employeedimkey Int64 The Employeedimkey field of the BankFeeEntry object.
Employeeid String The Employeeid field of the BankFeeEntry object.
Employeename String The Employeename field of the BankFeeEntry object.
Itemdimkey Int64 The Itemdimkey field of the BankFeeEntry object.
Itemid String The Itemid field of the BankFeeEntry object.
Itemname String The Itemname field of the BankFeeEntry object.
Classdimkey Int64 The Classdimkey field of the BankFeeEntry object.
Classid String The Classid field of the BankFeeEntry object.
Classname String The Classname field of the BankFeeEntry object.
Record_url String The Record_url field of the BankFeeEntry object.

BillingSchedule

Retrieves BillingSchedule report data.

Columns
Name Type Description
Recordno [KEY] String The Recordno field of the BillingSchedule object.
Status String The Status field of the BillingSchedule object.
Billingmethod String The Billingmethod field of the BillingSchedule object.
Calculateon String The Calculateon field of the BillingSchedule object.
Sourcetransdate Datetime The Sourcetransdate field of the BillingSchedule object.
Sourcetransaction String The Sourcetransaction field of the BillingSchedule object.
Trx_value Double The Trx_value field of the BillingSchedule object.
Line_no String The Line_no field of the BillingSchedule object.
Templateid String The Templateid field of the BillingSchedule object.
Record_url String The Record_url field of the BillingSchedule object.

CCTransaction

Retrieves CCTransaction report data.

Columns
Name Type Description
Recordno [KEY] String The Recordno field of the CCTransaction object.
Financialentity String The Financialentity field of the CCTransaction object.
Whencreated Datetime The Whencreated field of the CCTransaction object.
Recordid String The Recordid field of the CCTransaction object.
Recordtype String The Recordtype field of the CCTransaction object.
Description2 String The Description2 field of the CCTransaction object.
Description String The Description field of the CCTransaction object.
Prbatchkey Int64 The Prbatchkey field of the CCTransaction object.
Basecurr String The Basecurr field of the CCTransaction object.
Currency String The Currency field of the CCTransaction object.
Exch_rate_date Datetime The Exch_rate_date field of the CCTransaction object.
Exch_rate_type_id Int64 The Exch_rate_type_id field of the CCTransaction object.
Exchange_rate Double The Exchange_rate field of the CCTransaction object.
Totalentered Double The Totalentered field of the CCTransaction object.
Trx_totalentered Double The Trx_totalentered field of the CCTransaction object.
Totalpaid Double The Totalpaid field of the CCTransaction object.
Trx_totalpaid Double The Trx_totalpaid field of the CCTransaction object.
Whenpaid Datetime The Whenpaid field of the CCTransaction object.
Reversalkey Int64 The Reversalkey field of the CCTransaction object.
Reversaldate String The Reversaldate field of the CCTransaction object.
Reversedkey Int64 The Reversedkey field of the CCTransaction object.
Reverseddate String The Reverseddate field of the CCTransaction object.
State String The State field of the CCTransaction object.
Rawstate String The Rawstate field of the CCTransaction object.
Cleared String The Cleared field of the CCTransaction object.
Paymentkey Int64 The Paymentkey field of the CCTransaction object.
Auwhencreated Datetime The Auwhencreated field of the CCTransaction object.
Whenmodified Datetime The Whenmodified field of the CCTransaction object.
Createdby Int64 The Createdby field of the CCTransaction object.
Modifiedby Int64 The Modifiedby field of the CCTransaction object.
Megaentitykey Int64 The Megaentitykey field of the CCTransaction object.
Megaentityid String The Megaentityid field of the CCTransaction object.
Megaentityname String The Megaentityname field of the CCTransaction object.
Record_url String The Record_url field of the CCTransaction object.

CCTransactionEntry

Retrieves CCTransactionEntry report data.

Columns
Name Type Description
Recordno [KEY] String The Recordno field of the CCTransactionEntry object.
Recordkey Int64 The Recordkey field of the CCTransactionEntry object.
Recordtype String The Recordtype field of the CCTransactionEntry object.
Accountkey Int64 The Accountkey field of the CCTransactionEntry object.
Accountno String The Accountno field of the CCTransactionEntry object.
Accounttitle String The Accounttitle field of the CCTransactionEntry object.
Accountlabelkey Int64 The Accountlabelkey field of the CCTransactionEntry object.
Accountlabel String The Accountlabel field of the CCTransactionEntry object.
Amount Double The Amount field of the CCTransactionEntry object.
Trx_amount Double The Trx_amount field of the CCTransactionEntry object.
DeptNUM Int64 The Dept# field of the CCTransactionEntry object.
Departmentid String The Departmentid field of the CCTransactionEntry object.
Departmentname String The Departmentname field of the CCTransactionEntry object.
LocationNUM Int64 The Location# field of the CCTransactionEntry object.
Locationid String The Locationid field of the CCTransactionEntry object.
Locationname String The Locationname field of the CCTransactionEntry object.
Description String The Description field of the CCTransactionEntry object.
Exch_rate_date Datetime The Exch_rate_date field of the CCTransactionEntry object.
Exch_rate_type_id Int64 The Exch_rate_type_id field of the CCTransactionEntry object.
Exchange_rate Double The Exchange_rate field of the CCTransactionEntry object.
Lineitem String The Lineitem field of the CCTransactionEntry object.
Line_no String The Line_no field of the CCTransactionEntry object.
Currency String The Currency field of the CCTransactionEntry object.
Basecurr String The Basecurr field of the CCTransactionEntry object.
Status String The Status field of the CCTransactionEntry object.
Totalpaid Double The Totalpaid field of the CCTransactionEntry object.
Trx_totalpaid Double The Trx_totalpaid field of the CCTransactionEntry object.
Departmentkey Int64 The Departmentkey field of the CCTransactionEntry object.
Whencreated Datetime The Whencreated field of the CCTransactionEntry object.
Whenmodified Datetime The Whenmodified field of the CCTransactionEntry object.
Createdby Int64 The Createdby field of the CCTransactionEntry object.
Modifiedby Int64 The Modifiedby field of the CCTransactionEntry object.
Projectdimkey Int64 The Projectdimkey field of the CCTransactionEntry object.
Projectid String The Projectid field of the CCTransactionEntry object.
Projectname String The Projectname field of the CCTransactionEntry object.
Customerdimkey Int64 The Customerdimkey field of the CCTransactionEntry object.
Customerid String The Customerid field of the CCTransactionEntry object.
Customername String The Customername field of the CCTransactionEntry object.
Vendordimkey Int64 The Vendordimkey field of the CCTransactionEntry object.
Vendorid String The Vendorid field of the CCTransactionEntry object.
Vendorname String The Vendorname field of the CCTransactionEntry object.
Employeedimkey Int64 The Employeedimkey field of the CCTransactionEntry object.
Employeeid String The Employeeid field of the CCTransactionEntry object.
Employeename String The Employeename field of the CCTransactionEntry object.
Itemdimkey Int64 The Itemdimkey field of the CCTransactionEntry object.
Itemid String The Itemid field of the CCTransactionEntry object.
Itemname String The Itemname field of the CCTransactionEntry object.
Classdimkey Int64 The Classdimkey field of the CCTransactionEntry object.
Classid String The Classid field of the CCTransactionEntry object.
Classname String The Classname field of the CCTransactionEntry object.
Record_url String The Record_url field of the CCTransactionEntry object.

ChargePayoff

Retrieves ChargePayoff report data.

Columns
Name Type Description
Recordno [KEY] String The Recordno field of the ChargePayoff object.
Entity String The Entity field of the ChargePayoff object.
Financialentity String The Financialentity field of the ChargePayoff object.
Recordtype String The Recordtype field of the ChargePayoff object.
Whencreated Datetime The Whencreated field of the ChargePayoff object.
Reversalkey Int64 The Reversalkey field of the ChargePayoff object.
Reversedkey Int64 The Reversedkey field of the ChargePayoff object.
State String The State field of the ChargePayoff object.
Rawstate String The Rawstate field of the ChargePayoff object.
Cleared String The Cleared field of the ChargePayoff object.
Totalentered Double The Totalentered field of the ChargePayoff object.
Trx_totalentered Double The Trx_totalentered field of the ChargePayoff object.
Basecurr String The Basecurr field of the ChargePayoff object.
Currency String The Currency field of the ChargePayoff object.
Liabacctkey Int64 The Liabacctkey field of the ChargePayoff object.
Reversaldate String The Reversaldate field of the ChargePayoff object.
Reverseddate String The Reverseddate field of the ChargePayoff object.
Auwhencreated Datetime The Auwhencreated field of the ChargePayoff object.
Whenmodified Datetime The Whenmodified field of the ChargePayoff object.
Createdby Int64 The Createdby field of the ChargePayoff object.
Modifiedby Int64 The Modifiedby field of the ChargePayoff object.
Megaentitykey Int64 The Megaentitykey field of the ChargePayoff object.
Megaentityid String The Megaentityid field of the ChargePayoff object.
Megaentityname String The Megaentityname field of the ChargePayoff object.
Record_url String The Record_url field of the ChargePayoff object.

ChargePayoffEntry

Retrieves ChargePayoffEntry report data.

Columns
Name Type Description
Recordno [KEY] String The Recordno field of the ChargePayoffEntry object.
Recordkey Int64 The Recordkey field of the ChargePayoffEntry object.
Recordtype String The Recordtype field of the ChargePayoffEntry object.
Accountkey Int64 The Accountkey field of the ChargePayoffEntry object.
Accountno String The Accountno field of the ChargePayoffEntry object.
Accounttitle String The Accounttitle field of the ChargePayoffEntry object.
Amount Double The Amount field of the ChargePayoffEntry object.
Trx_amount Double The Trx_amount field of the ChargePayoffEntry object.
DeptNUM Int64 The Dept# field of the ChargePayoffEntry object.
Departmentid String The Departmentid field of the ChargePayoffEntry object.
Departmentname String The Departmentname field of the ChargePayoffEntry object.
Locationid String The Locationid field of the ChargePayoffEntry object.
Locationname String The Locationname field of the ChargePayoffEntry object.
Description String The Description field of the ChargePayoffEntry object.
Exch_rate_date Datetime The Exch_rate_date field of the ChargePayoffEntry object.
Exch_rate_type_id String The Exch_rate_type_id field of the ChargePayoffEntry object.
Exchange_rate Double The Exchange_rate field of the ChargePayoffEntry object.
Lineitem String The Lineitem field of the ChargePayoffEntry object.
Currency String The Currency field of the ChargePayoffEntry object.
Basecurr String The Basecurr field of the ChargePayoffEntry object.
Baselocation Int64 The Baselocation field of the ChargePayoffEntry object.
Status String The Status field of the ChargePayoffEntry object.
Whencreated Datetime The Whencreated field of the ChargePayoffEntry object.
Whenmodified Datetime The Whenmodified field of the ChargePayoffEntry object.
Createdby Int64 The Createdby field of the ChargePayoffEntry object.
Modifiedby Int64 The Modifiedby field of the ChargePayoffEntry object.
Departmentkey Int64 The Departmentkey field of the ChargePayoffEntry object.
Locationkey Int64 The Locationkey field of the ChargePayoffEntry object.
Projectdimkey Int64 The Projectdimkey field of the ChargePayoffEntry object.
Projectid String The Projectid field of the ChargePayoffEntry object.
Projectname String The Projectname field of the ChargePayoffEntry object.
Customerdimkey Int64 The Customerdimkey field of the ChargePayoffEntry object.
Customerid String The Customerid field of the ChargePayoffEntry object.
Customername String The Customername field of the ChargePayoffEntry object.
Vendordimkey Int64 The Vendordimkey field of the ChargePayoffEntry object.
Vendorid String The Vendorid field of the ChargePayoffEntry object.
Vendorname String The Vendorname field of the ChargePayoffEntry object.
Employeedimkey Int64 The Employeedimkey field of the ChargePayoffEntry object.
Employeeid String The Employeeid field of the ChargePayoffEntry object.
Employeename String The Employeename field of the ChargePayoffEntry object.
Itemdimkey Int64 The Itemdimkey field of the ChargePayoffEntry object.
Itemid String The Itemid field of the ChargePayoffEntry object.
Itemname String The Itemname field of the ChargePayoffEntry object.
Classdimkey Int64 The Classdimkey field of the ChargePayoffEntry object.
Classid String The Classid field of the ChargePayoffEntry object.
Classname String The Classname field of the ChargePayoffEntry object.
Record_url String The Record_url field of the ChargePayoffEntry object.

ClassGroup

Retrieves ClassGroup report data.

Columns
Name Type Description
Recordno [KEY] String The Recordno field of the ClassGroup object.
Id String The ID field of the ClassGroup object.
Name String The Name field of the ClassGroup object.
Description String The Description field of the ClassGroup object.
Grouptype String The Grouptype field of the ClassGroup object.
Whencreated Datetime The Whencreated field of the ClassGroup object.
Whenmodified Datetime The Whenmodified field of the ClassGroup object.
Createdby Int64 The Createdby field of the ClassGroup object.
Modifiedby Int64 The Modifiedby field of the ClassGroup object.
Megaentitykey Int64 The Megaentitykey field of the ClassGroup object.
Megaentityid String The Megaentityid field of the ClassGroup object.
Megaentityname String The Megaentityname field of the ClassGroup object.
Record_url String The Record_url field of the ClassGroup object.

CNSAcctBal

Retrieves CNSAcctBal report data.

Columns
Name Type Description
Recordno [KEY] String The Recordno field of the CNSAcctBal object.
Subsidiarykey String The Subsidiarykey field of the CNSAcctBal object.
Subaccountkey String The Subaccountkey field of the CNSAcctBal object.
Subaccountno String The Subaccountno field of the CNSAcctBal object.
Subtitle String The Subtitle field of the CNSAcctBal object.
Cnsperiodkey String The Cnsperiodkey field of the CNSAcctBal object.
Consbsrrate String The Consbsrrate field of the CNSAcctBal object.
Conswarrate String The Conswarrate field of the CNSAcctBal object.
Subaccttype String The Subaccttype field of the CNSAcctBal object.
JournalNUM Int64 The Journal# field of the CNSAcctBal object.
Symbol String The Symbol field of the CNSAcctBal object.
Batch_title String The Batch_title field of the CNSAcctBal object.
Batch_date Datetime The Batch_date field of the CNSAcctBal object.
AccountNUM Int64 The Account# field of the CNSAcctBal object.
Acct_no String The Acct_no field of the CNSAcctBal object.
Entry_date Datetime The Entry_date field of the CNSAcctBal object.
Timeperiod Int64 The Timeperiod field of the CNSAcctBal object.
Debit Double The Debit field of the CNSAcctBal object.
Credit Double The Credit field of the CNSAcctBal object.
PeriodNUM Int64 The Period# field of the CNSAcctBal object.
Pname String The Pname field of the CNSAcctBal object.
Subsidiaryid String The Subsidiaryid field of the CNSAcctBal object.
Formula_debit Double The Formula_debit field of the CNSAcctBal object.
Formula_credit Double The Formula_credit field of the CNSAcctBal object.
Record_url String The Record_url field of the CNSAcctBal object.

Company

Retrieves Company report data.

Columns
Name Type Description
Recordno [KEY] String The Recordno field of the Company object.
Title String The Title field of the Company object.
Name String The Name field of the Company object.
Country String The Country field of the Company object.
Legalname String The Legalname field of the Company object.
Legalcountry String The Legalcountry field of the Company object.
Federalid String The Federalid field of the Company object.
Contactname String The Contactname field of the Company object.
Contactphone String The Contactphone field of the Company object.
Contactemail String The Contactemail field of the Company object.
Howheard String The Howheard field of the Company object.
Otherapps String The Otherapps field of the Company object.
Created Datetime The Created field of the Company object.
Address1 String The Address1 field of the Company object.
Address2 String The Address2 field of the Company object.
City String The City field of the Company object.
State String The State field of the Company object.
Legaladdress1 String The Legaladdress1 field of the Company object.
Legaladdress2 String The Legaladdress2 field of the Company object.
Legalcity String The Legalcity field of the Company object.
Legalstate String The Legalstate field of the Company object.
Zipcode String The Zipcode field of the Company object.
Legalzipcode String The Legalzipcode field of the Company object.
Logo String The Logo field of the Company object.
Type String The Type field of the Company object.
Fax String The Fax field of the Company object.
Status String The Status field of the Company object.
Countrycode String The Countrycode field of the Company object.
Legalcountrycode String The Legalcountrycode field of the Company object.
Taxid String The Taxid field of the Company object.
Contractcustomerid String The Contractcustomerid field of the Company object.
Ordercustomerid String The Ordercustomerid field of the Company object.
Record_url String The Record_url field of the Company object.

Contractbillingschedule

null

Columns
Name Type Description
Recordno [KEY] Long Record number
Type String Schedule type
Contractkey Long Contract key
Contractdetailkey Long Contract detail key
State String Schedule state
Contractdetail_templatename String Billing template
Contractid String Contract
Lineno Long Contract line no.
Begindate Date Start date
Enddate Date End date
Templatekey Long No description specified
Canceldate Date Cancellation date
Billingholddate Date Hold date
Billingresumedate Date Resume date
Cndetailglpostingdate Date No description specified
Whencreated Datetime Timestamp marking last time this was created.
Whenmodified Datetime Timestamp marking last time this was changed.
Createdby Long User who created this.
Modifiedby Long User who modified this.
Completedate Date Estimate revaluation date
Contract_recordno [KEY] Long Foreign key for related object: CONTRACT
Contractdetail_recordno [KEY] Long Foreign key for related object: CONTRACTDETAIL

Contractrevenueschedule

null

Columns
Name Type Description
Recordno [KEY] Long Record number
Type String Schedule type
Contractkey Long Contract key
Contractid String Contract
Contractdetailkey Long Contract detail key
State String Schedule status
Contractdetail_templatename String Revenue template
Lineno Long Contract line no.
Startdate Date Start date
Enddate Date End date
Canceldate Date Cancellation date
Cndetailglpostingdate Date No description specified
Deliverydate Date Delivery date
Revenueholddate Date Hold date
Revenueresumedate Date Resume date
Whencreated Datetime Timestamp marking last time this was created.
Whenmodified Datetime Timestamp marking last time this was changed.
Createdby Long User who created this.
Modifiedby Long User who modified this.
Completedate Date Estimate revaluation date
Contract_recordno [KEY] Long Foreign key for related object: CONTRACT
Contractdetail_recordno [KEY] Long Foreign key for related object: CONTRACTDETAIL

CreditCardFee

Retrieves CreditCardFee report data.

Columns
Name Type Description
Recordno [KEY] String The Recordno field of the CreditCardFee object.
Financialentity String The Financialentity field of the CreditCardFee object.
Whencreated Datetime The Whencreated field of the CreditCardFee object.
Recordid String The Recordid field of the CreditCardFee object.
Recordtype String The Recordtype field of the CreditCardFee object.
Description String The Description field of the CreditCardFee object.
Prbatchkey Int64 The Prbatchkey field of the CreditCardFee object.
Basecurr String The Basecurr field of the CreditCardFee object.
Currency String The Currency field of the CreditCardFee object.
Totalentered Double The Totalentered field of the CreditCardFee object.
Trx_totalentered Double The Trx_totalentered field of the CreditCardFee object.
Totalpaid Double The Totalpaid field of the CreditCardFee object.
Trx_totalpaid Double The Trx_totalpaid field of the CreditCardFee object.
Whenpaid Datetime The Whenpaid field of the CreditCardFee object.
Reversalkey Int64 The Reversalkey field of the CreditCardFee object.
Reversaldate String The Reversaldate field of the CreditCardFee object.
Reversedkey Int64 The Reversedkey field of the CreditCardFee object.
Reverseddate String The Reverseddate field of the CreditCardFee object.
State String The State field of the CreditCardFee object.
Rawstate String The Rawstate field of the CreditCardFee object.
Cleared String The Cleared field of the CreditCardFee object.
Auwhencreated Datetime The Auwhencreated field of the CreditCardFee object.
Whenmodified Datetime The Whenmodified field of the CreditCardFee object.
Createdby Int64 The Createdby field of the CreditCardFee object.
Modifiedby Int64 The Modifiedby field of the CreditCardFee object.
Megaentitykey Int64 The Megaentitykey field of the CreditCardFee object.
Megaentityid String The Megaentityid field of the CreditCardFee object.
Record_url String The Record_url field of the CreditCardFee object.

CreditCardFeeEntry

Retrieves CreditCardFeeEntry report data.

Columns
Name Type Description
Recordno [KEY] String The Recordno field of the CreditCardFeeEntry object.
Recordkey Int64 The Recordkey field of the CreditCardFeeEntry object.
Recordtype String The Recordtype field of the CreditCardFeeEntry object.
Accountkey Int64 The Accountkey field of the CreditCardFeeEntry object.
Accountno String The Accountno field of the CreditCardFeeEntry object.
Accounttitle String The Accounttitle field of the CreditCardFeeEntry object.
Accountlabelkey Int64 The Accountlabelkey field of the CreditCardFeeEntry object.
Accountlabel String The Accountlabel field of the CreditCardFeeEntry object.
Amount Double The Amount field of the CreditCardFeeEntry object.
Trx_amount Double The Trx_amount field of the CreditCardFeeEntry object.
DeptNUM Int64 The Dept# field of the CreditCardFeeEntry object.
Departmentid String The Departmentid field of the CreditCardFeeEntry object.
Departmentname String The Departmentname field of the CreditCardFeeEntry object.
LocationNUM Int64 The Location# field of the CreditCardFeeEntry object.
Locationid String The Locationid field of the CreditCardFeeEntry object.
Locationname String The Locationname field of the CreditCardFeeEntry object.
Description String The Description field of the CreditCardFeeEntry object.
Lineitem String The Lineitem field of the CreditCardFeeEntry object.
Line_no String The Line_no field of the CreditCardFeeEntry object.
Currency String The Currency field of the CreditCardFeeEntry object.
Basecurr String The Basecurr field of the CreditCardFeeEntry object.
Baselocation Int64 The Baselocation field of the CreditCardFeeEntry object.
Status String The Status field of the CreditCardFeeEntry object.
Totalpaid Double The Totalpaid field of the CreditCardFeeEntry object.
Trx_totalpaid Double The Trx_totalpaid field of the CreditCardFeeEntry object.
Whencreated Datetime The Whencreated field of the CreditCardFeeEntry object.
Whenmodified Datetime The Whenmodified field of the CreditCardFeeEntry object.
Createdby Int64 The Createdby field of the CreditCardFeeEntry object.
Modifiedby Int64 The Modifiedby field of the CreditCardFeeEntry object.
Departmentkey Int64 The Departmentkey field of the CreditCardFeeEntry object.
Locationkey Int64 The Locationkey field of the CreditCardFeeEntry object.
Projectdimkey Int64 The Projectdimkey field of the CreditCardFeeEntry object.
Projectid String The Projectid field of the CreditCardFeeEntry object.
Projectname String The Projectname field of the CreditCardFeeEntry object.
Customerdimkey Int64 The Customerdimkey field of the CreditCardFeeEntry object.
Customerid String The Customerid field of the CreditCardFeeEntry object.
Customername String The Customername field of the CreditCardFeeEntry object.
Vendordimkey Int64 The Vendordimkey field of the CreditCardFeeEntry object.
Vendorid String The Vendorid field of the CreditCardFeeEntry object.
Vendorname String The Vendorname field of the CreditCardFeeEntry object.
Employeedimkey Int64 The Employeedimkey field of the CreditCardFeeEntry object.
Employeeid String The Employeeid field of the CreditCardFeeEntry object.
Employeename String The Employeename field of the CreditCardFeeEntry object.
Itemdimkey Int64 The Itemdimkey field of the CreditCardFeeEntry object.
Itemid String The Itemid field of the CreditCardFeeEntry object.
Itemname String The Itemname field of the CreditCardFeeEntry object.
Classdimkey Int64 The Classdimkey field of the CreditCardFeeEntry object.
Classid String The Classid field of the CreditCardFeeEntry object.
Classname String The Classname field of the CreditCardFeeEntry object.
Record_url String The Record_url field of the CreditCardFeeEntry object.

DDSJob

Retrieves DDSJob report data.

Columns
Name Type Description
Recordno [KEY] String The Recordno field of the DDSJob object.
Object String The Object field of the DDSJob object.
Jobtype String The Jobtype field of the DDSJob object.
Subscriptionkey Int64 The Subscriptionkey field of the DDSJob object.
Queuetime Datetime The Queuetime field of the DDSJob object.
Starttime Datetime The Starttime field of the DDSJob object.
Endtime Datetime The Endtime field of the DDSJob object.
Recordscreated Int64 The Recordscreated field of the DDSJob object.
Recordsupdated Int64 The Recordsupdated field of the DDSJob object.
Recordsdeleted Int64 The Recordsdeleted field of the DDSJob object.
Status String The Status field of the DDSJob object.
Error String The Error field of the DDSJob object.
Filelist String The Filelist field of the DDSJob object.
Record_url String The Record_url field of the DDSJob object.

DepartmentGroup

Retrieves DepartmentGroup report data.

Columns
Name Type Description
Recordno [KEY] String The Recordno field of the DepartmentGroup object.
Id String The ID field of the DepartmentGroup object.
Name String The Name field of the DepartmentGroup object.
Description String The Description field of the DepartmentGroup object.
Grouptype String The Grouptype field of the DepartmentGroup object.
Whencreated Datetime The Whencreated field of the DepartmentGroup object.
Whenmodified Datetime The Whenmodified field of the DepartmentGroup object.
Createdby Int64 The Createdby field of the DepartmentGroup object.
Modifiedby Int64 The Modifiedby field of the DepartmentGroup object.
Megaentitykey Int64 The Megaentitykey field of the DepartmentGroup object.
Megaentityid String The Megaentityid field of the DepartmentGroup object.
Megaentityname String The Megaentityname field of the DepartmentGroup object.
Record_url String The Record_url field of the DepartmentGroup object.

Deposit

Retrieves Deposit report data.

Columns
Name Type Description
Recordno [KEY] String The Recordno field of the Deposit object.
Financialentity String The Financialentity field of the Deposit object.
Whencreated Datetime The Whencreated field of the Deposit object.
Depositid String The Depositid field of the Deposit object.
Recordtype String The Recordtype field of the Deposit object.
Description String The Description field of the Deposit object.
Basecurr String The Basecurr field of the Deposit object.
Currency String The Currency field of the Deposit object.
Totalentered Double The Totalentered field of the Deposit object.
Trx_totalentered Double The Trx_totalentered field of the Deposit object.
Bankname String The Bankname field of the Deposit object.
Reversalkey Int64 The Reversalkey field of the Deposit object.
Reversaldate String The Reversaldate field of the Deposit object.
Reversedkey Int64 The Reversedkey field of the Deposit object.
Reverseddate String The Reverseddate field of the Deposit object.
State String The State field of the Deposit object.
Rawstate String The Rawstate field of the Deposit object.
Cleared String The Cleared field of the Deposit object.
Auwhencreated Datetime The Auwhencreated field of the Deposit object.
Whenmodified Datetime The Whenmodified field of the Deposit object.
Createdby Int64 The Createdby field of the Deposit object.
Modifiedby Int64 The Modifiedby field of the Deposit object.
Megaentitykey Int64 The Megaentitykey field of the Deposit object.
Megaentityid String The Megaentityid field of the Deposit object.
Megaentityname String The Megaentityname field of the Deposit object.
Record_url String The Record_url field of the Deposit object.

DepositEntry

Retrieves DepositEntry report data.

Columns
Name Type Description
Recordno [KEY] String The Recordno field of the DepositEntry object.
Recordkey Int64 The Recordkey field of the DepositEntry object.
Recordtype String The Recordtype field of the DepositEntry object.
Accountkey Int64 The Accountkey field of the DepositEntry object.
Accountno String The Accountno field of the DepositEntry object.
Accounttitle String The Accounttitle field of the DepositEntry object.
Accountlabel String The Accountlabel field of the DepositEntry object.
Accountlabelkey Int64 The Accountlabelkey field of the DepositEntry object.
Amount Double The Amount field of the DepositEntry object.
Trx_amount Double The Trx_amount field of the DepositEntry object.
DeptNUM Int64 The Dept# field of the DepositEntry object.
Deptkey Int64 The Deptkey field of the DepositEntry object.
Departmentid String The Departmentid field of the DepositEntry object.
Departmentname String The Departmentname field of the DepositEntry object.
LocationNUM Int64 The Location# field of the DepositEntry object.
Locationkey Int64 The Locationkey field of the DepositEntry object.
Locationid String The Locationid field of the DepositEntry object.
Locationname String The Locationname field of the DepositEntry object.
Description String The Description field of the DepositEntry object.
Exch_rate_date Datetime The Exch_rate_date field of the DepositEntry object.
Exch_rate_type_id Int64 The Exch_rate_type_id field of the DepositEntry object.
Exchange_rate Double The Exchange_rate field of the DepositEntry object.
Lineitem String The Lineitem field of the DepositEntry object.
Currency String The Currency field of the DepositEntry object.
Basecurr String The Basecurr field of the DepositEntry object.
Baselocation Int64 The Baselocation field of the DepositEntry object.
Status String The Status field of the DepositEntry object.
Whencreated Datetime The Whencreated field of the DepositEntry object.
Whenmodified Datetime The Whenmodified field of the DepositEntry object.
Createdby Int64 The Createdby field of the DepositEntry object.
Modifiedby Int64 The Modifiedby field of the DepositEntry object.
Projectdimkey Int64 The Projectdimkey field of the DepositEntry object.
Projectid String The Projectid field of the DepositEntry object.
Projectname String The Projectname field of the DepositEntry object.
Customerdimkey Int64 The Customerdimkey field of the DepositEntry object.
Customerid String The Customerid field of the DepositEntry object.
Customername String The Customername field of the DepositEntry object.
Vendordimkey Int64 The Vendordimkey field of the DepositEntry object.
Vendorid String The Vendorid field of the DepositEntry object.
Vendorname String The Vendorname field of the DepositEntry object.
Employeedimkey Int64 The Employeedimkey field of the DepositEntry object.
Employeeid String The Employeeid field of the DepositEntry object.
Employeename String The Employeename field of the DepositEntry object.
Itemdimkey Int64 The Itemdimkey field of the DepositEntry object.
Itemid String The Itemid field of the DepositEntry object.
Itemname String The Itemname field of the DepositEntry object.
Classdimkey Int64 The Classdimkey field of the DepositEntry object.
Classid String The Classid field of the DepositEntry object.
Classname String The Classname field of the DepositEntry object.
Record_url String The Record_url field of the DepositEntry object.

DimensionRelationships

List all relationships between dimension type objects along with helpful integration information about the relationship.

Table Specific Information

Note

All of the WHERE clause conditions for this view are executed client side within the connector.

Columns
Name Type Description
SourceDimension [KEY] String The Name of the source dimension or UDD.
RelationshipId [KEY] String The Relationship ID.
SourceObjectId String The ID of the source dimension object.
AutofillRelated Boolean Indicates whether the values for related dimensions can be auto-filled.
EnableOverride Boolean Indicates whether the auto-filled relationship values can be overriden.
RelatedDimension String The Name of the related dimension or UDD
RelatedObjectId String The ID of the related dimension object.
SourceSide String The Cardinality of the relationship from the source dimension.
RelatedSide String The Cardinality of the relationship to the target (related) dimension.

Dimensions

Lists all standard dimensions and UDDs in a company along with helpful integration information about the object.

Table Specific Information

Note

All of the WHERE clause conditions for this view are executed client side within the connector.

Columns
Name Type Description
ObjectName [KEY] String Object integration name.
ObjectLabel String Object label (Display Name).
TermLabel String Terminology label, if renamed in company terminology.
UserDefinedDimension Boolean Indicates whether the dimension is setup as a user defined dimension or not.
EnabledInGL Boolean Indicates whether the dimension is enabled in the General Ledger module or not.

EExpensesItem

Retrieves EExpensesItem report data.

Columns
Name Type Description
Recordno [KEY] String The Recordno field of the EExpensesItem object.
Recordkey Int64 The Recordkey field of the EExpensesItem object.
Accountkey Int64 The Accountkey field of the EExpensesItem object.
Entry_date Datetime The Entry_date field of the EExpensesItem object.
Description String The Description field of the EExpensesItem object.
Description2 String The Description2 field of the EExpensesItem object.
Glaccountno String The Glaccountno field of the EExpensesItem object.
Glaccounttitle String The Glaccounttitle field of the EExpensesItem object.
Amount Double The Amount field of the EExpensesItem object.
Locationid String The Locationid field of the EExpensesItem object.
Locationname String The Locationname field of the EExpensesItem object.
Departmentid String The Departmentid field of the EExpensesItem object.
Departmentname String The Departmentname field of the EExpensesItem object.
Line_no String The Line_no field of the EExpensesItem object.
Accountlabel String The Accountlabel field of the EExpensesItem object.
Totalselected Double The Totalselected field of the EExpensesItem object.
Totalpaid Double The Totalpaid field of the EExpensesItem object.
Trx_amount Double The Trx_amount field of the EExpensesItem object.
Trx_totalselected Double The Trx_totalselected field of the EExpensesItem object.
Trx_totalpaid Double The Trx_totalpaid field of the EExpensesItem object.
Billable Boolean The Billable field of the EExpensesItem object.
Billed Boolean The Billed field of the EExpensesItem object.
State String The State field of the EExpensesItem object.
Form1099 String The Form1099 field of the EExpensesItem object.
Exppmttypekey Int64 The Exppmttypekey field of the EExpensesItem object.
Exppmttype String The Exppmttype field of the EExpensesItem object.
Nonreimbursable Boolean The Nonreimbursable field of the EExpensesItem object.
Nr_amount Double The Nr_amount field of the EExpensesItem object.
Nr_trx_amount Double The Nr_trx_amount field of the EExpensesItem object.
Quantity Double The Quantity field of the EExpensesItem object.
Unitrate String The Unitrate field of the EExpensesItem object.
Createdby Int64 The Createdby field of the EExpensesItem object.
Modifiedby Int64 The Modifiedby field of the EExpensesItem object.
Whencreated Datetime The Whencreated field of the EExpensesItem object.
Whenmodified Datetime The Whenmodified field of the EExpensesItem object.
Recordtype String The Recordtype field of the EExpensesItem object.
Projectdimkey Int64 The Projectdimkey field of the EExpensesItem object.
Projectid String The Projectid field of the EExpensesItem object.
Projectname String The Projectname field of the EExpensesItem object.
Customerdimkey Int64 The Customerdimkey field of the EExpensesItem object.
Customerid String The Customerid field of the EExpensesItem object.
Customername String The Customername field of the EExpensesItem object.
Vendordimkey Int64 The Vendordimkey field of the EExpensesItem object.
Vendorid String The Vendorid field of the EExpensesItem object.
Vendorname String The Vendorname field of the EExpensesItem object.
Itemdimkey Int64 The Itemdimkey field of the EExpensesItem object.
Itemid String The Itemid field of the EExpensesItem object.
Itemname String The Itemname field of the EExpensesItem object.
Classdimkey Int64 The Classdimkey field of the EExpensesItem object.
Classid String The Classid field of the EExpensesItem object.
Classname String The Classname field of the EExpensesItem object.
Record_url String The Record_url field of the EExpensesItem object.

EExpensesPayment

Retrieves EExpensesPayment report data.

Columns
Name Type Description
Paymentkey [KEY] String The Paymentkey field of the EExpensesPayment object.
Payitemkey String The Payitemkey field of the EExpensesPayment object.
Recordkey String The Recordkey field of the EExpensesPayment object.
Paiditemkey String The Paiditemkey field of the EExpensesPayment object.
Amount Double The Amount field of the EExpensesPayment object.
State String The State field of the EExpensesPayment object.
Parentpymt String The Parentpymt field of the EExpensesPayment object.
Paymentdate Datetime The Paymentdate field of the EExpensesPayment object.
Record_url String The Record_url field of the EExpensesPayment object.

EPPayment

Retrieves EPPayment report data.

Columns
Name Type Description
Recordno [KEY] String The Recordno field of the EPPayment object.
Prbatchkey Int64 The Prbatchkey field of the EPPayment object.
Recordtype String The Recordtype field of the EPPayment object.
Description String The Description field of the EPPayment object.
Totalentered Double The Totalentered field of the EPPayment object.
Totalpaid Double The Totalpaid field of the EPPayment object.
Totalselected Double The Totalselected field of the EPPayment object.
Totaldue Double The Totaldue field of the EPPayment object.
State String The State field of the EPPayment object.
Whencreated Datetime The Whencreated field of the EPPayment object.
Whenpaid Datetime The Whenpaid field of the EPPayment object.
Termkey Int64 The Termkey field of the EPPayment object.
Termname String The Termname field of the EPPayment object.
Whendiscount Datetime The Whendiscount field of the EPPayment object.
Recordid String The Recordid field of the EPPayment object.
Userkey Int64 The Userkey field of the EPPayment object.
Whendue Datetime The Whendue field of the EPPayment object.
Docnumber String The Docnumber field of the EPPayment object.
Cleared String The Cleared field of the EPPayment object.
Clrdate Datetime The Clrdate field of the EPPayment object.
Modulekey String The Modulekey field of the EPPayment object.
Status String The Status field of the EPPayment object.
Systemgenerated String The Systemgenerated field of the EPPayment object.
Whenposted Datetime The Whenposted field of the EPPayment object.
Onhold Boolean The Onhold field of the EPPayment object.
Currency String The Currency field of the EPPayment object.
Trx_totalentered Double The Trx_totalentered field of the EPPayment object.
Trx_totalpaid Double The Trx_totalpaid field of the EPPayment object.
Trx_totalselected Double The Trx_totalselected field of the EPPayment object.
Trx_totaldue Double The Trx_totaldue field of the EPPayment object.
Deliverymethod String The Deliverymethod field of the EPPayment object.
Recon_date Datetime The Recon_date field of the EPPayment object.
Basecurr String The Basecurr field of the EPPayment object.
Locationkey Int64 The Locationkey field of the EPPayment object.
Auwhencreated Datetime The Auwhencreated field of the EPPayment object.
Whenmodified Datetime The Whenmodified field of the EPPayment object.
Createdby Int64 The Createdby field of the EPPayment object.
Modifiedby Int64 The Modifiedby field of the EPPayment object.
Nr_totalentered Double The Nr_totalentered field of the EPPayment object.
Nr_trx_totalentered Double The Nr_trx_totalentered field of the EPPayment object.
Paymenttype String The Paymenttype field of the EPPayment object.
Paymentdate Datetime The Paymentdate field of the EPPayment object.
Receiptdate Datetime The Receiptdate field of the EPPayment object.
Paymentamount Double The Paymentamount field of the EPPayment object.
Documentnumber String The Documentnumber field of the EPPayment object.
Memo String The Memo field of the EPPayment object.
Financialaccount String The Financialaccount field of the EPPayment object.
Employeeid String The Employeeid field of the EPPayment object.
Contactinfo_name String The Contactinfo_name field of the EPPayment object.
Megaentitykey Int64 The Megaentitykey field of the EPPayment object.
Megaentityid String The Megaentityid field of the EPPayment object.
Record_url String The Record_url field of the EPPayment object.

EPPaymentItem

Retrieves EPPaymentItem report data.

Columns
Name Type Description
Recordno [KEY] String The Recordno field of the EPPaymentItem object.
Recordtype String The Recordtype field of the EPPaymentItem object.
Entry_date Datetime The Entry_date field of the EPPaymentItem object.
Recordkey Int64 The Recordkey field of the EPPaymentItem object.
Vendoracctnokeyversion Int64 The Vendoracctnokeyversion field of the EPPaymentItem object.
Entrydescription String The Entrydescription field of the EPPaymentItem object.
Accountkey Int64 The Accountkey field of the EPPaymentItem object.
Glaccountno String The Glaccountno field of the EPPaymentItem object.
Glaccounttitle String The Glaccounttitle field of the EPPaymentItem object.
Amount Double The Amount field of the EPPaymentItem object.
Locationid String The Locationid field of the EPPaymentItem object.
Locationname String The Locationname field of the EPPaymentItem object.
Departmentid String The Departmentid field of the EPPaymentItem object.
Departmentname String The Departmentname field of the EPPaymentItem object.
Line_no String The Line_no field of the EPPaymentItem object.
Form1099 String The Form1099 field of the EPPaymentItem object.
Accountlabel String The Accountlabel field of the EPPaymentItem object.
Totalselected Double The Totalselected field of the EPPaymentItem object.
Totalpaid Double The Totalpaid field of the EPPaymentItem object.
Parententry Int64 The Parententry field of the EPPaymentItem object.
Lineitem String The Lineitem field of the EPPaymentItem object.
Gloffset Int64 The Gloffset field of the EPPaymentItem object.
Baselocation Int64 The Baselocation field of the EPPaymentItem object.
Allocationkey Int64 The Allocationkey field of the EPPaymentItem object.
Allocation String The Allocation field of the EPPaymentItem object.
Subtotal String The Subtotal field of the EPPaymentItem object.
Deferrevenue Boolean The Deferrevenue field of the EPPaymentItem object.
Revrectemplatekey Int64 The Revrectemplatekey field of the EPPaymentItem object.
Revrectemplate String The Revrectemplate field of the EPPaymentItem object.
Deferredrevacctkey Int64 The Deferredrevacctkey field of the EPPaymentItem object.
Deferredrevacctno String The Deferredrevacctno field of the EPPaymentItem object.
Deferredrevaccttitle String The Deferredrevaccttitle field of the EPPaymentItem object.
Revrecstartdate Datetime The Revrecstartdate field of the EPPaymentItem object.
Revrecenddate Datetime The Revrecenddate field of the EPPaymentItem object.
Entrycurrency String The Entrycurrency field of the EPPaymentItem object.
Entryexchratedate Datetime The Entryexchratedate field of the EPPaymentItem object.
Entryexchratetype Int64 The Entryexchratetype field of the EPPaymentItem object.
Entryexchrate Double The Entryexchrate field of the EPPaymentItem object.
Trx_amount Double The Trx_amount field of the EPPaymentItem object.
Trx_totalselected Double The Trx_totalselected field of the EPPaymentItem object.
Trx_totalpaid Double The Trx_totalpaid field of the EPPaymentItem object.
Billable Boolean The Billable field of the EPPaymentItem object.
Billed Boolean The Billed field of the EPPaymentItem object.
State String The State field of the EPPaymentItem object.
Releasetopay Boolean The Releasetopay field of the EPPaymentItem object.
Whencreated Datetime The Whencreated field of the EPPaymentItem object.
Whenmodified Datetime The Whenmodified field of the EPPaymentItem object.
Createdby Int64 The Createdby field of the EPPaymentItem object.
Modifiedby Int64 The Modifiedby field of the EPPaymentItem object.
Locationkey Int64 The Locationkey field of the EPPaymentItem object.
Departmentkey Int64 The Departmentkey field of the EPPaymentItem object.
Currency String The Currency field of the EPPaymentItem object.
Accountno String The Accountno field of the EPPaymentItem object.
Accounttitle String The Accounttitle field of the EPPaymentItem object.
Exch_rate_date Datetime The Exch_rate_date field of the EPPaymentItem object.
Exch_rate_type_id Int64 The Exch_rate_type_id field of the EPPaymentItem object.
Exchange_rate Double The Exchange_rate field of the EPPaymentItem object.
Projectdimkey Int64 The Projectdimkey field of the EPPaymentItem object.
Projectid String The Projectid field of the EPPaymentItem object.
Projectname String The Projectname field of the EPPaymentItem object.
Customerdimkey Int64 The Customerdimkey field of the EPPaymentItem object.
Customerid String The Customerid field of the EPPaymentItem object.
Customername String The Customername field of the EPPaymentItem object.
Vendordimkey Int64 The Vendordimkey field of the EPPaymentItem object.
Vendorid String The Vendorid field of the EPPaymentItem object.
Vendorname String The Vendorname field of the EPPaymentItem object.
Itemdimkey Int64 The Itemdimkey field of the EPPaymentItem object.
Itemid String The Itemid field of the EPPaymentItem object.
Itemname String The Itemname field of the EPPaymentItem object.
Classdimkey Int64 The Classdimkey field of the EPPaymentItem object.
Classid String The Classid field of the EPPaymentItem object.
Classname String The Classname field of the EPPaymentItem object.
Record_url String The Record_url field of the EPPaymentItem object.

EPPaymentRequest

Retrieves EPPaymentRequest report data.

Columns
Name Type Description
Recordno [KEY] String The Recordno field of the EPPaymentRequest object.
Prbatchkey Int64 The Prbatchkey field of the EPPaymentRequest object.
Recordtype String The Recordtype field of the EPPaymentRequest object.
Description String The Description field of the EPPaymentRequest object.
Totalentered Double The Totalentered field of the EPPaymentRequest object.
Totalpaid Double The Totalpaid field of the EPPaymentRequest object.
Totalselected Double The Totalselected field of the EPPaymentRequest object.
Totaldue Double The Totaldue field of the EPPaymentRequest object.
State String The State field of the EPPaymentRequest object.
Whencreated Datetime The Whencreated field of the EPPaymentRequest object.
Whenpaid Datetime The Whenpaid field of the EPPaymentRequest object.
Termkey Int64 The Termkey field of the EPPaymentRequest object.
Termname String The Termname field of the EPPaymentRequest object.
Whendiscount Datetime The Whendiscount field of the EPPaymentRequest object.
Recordid String The Recordid field of the EPPaymentRequest object.
Userkey Int64 The Userkey field of the EPPaymentRequest object.
Whendue Datetime The Whendue field of the EPPaymentRequest object.
Docnumber String The Docnumber field of the EPPaymentRequest object.
Cleared String The Cleared field of the EPPaymentRequest object.
Clrdate Datetime The Clrdate field of the EPPaymentRequest object.
Modulekey String The Modulekey field of the EPPaymentRequest object.
Status String The Status field of the EPPaymentRequest object.
Systemgenerated String The Systemgenerated field of the EPPaymentRequest object.
Whenposted Datetime The Whenposted field of the EPPaymentRequest object.
Onhold Boolean The Onhold field of the EPPaymentRequest object.
Currency String The Currency field of the EPPaymentRequest object.
Trx_totalentered Double The Trx_totalentered field of the EPPaymentRequest object.
Trx_totalpaid Double The Trx_totalpaid field of the EPPaymentRequest object.
Trx_totalselected Double The Trx_totalselected field of the EPPaymentRequest object.
Trx_totaldue Double The Trx_totaldue field of the EPPaymentRequest object.
Deliverymethod String The Deliverymethod field of the EPPaymentRequest object.
Recon_date Datetime The Recon_date field of the EPPaymentRequest object.
Basecurr String The Basecurr field of the EPPaymentRequest object.
Locationkey Int64 The Locationkey field of the EPPaymentRequest object.
Auwhencreated Datetime The Auwhencreated field of the EPPaymentRequest object.
Whenmodified Datetime The Whenmodified field of the EPPaymentRequest object.
Createdby Int64 The Createdby field of the EPPaymentRequest object.
Modifiedby Int64 The Modifiedby field of the EPPaymentRequest object.
Nr_totalentered Double The Nr_totalentered field of the EPPaymentRequest object.
Nr_trx_totalentered Double The Nr_trx_totalentered field of the EPPaymentRequest object.
Paymenttype String The Paymenttype field of the EPPaymentRequest object.
Paymentdate Datetime The Paymentdate field of the EPPaymentRequest object.
Receiptdate Datetime The Receiptdate field of the EPPaymentRequest object.
Paymentamount Double The Paymentamount field of the EPPaymentRequest object.
Documentnumber String The Documentnumber field of the EPPaymentRequest object.
Memo String The Memo field of the EPPaymentRequest object.
Financialaccount String The Financialaccount field of the EPPaymentRequest object.
Employeeid String The Employeeid field of the EPPaymentRequest object.
Contactinfo_name String The Contactinfo_name field of the EPPaymentRequest object.
Megaentitykey Int64 The Megaentitykey field of the EPPaymentRequest object.
Megaentityid String The Megaentityid field of the EPPaymentRequest object.
Record_url String The Record_url field of the EPPaymentRequest object.

ExchangeRateEntry

Retrieves ExchangeRateEntry report data.

Columns
Name Type Description
Recordno [KEY] String The Recordno field of the ExchangeRateEntry object.
Exchangeratekey Int64 The Exchangeratekey field of the ExchangeRateEntry object.
Effective_start_date Datetime The Effective_start_date field of the ExchangeRateEntry object.
Exchange_rate Double The Exchange_rate field of the ExchangeRateEntry object.
Reciprocal_rate Double The Reciprocal_rate field of the ExchangeRateEntry object.
Whencreated Datetime The Whencreated field of the ExchangeRateEntry object.
Whenmodified Datetime The Whenmodified field of the ExchangeRateEntry object.
Createdby Int64 The Createdby field of the ExchangeRateEntry object.
Modifiedby Int64 The Modifiedby field of the ExchangeRateEntry object.
Record_url String The Record_url field of the ExchangeRateEntry object.

ExchangeRateTypes

Retrieves ExchangeRateTypes report data.

Columns
Name Type Description
Id [KEY] String The ID field of the ExchangeRateTypes object.
Name String The Name field of the ExchangeRateTypes object.
Isdefault String The Isdefault field of the ExchangeRateTypes object.
Record_url String The Record_url field of the ExchangeRateTypes object.

ExpenseAdjustmentsItem

Retrieves ExpenseAdjustmentsItem report data.

Columns
Name Type Description
Recordno [KEY] String The Recordno field of the ExpenseAdjustmentsItem object.
Recordkey Int64 The Recordkey field of the ExpenseAdjustmentsItem object.
Accountkey Int64 The Accountkey field of the ExpenseAdjustmentsItem object.
Entry_date Datetime The Entry_date field of the ExpenseAdjustmentsItem object.
Description String The Description field of the ExpenseAdjustmentsItem object.
Description2 String The Description2 field of the ExpenseAdjustmentsItem object.
Glaccountno String The Glaccountno field of the ExpenseAdjustmentsItem object.
Glaccounttitle String The Glaccounttitle field of the ExpenseAdjustmentsItem object.
Amount Double The Amount field of the ExpenseAdjustmentsItem object.
Locationid String The Locationid field of the ExpenseAdjustmentsItem object.
Locationname String The Locationname field of the ExpenseAdjustmentsItem object.
Departmentid String The Departmentid field of the ExpenseAdjustmentsItem object.
Departmentname String The Departmentname field of the ExpenseAdjustmentsItem object.
Line_no String The Line_no field of the ExpenseAdjustmentsItem object.
Accountlabel String The Accountlabel field of the ExpenseAdjustmentsItem object.
Totalselected Double The Totalselected field of the ExpenseAdjustmentsItem object.
Totalpaid Double The Totalpaid field of the ExpenseAdjustmentsItem object.
Trx_amount Double The Trx_amount field of the ExpenseAdjustmentsItem object.
Trx_totalselected Double The Trx_totalselected field of the ExpenseAdjustmentsItem object.
Trx_totalpaid Double The Trx_totalpaid field of the ExpenseAdjustmentsItem object.
Billable Boolean The Billable field of the ExpenseAdjustmentsItem object.
Billed Boolean The Billed field of the ExpenseAdjustmentsItem object.
State String The State field of the ExpenseAdjustmentsItem object.
Form1099 String The Form1099 field of the ExpenseAdjustmentsItem object.
Exppmttypekey Int64 The Exppmttypekey field of the ExpenseAdjustmentsItem object.
Exppmttype String The Exppmttype field of the ExpenseAdjustmentsItem object.
Nonreimbursable Boolean The Nonreimbursable field of the ExpenseAdjustmentsItem object.
Nr_amount Double The Nr_amount field of the ExpenseAdjustmentsItem object.
Nr_trx_amount Double The Nr_trx_amount field of the ExpenseAdjustmentsItem object.
Quantity Double The Quantity field of the ExpenseAdjustmentsItem object.
Unitrate String The Unitrate field of the ExpenseAdjustmentsItem object.
Createdby Int64 The Createdby field of the ExpenseAdjustmentsItem object.
Modifiedby Int64 The Modifiedby field of the ExpenseAdjustmentsItem object.
Whencreated Datetime The Whencreated field of the ExpenseAdjustmentsItem object.
Whenmodified Datetime The Whenmodified field of the ExpenseAdjustmentsItem object.
Recordtype String The Recordtype field of the ExpenseAdjustmentsItem object.
Projectdimkey Int64 The Projectdimkey field of the ExpenseAdjustmentsItem object.
Projectid String The Projectid field of the ExpenseAdjustmentsItem object.
Projectname String The Projectname field of the ExpenseAdjustmentsItem object.
Customerdimkey Int64 The Customerdimkey field of the ExpenseAdjustmentsItem object.
Customerid String The Customerid field of the ExpenseAdjustmentsItem object.
Customername String The Customername field of the ExpenseAdjustmentsItem object.
Vendordimkey Int64 The Vendordimkey field of the ExpenseAdjustmentsItem object.
Vendorid String The Vendorid field of the ExpenseAdjustmentsItem object.
Vendorname String The Vendorname field of the ExpenseAdjustmentsItem object.
Itemdimkey Int64 The Itemdimkey field of the ExpenseAdjustmentsItem object.
Itemid String The Itemid field of the ExpenseAdjustmentsItem object.
Itemname String The Itemname field of the ExpenseAdjustmentsItem object.
Classdimkey Int64 The Classdimkey field of the ExpenseAdjustmentsItem object.
Classid String The Classid field of the ExpenseAdjustmentsItem object.
Classname String The Classname field of the ExpenseAdjustmentsItem object.
Record_url String The Record_url field of the ExpenseAdjustmentsItem object.

FundsTransfer

Retrieves FundsTransfer report data.

Columns
Name Type Description
Recordno [KEY] String The Recordno field of the FundsTransfer object.
Recordtype String The Recordtype field of the FundsTransfer object.
Whencreated Datetime The Whencreated field of the FundsTransfer object.
Fromaccountid String The Fromaccountid field of the FundsTransfer object.
Toaccountid String The Toaccountid field of the FundsTransfer object.
Fromaccountname String The Fromaccountname field of the FundsTransfer object.
Toaccountname String The Toaccountname field of the FundsTransfer object.
Fromglaccountno String The Fromglaccountno field of the FundsTransfer object.
Toglaccountno String The Toglaccountno field of the FundsTransfer object.
Fromaccountcurr String The Fromaccountcurr field of the FundsTransfer object.
Toaccountcurr String The Toaccountcurr field of the FundsTransfer object.
Recordid String The Recordid field of the FundsTransfer object.
Description String The Description field of the FundsTransfer object.
Totalentered Double The Totalentered field of the FundsTransfer object.
Trx_totalentered Double The Trx_totalentered field of the FundsTransfer object.
Basecurr String The Basecurr field of the FundsTransfer object.
Currency String The Currency field of the FundsTransfer object.
Exch_rate_date Datetime The Exch_rate_date field of the FundsTransfer object.
Exch_rate_type_id String The Exch_rate_type_id field of the FundsTransfer object.
Exchange_rate Double The Exchange_rate field of the FundsTransfer object.
Recon_date Datetime The Recon_date field of the FundsTransfer object.
Reversalkey Int64 The Reversalkey field of the FundsTransfer object.
Reversaldate String The Reversaldate field of the FundsTransfer object.
Reversedkey Int64 The Reversedkey field of the FundsTransfer object.
Reverseddate String The Reverseddate field of the FundsTransfer object.
State String The State field of the FundsTransfer object.
Rawstate String The Rawstate field of the FundsTransfer object.
Cleared String The Cleared field of the FundsTransfer object.
Auwhencreated Datetime The Auwhencreated field of the FundsTransfer object.
Whenmodified Datetime The Whenmodified field of the FundsTransfer object.
Createdby Int64 The Createdby field of the FundsTransfer object.
Modifiedby Int64 The Modifiedby field of the FundsTransfer object.
Megaentitykey Int64 The Megaentitykey field of the FundsTransfer object.
Megaentityid String The Megaentityid field of the FundsTransfer object.
Megaentityname String The Megaentityname field of the FundsTransfer object.
Record_url String The Record_url field of the FundsTransfer object.

FundsTransferEntry

Retrieves FundsTransferEntry report data.

Columns
Name Type Description
Recordno [KEY] String The Recordno field of the FundsTransferEntry object.
Recordkey Int64 The Recordkey field of the FundsTransferEntry object.
Recordtype String The Recordtype field of the FundsTransferEntry object.
Accountkey Int64 The Accountkey field of the FundsTransferEntry object.
Accountno String The Accountno field of the FundsTransferEntry object.
Accounttitle String The Accounttitle field of the FundsTransferEntry object.
Amount Double The Amount field of the FundsTransferEntry object.
Trx_amount Double The Trx_amount field of the FundsTransferEntry object.
DeptNUM Int64 The Dept# field of the FundsTransferEntry object.
Departmentid String The Departmentid field of the FundsTransferEntry object.
Departmentname String The Departmentname field of the FundsTransferEntry object.
LocationNUM Int64 The Location# field of the FundsTransferEntry object.
Locationid String The Locationid field of the FundsTransferEntry object.
Locationname String The Locationname field of the FundsTransferEntry object.
Exch_rate_date Datetime The Exch_rate_date field of the FundsTransferEntry object.
Exch_rate_type_id String The Exch_rate_type_id field of the FundsTransferEntry object.
Exchange_rate Double The Exchange_rate field of the FundsTransferEntry object.
Lineitem String The Lineitem field of the FundsTransferEntry object.
Currency String The Currency field of the FundsTransferEntry object.
Basecurr String The Basecurr field of the FundsTransferEntry object.
Status String The Status field of the FundsTransferEntry object.
Totalpaid Double The Totalpaid field of the FundsTransferEntry object.
Trx_totalpaid Double The Trx_totalpaid field of the FundsTransferEntry object.
Whencreated Datetime The Whencreated field of the FundsTransferEntry object.
Whenmodified Datetime The Whenmodified field of the FundsTransferEntry object.
Createdby Int64 The Createdby field of the FundsTransferEntry object.
Modifiedby Int64 The Modifiedby field of the FundsTransferEntry object.
Departmentkey Int64 The Departmentkey field of the FundsTransferEntry object.
Locationkey Int64 The Locationkey field of the FundsTransferEntry object.
Projectdimkey Int64 The Projectdimkey field of the FundsTransferEntry object.
Projectid String The Projectid field of the FundsTransferEntry object.
Projectname String The Projectname field of the FundsTransferEntry object.
Customerdimkey Int64 The Customerdimkey field of the FundsTransferEntry object.
Customerid String The Customerid field of the FundsTransferEntry object.
Customername String The Customername field of the FundsTransferEntry object.
Vendordimkey Int64 The Vendordimkey field of the FundsTransferEntry object.
Vendorid String The Vendorid field of the FundsTransferEntry object.
Vendorname String The Vendorname field of the FundsTransferEntry object.
Employeedimkey Int64 The Employeedimkey field of the FundsTransferEntry object.
Employeeid String The Employeeid field of the FundsTransferEntry object.
Employeename String The Employeename field of the FundsTransferEntry object.
Itemdimkey Int64 The Itemdimkey field of the FundsTransferEntry object.
Itemid String The Itemid field of the FundsTransferEntry object.
Itemname String The Itemname field of the FundsTransferEntry object.
Classdimkey Int64 The Classdimkey field of the FundsTransferEntry object.
Classid String The Classid field of the FundsTransferEntry object.
Classname String The Classname field of the FundsTransferEntry object.
Record_url String The Record_url field of the FundsTransferEntry object.

GLAccountBalance

Retrieves GLAccountBalance report data.

Table Specific Information

To retrieve information from the GlAccountBalance table, Sage Intacct needs to have a Period to retrieve balances for. By default, Sage Intacct connector will automatically find all budgetable reports and run GLAccountBalance on each of them. In SQL, that means that:

SELECT * FROM GLAccountBalance

Is the same as this:

SELECT * FROM GLAccountBalance WHERE Period IN (SELECT Name FROM ReportingPeriod WHERE Budgeting = 'true')

Since this query can be slow if you have many reporting periods, it's recommended that you provide a specific Period name if you know which one you're interested in:

SELECT * FROM GLAccountBalance WHERE Period = 'Month Ended September 2011'
Columns
Name Type Description
Accountrec [KEY] Int64 The Accountrec field of the GLAccountBalance object.
Accountno String The Accountno field of the GLAccountBalance object.
Accounttitle String The Accounttitle field of the GLAccountBalance object.
Departmentid String The Departmentid field of the GLAccountBalance object.
Locationid String The Locationid field of the GLAccountBalance object.
Bookid String The Bookid field of the GLAccountBalance object.
Currency String The Currency field of the GLAccountBalance object.
Period String The Period field of the GLAccountBalance object.
Openbal Double The Openbal field of the GLAccountBalance object.
Totdebit Double The Totdebit field of the GLAccountBalance object.
Totcredit Double The Totcredit field of the GLAccountBalance object.
Totadjdebit Double The Totadjdebit field of the GLAccountBalance object.
Totadjcredit Double The Totadjcredit field of the GLAccountBalance object.
Forbal Double The Forbal field of the GLAccountBalance object.
Endbal Double The Endbal field of the GLAccountBalance object.
Projectdimkey Int64 The Projectdimkey field of the GLAccountBalance object.
Projectid String The Projectid field of the GLAccountBalance object.
Projectname String The Projectname field of the GLAccountBalance object.
Customerdimkey Int64 The Customerdimkey field of the GLAccountBalance object.
Customerid String The Customerid field of the GLAccountBalance object.
Customername String The Customername field of the GLAccountBalance object.
Vendordimkey Int64 The Vendordimkey field of the GLAccountBalance object.
Vendorid String The Vendorid field of the GLAccountBalance object.
Vendorname String The Vendorname field of the GLAccountBalance object.
Employeedimkey Int64 The Employeedimkey field of the GLAccountBalance object.
Employeeid String The Employeeid field of the GLAccountBalance object.
Employeename String The Employeename field of the GLAccountBalance object.
Itemdimkey Int64 The Itemdimkey field of the GLAccountBalance object.
Itemid String The Itemid field of the GLAccountBalance object.
Itemname String The Itemname field of the GLAccountBalance object.
Classdimkey Int64 The Classdimkey field of the GLAccountBalance object.
Classid String The Classid field of the GLAccountBalance object.
Classname String The Classname field of the GLAccountBalance object.
Record_url String The Record_url field of the GLAccountBalance object.

GLAcctGrpHierarchy

Retrieves GLAcctGrpHierarchy report data.

Columns
Name Type Description
Glacctgrpkey [KEY] Int64 The Glacctgrpkey field of the GLAcctGrpHierarchy object.
Glacctgrpname String The Glacctgrpname field of the GLAcctGrpHierarchy object.
Glacctgrptitle String The Glacctgrptitle field of the GLAcctGrpHierarchy object.
Glacctgrpnormalbalance String The Glacctgrpnormalbalance field of the GLAcctGrpHierarchy object.
Glacctgrpmembertype String The Glacctgrpmembertype field of the GLAcctGrpHierarchy object.
Glacctgrphowcreated String The Glacctgrphowcreated field of the GLAcctGrpHierarchy object.
Glacctgrplocationkey Int64 The Glacctgrplocationkey field of the GLAcctGrpHierarchy object.
Accountkey Int64 The Accountkey field of the GLAcctGrpHierarchy object.
Accountno String The Accountno field of the GLAcctGrpHierarchy object.
Accounttitle String The Accounttitle field of the GLAcctGrpHierarchy object.
Accountnormalbalance String The Accountnormalbalance field of the GLAcctGrpHierarchy object.
Accounttype String The Accounttype field of the GLAcctGrpHierarchy object.
Accountlocationkey Int64 The Accountlocationkey field of the GLAcctGrpHierarchy object.
Record_url String The Record_url field of the GLAcctGrpHierarchy object.

GLDetail

Retrieves GLDetail report data.

Columns
Name Type Description
Recordno [KEY] String The Recordno field of the GLDetail object.
Batchkey Int64 The Batchkey field of the GLDetail object.
Batch_date Datetime The Batch_date field of the GLDetail object.
Batch_title String The Batch_title field of the GLDetail object.
Symbol String The Symbol field of the GLDetail object.
Batch_no Int64 The Batch_no field of the GLDetail object.
Bookid String The Bookid field of the GLDetail object.
Childentity String The Childentity field of the GLDetail object.
Modified Datetime The Modified field of the GLDetail object.
Referenceno String The Referenceno field of the GLDetail object.
Adj Boolean The Adj field of the GLDetail object.
Modulekey String The Modulekey field of the GLDetail object.
Ownershipkey Int64 The Ownershipkey field of the GLDetail object.
Line_no Int64 The Line_no field of the GLDetail object.
Entry_date Datetime The Entry_date field of the GLDetail object.
Tr_type Int64 The Tr_type field of the GLDetail object.
Document String The Document field of the GLDetail object.
Accountno String The Accountno field of the GLDetail object.
Accounttitle String The Accounttitle field of the GLDetail object.
Statistical String The Statistical field of the GLDetail object.
Departmentid String The Departmentid field of the GLDetail object.
Departmenttitle String The Departmenttitle field of the GLDetail object.
Locationid String The Locationid field of the GLDetail object.
Locationname String The Locationname field of the GLDetail object.
Currency String The Currency field of the GLDetail object.
Basecurr String The Basecurr field of the GLDetail object.
Description String The Description field of the GLDetail object.
Debitamount Double The Debitamount field of the GLDetail object.
Creditamount Double The Creditamount field of the GLDetail object.
Amount Double The Amount field of the GLDetail object.
Trx_debitamount Double The Trx_debitamount field of the GLDetail object.
Trx_creditamount Double The Trx_creditamount field of the GLDetail object.
Trx_amount Double The Trx_amount field of the GLDetail object.
Cleared String The Cleared field of the GLDetail object.
Clrdate Datetime The Clrdate field of the GLDetail object.
Custentity String The Custentity field of the GLDetail object.
Vendentity String The Vendentity field of the GLDetail object.
Empentity String The Empentity field of the GLDetail object.
Locentity String The Locentity field of the GLDetail object.
Recordtype String The Recordtype field of the GLDetail object.
Recordid String The Recordid field of the GLDetail object.
Docnumber String The Docnumber field of the GLDetail object.
State String The State field of the GLDetail object.
Whencreated Datetime The Whencreated field of the GLDetail object.
Whendue Datetime The Whendue field of the GLDetail object.
Whenpaid Datetime The Whenpaid field of the GLDetail object.
Whenmodified Datetime The Whenmodified field of the GLDetail object.
Prdescription String The Prdescription field of the GLDetail object.
Prcleared String The Prcleared field of the GLDetail object.
Prclrdate Datetime The Prclrdate field of the GLDetail object.
Financialentity String The Financialentity field of the GLDetail object.
Totalentered Double The Totalentered field of the GLDetail object.
Totalpaid Double The Totalpaid field of the GLDetail object.
Totaldue Double The Totaldue field of the GLDetail object.
Entrydescription String The Entrydescription field of the GLDetail object.
Glentrykey Int64 The Glentrykey field of the GLDetail object.
Createdby String The Createdby field of the GLDetail object.
Batch_state String The Batch_state field of the GLDetail object.
Entry_state String The Entry_state field of the GLDetail object.
Auwhencreated Datetime The Auwhencreated field of the GLDetail object.
Aucreatedby Int64 The Aucreatedby field of the GLDetail object.
Modifiedby Int64 The Modifiedby field of the GLDetail object.
Projectdimkey Int64 The Projectdimkey field of the GLDetail object.
Projectid String The Projectid field of the GLDetail object.
Projectname String The Projectname field of the GLDetail object.
Customerdimkey Int64 The Customerdimkey field of the GLDetail object.
Customerid String The Customerid field of the GLDetail object.
Customername String The Customername field of the GLDetail object.
Vendordimkey Int64 The Vendordimkey field of the GLDetail object.
Vendorid String The Vendorid field of the GLDetail object.
Vendorname String The Vendorname field of the GLDetail object.
Employeedimkey Int64 The Employeedimkey field of the GLDetail object.
Employeeid String The Employeeid field of the GLDetail object.
Employeename String The Employeename field of the GLDetail object.
Itemdimkey Int64 The Itemdimkey field of the GLDetail object.
Itemid String The Itemid field of the GLDetail object.
Itemname String The Itemname field of the GLDetail object.
Classdimkey Int64 The Classdimkey field of the GLDetail object.
Classid String The Classid field of the GLDetail object.
Classname String The Classname field of the GLDetail object.
Record_url String The Record_url field of the GLDetail object.

GLEntry

Retrieves GLEntry report data.

Columns
Name Type Description
Recordno [KEY] String The Recordno field of the GLEntry object.
Batchno Int64 The Batchno field of the GLEntry object.
Userno Int64 The Userno field of the GLEntry object.
Line_no Int64 The Line_no field of the GLEntry object.
Tr_type Int64 The Tr_type field of the GLEntry object.
Entry_date Datetime The Entry_date field of the GLEntry object.
Amount Double The Amount field of the GLEntry object.
Trx_amount Double The Trx_amount field of the GLEntry object.
Accountkey Int64 The Accountkey field of the GLEntry object.
Accountno String The Accountno field of the GLEntry object.
Departmentkey Int64 The Departmentkey field of the GLEntry object.
Department String The Department field of the GLEntry object.
Departmenttitle String The Departmenttitle field of the GLEntry object.
Locationkey Int64 The Locationkey field of the GLEntry object.
Location String The Location field of the GLEntry object.
Locationname String The Locationname field of the GLEntry object.
Document String The Document field of the GLEntry object.
Description String The Description field of the GLEntry object.
Units Int64 The Units field of the GLEntry object.
Basecurr String The Basecurr field of the GLEntry object.
Currency String The Currency field of the GLEntry object.
Cleared String The Cleared field of the GLEntry object.
Clrdate Datetime The Clrdate field of the GLEntry object.
Timeperiod Int64 The Timeperiod field of the GLEntry object.
Adj String The Adj field of the GLEntry object.
Exch_rate_date Datetime The Exch_rate_date field of the GLEntry object.
Exch_rate_type_id String The Exch_rate_type_id field of the GLEntry object.
Exchange_rate Double The Exchange_rate field of the GLEntry object.
Recon_date Datetime The Recon_date field of the GLEntry object.
Allocation String The Allocation field of the GLEntry object.
Allocationkey Int64 The Allocationkey field of the GLEntry object.
Whencreated Datetime The Whencreated field of the GLEntry object.
Whenmodified Datetime The Whenmodified field of the GLEntry object.
Createdby Int64 The Createdby field of the GLEntry object.
Modifiedby Int64 The Modifiedby field of the GLEntry object.
State String The State field of the GLEntry object.
Projectdimkey Int64 The Projectdimkey field of the GLEntry object.
Projectid String The Projectid field of the GLEntry object.
Projectname String The Projectname field of the GLEntry object.
Customerdimkey Int64 The Customerdimkey field of the GLEntry object.
Customerid String The Customerid field of the GLEntry object.
Customername String The Customername field of the GLEntry object.
Vendordimkey Int64 The Vendordimkey field of the GLEntry object.
Vendorid String The Vendorid field of the GLEntry object.
Vendorname String The Vendorname field of the GLEntry object.
Employeedimkey Int64 The Employeedimkey field of the GLEntry object.
Employeeid String The Employeeid field of the GLEntry object.
Employeename String The Employeename field of the GLEntry object.
Itemdimkey Int64 The Itemdimkey field of the GLEntry object.
Itemid String The Itemid field of the GLEntry object.
Itemname String The Itemname field of the GLEntry object.
Classdimkey Int64 The Classdimkey field of the GLEntry object.
Classid String The Classid field of the GLEntry object.
Classname String The Classname field of the GLEntry object.
Record_url String The Record_url field of the GLEntry object.

GLResolve

Retrieves GLResolve report data.

Columns
Name Type Description
Recordno [KEY] String The Recordno field of the GLResolve object.
Glentrykey Int64 The Glentrykey field of the GLResolve object.
Prentrykey Int64 The Prentrykey field of the GLResolve object.
Prrecordkey Int64 The Prrecordkey field of the GLResolve object.
Docentrykey Int64 The Docentrykey field of the GLResolve object.
Subtotkey Int64 The Subtotkey field of the GLResolve object.
Dochdrkey Int64 The Dochdrkey field of the GLResolve object.
Trx_amount Double The Trx_amount field of the GLResolve object.
Currency String The Currency field of the GLResolve object.
Amount Double The Amount field of the GLResolve object.
Whencreated Datetime The Whencreated field of the GLResolve object.
Whenmodified Datetime The Whenmodified field of the GLResolve object.
Createdby Int64 The Createdby field of the GLResolve object.
Modifiedby Int64 The Modifiedby field of the GLResolve object.
Record_url String The Record_url field of the GLResolve object.

InvDocumentEntry

Retrieves InvDocumentEntry report data.

Columns
Name Type Description
Recordno [KEY] String The Recordno field of the InvDocumentEntry object.
Dochdrno Int64 The Dochdrno field of the InvDocumentEntry object.
Dochdrid String The Dochdrid field of the InvDocumentEntry object.
Bundlenumber String The Bundlenumber field of the InvDocumentEntry object.
Line_no Int64 The Line_no field of the InvDocumentEntry object.
Itemid String The Itemid field of the InvDocumentEntry object.
Itemname String The Itemname field of the InvDocumentEntry object.
Itemdesc String The Itemdesc field of the InvDocumentEntry object.
Unit String The Unit field of the InvDocumentEntry object.
Warehouse_location_no String The Warehouse_location_no field of the InvDocumentEntry object.
Warehouse_name String The Warehouse_name field of the InvDocumentEntry object.
Memo String The Memo field of the InvDocumentEntry object.
Quantity Double The Quantity field of the InvDocumentEntry object.
Qty_converted Double The Qty_converted field of the InvDocumentEntry object.
Retailprice Double The Retailprice field of the InvDocumentEntry object.
Price Double The Price field of the InvDocumentEntry object.
Total Double The Total field of the InvDocumentEntry object.
Whencreated Datetime The Whencreated field of the InvDocumentEntry object.
Whenmodified Datetime The Whenmodified field of the InvDocumentEntry object.
Item_taxable Boolean The Item_taxable field of the InvDocumentEntry object.
Item_taxgroup_recordno Int64 The Item_taxgroup_recordno field of the InvDocumentEntry object.
Item_renewalmacro_macroid String The Item_renewalmacro_macroid field of the InvDocumentEntry object.
Extended_description String The Extended_description field of the InvDocumentEntry object.
Itemglgroup String The Itemglgroup field of the InvDocumentEntry object.
State String The State field of the InvDocumentEntry object.
Status String The Status field of the InvDocumentEntry object.
Glentrykey1 Int64 The Glentrykey1 field of the InvDocumentEntry object.
Glentrykey2 Int64 The Glentrykey2 field of the InvDocumentEntry object.
Cost Double The Cost field of the InvDocumentEntry object.
Cost_method String The Cost_method field of the InvDocumentEntry object.
Average_cost String The Average_cost field of the InvDocumentEntry object.
Whse_average_cost String The Whse_average_cost field of the InvDocumentEntry object.
Uiqty Double The Uiqty field of the InvDocumentEntry object.
Discountpercent Double The Discountpercent field of the InvDocumentEntry object.
Uiprice Double The Uiprice field of the InvDocumentEntry object.
Uivalue Double The Uivalue field of the InvDocumentEntry object.
Locationid String The Locationid field of the InvDocumentEntry object.
Locationname String The Locationname field of the InvDocumentEntry object.
Departmentid String The Departmentid field of the InvDocumentEntry object.
Departmentname String The Departmentname field of the InvDocumentEntry object.
Deptkey String The Deptkey field of the InvDocumentEntry object.
Locationkey String The Locationkey field of the InvDocumentEntry object.
Timetypekey Int64 The Timetypekey field of the InvDocumentEntry object.
Timetypename String The Timetypename field of the InvDocumentEntry object.
Timenotes String The Timenotes field of the InvDocumentEntry object.
Eeaccountlabelkey Int64 The Eeaccountlabelkey field of the InvDocumentEntry object.
Eeaccountlabel String The Eeaccountlabel field of the InvDocumentEntry object.
Source_dockey String The Source_dockey field of the InvDocumentEntry object.
Source_doclinekey String The Source_doclinekey field of the InvDocumentEntry object.
Revrectemplate String The Revrectemplate field of the InvDocumentEntry object.
Revrectemplatekey String The Revrectemplatekey field of the InvDocumentEntry object.
Revrecstartdate Datetime The Revrecstartdate field of the InvDocumentEntry object.
Itemterm String The Itemterm field of the InvDocumentEntry object.
Termperiod String The Termperiod field of the InvDocumentEntry object.
Revrecenddate Datetime The Revrecenddate field of the InvDocumentEntry object.
Prorateprice Boolean The Prorateprice field of the InvDocumentEntry object.
Deferrevenue String The Deferrevenue field of the InvDocumentEntry object.
Sc_revrectemplate String The Sc_revrectemplate field of the InvDocumentEntry object.
Sc_revrectemplatekey String The Sc_revrectemplatekey field of the InvDocumentEntry object.
Sc_revrecstartdate Datetime The Sc_revrecstartdate field of the InvDocumentEntry object.
Sc_revrecenddate Datetime The Sc_revrecenddate field of the InvDocumentEntry object.
Sc_startdate Datetime The Sc_startdate field of the InvDocumentEntry object.
Item_itemtype String The Item_itemtype field of the InvDocumentEntry object.
Item_numdec_sale String The Item_numdec_sale field of the InvDocumentEntry object.
Item_numdec_std String The Item_numdec_std field of the InvDocumentEntry object.
Item_numdec_pur String The Item_numdec_pur field of the InvDocumentEntry object.
Item_revposting String The Item_revposting field of the InvDocumentEntry object.
Item_computeforshortterm Boolean The Item_computeforshortterm field of the InvDocumentEntry object.
Item_renewalmacrokey Int64 The Item_renewalmacrokey field of the InvDocumentEntry object.
Item_uomgrpkey Int64 The Item_uomgrpkey field of the InvDocumentEntry object.
Discount_memo String The Discount_memo field of the InvDocumentEntry object.
Item_revprinting String The Item_revprinting field of the InvDocumentEntry object.
Currency String The Currency field of the InvDocumentEntry object.
Exchratedate Datetime The Exchratedate field of the InvDocumentEntry object.
Exchratetype String The Exchratetype field of the InvDocumentEntry object.
Exchrate Double The Exchrate field of the InvDocumentEntry object.
Trx_price Double The Trx_price field of the InvDocumentEntry object.
Trx_value Double The Trx_value field of the InvDocumentEntry object.
Schedulename String The Schedulename field of the InvDocumentEntry object.
Scheduleid String The Scheduleid field of the InvDocumentEntry object.
Recurdocid String The Recurdocid field of the InvDocumentEntry object.
Recurdocentrykey Int64 The Recurdocentrykey field of the InvDocumentEntry object.
Renewalmacro String The Renewalmacro field of the InvDocumentEntry object.
Renewalmacrokey String The Renewalmacrokey field of the InvDocumentEntry object.
Overridetax Boolean The Overridetax field of the InvDocumentEntry object.
Sc_createrecursched String The Sc_createrecursched field of the InvDocumentEntry object.
Sc_existingsched String The Sc_existingsched field of the InvDocumentEntry object.
Sc_extendlineperiod Boolean The Sc_extendlineperiod field of the InvDocumentEntry object.
Sc_installpricing Boolean The Sc_installpricing field of the InvDocumentEntry object.
Recurcontractid String The Recurcontractid field of the InvDocumentEntry object.
Source_docid String The Source_docid field of the InvDocumentEntry object.
Billable Boolean The Billable field of the InvDocumentEntry object.
Billed Boolean The Billed field of the InvDocumentEntry object.
Billabletimeentrykey Int64 The Billabletimeentrykey field of the InvDocumentEntry object.
Billableprentrykey Int64 The Billableprentrykey field of the InvDocumentEntry object.
Billabledocentrykey Int64 The Billabledocentrykey field of the InvDocumentEntry object.
Percentval Double The Percentval field of the InvDocumentEntry object.
Taxabsval Double The Taxabsval field of the InvDocumentEntry object.
Taxableamount Double The Taxableamount field of the InvDocumentEntry object.
Linetotal Double The Linetotal field of the InvDocumentEntry object.
Discount Double The Discount field of the InvDocumentEntry object.
Trx_taxabsval Double The Trx_taxabsval field of the InvDocumentEntry object.
Trx_linetotal Double The Trx_linetotal field of the InvDocumentEntry object.
Taxvaloverride Boolean The Taxvaloverride field of the InvDocumentEntry object.
Projectkey String The Projectkey field of the InvDocumentEntry object.
Projectname String The Projectname field of the InvDocumentEntry object.
Taskkey String The Taskkey field of the InvDocumentEntry object.
Taskname String The Taskname field of the InvDocumentEntry object.
Projectdimkey Int64 The Projectdimkey field of the InvDocumentEntry object.
Projectid String The Projectid field of the InvDocumentEntry object.
Record_url String The Record_url field of the InvDocumentEntry object.

InvDocumentSubtotals

Retrieves InvDocumentSubtotals report data.

Columns
Name Type Description
Recordno [KEY] String The Recordno field of the InvDocumentSubtotals object.
Dochdrno Int64 The Dochdrno field of the InvDocumentSubtotals object.
Description String The Description field of the InvDocumentSubtotals object.
Absval Double The Absval field of the InvDocumentSubtotals object.
Percentval Double The Percentval field of the InvDocumentSubtotals object.
Total Double The Total field of the InvDocumentSubtotals object.
Absedit String The Absedit field of the InvDocumentSubtotals object.
Percentedit String The Percentedit field of the InvDocumentSubtotals object.
Status String The Status field of the InvDocumentSubtotals object.
Department String The Department field of the InvDocumentSubtotals object.
Location String The Location field of the InvDocumentSubtotals object.
Trx_absval Double The Trx_absval field of the InvDocumentSubtotals object.
Trx_total Double The Trx_total field of the InvDocumentSubtotals object.
Docentrykey Int64 The Docentrykey field of the InvDocumentSubtotals object.
Projectdimkey Int64 The Projectdimkey field of the InvDocumentSubtotals object.
Projectid String The Projectid field of the InvDocumentSubtotals object.
Projectname String The Projectname field of the InvDocumentSubtotals object.
Itemdimkey Int64 The Itemdimkey field of the InvDocumentSubtotals object.
Itemid String The Itemid field of the InvDocumentSubtotals object.
Itemname String The Itemname field of the InvDocumentSubtotals object.
Record_url String The Record_url field of the InvDocumentSubtotals object.

InvoiceRun

Retrieves InvoiceRun report data.

Columns
Name Type Description
Recordno [KEY] String The Recordno field of the InvoiceRun object.
Docparkey String The Docparkey field of the InvoiceRun object.
Override_pricelistkey String The Override_pricelistkey field of the InvoiceRun object.
Override_pricelistid String The Override_pricelistid field of the InvoiceRun object.
Expensepricemarkup Double The Expensepricemarkup field of the InvoiceRun object.
Docparid String The Docparid field of the InvoiceRun object.
Description String The Description field of the InvoiceRun object.
Isoffline String The Isoffline field of the InvoiceRun object.
State String The State field of the InvoiceRun object.
Parameters String The Parameters field of the InvoiceRun object.
Errordata String The Errordata field of the InvoiceRun object.
Createdbykey String The Createdbykey field of the InvoiceRun object.
Createdby String The Createdby field of the InvoiceRun object.
Createddate Datetime The Createddate field of the InvoiceRun object.
Megaentitykey Int64 The Megaentitykey field of the InvoiceRun object.
Megaentityid String The Megaentityid field of the InvoiceRun object.
Megaentityname String The Megaentityname field of the InvoiceRun object.
Record_url String The Record_url field of the InvoiceRun object.

InvPriceListEntry

Retrieves InvPriceListEntry report data.

Columns
Name Type Description
Recordno [KEY] String The Recordno field of the InvPriceListEntry object.
Pricelistid String The Pricelistid field of the InvPriceListEntry object.
Itemid String The Itemid field of the InvPriceListEntry object.
Itemname String The Itemname field of the InvPriceListEntry object.
Productlineid String The Productlineid field of the InvPriceListEntry object.
Datefrom Datetime The Datefrom field of the InvPriceListEntry object.
Dateto Datetime The Dateto field of the InvPriceListEntry object.
Qtylimitmin Double The Qtylimitmin field of the InvPriceListEntry object.
Qtylimitmax Double The Qtylimitmax field of the InvPriceListEntry object.
Value Double The Value field of the InvPriceListEntry object.
Valuetype String The Valuetype field of the InvPriceListEntry object.
Fixed String The Fixed field of the InvPriceListEntry object.
Sale String The Sale field of the InvPriceListEntry object.
Status String The Status field of the InvPriceListEntry object.
Currency String The Currency field of the InvPriceListEntry object.
Employeekey Int64 The Employeekey field of the InvPriceListEntry object.
Record_url String The Record_url field of the InvPriceListEntry object.

InvRecurSubtotals

Retrieves InvRecurSubtotals report data.

Columns
Name Type Description
Recordno [KEY] String The Recordno field of the InvRecurSubtotals object.
Dochdrno Int64 The Dochdrno field of the InvRecurSubtotals object.
Description String The Description field of the InvRecurSubtotals object.
Absval Double The Absval field of the InvRecurSubtotals object.
Absedit String The Absedit field of the InvRecurSubtotals object.
Percentval Double The Percentval field of the InvRecurSubtotals object.
Percentedit String The Percentedit field of the InvRecurSubtotals object.
Total Double The Total field of the InvRecurSubtotals object.
Status String The Status field of the InvRecurSubtotals object.
Taxdetail Int64 The Taxdetail field of the InvRecurSubtotals object.
Department String The Department field of the InvRecurSubtotals object.
Location String The Location field of the InvRecurSubtotals object.
Trx_absval Double The Trx_absval field of the InvRecurSubtotals object.
Trx_total Double The Trx_total field of the InvRecurSubtotals object.
Projectdimkey Int64 The Projectdimkey field of the InvRecurSubtotals object.
Projectid String The Projectid field of the InvRecurSubtotals object.
Projectname String The Projectname field of the InvRecurSubtotals object.
Record_url String The Record_url field of the InvRecurSubtotals object.

ItemComponent

Retrieves ItemComponent report data.

Columns
Name Type Description
Recordno [KEY] String The Recordno field of the ItemComponent object.
Itemid String The Itemid field of the ItemComponent object.
Componentkey String The Componentkey field of the ItemComponent object.
Itemdesc String The Itemdesc field of the ItemComponent object.
Quantity Double The Quantity field of the ItemComponent object.
Unit String The Unit field of the ItemComponent object.
Costmethod String The Costmethod field of the ItemComponent object.
Cost String The Cost field of the ItemComponent object.
Itemtype1 String The Itemtype1 field of the ItemComponent object.
Revpercent String The Revpercent field of the ItemComponent object.
Kcdlvrstatus String The Kcdlvrstatus field of the ItemComponent object.
Kcrevdefstatus String The Kcrevdefstatus field of the ItemComponent object.
Line_no Int64 The Line_no field of the ItemComponent object.
Record_url String The Record_url field of the ItemComponent object.

ItemGroup

Retrieves ItemGroup report data.

Columns
Name Type Description
Recordno [KEY] String The Recordno field of the ItemGroup object.
Id String The ID field of the ItemGroup object.
Name String The Name field of the ItemGroup object.
Description String The Description field of the ItemGroup object.
Grouptype String The Grouptype field of the ItemGroup object.
Whencreated Datetime The Whencreated field of the ItemGroup object.
Whenmodified Datetime The Whenmodified field of the ItemGroup object.
Createdby Int64 The Createdby field of the ItemGroup object.
Modifiedby Int64 The Modifiedby field of the ItemGroup object.
Megaentitykey Int64 The Megaentitykey field of the ItemGroup object.
Megaentityid String The Megaentityid field of the ItemGroup object.
Megaentityname String The Megaentityname field of the ItemGroup object.
Record_url String The Record_url field of the ItemGroup object.

LocationGroup

Retrieves LocationGroup report data.

Columns
Name Type Description
Recordno [KEY] String The Recordno field of the LocationGroup object.
Id String The ID field of the LocationGroup object.
Name String The Name field of the LocationGroup object.
Description String The Description field of the LocationGroup object.
Grouptype String The Grouptype field of the LocationGroup object.
Contactinfo_printas String The Contactinfo_printas field of the LocationGroup object.
Contactinfo_phone1 String The Contactinfo_phone1 field of the LocationGroup object.
Contactinfo_phone2 String The Contactinfo_phone2 field of the LocationGroup object.
Contactinfo_mailaddress_address1 String The Contactinfo_mailaddress_address1 field of the LocationGroup object.
Contactinfo_mailaddress_address2 String The Contactinfo_mailaddress_address2 field of the LocationGroup object.
Contactinfo_mailaddress_city String The Contactinfo_mailaddress_city field of the LocationGroup object.
Contactinfo_mailaddress_state String The Contactinfo_mailaddress_state field of the LocationGroup object.
Contactinfo_mailaddress_zip String The Contactinfo_mailaddress_zip field of the LocationGroup object.
Contactinfo_mailaddress_country String The Contactinfo_mailaddress_country field of the LocationGroup object.
Whencreated Datetime The Whencreated field of the LocationGroup object.
Whenmodified Datetime The Whenmodified field of the LocationGroup object.
Createdby Int64 The Createdby field of the LocationGroup object.
Modifiedby Int64 The Modifiedby field of the LocationGroup object.
Megaentitykey Int64 The Megaentitykey field of the LocationGroup object.
Megaentityid String The Megaentityid field of the LocationGroup object.
Megaentityname String The Megaentityname field of the LocationGroup object.
Record_url String The Record_url field of the LocationGroup object.

OtherReceipts

Retrieves OtherReceipts report data.

Columns
Name Type Description
Recordno [KEY] String The Recordno field of the OtherReceipts object.
Whencreated Datetime The Whencreated field of the OtherReceipts object.
Recordtype String The Recordtype field of the OtherReceipts object.
Description2 String The Description2 field of the OtherReceipts object.
Whenpaid Datetime The Whenpaid field of the OtherReceipts object.
Paymethod String The Paymethod field of the OtherReceipts object.
Docnumber String The Docnumber field of the OtherReceipts object.
Description String The Description field of the OtherReceipts object.
Bankaccountid String The Bankaccountid field of the OtherReceipts object.
Bankaccountname String The Bankaccountname field of the OtherReceipts object.
Bankaccountcurr String The Bankaccountcurr field of the OtherReceipts object.
Depositdate Datetime The Depositdate field of the OtherReceipts object.
Prbatchkey Int64 The Prbatchkey field of the OtherReceipts object.
Basecurr String The Basecurr field of the OtherReceipts object.
Currency String The Currency field of the OtherReceipts object.
Exch_rate_date Datetime The Exch_rate_date field of the OtherReceipts object.
Exch_rate_type_id String The Exch_rate_type_id field of the OtherReceipts object.
Exchange_rate Double The Exchange_rate field of the OtherReceipts object.
Totalentered Double The Totalentered field of the OtherReceipts object.
Trx_totalentered Double The Trx_totalentered field of the OtherReceipts object.
Recon_date Datetime The Recon_date field of the OtherReceipts object.
State String The State field of the OtherReceipts object.
Rawstate String The Rawstate field of the OtherReceipts object.
Cleared String The Cleared field of the OtherReceipts object.
Parentpayment Int64 The Parentpayment field of the OtherReceipts object.
Impliedlocation Int64 The Impliedlocation field of the OtherReceipts object.
Auwhencreated Datetime The Auwhencreated field of the OtherReceipts object.
Whenmodified Datetime The Whenmodified field of the OtherReceipts object.
Createdby Int64 The Createdby field of the OtherReceipts object.
Modifiedby Int64 The Modifiedby field of the OtherReceipts object.
Megaentitykey Int64 The Megaentitykey field of the OtherReceipts object.
Megaentityid String The Megaentityid field of the OtherReceipts object.
Megaentityname String The Megaentityname field of the OtherReceipts object.
Record_url String The Record_url field of the OtherReceipts object.

OtherReceiptsEntry

Retrieves OtherReceiptsEntry report data.

Columns
Name Type Description
Recordno [KEY] String The Recordno field of the OtherReceiptsEntry object.
Recordkey Int64 The Recordkey field of the OtherReceiptsEntry object.
Recordtype String The Recordtype field of the OtherReceiptsEntry object.
Accountkey Int64 The Accountkey field of the OtherReceiptsEntry object.
Accountno String The Accountno field of the OtherReceiptsEntry object.
Accounttitle String The Accounttitle field of the OtherReceiptsEntry object.
Accountlabelkey Int64 The Accountlabelkey field of the OtherReceiptsEntry object.
Accountlabel String The Accountlabel field of the OtherReceiptsEntry object.
Amount Double The Amount field of the OtherReceiptsEntry object.
Trx_amount Double The Trx_amount field of the OtherReceiptsEntry object.
DeptNUM Int64 The Dept# field of the OtherReceiptsEntry object.
Departmentid String The Departmentid field of the OtherReceiptsEntry object.
Departmentname String The Departmentname field of the OtherReceiptsEntry object.
LocationNUM Int64 The Location# field of the OtherReceiptsEntry object.
Locationid String The Locationid field of the OtherReceiptsEntry object.
Locationname String The Locationname field of the OtherReceiptsEntry object.
Description String The Description field of the OtherReceiptsEntry object.
Exch_rate_date Datetime The Exch_rate_date field of the OtherReceiptsEntry object.
Exch_rate_type_id String The Exch_rate_type_id field of the OtherReceiptsEntry object.
Exchange_rate Double The Exchange_rate field of the OtherReceiptsEntry object.
Lineitem String The Lineitem field of the OtherReceiptsEntry object.
Line_no String The Line_no field of the OtherReceiptsEntry object.
Currency String The Currency field of the OtherReceiptsEntry object.
Basecurr String The Basecurr field of the OtherReceiptsEntry object.
Status String The Status field of the OtherReceiptsEntry object.
Whencreated Datetime The Whencreated field of the OtherReceiptsEntry object.
Whenmodified Datetime The Whenmodified field of the OtherReceiptsEntry object.
Createdby Int64 The Createdby field of the OtherReceiptsEntry object.
Modifiedby Int64 The Modifiedby field of the OtherReceiptsEntry object.
Departmentkey Int64 The Departmentkey field of the OtherReceiptsEntry object.
Locationkey Int64 The Locationkey field of the OtherReceiptsEntry object.
Projectdimkey Int64 The Projectdimkey field of the OtherReceiptsEntry object.
Projectid String The Projectid field of the OtherReceiptsEntry object.
Projectname String The Projectname field of the OtherReceiptsEntry object.
Customerdimkey Int64 The Customerdimkey field of the OtherReceiptsEntry object.
Customerid String The Customerid field of the OtherReceiptsEntry object.
Customername String The Customername field of the OtherReceiptsEntry object.
Vendordimkey Int64 The Vendordimkey field of the OtherReceiptsEntry object.
Vendorid String The Vendorid field of the OtherReceiptsEntry object.
Vendorname String The Vendorname field of the OtherReceiptsEntry object.
Employeedimkey Int64 The Employeedimkey field of the OtherReceiptsEntry object.
Employeeid String The Employeeid field of the OtherReceiptsEntry object.
Employeename String The Employeename field of the OtherReceiptsEntry object.
Itemdimkey Int64 The Itemdimkey field of the OtherReceiptsEntry object.
Itemid String The Itemid field of the OtherReceiptsEntry object.
Itemname String The Itemname field of the OtherReceiptsEntry object.
Classdimkey Int64 The Classdimkey field of the OtherReceiptsEntry object.
Classid String The Classid field of the OtherReceiptsEntry object.
Classname String The Classname field of the OtherReceiptsEntry object.
Record_url String The Record_url field of the OtherReceiptsEntry object.

Podocument

null

Columns
Name Type Description
Recordno [KEY] String Record number
Docno [KEY] String Document number
Docid String Document ID
Createdfrom String Converted from
State String State
Closed Bool Closed
Whencreated Date Date created
Auwhencreated Datetime Audit timestamp when record was created.
Createdby Long User who created this.
Modifiedby Long User who modified this.
Whenmodified Datetime Modified date
Whendue Date Date due
Status String Active or inactive
Ponumber String PO number
Vendordocno String Vendor document number
Docparid String Document template ID
Docparkey String No description specified
Docparclass String No description specified
Updates_inv String Affects inventory
Term_name String Payment terms
Note String Note
Warehouse_locationid String Default site
Shipvia String Shipping method
User String User
Createduser String Created user
Userid String Modified by
Createduserid String Created by
Contact_contactname String Vendor
Contact_prefix String Prefix
Contact_firstname String First name
Contact_initial String Middle name
Contact_lastname String Last name
Contact_companyname String Full name of the company
Contact_printas String Name as appears on official documents
Contact_phone1 String Primary phone
Contact_phone2 String Secondary phone
Contact_cellphone String Mobile phone number
Contact_pager String Pager
Contact_fax String Fax
Contact_email1 String Primary email address
Contact_email2 String Secondary email address
Contact_url1 String Primary URL
Contact_url2 String Secondary URL
Contact_visible Bool Visible
Contact_mailaddress_address1 String Address line 1
Contact_mailaddress_address2 String Address line 2
Contact_mailaddress_city String City
Contact_mailaddress_state String State or territory
Contact_mailaddress_zip String ZIP or postal code
Contact_mailaddress_country String Country
Contact_mailaddress_countrycode String Country code
Shiptokey String Ship-to contact key
Shipto_contactname String Ship-to contact name
Shipto_prefix String Prefix
Shipto_firstname String First name
Shipto_initial String Middle name
Shipto_lastname String Last name
Shipto_companyname String Full name of the company
Shipto_printas String Name as appears on official documents
Shipto_phone1 String Primary phone
Shipto_phone2 String Secondary phone
Shipto_cellphone String Mobile phone number
Shipto_pager String Pager
Shipto_fax String Fax
Shipto_email1 String Primary email address
Shipto_email2 String Secondary email address
Shipto_url1 String Primary URL
Shipto_url2 String Secondary URL
Shipto_visible Bool Visible
Shipto_mailaddress_address1 String Address line 1
Shipto_mailaddress_address2 String Address line 2
Shipto_mailaddress_city String City
Shipto_mailaddress_state String State or territory
Shipto_mailaddress_zip String ZIP or postal code
Shipto_mailaddress_country String Country
Shipto_mailaddress_countrycode String Country code
Billtokey String Bill-to contact key
Billto_contactname String Bill-to contact
Billto_prefix String Prefix
Billto_firstname String First name
Billto_initial String Middle name
Billto_lastname String Last name
Billto_companyname String Full name of the company
Billto_printas String Name as appears on official documents
Billto_phone1 String Primary phone
Billto_phone2 String Secondary phone
Billto_cellphone String Mobile phone number
Billto_pager String Pager
Billto_fax String Fax
Billto_email1 String Primary email address
Billto_email2 String Secondary email address
Billto_url1 String Primary URL
Billto_url2 String Secondary URL
Billto_visible Bool Visible
Billto_mailaddress_address1 String Address line 1
Billto_mailaddress_address2 String Address line 2
Billto_mailaddress_city String City
Billto_mailaddress_state String State or territory
Billto_mailaddress_zip String ZIP or postal code
Billto_mailaddress_country String Country
Billto_mailaddress_countrycode String Country code
Message String Message
Prrecordkey Long No description specified
Invbatchkey String No description specified
Prinvbatchkey String No description specified
Addglbatchkey String No description specified
Printed String Document printed
Backorder String Back order?
Subtotal Decimal Subtotal
Total Decimal Total
Entglgroup Long ENTGLGROUP
Currency String Defaulting currency
Exchratedate Date No description specified
Exchratetypes_name String No description specified
Exchrate Decimal No description specified
Schopkey String No description specified
Salescontract String Sales contract
Usedascontract String Used as contract
Trx_subtotal Decimal Transaction subtotal
Trx_total Decimal Transaction total
Exch_rate_type_id String No description specified
Reneweddoc String No description specified
Basecurr String No description specified
Systemgenerated String True/false
Invoicerunkey Long No description specified
Docpar_in_out String Increases or decreases inventory
Whenposted Date GL posting date
Printeduserid String Last delivered by
Dateprinted Datetime Last delivered date
Printedby Long Printed by
Adj Bool Adjustment
Taxsolutionid String Tax solution
Delivertokey String Deliver-to contact key
Deliverto_contactname String Deliver-to contact name
Deliverto_companyname String Full name of the company
Deliverto_prefix String Prefix
Deliverto_firstname String First name
Deliverto_lastname String Last name
Deliverto_initial String Middle name
Deliverto_printas String Name as appears on official documents
Deliverto_phone1 String Primary phone
Deliverto_phone2 String Secondary phone
Deliverto_cellphone String Mobile phone number
Deliverto_pager String Pager
Deliverto_fax String Fax
Deliverto_email1 String Primary email address
Deliverto_email2 String Secondary email address
Deliverto_url1 String Primary URL
Deliverto_url2 String Secondary URL
Deliverto_visible Bool Visible
Deliverto_mailaddress_address1 String Address line 1
Deliverto_mailaddress_address2 String Address line 2
Deliverto_mailaddress_city String City
Deliverto_mailaddress_state String State or territory
Deliverto_mailaddress_zip String ZIP or postal code
Deliverto_mailaddress_country String Country
Deliverto_mailaddress_countrycode String Country code
Retainagepercentage String No description specified
Scope String Scope
Inclusions String Inclusions
Exclusions String Exclusions
Terms String Terms
Schedulestartdate Date Scheduled start date
Actualstartdate Date Actual start date
Scheduledcompletiondate Date Scheduled completion date
Revisedcompletiondate Date Revised completion date
Substantialcompletiondate Date Substantial completion date
Actualcompletiondate Date Actual completion date
Noticetoproceed Date Notice to proceed
Responsedue Date Response due
Executedon Date Executed on
Scheduleimpact String Schedule impact
Internalrefno String Internal reference no.
Internalinitiatedbykey String Initiated by key
Internalinitiatedby String Internal initiated by
Internalinitiatedbyname String Internal initiated by name
Internalverbalbykey String Verbal by key
Internalverbalby String Internal verbal by
Internalverbalbyname String Internal verbal by name
Internalissuedbykey String Issued by key
Internalissuedby String Internal issued by
Internalissuedbyname String Internal issued by name
Internalissuedon Date Internal issued on
Internalapprovedbykey String Approved by key
Internalapprovedby String Internal approved by
Internalapprovedbyname String Internal approved by name
Internalapprovedon Date Internal approved on
Internalsignedbykey String Signed by key
Internalsignedby String Internal signed by
Internalsignedbyname String Internal signed by name
Internalsignedon Date Internal signed on
Internalsource String Internal source
Internalsourcerefno String Internal source reference no.
Externalrefno String External reference no.
Externalverbalbykey String Verbal by key
Externalverbalby String External verbal by
Externalapprovedbykey String Approved by key
Externalapprovedby String External approved by
Externalapprovedon Date External approved on
Externalsignedbykey String Signed by key
Externalsignedby String External signed by
Externalsignedon Date External signed on
Performancebondrequired Bool Performance bond required
Performancebondreceived Bool Performance bond received
Performancebondamount Decimal Performance bond amount
Performancesuretycompanykey String Surety company key
Performancesuretycompany String Performance surety company
Performancesuretycompanyname String Surety company name
Paymentbondrequired Bool Payment bond required
Paymentbondreceived Bool Payment bond received
Paymentbondamount Decimal Payment bond amount
Paymentsuretycompanykey String Surety company key
Paymentsuretycompany String Payment surety company
Paymentsuretycompanyname String Surety company name
Haschange Bool Change applied
Revisedtotal Decimal Revised total
Revisedsubtotal Decimal Revised subtotal
Trx_revisedtotal Decimal Transaction revised total
Trx_revisedsubtotal Decimal Transaction revised subtotal
Postedchangestotal Decimal No description specified
Relateddocno String No description specified
Changelognumber Long No description specified
Projectkey Long Project key
Project String No description specified
Projectname String Project name
Custvendid String Vendor
Custvendname String Vendor name
Trx_totalpaid Decimal Total paid
Totalpaid Decimal (includes exchange rate gain and loss base total paid)
Trx_totalentered Decimal Bill amount
Totalentered Decimal Base bill amount
Trx_totaldue Decimal Amount due
Totaldue Decimal Base amount due
Paymentstatus String Payment status
Needbydate Date Need by date
Donotshipbeforedate Date Do not ship before date
Donotshipafterdate Date Do not ship after date
Promiseddate Date Promised by date
Contractstartdate Date Contract start date
Contractenddate Date Contract end date
Cancelafterdate Date Cancel after date
Megaentitykey Long No description specified
Megaentityid String No description specified
Megaentityname String No description specified
Rseminar String No description specified
Warehouse_recordno [KEY] Long Foreign key for related object: WAREHOUSE
Userinfo_recordno [KEY] Long Foreign key for related object: USERINFO
Contact_contactname [KEY] String Foreign key for related object: CONTACT
Vendor_recordno [KEY] Long Foreign key for related object: VENDOR
Apbill_recordno [KEY] Long Foreign key for related object: APBILL
Project_recordno [KEY] Long Foreign key for related object: PROJECT
Itemaggregate String

PODocumentEntry

Retrieves PODocumentEntry report data.

Columns
Name Type Description
Recordno [KEY] String The Recordno field of the PODocumentEntry object.
Dochdrno Int64 The Dochdrno field of the PODocumentEntry object.
Dochdrid String The Dochdrid field of the PODocumentEntry object.
Bundlenumber String The Bundlenumber field of the PODocumentEntry object.
Line_no Int64 The Line_no field of the PODocumentEntry object.
Itemid String The Itemid field of the PODocumentEntry object.
Itemname String The Itemname field of the PODocumentEntry object.
Itemdesc String The Itemdesc field of the PODocumentEntry object.
Unit String The Unit field of the PODocumentEntry object.
Warehouse_location_no String The Warehouse_location_no field of the PODocumentEntry object.
Warehouse_name String The Warehouse_name field of the PODocumentEntry object.
Memo String The Memo field of the PODocumentEntry object.
Quantity Double The Quantity field of the PODocumentEntry object.
Qty_converted Double The Qty_converted field of the PODocumentEntry object.
Retailprice Double The Retailprice field of the PODocumentEntry object.
Price Double The Price field of the PODocumentEntry object.
Total Double The Total field of the PODocumentEntry object.
Whencreated Datetime The Whencreated field of the PODocumentEntry object.
Whenmodified Datetime The Whenmodified field of the PODocumentEntry object.
Item_taxable Boolean The Item_taxable field of the PODocumentEntry object.
Item_taxgroup_recordno Int64 The Item_taxgroup_recordno field of the PODocumentEntry object.
Item_renewalmacro_macroid String The Item_renewalmacro_macroid field of the PODocumentEntry object.
Extended_description String The Extended_description field of the PODocumentEntry object.
Itemglgroup String The Itemglgroup field of the PODocumentEntry object.
State String The State field of the PODocumentEntry object.
Status String The Status field of the PODocumentEntry object.
Glentrykey1 Int64 The Glentrykey1 field of the PODocumentEntry object.
Glentrykey2 Int64 The Glentrykey2 field of the PODocumentEntry object.
Cost Double The Cost field of the PODocumentEntry object.
Cost_method String The Cost_method field of the PODocumentEntry object.
Average_cost String The Average_cost field of the PODocumentEntry object.
Whse_average_cost String The Whse_average_cost field of the PODocumentEntry object.
Uiqty Double The Uiqty field of the PODocumentEntry object.
Discountpercent Double The Discountpercent field of the PODocumentEntry object.
Uiprice Double The Uiprice field of the PODocumentEntry object.
Uivalue Double The Uivalue field of the PODocumentEntry object.
Locationid String The Locationid field of the PODocumentEntry object.
Locationname String The Locationname field of the PODocumentEntry object.
Departmentid String The Departmentid field of the PODocumentEntry object.
Departmentname String The Departmentname field of the PODocumentEntry object.
Deptkey String The Deptkey field of the PODocumentEntry object.
Locationkey String The Locationkey field of the PODocumentEntry object.
Timetypekey Int64 The Timetypekey field of the PODocumentEntry object.
Timetypename String The Timetypename field of the PODocumentEntry object.
Timenotes String The Timenotes field of the PODocumentEntry object.
Eeaccountlabelkey Int64 The Eeaccountlabelkey field of the PODocumentEntry object.
Eeaccountlabel String The Eeaccountlabel field of the PODocumentEntry object.
Source_dockey String The Source_dockey field of the PODocumentEntry object.
Source_doclinekey String The Source_doclinekey field of the PODocumentEntry object.
Revrectemplate String The Revrectemplate field of the PODocumentEntry object.
Revrectemplatekey String The Revrectemplatekey field of the PODocumentEntry object.
Revrecstartdate Datetime The Revrecstartdate field of the PODocumentEntry object.
Itemterm String The Itemterm field of the PODocumentEntry object.
Termperiod String The Termperiod field of the PODocumentEntry object.
Revrecenddate Datetime The Revrecenddate field of the PODocumentEntry object.
Prorateprice Boolean The Prorateprice field of the PODocumentEntry object.
Deferrevenue String The Deferrevenue field of the PODocumentEntry object.
Sc_revrectemplate String The Sc_revrectemplate field of the PODocumentEntry object.
Sc_revrectemplatekey String The Sc_revrectemplatekey field of the PODocumentEntry object.
Sc_revrecstartdate Datetime The Sc_revrecstartdate field of the PODocumentEntry object.
Sc_revrecenddate Datetime The Sc_revrecenddate field of the PODocumentEntry object.
Sc_startdate Datetime The Sc_startdate field of the PODocumentEntry object.
Item_itemtype String The Item_itemtype field of the PODocumentEntry object.
Item_numdec_sale String The Item_numdec_sale field of the PODocumentEntry object.
Item_numdec_std String The Item_numdec_std field of the PODocumentEntry object.
Item_numdec_pur String The Item_numdec_pur field of the PODocumentEntry object.
Item_revposting String The Item_revposting field of the PODocumentEntry object.
Item_computeforshortterm Boolean The Item_computeforshortterm field of the PODocumentEntry object.
Item_renewalmacrokey Int64 The Item_renewalmacrokey field of the PODocumentEntry object.
Item_uomgrpkey Int64 The Item_uomgrpkey field of the PODocumentEntry object.
Discount_memo String The Discount_memo field of the PODocumentEntry object.
Item_revprinting String The Item_revprinting field of the PODocumentEntry object.
Currency String The Currency field of the PODocumentEntry object.
Exchratedate Datetime The Exchratedate field of the PODocumentEntry object.
Exchratetype String The Exchratetype field of the PODocumentEntry object.
Exchrate Double The Exchrate field of the PODocumentEntry object.
Trx_price Double The Trx_price field of the PODocumentEntry object.
Trx_value Double The Trx_value field of the PODocumentEntry object.
Schedulename String The Schedulename field of the PODocumentEntry object.
Scheduleid String The Scheduleid field of the PODocumentEntry object.
Recurdocid String The Recurdocid field of the PODocumentEntry object.
Recurdocentrykey Int64 The Recurdocentrykey field of the PODocumentEntry object.
Renewalmacro String The Renewalmacro field of the PODocumentEntry object.
Renewalmacrokey String The Renewalmacrokey field of the PODocumentEntry object.
Overridetax Boolean The Overridetax field of the PODocumentEntry object.
Sc_createrecursched String The Sc_createrecursched field of the PODocumentEntry object.
Sc_existingsched String The Sc_existingsched field of the PODocumentEntry object.
Sc_extendlineperiod Boolean The Sc_extendlineperiod field of the PODocumentEntry object.
Sc_installpricing Boolean The Sc_installpricing field of the PODocumentEntry object.
Recurcontractid String The Recurcontractid field of the PODocumentEntry object.
Source_docid String The Source_docid field of the PODocumentEntry object.
Billable Boolean The Billable field of the PODocumentEntry object.
Billed Boolean The Billed field of the PODocumentEntry object.
Billabletimeentrykey Int64 The Billabletimeentrykey field of the PODocumentEntry object.
Billableprentrykey Int64 The Billableprentrykey field of the PODocumentEntry object.
Billabledocentrykey Int64 The Billabledocentrykey field of the PODocumentEntry object.
Form1099 Boolean The Form1099 field of the PODocumentEntry object.
Percentval Double The Percentval field of the PODocumentEntry object.
Taxabsval Double The Taxabsval field of the PODocumentEntry object.
Taxableamount Double The Taxableamount field of the PODocumentEntry object.
Linetotal Double The Linetotal field of the PODocumentEntry object.
Discount Double The Discount field of the PODocumentEntry object.
Trx_taxabsval Double The Trx_taxabsval field of the PODocumentEntry object.
Trx_linetotal Double The Trx_linetotal field of the PODocumentEntry object.
Taxvaloverride Boolean The Taxvaloverride field of the PODocumentEntry object.
Projectkey String The Projectkey field of the PODocumentEntry object.
Projectname String The Projectname field of the PODocumentEntry object.
Taskkey String The Taskkey field of the PODocumentEntry object.
Taskname String The Taskname field of the PODocumentEntry object.
Projectdimkey Int64 The Projectdimkey field of the PODocumentEntry object.
Projectid String The Projectid field of the PODocumentEntry object.
Customerdimkey Int64 The Customerdimkey field of the PODocumentEntry object.
Customerid String The Customerid field of the PODocumentEntry object.
Customername String The Customername field of the PODocumentEntry object.
Record_url String The Record_url field of the PODocumentEntry object.

PODocumentSubtotals

Retrieves PODocumentSubtotals report data.

Columns
Name Type Description
Recordno [KEY] String The Recordno field of the PODocumentSubtotals object.
Dochdrno Int64 The Dochdrno field of the PODocumentSubtotals object.
Description String The Description field of the PODocumentSubtotals object.
Absval Double The Absval field of the PODocumentSubtotals object.
Percentval Double The Percentval field of the PODocumentSubtotals object.
Total Double The Total field of the PODocumentSubtotals object.
Absedit String The Absedit field of the PODocumentSubtotals object.
Percentedit String The Percentedit field of the PODocumentSubtotals object.
Status String The Status field of the PODocumentSubtotals object.
Department String The Department field of the PODocumentSubtotals object.
Location String The Location field of the PODocumentSubtotals object.
Trx_absval Double The Trx_absval field of the PODocumentSubtotals object.
Trx_total Double The Trx_total field of the PODocumentSubtotals object.
Docentrykey Int64 The Docentrykey field of the PODocumentSubtotals object.
Projectdimkey Int64 The Projectdimkey field of the PODocumentSubtotals object.
Projectid String The Projectid field of the PODocumentSubtotals object.
Projectname String The Projectname field of the PODocumentSubtotals object.
Customerdimkey Int64 The Customerdimkey field of the PODocumentSubtotals object.
Customerid String The Customerid field of the PODocumentSubtotals object.
Customername String The Customername field of the PODocumentSubtotals object.
Itemdimkey Int64 The Itemdimkey field of the PODocumentSubtotals object.
Itemid String The Itemid field of the PODocumentSubtotals object.
Itemname String The Itemname field of the PODocumentSubtotals object.
Record_url String The Record_url field of the PODocumentSubtotals object.

POPriceListEntry

Retrieves POPriceListEntry report data.

Columns
Name Type Description
Recordno [KEY] String The Recordno field of the POPriceListEntry object.
Pricelistid String The Pricelistid field of the POPriceListEntry object.
Itemid String The Itemid field of the POPriceListEntry object.
Itemname String The Itemname field of the POPriceListEntry object.
Productlineid String The Productlineid field of the POPriceListEntry object.
Datefrom Datetime The Datefrom field of the POPriceListEntry object.
Dateto Datetime The Dateto field of the POPriceListEntry object.
Qtylimitmin Double The Qtylimitmin field of the POPriceListEntry object.
Qtylimitmax Double The Qtylimitmax field of the POPriceListEntry object.
Value Double The Value field of the POPriceListEntry object.
Valuetype String The Valuetype field of the POPriceListEntry object.
Fixed String The Fixed field of the POPriceListEntry object.
Sale String The Sale field of the POPriceListEntry object.
Status String The Status field of the POPriceListEntry object.
Currency String The Currency field of the POPriceListEntry object.
Employeekey Int64 The Employeekey field of the POPriceListEntry object.
Record_url String The Record_url field of the POPriceListEntry object.

PORecurSubtotals

Retrieves PORecurSubtotals report data.

Columns
Name Type Description
Recordno [KEY] String The Recordno field of the PORecurSubtotals object.
Dochdrno Int64 The Dochdrno field of the PORecurSubtotals object.
Description String The Description field of the PORecurSubtotals object.
Absval Double The Absval field of the PORecurSubtotals object.
Absedit String The Absedit field of the PORecurSubtotals object.
Percentval Double The Percentval field of the PORecurSubtotals object.
Percentedit String The Percentedit field of the PORecurSubtotals object.
Total Double The Total field of the PORecurSubtotals object.
Status String The Status field of the PORecurSubtotals object.
Taxdetail Int64 The Taxdetail field of the PORecurSubtotals object.
Department String The Department field of the PORecurSubtotals object.
Location String The Location field of the PORecurSubtotals object.
Trx_absval Double The Trx_absval field of the PORecurSubtotals object.
Trx_total Double The Trx_total field of the PORecurSubtotals object.
Projectdimkey Int64 The Projectdimkey field of the PORecurSubtotals object.
Projectid String The Projectid field of the PORecurSubtotals object.
Projectname String The Projectname field of the PORecurSubtotals object.
Customerdimkey Int64 The Customerdimkey field of the PORecurSubtotals object.
Customerid String The Customerid field of the PORecurSubtotals object.
Customername String The Customername field of the PORecurSubtotals object.
Record_url String The Record_url field of the PORecurSubtotals object.

PSADocumentEntry

Retrieves PSADocumentEntry report data.

Columns
Name Type Description
Recordno [KEY] String The Recordno field of the PSADocumentEntry object.
Dochdrno Int64 The Dochdrno field of the PSADocumentEntry object.
Dochdrid String The Dochdrid field of the PSADocumentEntry object.
Bundlenumber String The Bundlenumber field of the PSADocumentEntry object.
Line_no Int64 The Line_no field of the PSADocumentEntry object.
Itemid String The Itemid field of the PSADocumentEntry object.
Itemname String The Itemname field of the PSADocumentEntry object.
Itemdesc String The Itemdesc field of the PSADocumentEntry object.
Unit String The Unit field of the PSADocumentEntry object.
Warehouse_location_no String The Warehouse_location_no field of the PSADocumentEntry object.
Warehouse_name String The Warehouse_name field of the PSADocumentEntry object.
Memo String The Memo field of the PSADocumentEntry object.
Quantity Double The Quantity field of the PSADocumentEntry object.
Qty_converted Double The Qty_converted field of the PSADocumentEntry object.
Retailprice Double The Retailprice field of the PSADocumentEntry object.
Price Double The Price field of the PSADocumentEntry object.
Total Double The Total field of the PSADocumentEntry object.
Whencreated Datetime The Whencreated field of the PSADocumentEntry object.
Whenmodified Datetime The Whenmodified field of the PSADocumentEntry object.
Item_taxable Boolean The Item_taxable field of the PSADocumentEntry object.
Item_taxgroup_recordno Int64 The Item_taxgroup_recordno field of the PSADocumentEntry object.
Item_renewalmacro_macroid String The Item_renewalmacro_macroid field of the PSADocumentEntry object.
Extended_description String The Extended_description field of the PSADocumentEntry object.
Itemglgroup String The Itemglgroup field of the PSADocumentEntry object.
State String The State field of the PSADocumentEntry object.
Status String The Status field of the PSADocumentEntry object.
Glentrykey1 Int64 The Glentrykey1 field of the PSADocumentEntry object.
Glentrykey2 Int64 The Glentrykey2 field of the PSADocumentEntry object.
Cost Double The Cost field of the PSADocumentEntry object.
Cost_method String The Cost_method field of the PSADocumentEntry object.
Average_cost String The Average_cost field of the PSADocumentEntry object.
Whse_average_cost String The Whse_average_cost field of the PSADocumentEntry object.
Uiqty Double The Uiqty field of the PSADocumentEntry object.
Discountpercent Double The Discountpercent field of the PSADocumentEntry object.
Uiprice Double The Uiprice field of the PSADocumentEntry object.
Uivalue Double The Uivalue field of the PSADocumentEntry object.
Locationid String The Locationid field of the PSADocumentEntry object.
Locationname String The Locationname field of the PSADocumentEntry object.
Departmentid String The Departmentid field of the PSADocumentEntry object.
Departmentname String The Departmentname field of the PSADocumentEntry object.
Deptkey String The Deptkey field of the PSADocumentEntry object.
Locationkey String The Locationkey field of the PSADocumentEntry object.
Timetypekey Int64 The Timetypekey field of the PSADocumentEntry object.
Timetypename String The Timetypename field of the PSADocumentEntry object.
Timenotes String The Timenotes field of the PSADocumentEntry object.
Eeaccountlabelkey Int64 The Eeaccountlabelkey field of the PSADocumentEntry object.
Eeaccountlabel String The Eeaccountlabel field of the PSADocumentEntry object.
Source_dockey String The Source_dockey field of the PSADocumentEntry object.
Source_doclinekey String The Source_doclinekey field of the PSADocumentEntry object.
Revrectemplate String The Revrectemplate field of the PSADocumentEntry object.
Revrectemplatekey String The Revrectemplatekey field of the PSADocumentEntry object.
Revrecstartdate Datetime The Revrecstartdate field of the PSADocumentEntry object.
Itemterm String The Itemterm field of the PSADocumentEntry object.
Termperiod String The Termperiod field of the PSADocumentEntry object.
Revrecenddate Datetime The Revrecenddate field of the PSADocumentEntry object.
Prorateprice Boolean The Prorateprice field of the PSADocumentEntry object.
Deferrevenue String The Deferrevenue field of the PSADocumentEntry object.
Sc_revrectemplate String The Sc_revrectemplate field of the PSADocumentEntry object.
Sc_revrectemplatekey String The Sc_revrectemplatekey field of the PSADocumentEntry object.
Sc_revrecstartdate Datetime The Sc_revrecstartdate field of the PSADocumentEntry object.
Sc_revrecenddate Datetime The Sc_revrecenddate field of the PSADocumentEntry object.
Sc_startdate Datetime The Sc_startdate field of the PSADocumentEntry object.
Item_itemtype String The Item_itemtype field of the PSADocumentEntry object.
Item_numdec_sale String The Item_numdec_sale field of the PSADocumentEntry object.
Item_numdec_std String The Item_numdec_std field of the PSADocumentEntry object.
Item_numdec_pur String The Item_numdec_pur field of the PSADocumentEntry object.
Item_revposting String The Item_revposting field of the PSADocumentEntry object.
Item_computeforshortterm Boolean The Item_computeforshortterm field of the PSADocumentEntry object.
Item_renewalmacrokey Int64 The Item_renewalmacrokey field of the PSADocumentEntry object.
Item_uomgrpkey Int64 The Item_uomgrpkey field of the PSADocumentEntry object.
Discount_memo String The Discount_memo field of the PSADocumentEntry object.
Item_revprinting String The Item_revprinting field of the PSADocumentEntry object.
Currency String The Currency field of the PSADocumentEntry object.
Exchratedate Datetime The Exchratedate field of the PSADocumentEntry object.
Exchratetype String The Exchratetype field of the PSADocumentEntry object.
Exchrate Double The Exchrate field of the PSADocumentEntry object.
Trx_price Double The Trx_price field of the PSADocumentEntry object.
Trx_value Double The Trx_value field of the PSADocumentEntry object.
Schedulename String The Schedulename field of the PSADocumentEntry object.
Scheduleid String The Scheduleid field of the PSADocumentEntry object.
Recurdocname String The Recurdocname field of the PSADocumentEntry object.
Recurdocid String The Recurdocid field of the PSADocumentEntry object.
Recurdocentrykey Int64 The Recurdocentrykey field of the PSADocumentEntry object.
Renewalmacro String The Renewalmacro field of the PSADocumentEntry object.
Renewalmacrokey String The Renewalmacrokey field of the PSADocumentEntry object.
Overridetax Boolean The Overridetax field of the PSADocumentEntry object.
Sc_createrecursched String The Sc_createrecursched field of the PSADocumentEntry object.
Sc_existingsched String The Sc_existingsched field of the PSADocumentEntry object.
Sc_extendlineperiod Boolean The Sc_extendlineperiod field of the PSADocumentEntry object.
Sc_installpricing Boolean The Sc_installpricing field of the PSADocumentEntry object.
Recurcontractid String The Recurcontractid field of the PSADocumentEntry object.
Source_docid String The Source_docid field of the PSADocumentEntry object.
Billable Boolean The Billable field of the PSADocumentEntry object.
Billed Boolean The Billed field of the PSADocumentEntry object.
Billabletimeentrykey Int64 The Billabletimeentrykey field of the PSADocumentEntry object.
Billableprentrykey Int64 The Billableprentrykey field of the PSADocumentEntry object.
Billabledocentrykey Int64 The Billabledocentrykey field of the PSADocumentEntry object.
Percentval Double The Percentval field of the PSADocumentEntry object.
Taxabsval Double The Taxabsval field of the PSADocumentEntry object.
Taxableamount Double The Taxableamount field of the PSADocumentEntry object.
Linetotal Double The Linetotal field of the PSADocumentEntry object.
Discount Double The Discount field of the PSADocumentEntry object.
Trx_taxabsval Double The Trx_taxabsval field of the PSADocumentEntry object.
Trx_linetotal Double The Trx_linetotal field of the PSADocumentEntry object.
Taxvaloverride Boolean The Taxvaloverride field of the PSADocumentEntry object.
Projectkey String The Projectkey field of the PSADocumentEntry object.
Projectname String The Projectname field of the PSADocumentEntry object.
Taskkey String The Taskkey field of the PSADocumentEntry object.
Taskname String The Taskname field of the PSADocumentEntry object.
Billingtemplatekey String The Billingtemplatekey field of the PSADocumentEntry object.
Billingtemplate String The Billingtemplate field of the PSADocumentEntry object.
Projectdimkey Int64 The Projectdimkey field of the PSADocumentEntry object.
Projectid String The Projectid field of the PSADocumentEntry object.
Vendordimkey Int64 The Vendordimkey field of the PSADocumentEntry object.
Vendorid String The Vendorid field of the PSADocumentEntry object.
Vendorname String The Vendorname field of the PSADocumentEntry object.
Employeedimkey Int64 The Employeedimkey field of the PSADocumentEntry object.
Employeeid String The Employeeid field of the PSADocumentEntry object.
Employeename String The Employeename field of the PSADocumentEntry object.
Record_url String The Record_url field of the PSADocumentEntry object.

RecurDocumentEntry

Retrieves RecurDocumentEntry report data.

Columns
Name Type Description
Recordno [KEY] String The Recordno field of the RecurDocumentEntry object.
Dochdrno Int64 The Dochdrno field of the RecurDocumentEntry object.
Line_no Int64 The Line_no field of the RecurDocumentEntry object.
Itemid String The Itemid field of the RecurDocumentEntry object.
Itemdesc String The Itemdesc field of the RecurDocumentEntry object.
Unit String The Unit field of the RecurDocumentEntry object.
Warehouse_location_no String The Warehouse_location_no field of the RecurDocumentEntry object.
Memo String The Memo field of the RecurDocumentEntry object.
Whenmodified Datetime The Whenmodified field of the RecurDocumentEntry object.
Item_taxable Boolean The Item_taxable field of the RecurDocumentEntry object.
Item_computeforshortterm Boolean The Item_computeforshortterm field of the RecurDocumentEntry object.
Item_taxgroup_recordno Int64 The Item_taxgroup_recordno field of the RecurDocumentEntry object.
Item_uomgrpkey Int64 The Item_uomgrpkey field of the RecurDocumentEntry object.
Cost_method String The Cost_method field of the RecurDocumentEntry object.
State String The State field of the RecurDocumentEntry object.
Status String The Status field of the RecurDocumentEntry object.
Linestatus String The Linestatus field of the RecurDocumentEntry object.
Uiqty Double The Uiqty field of the RecurDocumentEntry object.
Uiprice String The Uiprice field of the RecurDocumentEntry object.
Uivalue Double The Uivalue field of the RecurDocumentEntry object.
Department String The Department field of the RecurDocumentEntry object.
Location String The Location field of the RecurDocumentEntry object.
Docentrykey Int64 The Docentrykey field of the RecurDocumentEntry object.
Revrecstartdate Datetime The Revrecstartdate field of the RecurDocumentEntry object.
Revrecenddate Datetime The Revrecenddate field of the RecurDocumentEntry object.
Itemterm String The Itemterm field of the RecurDocumentEntry object.
Termperiod String The Termperiod field of the RecurDocumentEntry object.
Prorateprice Boolean The Prorateprice field of the RecurDocumentEntry object.
Revrectemplate String The Revrectemplate field of the RecurDocumentEntry object.
Retailprice String The Retailprice field of the RecurDocumentEntry object.
Discount_memo String The Discount_memo field of the RecurDocumentEntry object.
Currency String The Currency field of the RecurDocumentEntry object.
Exchratedate Datetime The Exchratedate field of the RecurDocumentEntry object.
Exchratetype String The Exchratetype field of the RecurDocumentEntry object.
Exchrate Double The Exchrate field of the RecurDocumentEntry object.
Trx_price String The Trx_price field of the RecurDocumentEntry object.
Trx_value Double The Trx_value field of the RecurDocumentEntry object.
Discountpercent Double The Discountpercent field of the RecurDocumentEntry object.
Billable Boolean The Billable field of the RecurDocumentEntry object.
Form1099 Boolean The Form1099 field of the RecurDocumentEntry object.
Overridetax Boolean The Overridetax field of the RecurDocumentEntry object.
Projectdimkey Int64 The Projectdimkey field of the RecurDocumentEntry object.
Projectid String The Projectid field of the RecurDocumentEntry object.
Projectname String The Projectname field of the RecurDocumentEntry object.
Vendordimkey Int64 The Vendordimkey field of the RecurDocumentEntry object.
Vendorid String The Vendorid field of the RecurDocumentEntry object.
Vendorname String The Vendorname field of the RecurDocumentEntry object.
Employeedimkey Int64 The Employeedimkey field of the RecurDocumentEntry object.
Employeeid String The Employeeid field of the RecurDocumentEntry object.
Employeename String The Employeename field of the RecurDocumentEntry object.
Record_url String The Record_url field of the RecurDocumentEntry object.

RecurGLEntry

Retrieves RecurGLEntry report data.

Columns
Name Type Description
Recordno [KEY] String The Recordno field of the RecurGLEntry object.
Recurglbatchno String The Recurglbatchno field of the RecurGLEntry object.
Locationkey String The Locationkey field of the RecurGLEntry object.
Location String The Location field of the RecurGLEntry object.
Locationname String The Locationname field of the RecurGLEntry object.
Deptkey String The Deptkey field of the RecurGLEntry object.
Department String The Department field of the RecurGLEntry object.
Departmentname String The Departmentname field of the RecurGLEntry object.
Accountkey String The Accountkey field of the RecurGLEntry object.
Accountno String The Accountno field of the RecurGLEntry object.
Accounttitle String The Accounttitle field of the RecurGLEntry object.
Document String The Document field of the RecurGLEntry object.
Tr_type String The Tr_type field of the RecurGLEntry object.
Amount String The Amount field of the RecurGLEntry object.
Memo String The Memo field of the RecurGLEntry object.
Whencreated Datetime The Whencreated field of the RecurGLEntry object.
Username String The Username field of the RecurGLEntry object.
Allocationkey String The Allocationkey field of the RecurGLEntry object.
Allocation String The Allocation field of the RecurGLEntry object.
Units String The Units field of the RecurGLEntry object.
Basecurr String The Basecurr field of the RecurGLEntry object.
Currency String The Currency field of the RecurGLEntry object.
Trx_amount String The Trx_amount field of the RecurGLEntry object.
Exch_rate_date Datetime The Exch_rate_date field of the RecurGLEntry object.
Exch_rate_type_id String The Exch_rate_type_id field of the RecurGLEntry object.
Exchange_rate Double The Exchange_rate field of the RecurGLEntry object.
Projectdimkey Int64 The Projectdimkey field of the RecurGLEntry object.
Projectid String The Projectid field of the RecurGLEntry object.
Projectname String The Projectname field of the RecurGLEntry object.
Customerdimkey Int64 The Customerdimkey field of the RecurGLEntry object.
Customerid String The Customerid field of the RecurGLEntry object.
Customername String The Customername field of the RecurGLEntry object.
Vendordimkey Int64 The Vendordimkey field of the RecurGLEntry object.
Vendorid String The Vendorid field of the RecurGLEntry object.
Vendorname String The Vendorname field of the RecurGLEntry object.
Employeedimkey Int64 The Employeedimkey field of the RecurGLEntry object.
Employeeid String The Employeeid field of the RecurGLEntry object.
Employeename String The Employeename field of the RecurGLEntry object.
Itemdimkey Int64 The Itemdimkey field of the RecurGLEntry object.
Itemid String The Itemid field of the RecurGLEntry object.
Itemname String The Itemname field of the RecurGLEntry object.
Classdimkey Int64 The Classdimkey field of the RecurGLEntry object.
Classid String The Classid field of the RecurGLEntry object.
Classname String The Classname field of the RecurGLEntry object.
Record_url String The Record_url field of the RecurGLEntry object.

RevRecChangeLog

Retrieves RevRecChangeLog report data.

Columns
Name Type Description
Recordno [KEY] String The Recordno field of the RevRecChangeLog object.
Modifiedby String The Modifiedby field of the RevRecChangeLog object.
Whenmodified Datetime The Whenmodified field of the RevRecChangeLog object.
Summary String The Summary field of the RevRecChangeLog object.
Memo String The Memo field of the RevRecChangeLog object.
Record_url String The Record_url field of the RevRecChangeLog object.

RevRecScheduleEntryTask

Retrieves RevRecScheduleEntryTask report data.

Columns
Name Type Description
Recordno [KEY] String The Recordno field of the RevRecScheduleEntryTask object.
Estqty Double The Estqty field of the RevRecScheduleEntryTask object.
Plannedqty Double The Plannedqty field of the RevRecScheduleEntryTask object.
Actualqty Double The Actualqty field of the RevRecScheduleEntryTask object.
Revrecentrykey String The Revrecentrykey field of the RevRecScheduleEntryTask object.
Taskkey String The Taskkey field of the RevRecScheduleEntryTask object.
Taskname String The Taskname field of the RevRecScheduleEntryTask object.
Revrecschedulekey String The Revrecschedulekey field of the RevRecScheduleEntryTask object.
Record_url String The Record_url field of the RevRecScheduleEntryTask object.

SODocumentEntry

Retrieves SODocumentEntry report data.

Columns
Name Type Description
Recordno [KEY] Long Record Number
Dochdrno Long Document Header Number
Dochdrid String The Dochdrid field of the SODocumentEntry Table
Docparid String Document Template ID
Bundlenumber String Bundle Number
Line_no Long Line Number
Itemid String Item ID
Itemname String Item Name
Itemdesc String Item Description
Unit String Unit
Warehouse_location_no String Warehouse Id
Warehouse_name String Free form name for this warehouse location.
Memo String Memo
Pricecalcmemo String The Pricecalcmemo field of the SODocumentEntry Table
Quantity Decimal Quantity
Qty_converted Decimal Quantity Converted
Retailprice Decimal RetailPrice
Price Decimal Price
Total Decimal Extended Total Price
Whencreated Date Date Created
Whenmodified Datetime Date Modified
Auwhencreated Datetime Audit timestamp when record was created.
Createdby Long User who created this.
Modifiedby Long User who modified this.
Item_taxable Bool Taxable
Item_taxgroup_recordno Long Record Number
Item_renewalmacro_macroid String Renewal template ID
Extended_description String The Extended_description field of the SODocumentEntry Table
Itemglgroup Long The Itemglgroup field of the SODocumentEntry Table
State Bool State
Status String Active/Inactive
Cost Decimal Cost
Cost_method String Cost Method
Uiqty Decimal Quantity
Discountpercent Decimal Discount %
Multiplier Decimal Multiplier
Uiprice Decimal Price
Uivalue Decimal Extended Total Price
Locationid String Locationid
Locationname String The Locationname field of the SODocumentEntry Table
Departmentid String Departmentid
Departmentname String The Departmentname field of the SODocumentEntry Table
Deptkey String The Deptkey field of the SODocumentEntry Table
Locationkey String The Locationkey field of the SODocumentEntry Table
Timetypekey Long The Timetypekey field of the SODocumentEntry Table
Timetypename String The Timetypename field of the SODocumentEntry Table
Timenotes String The Timenotes field of the SODocumentEntry Table
Eeaccountlabelkey Long The Eeaccountlabelkey field of the SODocumentEntry Table
Eeaccountlabel String The Eeaccountlabel field of the SODocumentEntry Table
Source_dockey String The Source_dockey field of the SODocumentEntry Table
Source_doclinekey String The Source_doclinekey field of the SODocumentEntry Table
Adjdochdrkey Long The Adjdochdrkey field of the SODocumentEntry Table
Adjdocentrykey Long The Adjdocentrykey field of the SODocumentEntry Table
Revrectemplate String Revenue Recognition Template
Revrectemplatekey String The Revrectemplatekey field of the SODocumentEntry Table
Revrecstartdate Date Revenue Recognition Start Date
Itemterm String Default Term Period
Termperiod Long Default # of Periods
Revrecenddate Date Revenue Recognition End Date
Prorateprice Bool Prorate Price
Deferrevenue String The Deferrevenue field of the SODocumentEntry Table
Sc_revrectemplate String Revenue Recognition Template
Sc_revrectemplatekey String The Sc_revrectemplatekey field of the SODocumentEntry Table
Sc_revrecstartdate Date Revenue Recognition Start Date
Sc_revrecenddate Date Revenue Recognition Start Date
Sc_startdate Date Schedule Start Date
Item_itemtype String Item Type
Item_numdec_sale Long The Item_numdec_sale field of the SODocumentEntry Table
Item_numdec_std Long The Item_numdec_std field of the SODocumentEntry Table
Item_numdec_pur Long The Item_numdec_pur field of the SODocumentEntry Table
Item_revposting String The Item_revposting field of the SODocumentEntry Table
Item_computeforshortterm Bool The Item_computeforshortterm field of the SODocumentEntry Table
Item_renewalmacrokey Long The Item_renewalmacrokey field of the SODocumentEntry Table
Item_uomgrpkey Long The Item_uomgrpkey field of the SODocumentEntry Table
Item_dropship Bool Available for drop ship
Item_buytoorder Bool Available for buy to order
Discount_memo String Discount/Charge
Item_revprinting String The Item_revprinting field of the SODocumentEntry Table
Currency String Txn Currency
Basecurr String Base Currency
Exchratedate Date The Exchratedate field of the SODocumentEntry Table
Exchratetype Decimal The Exchratetype field of the SODocumentEntry Table
Exchrate Decimal The Exchrate field of the SODocumentEntry Table
Trx_price Decimal Transaction Price
Trx_value Decimal Extended Transaction Price
Schedulename String Recurring Schedule
Scheduleid Long The Scheduleid field of the SODocumentEntry Table
Recurdocname String Document Type
Recurdocid Long The Recurdocid field of the SODocumentEntry Table
Recurdocentrykey Long Recurring Document Key
Renewalmacro String The Renewalmacro field of the SODocumentEntry Table
Renewalmacrokey String The Renewalmacrokey field of the SODocumentEntry Table
Overridetax Bool enable tax
Sc_createrecursched String Create Recurring Template
Sc_existingsched String Existing Template
Sc_extendlineperiod Bool Extend Line Period
Sc_installpricing Bool Installment Pricing
Recurcontractid String The Recurcontractid field of the SODocumentEntry Table
Source_docid String The Source_docid field of the SODocumentEntry Table
Billable Bool Billable
Billed Bool Billed
Billabletimeentrykey Long The Billabletimeentrykey field of the SODocumentEntry Table
Billableglentrykey Long The Billableglentrykey field of the SODocumentEntry Table
Billableprentrykey Long The Billableprentrykey field of the SODocumentEntry Table
Billabledocentrykey Long The Billabledocentrykey field of the SODocumentEntry Table
Billablecontractschentrykey Long The Billablecontractschentrykey field of the SODocumentEntry Table
Billablecontractusagebillingid Long The Billablecontractusagebillingid field of the SODocumentEntry Table
Percentval Decimal Line Tax Rate
Taxabsval Decimal Line Tax
Taxableamount Decimal Taxable amount
Linetotal Decimal Totals amount for line
Discount Decimal Line Discount
Trx_taxabsval Decimal Transaction Line Tax
Trx_linetotal Decimal Transaction totals amount for line
Taxvaloverride Bool The Taxvaloverride field of the SODocumentEntry Table
Total_amount_converted Decimal Total Amount Converted
Total_amount_remaining Decimal Total Amount Remaining
Qty_remaining Decimal Quantity Remaining
Price_converted Decimal Price converted
Conversiontype String Conversion type
Quantityreserved Decimal Quantity reserved
Quantityallocated Decimal Quantity allocated (Allocated)
Quantityreservedwhenopen Decimal Quantity reserved before fulfillment
Quantityallocatedwhenopen Decimal Quantity allocated before fulfillment
Allocreserveisenabled Bool Alloc and reserve is enabled
Projectkey String The Projectkey field of the SODocumentEntry Table
Projectname String The Projectname field of the SODocumentEntry Table
Taskkey String Task
Taskid String Task
Taskname String Task
Billingtemplatekey String The Billingtemplatekey field of the SODocumentEntry Table
Billingtemplate String Billing Template
Geninvoicelinekey Long Preview line key
Linelevelsimpletaxtype String The Linelevelsimpletaxtype field of the SODocumentEntry Table
Needbydate Date Need by date
Shipby Date Ship by date
Donotshipbeforedate Date Do not ship before date
Donotshipafterdate Date Do not ship after date
Datepickticketprinted Date Pick ticket printed date
Cancelafterdate Date Cancel after date
Shippeddate Date Shipped date
Shiptokey String Bill-to contact key
Shipto_contactname String Ship to contact name
Shipto_prefix String Mr./Ms./Mrs.
Shipto_firstname String First Name
Shipto_initial String Middle Name
Shipto_lastname String Last Name
Shipto_companyname String Full name of the company
Shipto_printas String Name as appears on official documents
Shipto_phone1 String Primary phone
Shipto_phone2 String Seconday phone
Shipto_cellphone String Cellular Phone Number
Shipto_pager String Pager
Shipto_fax String Fax
Shipto_email1 String Primary email address
Shipto_email2 String Secondary Email Address
Shipto_url1 String Primary URL
Shipto_url2 String Secondary URL
Shipto_visible Bool Visible
Shipto_mailaddress_address1 String Address Line 1
Shipto_mailaddress_address2 String Address Line 2
Shipto_mailaddress_city String City
Shipto_mailaddress_state String State/Province
Shipto_mailaddress_zip String Zip/Postal Code
Shipto_mailaddress_country String Country
Shipto_mailaddress_countrycode String Country Code
Btoshiptokey String Buy to Order Deliver to key
Btoshiptocontactname String Buy to Order Deliver to
Retainagepercentage String The Retainagepercentage field of the SODocumentEntry Table
Amountretained Decimal The Amountretained field of the SODocumentEntry Table
Trx_amountretained Decimal The Trx_amountretained field of the SODocumentEntry Table
Relateddockey String Related doc key
Relateddoclinekey String Related doc line key
Revisedunitqty Decimal Revised quantity
Revisedqty Decimal Revised quantity
Draftchangeunitqty Decimal Draft quantity change
Draftchangeqty Decimal Draft quantity change
Revisedunitvalue Decimal Revised extended base price
Revisedvalue Decimal Revised extended price
Trx_revisedvalue Decimal Revised extended price
Revisedprice Decimal Revised price
Revisedunitprice Decimal Revised base price
Trx_revisedprice Decimal Revised price
Relateddoclineno String The Relateddoclineno field of the SODocumentEntry Table
Draftchangeprice Decimal Draft change price
Postedqtychanges Decimal The Postedqtychanges field of the SODocumentEntry Table
Postedchangeextprice Decimal The Postedchangeextprice field of the SODocumentEntry Table
Postedchangeextbaseprice Decimal The Postedchangeextbaseprice field of the SODocumentEntry Table
Addedbychange Bool The Addedbychange field of the SODocumentEntry Table
Projectcontractid String Project contract id
Projectcontractname String Project contract name
Projectcontractkey Long Project contract key
Projectcontractlineid String The Projectcontractlineid field of the SODocumentEntry Table
Projectcontractlinename String Project contract line name
Projectcontractlinekey Long The Projectcontractlinekey field of the SODocumentEntry Table
Pcblexternalrefno String External Reference
Pcbldescription String Description
Pcblbillingtype String Billing type
Contractlinevalue Decimal Contract line value
Priorapplicationamt Decimal Amount from prior application
Completedthisperiod Decimal Completed this period
Storedmaterials Decimal Stored materials
Totalcompletedtodate Decimal Total completed to date
Percentcompletedtodate Decimal Percentage completed to date
Balanceremaining Decimal Balance remaining
Draftchangebaseprice Decimal Draft base price changes
Previousretainagebalance Decimal Previous retainage balance
Isretainagerelease Bool Retainage release
Retainagetobill Decimal Retainage to bill
Retainagebalance Decimal Retainage balance
Itemaliasid String Item cross reference ID
Projectdimkey Long The Projectdimkey field of the SODocumentEntry Table
Projectid String The Projectid field of the SODocumentEntry Table
Customerdimkey Long The Customerdimkey field of the SODocumentEntry Table
Customerid String The Customerid field of the SODocumentEntry Table
Customername String The Customername field of the SODocumentEntry Table
Vendordimkey Long The Vendordimkey field of the SODocumentEntry Table
Vendorid String The Vendorid field of the SODocumentEntry Table
Vendorname String The Vendorname field of the SODocumentEntry Table
Employeedimkey Long The Employeedimkey field of the SODocumentEntry Table
Employeeid String The Employeeid field of the SODocumentEntry Table
Employeename String The Employeename field of the SODocumentEntry Table
Classdimkey Long The Classdimkey field of the SODocumentEntry Table
Classid String The Classid field of the SODocumentEntry Table
Classname String The Classname field of the SODocumentEntry Table
Contractdimkey Long The Contractdimkey field of the SODocumentEntry Table
Contractid String The Contractid field of the SODocumentEntry Table
Contractname String The Contractname field of the SODocumentEntry Table
Billed_timesheetentry_entrydate Date The Billed_timesheetentry_entrydate field of the SODocumentEntry Table
Gldimtestegi1 String The Gldimtestegi1 field of the SODocumentEntry Table
Gldimtest String The Gldimtest field of the SODocumentEntry Table
Item_recordno [KEY] Long Foreign key for related object: ITEM
Department_recordno [KEY] Long Foreign key for related object: DEPARTMENT
Location_recordno [KEY] Long Foreign key for related object: LOCATION
Warehouse_recordno [KEY] Long Foreign key for related object: WAREHOUSE
Sodocument_recordno [KEY] String Foreign key for related object: SODOCUMENT
Task_recordno [KEY] Long Foreign key for related object: TASK

SODocumentSubtotals

Retrieves SODocumentSubtotals report data.

Columns
Name Type Description
Recordno [KEY] String The Recordno field of the SODocumentSubtotals object.
Dochdrno Int64 The Dochdrno field of the SODocumentSubtotals object.
Description String The Description field of the SODocumentSubtotals object.
Absval Double The Absval field of the SODocumentSubtotals object.
Percentval Double The Percentval field of the SODocumentSubtotals object.
Total Double The Total field of the SODocumentSubtotals object.
Absedit String The Absedit field of the SODocumentSubtotals object.
Percentedit String The Percentedit field of the SODocumentSubtotals object.
Status String The Status field of the SODocumentSubtotals object.
Department String The Department field of the SODocumentSubtotals object.
Location String The Location field of the SODocumentSubtotals object.
Trx_absval Double The Trx_absval field of the SODocumentSubtotals object.
Trx_total Double The Trx_total field of the SODocumentSubtotals object.
Docentrykey Int64 The Docentrykey field of the SODocumentSubtotals object.
Projectdimkey Int64 The Projectdimkey field of the SODocumentSubtotals object.
Projectid String The Projectid field of the SODocumentSubtotals object.
Projectname String The Projectname field of the SODocumentSubtotals object.
Vendordimkey Int64 The Vendordimkey field of the SODocumentSubtotals object.
Vendorid String The Vendorid field of the SODocumentSubtotals object.
Vendorname String The Vendorname field of the SODocumentSubtotals object.
Employeedimkey Int64 The Employeedimkey field of the SODocumentSubtotals object.
Employeeid String The Employeeid field of the SODocumentSubtotals object.
Employeename String The Employeename field of the SODocumentSubtotals object.
Itemdimkey Int64 The Itemdimkey field of the SODocumentSubtotals object.
Itemid String The Itemid field of the SODocumentSubtotals object.
Itemname String The Itemname field of the SODocumentSubtotals object.
Record_url String The Record_url field of the SODocumentSubtotals object.

SOPriceListEntry

Retrieves SOPriceListEntry report data.

Columns
Name Type Description
Recordno [KEY] String The Recordno field of the SOPriceListEntry object.
Pricelistid String The Pricelistid field of the SOPriceListEntry object.
Itemid String The Itemid field of the SOPriceListEntry object.
Itemname String The Itemname field of the SOPriceListEntry object.
Productlineid String The Productlineid field of the SOPriceListEntry object.
Datefrom Datetime The Datefrom field of the SOPriceListEntry object.
Dateto Datetime The Dateto field of the SOPriceListEntry object.
Qtylimitmin Double The Qtylimitmin field of the SOPriceListEntry object.
Qtylimitmax Double The Qtylimitmax field of the SOPriceListEntry object.
Value Double The Value field of the SOPriceListEntry object.
Valuetype String The Valuetype field of the SOPriceListEntry object.
Fixed String The Fixed field of the SOPriceListEntry object.
Sale String The Sale field of the SOPriceListEntry object.
Status String The Status field of the SOPriceListEntry object.
Currency String The Currency field of the SOPriceListEntry object.
Employeekey Int64 The Employeekey field of the SOPriceListEntry object.
Record_url String The Record_url field of the SOPriceListEntry object.

SORecurDocument

Retrieves SORecurDocument report data.

Columns
Name Type Description
Recordno [KEY] String The Recordno field of the SORecurDocument object.
Status String The Status field of the SORecurDocument object.
Ponumber String The Ponumber field of the SORecurDocument object.
Whenmodified Datetime The Whenmodified field of the SORecurDocument object.
Vendordocno String The Vendordocno field of the SORecurDocument object.
Shipvia String The Shipvia field of the SORecurDocument object.
Userkey String The Userkey field of the SORecurDocument object.
Warehouse_locationid String The Warehouse_locationid field of the SORecurDocument object.
Shiptokey String The Shiptokey field of the SORecurDocument object.
Billtokey String The Billtokey field of the SORecurDocument object.
Message String The Message field of the SORecurDocument object.
Entity String The Entity field of the SORecurDocument object.
Contractid String The Contractid field of the SORecurDocument object.
Contractdesc String The Contractdesc field of the SORecurDocument object.
Note String The Note field of the SORecurDocument object.
Subtotal String The Subtotal field of the SORecurDocument object.
Total String The Total field of the SORecurDocument object.
Schopkey Int64 The Schopkey field of the SORecurDocument object.
Sourcedocument String The Sourcedocument field of the SORecurDocument object.
Docid String The Docid field of the SORecurDocument object.
Startdate Datetime The Startdate field of the SORecurDocument object.
Enddate Datetime The Enddate field of the SORecurDocument object.
Nextexecdate Datetime The Nextexecdate field of the SORecurDocument object.
Lastexecdate Datetime The Lastexecdate field of the SORecurDocument object.
Recurduedate Datetime The Recurduedate field of the SORecurDocument object.
Frequency String The Frequency field of the SORecurDocument object.
Execcount Int64 The Execcount field of the SORecurDocument object.
Repeatcount Int64 The Repeatcount field of the SORecurDocument object.
Repeatby String The Repeatby field of the SORecurDocument object.
Interval Int64 The Interval field of the SORecurDocument object.
User String The User field of the SORecurDocument object.
Customername String The Customername field of the SORecurDocument object.
Term_name String The Term_name field of the SORecurDocument object.
Scheduledcontactemail String The Scheduledcontactemail field of the SORecurDocument object.
Contact_contactname String The Contact_contactname field of the SORecurDocument object.
Contact_email1 String The Contact_email1 field of the SORecurDocument object.
Contact_email2 String The Contact_email2 field of the SORecurDocument object.
Shipto_contactname String The Shipto_contactname field of the SORecurDocument object.
Shipto_email1 String The Shipto_email1 field of the SORecurDocument object.
Shipto_email2 String The Shipto_email2 field of the SORecurDocument object.
Billto_contactname String The Billto_contactname field of the SORecurDocument object.
Billto_email1 String The Billto_email1 field of the SORecurDocument object.
Billto_email2 String The Billto_email2 field of the SORecurDocument object.
Dochdrno Int64 The Dochdrno field of the SORecurDocument object.
Basecurr String The Basecurr field of the SORecurDocument object.
Currency String The Currency field of the SORecurDocument object.
Exchratedate Datetime The Exchratedate field of the SORecurDocument object.
Exchratetypes_name String The Exchratetypes_name field of the SORecurDocument object.
Exchrate Double The Exchrate field of the SORecurDocument object.
Trx_subtotal String The Trx_subtotal field of the SORecurDocument object.
Trx_total String The Trx_total field of the SORecurDocument object.
Docstatus String The Docstatus field of the SORecurDocument object.
Paymethod String The Paymethod field of the SORecurDocument object.
Payinfull Boolean The Payinfull field of the SORecurDocument object.
Paymentamount String The Paymentamount field of the SORecurDocument object.
Customercreditcardkey String The Customercreditcardkey field of the SORecurDocument object.
Customerbankaccountkey String The Customerbankaccountkey field of the SORecurDocument object.
Creditcardtype String The Creditcardtype field of the SORecurDocument object.
Accounttype String The Accounttype field of the SORecurDocument object.
Bankaccountid String The Bankaccountid field of the SORecurDocument object.
Glaccountkey String The Glaccountkey field of the SORecurDocument object.
Megaentitykey Int64 The Megaentitykey field of the SORecurDocument object.
Megaentityid String The Megaentityid field of the SORecurDocument object.
Megaentityname String The Megaentityname field of the SORecurDocument object.
Record_url String The Record_url field of the SORecurDocument object.

SORecurSubtotals

Retrieves SORecurSubtotals report data.

Columns
Name Type Description
Recordno [KEY] String The Recordno field of the SORecurSubtotals object.
Dochdrno Int64 The Dochdrno field of the SORecurSubtotals object.
Description String The Description field of the SORecurSubtotals object.
Absval Double The Absval field of the SORecurSubtotals object.
Absedit String The Absedit field of the SORecurSubtotals object.
Percentval Double The Percentval field of the SORecurSubtotals object.
Percentedit String The Percentedit field of the SORecurSubtotals object.
Total Double The Total field of the SORecurSubtotals object.
Status String The Status field of the SORecurSubtotals object.
Taxdetail Int64 The Taxdetail field of the SORecurSubtotals object.
Department String The Department field of the SORecurSubtotals object.
Location String The Location field of the SORecurSubtotals object.
Trx_absval Double The Trx_absval field of the SORecurSubtotals object.
Trx_total Double The Trx_total field of the SORecurSubtotals object.
Projectdimkey Int64 The Projectdimkey field of the SORecurSubtotals object.
Projectid String The Projectid field of the SORecurSubtotals object.
Projectname String The Projectname field of the SORecurSubtotals object.
Vendordimkey Int64 The Vendordimkey field of the SORecurSubtotals object.
Vendorid String The Vendorid field of the SORecurSubtotals object.
Vendorname String The Vendorname field of the SORecurSubtotals object.
Employeedimkey Int64 The Employeedimkey field of the SORecurSubtotals object.
Employeeid String The Employeeid field of the SORecurSubtotals object.
Employeename String The Employeename field of the SORecurSubtotals object.
Record_url String The Record_url field of the SORecurSubtotals object.

STKitDocumentEntry

Retrieves STKitDocumentEntry report data.

Columns
Name Type Description
Recordno [KEY] String The Recordno field of the STKitDocumentEntry object.
Dochdrno Int64 The Dochdrno field of the STKitDocumentEntry object.
Dochdrid String The Dochdrid field of the STKitDocumentEntry object.
Bundlenumber String The Bundlenumber field of the STKitDocumentEntry object.
Line_no Int64 The Line_no field of the STKitDocumentEntry object.
Itemid String The Itemid field of the STKitDocumentEntry object.
Itemname String The Itemname field of the STKitDocumentEntry object.
Itemdesc String The Itemdesc field of the STKitDocumentEntry object.
Unit String The Unit field of the STKitDocumentEntry object.
Warehouse_location_no String The Warehouse_location_no field of the STKitDocumentEntry object.
Warehouse_name String The Warehouse_name field of the STKitDocumentEntry object.
Memo String The Memo field of the STKitDocumentEntry object.
Quantity Double The Quantity field of the STKitDocumentEntry object.
Qty_converted Double The Qty_converted field of the STKitDocumentEntry object.
Retailprice Double The Retailprice field of the STKitDocumentEntry object.
Price Double The Price field of the STKitDocumentEntry object.
Total Double The Total field of the STKitDocumentEntry object.
Whencreated Datetime The Whencreated field of the STKitDocumentEntry object.
Whenmodified Datetime The Whenmodified field of the STKitDocumentEntry object.
Item_taxable Boolean The Item_taxable field of the STKitDocumentEntry object.
Item_taxgroup_recordno Int64 The Item_taxgroup_recordno field of the STKitDocumentEntry object.
Item_renewalmacro_macroid String The Item_renewalmacro_macroid field of the STKitDocumentEntry object.
Extended_description String The Extended_description field of the STKitDocumentEntry object.
Itemglgroup String The Itemglgroup field of the STKitDocumentEntry object.
State String The State field of the STKitDocumentEntry object.
Status String The Status field of the STKitDocumentEntry object.
Glentrykey1 Int64 The Glentrykey1 field of the STKitDocumentEntry object.
Glentrykey2 Int64 The Glentrykey2 field of the STKitDocumentEntry object.
Cost Double The Cost field of the STKitDocumentEntry object.
Cost_method String The Cost_method field of the STKitDocumentEntry object.
Average_cost String The Average_cost field of the STKitDocumentEntry object.
Whse_average_cost String The Whse_average_cost field of the STKitDocumentEntry object.
Uiqty Double The Uiqty field of the STKitDocumentEntry object.
Discountpercent Double The Discountpercent field of the STKitDocumentEntry object.
Uiprice Double The Uiprice field of the STKitDocumentEntry object.
Uivalue Double The Uivalue field of the STKitDocumentEntry object.
Locationid String The Locationid field of the STKitDocumentEntry object.
Locationname String The Locationname field of the STKitDocumentEntry object.
Departmentid String The Departmentid field of the STKitDocumentEntry object.
Departmentname String The Departmentname field of the STKitDocumentEntry object.
Deptkey String The Deptkey field of the STKitDocumentEntry object.
Locationkey String The Locationkey field of the STKitDocumentEntry object.
Timetypekey Int64 The Timetypekey field of the STKitDocumentEntry object.
Timetypename String The Timetypename field of the STKitDocumentEntry object.
Timenotes String The Timenotes field of the STKitDocumentEntry object.
Eeaccountlabelkey Int64 The Eeaccountlabelkey field of the STKitDocumentEntry object.
Eeaccountlabel String The Eeaccountlabel field of the STKitDocumentEntry object.
Source_dockey String The Source_dockey field of the STKitDocumentEntry object.
Source_doclinekey String The Source_doclinekey field of the STKitDocumentEntry object.
Revrectemplate String The Revrectemplate field of the STKitDocumentEntry object.
Revrectemplatekey String The Revrectemplatekey field of the STKitDocumentEntry object.
Revrecstartdate Datetime The Revrecstartdate field of the STKitDocumentEntry object.
Itemterm String The Itemterm field of the STKitDocumentEntry object.
Termperiod String The Termperiod field of the STKitDocumentEntry object.
Revrecenddate Datetime The Revrecenddate field of the STKitDocumentEntry object.
Prorateprice Boolean The Prorateprice field of the STKitDocumentEntry object.
Deferrevenue String The Deferrevenue field of the STKitDocumentEntry object.
Sc_revrectemplate String The Sc_revrectemplate field of the STKitDocumentEntry object.
Sc_revrectemplatekey String The Sc_revrectemplatekey field of the STKitDocumentEntry object.
Sc_revrecstartdate Datetime The Sc_revrecstartdate field of the STKitDocumentEntry object.
Sc_revrecenddate Datetime The Sc_revrecenddate field of the STKitDocumentEntry object.
Sc_startdate Datetime The Sc_startdate field of the STKitDocumentEntry object.
Item_itemtype String The Item_itemtype field of the STKitDocumentEntry object.
Item_numdec_sale String The Item_numdec_sale field of the STKitDocumentEntry object.
Item_numdec_std String The Item_numdec_std field of the STKitDocumentEntry object.
Item_numdec_pur String The Item_numdec_pur field of the STKitDocumentEntry object.
Item_revposting String The Item_revposting field of the STKitDocumentEntry object.
Item_computeforshortterm Boolean The Item_computeforshortterm field of the STKitDocumentEntry object.
Item_renewalmacrokey Int64 The Item_renewalmacrokey field of the STKitDocumentEntry object.
Item_uomgrpkey Int64 The Item_uomgrpkey field of the STKitDocumentEntry object.
Discount_memo String The Discount_memo field of the STKitDocumentEntry object.
Item_revprinting String The Item_revprinting field of the STKitDocumentEntry object.
Currency String The Currency field of the STKitDocumentEntry object.
Exchratedate Datetime The Exchratedate field of the STKitDocumentEntry object.
Exchratetype String The Exchratetype field of the STKitDocumentEntry object.
Exchrate Double The Exchrate field of the STKitDocumentEntry object.
Trx_price Double The Trx_price field of the STKitDocumentEntry object.
Trx_value Double The Trx_value field of the STKitDocumentEntry object.
Schedulename String The Schedulename field of the STKitDocumentEntry object.
Scheduleid String The Scheduleid field of the STKitDocumentEntry object.
Recurdocid String The Recurdocid field of the STKitDocumentEntry object.
Recurdocentrykey Int64 The Recurdocentrykey field of the STKitDocumentEntry object.
Renewalmacro String The Renewalmacro field of the STKitDocumentEntry object.
Renewalmacrokey String The Renewalmacrokey field of the STKitDocumentEntry object.
Overridetax Boolean The Overridetax field of the STKitDocumentEntry object.
Sc_createrecursched String The Sc_createrecursched field of the STKitDocumentEntry object.
Sc_existingsched String The Sc_existingsched field of the STKitDocumentEntry object.
Sc_extendlineperiod Boolean The Sc_extendlineperiod field of the STKitDocumentEntry object.
Sc_installpricing Boolean The Sc_installpricing field of the STKitDocumentEntry object.
Recurcontractid String The Recurcontractid field of the STKitDocumentEntry object.
Source_docid String The Source_docid field of the STKitDocumentEntry object.
Billable Boolean The Billable field of the STKitDocumentEntry object.
Billed Boolean The Billed field of the STKitDocumentEntry object.
Billabletimeentrykey Int64 The Billabletimeentrykey field of the STKitDocumentEntry object.
Billableprentrykey Int64 The Billableprentrykey field of the STKitDocumentEntry object.
Billabledocentrykey Int64 The Billabledocentrykey field of the STKitDocumentEntry object.
Percentval Double The Percentval field of the STKitDocumentEntry object.
Taxabsval Double The Taxabsval field of the STKitDocumentEntry object.
Taxableamount Double The Taxableamount field of the STKitDocumentEntry object.
Linetotal Double The Linetotal field of the STKitDocumentEntry object.
Discount Double The Discount field of the STKitDocumentEntry object.
Trx_taxabsval Double The Trx_taxabsval field of the STKitDocumentEntry object.
Trx_linetotal Double The Trx_linetotal field of the STKitDocumentEntry object.
Taxvaloverride Boolean The Taxvaloverride field of the STKitDocumentEntry object.
Projectkey String The Projectkey field of the STKitDocumentEntry object.
Projectname String The Projectname field of the STKitDocumentEntry object.
Taskkey String The Taskkey field of the STKitDocumentEntry object.
Taskname String The Taskname field of the STKitDocumentEntry object.
Projectdimkey Int64 The Projectdimkey field of the STKitDocumentEntry object.
Projectid String The Projectid field of the STKitDocumentEntry object.
Record_url String The Record_url field of the STKitDocumentEntry object.

Subscriptions

Subscriptions data.

Columns
Name Type Description
application String

TerritoryGrpMember

Retrieves TerritoryGrpMember report data.

Columns
Name Type Description
Recordno [KEY] String The Recordno field of the TerritoryGrpMember object.
Groupkey Int64 The Groupkey field of the TerritoryGrpMember object.
Territory String The Territory field of the TerritoryGrpMember object.
Sortord Int64 The Sortord field of the TerritoryGrpMember object.
Whencreated Datetime The Whencreated field of the TerritoryGrpMember object.
Whenmodified Datetime The Whenmodified field of the TerritoryGrpMember object.
Createdby Int64 The Createdby field of the TerritoryGrpMember object.
Modifiedby Int64 The Modifiedby field of the TerritoryGrpMember object.
Record_url String The Record_url field of the TerritoryGrpMember object.

TimesheetEntry

Retrieves TimesheetEntry report data.

Columns
Name Type Description
Recordno [KEY] String The Recordno field of the TimesheetEntry object.
Lineno Int64 The Lineno field of the TimesheetEntry object.
Timesheetkey Int64 The Timesheetkey field of the TimesheetEntry object.
Projectkey Int64 The Projectkey field of the TimesheetEntry object.
Projectid String The Projectid field of the TimesheetEntry object.
Projectname String The Projectname field of the TimesheetEntry object.
Project_classid String The Project_classid field of the TimesheetEntry object.
Taskkey Int64 The Taskkey field of the TimesheetEntry object.
Taskname String The Taskname field of the TimesheetEntry object.
Task_classid String The Task_classid field of the TimesheetEntry object.
Customerkey Int64 The Customerkey field of the TimesheetEntry object.
Customerid String The Customerid field of the TimesheetEntry object.
Customername String The Customername field of the TimesheetEntry object.
Itemkey Int64 The Itemkey field of the TimesheetEntry object.
Itemid String The Itemid field of the TimesheetEntry object.
Itemname String The Itemname field of the TimesheetEntry object.
Entrydate Datetime The Entrydate field of the TimesheetEntry object.
Qty Double The Qty field of the TimesheetEntry object.
Description String The Description field of the TimesheetEntry object.
Notes String The Notes field of the TimesheetEntry object.
State String The State field of the TimesheetEntry object.
Locationkey Int64 The Locationkey field of the TimesheetEntry object.
Locationid String The Locationid field of the TimesheetEntry object.
Locationname String The Locationname field of the TimesheetEntry object.
Departmentkey Int64 The Departmentkey field of the TimesheetEntry object.
Departmentid String The Departmentid field of the TimesheetEntry object.
Departmentname String The Departmentname field of the TimesheetEntry object.
Timetypekey Int64 The Timetypekey field of the TimesheetEntry object.
Timetype String The Timetype field of the TimesheetEntry object.
Timetype_earningtypekey Int64 The Timetype_earningtypekey field of the TimesheetEntry object.
Timetype_glaccountkey Int64 The Timetype_glaccountkey field of the TimesheetEntry object.
Timetype_gloffsetaccountkey Int64 The Timetype_gloffsetaccountkey field of the TimesheetEntry object.
Billable Boolean The Billable field of the TimesheetEntry object.
Billed String The Billed field of the TimesheetEntry object.
Employeedimkey Int64 The Employeedimkey field of the TimesheetEntry object.
Employeeid String The Employeeid field of the TimesheetEntry object.
Employeename String The Employeename field of the TimesheetEntry object.
Employee_earningtypekey Int64 The Employee_earningtypekey field of the TimesheetEntry object.
Ts_begindate Datetime The Ts_begindate field of the TimesheetEntry object.
Ts_enddate Datetime The Ts_enddate field of the TimesheetEntry object.
Ts_locationkey Int64 The Ts_locationkey field of the TimesheetEntry object.
Ts_locationid String The Ts_locationid field of the TimesheetEntry object.
Statjournalkey Int64 The Statjournalkey field of the TimesheetEntry object.
Billuacctkey Int64 The Billuacctkey field of the TimesheetEntry object.
Nonbilluacctkey Int64 The Nonbilluacctkey field of the TimesheetEntry object.
Billnuacctkey Int64 The Billnuacctkey field of the TimesheetEntry object.
Nonbillnuacctkey Int64 The Nonbillnuacctkey field of the TimesheetEntry object.
Statglbatchkey Int64 The Statglbatchkey field of the TimesheetEntry object.
Statglentrylineno Int64 The Statglentrylineno field of the TimesheetEntry object.
Laborglbatchkey Int64 The Laborglbatchkey field of the TimesheetEntry object.
Laborglentrylineno Int64 The Laborglentrylineno field of the TimesheetEntry object.
Laborglentryoffsetlineno Int64 The Laborglentryoffsetlineno field of the TimesheetEntry object.
Laborglentryamount Double The Laborglentryamount field of the TimesheetEntry object.
Laborglentrytrxamount Double The Laborglentrytrxamount field of the TimesheetEntry object.
Laborglentrycostrate Double The Laborglentrycostrate field of the TimesheetEntry object.
Statglentryamount Double The Statglentryamount field of the TimesheetEntry object.
Varglentryamount Double The Varglentryamount field of the TimesheetEntry object.
Varglentrytrxamount Double The Varglentrytrxamount field of the TimesheetEntry object.
Varglbatchkey Int64 The Varglbatchkey field of the TimesheetEntry object.
Varglentrylineno Int64 The Varglentrylineno field of the TimesheetEntry object.
Varglentryoffsetlineno Int64 The Varglentryoffsetlineno field of the TimesheetEntry object.
Clznamount Double The Clznamount field of the TimesheetEntry object.
Extcostrate String The Extcostrate field of the TimesheetEntry object.
Extbillrate String The Extbillrate field of the TimesheetEntry object.
Whencreated Datetime The Whencreated field of the TimesheetEntry object.
Whenmodified Datetime The Whenmodified field of the TimesheetEntry object.
Createdby Int64 The Createdby field of the TimesheetEntry object.
Modifiedby Int64 The Modifiedby field of the TimesheetEntry object.
Projectdimkey Int64 The Projectdimkey field of the TimesheetEntry object.
Vendordimkey Int64 The Vendordimkey field of the TimesheetEntry object.
Vendorid String The Vendorid field of the TimesheetEntry object.
Vendorname String The Vendorname field of the TimesheetEntry object.
Classdimkey Int64 The Classdimkey field of the TimesheetEntry object.
Classid String The Classid field of the TimesheetEntry object.
Classname String The Classname field of the TimesheetEntry object.
Record_url String The Record_url field of the TimesheetEntry object.

TransTmplBatch

Retrieves TransTmplBatch report data.

Columns
Name Type Description
Recordno [KEY] String The Recordno field of the TransTmplBatch object.
Templateid String The Templateid field of the TransTmplBatch object.
Status String The Status field of the TransTmplBatch object.
Gljournalname String The Gljournalname field of the TransTmplBatch object.
Gljournalkey String The Gljournalkey field of the TransTmplBatch object.
Offsetacctno String The Offsetacctno field of the TransTmplBatch object.
Offsetacctkey String The Offsetacctkey field of the TransTmplBatch object.
Description String The Description field of the TransTmplBatch object.
Whencreated Datetime The Whencreated field of the TransTmplBatch object.
Whenmodified Datetime The Whenmodified field of the TransTmplBatch object.
Createdby Int64 The Createdby field of the TransTmplBatch object.
Modifiedby Int64 The Modifiedby field of the TransTmplBatch object.
Megaentitykey Int64 The Megaentitykey field of the TransTmplBatch object.
Megaentityid String The Megaentityid field of the TransTmplBatch object.
Megaentityname String The Megaentityname field of the TransTmplBatch object.
Record_url String The Record_url field of the TransTmplBatch object.

TransTmplEntry

Retrieves TransTmplEntry report data.

Columns
Name Type Description
Recordno [KEY] String The Recordno field of the TransTmplEntry object.
Status String The Status field of the TransTmplEntry object.
Glacctkey String The Glacctkey field of the TransTmplEntry object.
Label String The Label field of the TransTmplEntry object.
Department String The Department field of the TransTmplEntry object.
Departmentkey String The Departmentkey field of the TransTmplEntry object.
Location String The Location field of the TransTmplEntry object.
Locationkey String The Locationkey field of the TransTmplEntry object.
Tr_type String The Tr_type field of the TransTmplEntry object.
Projectdimkey Int64 The Projectdimkey field of the TransTmplEntry object.
Projectid String The Projectid field of the TransTmplEntry object.
Projectname String The Projectname field of the TransTmplEntry object.
Customerdimkey Int64 The Customerdimkey field of the TransTmplEntry object.
Customerid String The Customerid field of the TransTmplEntry object.
Customername String The Customername field of the TransTmplEntry object.
Vendordimkey Int64 The Vendordimkey field of the TransTmplEntry object.
Vendorid String The Vendorid field of the TransTmplEntry object.
Vendorname String The Vendorname field of the TransTmplEntry object.
Employeedimkey Int64 The Employeedimkey field of the TransTmplEntry object.
Employeeid String The Employeeid field of the TransTmplEntry object.
Employeename String The Employeename field of the TransTmplEntry object.
Itemdimkey Int64 The Itemdimkey field of the TransTmplEntry object.
Itemid String The Itemid field of the TransTmplEntry object.
Itemname String The Itemname field of the TransTmplEntry object.
Classdimkey Int64 The Classdimkey field of the TransTmplEntry object.
Classid String The Classid field of the TransTmplEntry object.
Classname String The Classname field of the TransTmplEntry object.
Record_url String The Record_url field of the TransTmplEntry object.

TrialBalances

Retrieves TrialBalances data.

Table Specific Information

To retrieve LocationID and DepartmentId information from the TrialBalances table, Sage Intacct needs to have ShowLocationDetail and ShowDepartmentDetail set to true. In SQL, that means that:

select * from trialbalances where ShowLocationDetail=true and ShowDepartmentDetail=true
Columns
Name Type Description
Reportingperiodname String The Reportingperiodname field of the TrialBalances object.
Glaccountno String The Glaccountno field of the TrialBalances object.
Startbalance Double The Startbalance field of the TrialBalances object.
Debits Double The Debits field of the TrialBalances object.
Credits Double The Credits field of the TrialBalances object.
Adjdebits Double The Adjdebits field of the TrialBalances object.
Adjcredits Double The Adjcredits field of the TrialBalances object.
Endbalance Double The Endbalance field of the TrialBalances object.
Reportingbook String The Reportingbook field of the TrialBalances object.
Currency String The Currency field of the TrialBalances object.
Locationid String The Locationid field of the TrialBalances object.
Departmentid String The Departmentid field of the TrialBalances object.
Pseudo-Columns
Name Type Description
StartDate String Required if ReportingPeriodName is not set.
EndDate String Required if ReportingPeriodName is not set.
ShowZeroBalances String Show zero balance accounts. Use true or false. (Default: false)
ShowDepartmentDetail String Expand department detail. Use true or false. (Default: false)
ShowLocationDetail String Expand location detail. Use true or false. (Default: false)

TrialBalancesDepartmentDetail

Trial Balance view with department detail data.

Columns
Name Type Description
reportingperiodname String
glaccountno String
startbalance Double
debits Double
credits Double
adjdebits Double
adjcredits Double
endbalance Double
reportingbook String
currency String
locationid String
departmentid String
Pseudo-Columns
Name Type Description
StartDate String Required if ReportingPeriodName is not set.
EndDate String Required if ReportingPeriodName is not set.
ShowZeroBalances String Show zero balance accounts. Use true or false. (Default: false)
ShowDepartmentDetail String Expand department detail. Use true or false. (Default: true)
ShowLocationDetail String Expand location detail. Use true or false. (Default: false)

TrialBalancesLocationDetail

Trial balance view with location detail data.

Columns
Name Type Description
reportingperiodname String
glaccountno String
startbalance Double
debits Double
credits Double
adjdebits Double
adjcredits Double
endbalance Double
reportingbook String
currency String
locationid String
departmentid String
Pseudo-Columns
Name Type Description
StartDate String Required if ReportingPeriodName is not set.
EndDate String Required if ReportingPeriodName is not set.
ShowZeroBalances String Show zero balance accounts. Use true or false. (Default: false)
ShowDepartmentDetail String Expand department detail. Use true or false. (Default: false)
ShowLocationDetail String Expand location detail. Use true or false. (Default: true)

UoMDetail

Retrieves UoMDetail report data.

Columns
Name Type Description
Recordno [KEY] Int64 The Recordno field of the UoMDetail object.
Unit String The Unit field of the UoMDetail object.
Abbreviation String The Abbreviation field of the UoMDetail object.
Grpkey Int64 The Grpkey field of the UoMDetail object.
Convfactor Double The Convfactor field of the UoMDetail object.
Numdecimals Int64 The Numdecimals field of the UoMDetail object.
Isbase Boolean The Isbase field of the UoMDetail object.
Whencreated Datetime The Whencreated field of the UoMDetail object.
Whenmodified Datetime The Whenmodified field of the UoMDetail object.
Createdby Int64 The Createdby field of the UoMDetail object.
Modifiedby Int64 The Modifiedby field of the UoMDetail object.
Record_url String The Record_url field of the UoMDetail object.

UserRights

Retrieves UserRights report data.

Columns
Name Type Description
Recordno [KEY] String The Recordno field of the UserRights object.
Userkey Int64 The Userkey field of the UserRights object.
Application String The Application field of the UserRights object.
Policy String The Policy field of the UserRights object.
Rights String The Rights field of the UserRights object.
Whencreated Datetime The Whencreated field of the UserRights object.
Whenmodified Datetime The Whenmodified field of the UserRights object.
Createdby Int64 The Createdby field of the UserRights object.
Modifiedby Int64 The Modifiedby field of the UserRights object.
Record_url String The Record_url field of the UserRights object.

WfpmPaymentRequest

Retrieves WfpmPaymentRequest report data.

Columns
Name Type Description
Recordno [KEY] String The Recordno field of the WfpmPaymentRequest object.
Prbatchkey Int64 The Prbatchkey field of the WfpmPaymentRequest object.
Recordtype String The Recordtype field of the WfpmPaymentRequest object.
Description String The Description field of the WfpmPaymentRequest object.
Totalentered Double The Totalentered field of the WfpmPaymentRequest object.
Totalpaid Double The Totalpaid field of the WfpmPaymentRequest object.
Totalselected Double The Totalselected field of the WfpmPaymentRequest object.
Totaldue Double The Totaldue field of the WfpmPaymentRequest object.
State String The State field of the WfpmPaymentRequest object.
Whencreated Datetime The Whencreated field of the WfpmPaymentRequest object.
Whenpaid Datetime The Whenpaid field of the WfpmPaymentRequest object.
Termkey Int64 The Termkey field of the WfpmPaymentRequest object.
Termname String The Termname field of the WfpmPaymentRequest object.
Whendiscount Datetime The Whendiscount field of the WfpmPaymentRequest object.
Recordid String The Recordid field of the WfpmPaymentRequest object.
Userkey Int64 The Userkey field of the WfpmPaymentRequest object.
Whendue Datetime The Whendue field of the WfpmPaymentRequest object.
Docnumber String The Docnumber field of the WfpmPaymentRequest object.
Cleared String The Cleared field of the WfpmPaymentRequest object.
Clrdate Datetime The Clrdate field of the WfpmPaymentRequest object.
Modulekey String The Modulekey field of the WfpmPaymentRequest object.
Status String The Status field of the WfpmPaymentRequest object.
Systemgenerated String The Systemgenerated field of the WfpmPaymentRequest object.
Whenposted Datetime The Whenposted field of the WfpmPaymentRequest object.
Onhold Boolean The Onhold field of the WfpmPaymentRequest object.
Currency String The Currency field of the WfpmPaymentRequest object.
Trx_totalentered Double The Trx_totalentered field of the WfpmPaymentRequest object.
Trx_totalpaid Double The Trx_totalpaid field of the WfpmPaymentRequest object.
Trx_totalselected Double The Trx_totalselected field of the WfpmPaymentRequest object.
Trx_totaldue Double The Trx_totaldue field of the WfpmPaymentRequest object.
Deliverymethod String The Deliverymethod field of the WfpmPaymentRequest object.
Recon_date Datetime The Recon_date field of the WfpmPaymentRequest object.
Basecurr String The Basecurr field of the WfpmPaymentRequest object.
Locationkey Int64 The Locationkey field of the WfpmPaymentRequest object.
Auwhencreated Datetime The Auwhencreated field of the WfpmPaymentRequest object.
Whenmodified Datetime The Whenmodified field of the WfpmPaymentRequest object.
Createdby Int64 The Createdby field of the WfpmPaymentRequest object.
Modifiedby Int64 The Modifiedby field of the WfpmPaymentRequest object.
Nr_totalentered Double The Nr_totalentered field of the WfpmPaymentRequest object.
Nr_trx_totalentered Double The Nr_trx_totalentered field of the WfpmPaymentRequest object.
Paymenttype String The Paymenttype field of the WfpmPaymentRequest object.
Paymentdate Datetime The Paymentdate field of the WfpmPaymentRequest object.
Receiptdate Datetime The Receiptdate field of the WfpmPaymentRequest object.
Paymentamount Double The Paymentamount field of the WfpmPaymentRequest object.
Documentnumber String The Documentnumber field of the WfpmPaymentRequest object.
Memo String The Memo field of the WfpmPaymentRequest object.
Financialaccount String The Financialaccount field of the WfpmPaymentRequest object.
Vendorname String The Vendorname field of the WfpmPaymentRequest object.
Vendorid String The Vendorid field of the WfpmPaymentRequest object.
Megaentitykey Int64 The Megaentitykey field of the WfpmPaymentRequest object.
Megaentityid String The Megaentityid field of the WfpmPaymentRequest object.
Record_url String The Record_url field of the WfpmPaymentRequest object.

Stored Procedures

Stored procedures are function-like interfaces that extend the functionality of the connector beyond simple SELECT/INSERT/UPDATE/DELETE operations with Sage Intacct.

Stored procedures accept a list of parameters, perform their intended function, and then return any relevant response data from Sage Intacct, along with an indication of whether the procedure succeeded or failed.

Sage Intacct Connector Stored Procedures

Name Description
CreateAttachment Create an attachment.
CreateCustomReportSchema Creates a schema file for the specified custom report.
CreateSchema Creates a schema file for the specified table or view.
GetCustomFields Retrieves custom fields and values from a table / record.
GetDimensionRestrictedData Lists the IDs of related dimensions that are the targets of to-many relationships from a single source dimension.
GetKeys Retrieves a list of keys in an object.
GetRelationshipColumns Sets relationship columns in Intacct.
GetUserDateTimePreferences Obtains Date and Time preferences for a specified user.
SetRelationship Sets relationship columns in Intacct.
UpdateAttachment Updates the attachment Table.

CreateAttachment

Create an attachment.

Input
Name Type Description
SupDocId String The ID of the attachment supdoc
SupDocName String The name of the supdoc
SupDocFolderName String The name of the attachment folder
SupDocDescription String Description of the attachment
AttachmentName String The attachment Name
AttachmentType String The attachment Type
AttachmentData String Attachment data encoded in base64
Result Set Columns
Name Type Description
Result String Returns Success or Failure.

CreateCustomReportSchema

Creates a schema file for the specified custom report.

Input
Name Type Accepts Output Streams Description
ReportName String False The name of the custom report.
FileName String False The name of the schema file that is generated, leaving this field blank returns a base64 encoded binary output. To change the default schema directory, update the Locations property Ex : Locations='C:\Users\User\Desktop\SageIntacct\CustomSchemaDirectory\.
InteractiveType String False Defaults to false. Whether the custom report was created using Interactive Custom Report Writer.
FileStream String True OutputStream to write the created schema.
Result Set Columns
Name Type Description
Result String Returns Success or Failure.
FileData String The generated schema encoded in base64. Only returned if FileName is not set.

CreateSchema

Creates a schema file for the specified table or view.

CreateSchema

Creates a local schema file (.rsd) from an existing table or view in the data model.

The schema file is created in the directory set in the Location connection property when this procedure is executed. You can edit the file to include or exclude columns, rename columns, or adjust column datatypes.

The connector checks the Location to determine if the names of any .rsd files match a table or view in the data model. If there is a duplicate, the schema file will take precedence over the default instance of this table in the data model. If a schema file is present in Location that does not match an existing table or view, a new table or view entry is added to the data model of the connector.

Input
Name Type Accepts Output Streams Description
TableName String False The name of the table or view.
FileName String False The name of the schema file that is generated, leaving this field blank returns a base64 encoded binary output. To change the default schema directory, update the Locations property Ex : Locations='C:\Users\User\Desktop\SageIntacct\CustomSchemaDirectory\.
DocParId String False Name of a document type. Used to retrieve custom fields for that document type
FileStream String True OutputStream to write the created schema.
Result Set Columns
Name Type Description
Result String Returns Success or Failure.
FileData String The generated schema encoded in base64. Only returned if FileName is not set.

GetCustomFields

Retrieves custom fields and values from a table / record.

Input
Name Type Description
Object String The table to query for custom fields and values eg. Object=employee_table. required=
Key String The primary key for a specific record's custom fields and values eg. key=recordno or key=name. required=
Result Set Columns
Name Type Description
\* String Outputs the custom fields and values eg. customfieldname=customfieldvalue.

GetDimensionRestrictedData

Lists the IDs of related dimensions that are the targets of to-many relationships from a single source dimension.

Stored Procedure Specific Information

Note

This stored procedure will only list OneToMany and ManyToMany relationship types.

To get the OneToOne and ManyToOne related record keys, you can directly query the source table, and the relationship column should contain the keys of the related records.

To figure out the relationship fields for a certain table (Sage Intacct object), you can call the GetRelationshipColumns with the TableName input parameter set to the object name.

Helpful information on the dimension type objects and their relationships can be found by querying the tables below.

  • Dimensions: Useful to list all the available dimension type objects.
  • DimensionRelationships: Useful to get information on the available relationships between dimension type objects.
Input
Name Type Description
Dimension String The source dimension object name for which to list the related dimension records.
Key String The ID of the source dimension record for which to list the related dimension records.
Result Set Columns
Name Type Description
RelatedDimension String Name of the related standard dimension or UDD that is the target of a to-many relationship.
RelatedRecordKey String IDs for the related dimension values that are the targets of to-many relationships

GetKeys

Retrieves a list of keys in an object.

Input
Name Type Description
Object String The table containing the relationship column to set.
Result Set Columns
Name Type Description
Key String Output the results from the call.

GetRelationshipColumns

Sets relationship columns in Intacct.

Input
Name Type Description
TableName String The table containing the relationship columns to retrieve.
Result Set Columns
Name Type Description
Id String The ID of the relationship column.
Name String The name of the relationship column.
Relationship String A description of the relationship column.
RelatedObject String The object that is related to this column

GetUserDateTimePreferences

Obtains Date and Time preferences for a specified user.

Input
Name Type Description
UserID String The UserID (User)
Result Set Columns
Name Type Description
Locale String The Locale field
DateFormat String The DateFormat field
GmtOffset String The GMT Offset field
Clock String The Clock field

SetRelationship

Sets relationship columns in Intacct.

Input
Name Type Description
TableName String The table containing the relationship column to set.
Id String The ID of the record to apply the relationship to.
RelationshipColumn String The name of the relationship column.
RelationshipValue String The value to apply to the relationship column.
Result Set Columns
Name Type Description
Success String A boolean indicating if the operation was successful.

UpdateAttachment

Updates the attachment Table.

Input
Name Type Description
SupDocId String The ID of the attachment supdoc
SupDocName String The name of the supdoc
SupDocFolderName String The name of the attachment folder
SupDocDescription String Description of the attachment
AttachmentName String The attachment Name
AttachmentType String The attachment Type
AttachmentData String Attachment data encoded in base64
Result Set Columns
Name Type Description
Result String Returns Success or Failure.

System Tables

You can query the system tables described in this section to access schema information, information on data source functionality, and batch operation statistics.

Schema Tables

The following tables return database metadata for Sage Intacct:

Data Source Tables

The following tables return information about how to connect to and query the data source:

  • sys_connection_props: Returns information on the available connection properties.
  • sys_sqlinfo: Describes the SELECT queries that the connector can offload to the data source.

Query Information Tables

The following table returns query statistics for data modification queries, including batch operations:

  • sys_identity: Returns information about batch operations or single updates.

sys_catalogs

Lists the available databases.

The following query retrieves all databases determined by the connection string:

SELECT * FROM sys_catalogs
Columns
Name Type Description
CatalogName String The database name.

sys_schemas

Lists the available schemas.

The following query retrieves all available schemas:

SELECT * FROM sys_schemas
Columns
Name Type Description
CatalogName String The database name.
SchemaName String The schema name.

sys_tables

Lists the available tables.

The following query retrieves the available tables and views:

SELECT * FROM sys_tables
Columns
Name Type Description
CatalogName String The database containing the table or view.
SchemaName String The schema containing the table or view.
TableName String The name of the table or view.
TableType String The table type (table or view).
Description String A description of the table or view.
IsUpdateable Boolean Whether the table can be updated.

sys_tablecolumns

Describes the columns of the available tables and views.

The following query returns the columns and data types for the Customer table:

SELECT ColumnName, DataTypeName FROM sys_tablecolumns WHERE TableName='Customer'
Columns
Name Type Description
CatalogName String The name of the database containing the table or view.
SchemaName String The schema containing the table or view.
TableName String The name of the table or view containing the column.
ColumnName String The column name.
DataTypeName String The data type name.
DataType Int32 An integer indicating the data type. This value is determined at run time based on the environment.
Length Int32 The storage size of the column.
DisplaySize Int32 The designated column's normal maximum width in characters.
NumericPrecision Int32 The maximum number of digits in numeric data. The column length in characters for character and date-time data.
NumericScale Int32 The column scale or number of digits to the right of the decimal point.
IsNullable Boolean Whether the column can contain null.
Description String A brief description of the column.
Ordinal Int32 The sequence number of the column.
IsAutoIncrement String Whether the column value is assigned in fixed increments.
IsGeneratedColumn String Whether the column is generated.
IsHidden Boolean Whether the column is hidden.
IsArray Boolean Whether the column is an array.

sys_procedures

Lists the available stored procedures.

The following query retrieves the available stored procedures:

SELECT * FROM sys_procedures
Columns
Name Type Description
CatalogName String The database containing the stored procedure.
SchemaName String The schema containing the stored procedure.
ProcedureName String The name of the stored procedure.
Description String A description of the stored procedure.
ProcedureType String The type of the procedure, such as PROCEDURE or FUNCTION.

sys_procedureparameters

Describes stored procedure parameters.

The following query returns information about all of the input parameters for the SelectEntries stored procedure:

SELECT * FROM sys_procedureparameters WHERE ProcedureName='SelectEntries' AND Direction=1 OR Direction=2
Columns
Name Type Description
CatalogName String The name of the database containing the stored procedure.
SchemaName String The name of the schema containing the stored procedure.
ProcedureName String The name of the stored procedure containing the parameter.
ColumnName String The name of the stored procedure parameter.
Direction Int32 An integer corresponding to the type of the parameter: input (1), input/output (2), or output(4). input/output type parameters can be both input and output parameters.
DataTypeName String The name of the data type.
DataType Int32 An integer indicating the data type. This value is determined at run time based on the environment.
Length Int32 The number of characters allowed for character data. The number of digits allowed for numeric data.
NumericPrecision Int32 The maximum precision for numeric data. The column length in characters for character and date-time data.
NumericScale Int32 The number of digits to the right of the decimal point in numeric data.
IsNullable Boolean Whether the parameter can contain null.
IsRequired Boolean Whether the parameter is required for execution of the procedure.
IsArray Boolean Whether the parameter is an array.
Description String The description of the parameter.
Ordinal Int32 The index of the parameter.

sys_keycolumns

Describes the primary and foreign keys.

The following query retrieves the primary key for the Customer table:

SELECT * FROM sys_keycolumns WHERE IsKey='True' AND TableName='Customer'
Columns
Name Type Description
CatalogName String The name of the database containing the key.
SchemaName String The name of the schema containing the key.
TableName String The name of the table containing the key.
ColumnName String The name of the key column.
IsKey Boolean Whether the column is a primary key in the table referenced in the TableName field.
IsForeignKey Boolean Whether the column is a foreign key referenced in the TableName field.
PrimaryKeyName String The name of the primary key.
ForeignKeyName String The name of the foreign key.
ReferencedCatalogName String The database containing the primary key.
ReferencedSchemaName String The schema containing the primary key.
ReferencedTableName String The table containing the primary key.
ReferencedColumnName String The column name of the primary key.

sys_foreignkeys

Describes the foreign keys.

The following query retrieves all foreign keys which refer to other tables:

SELECT * FROM sys_foreignkeys WHERE ForeignKeyType = 'FOREIGNKEY_TYPE_IMPORT'
Columns
Name Type Description
CatalogName String The name of the database containing the key.
SchemaName String The name of the schema containing the key.
TableName String The name of the table containing the key.
ColumnName String The name of the key column.
PrimaryKeyName String The name of the primary key.
ForeignKeyName String The name of the foreign key.
ReferencedCatalogName String The database containing the primary key.
ReferencedSchemaName String The schema containing the primary key.
ReferencedTableName String The table containing the primary key.
ReferencedColumnName String The column name of the primary key.
ForeignKeyType String Designates whether the foreign key is an import (points to other tables) or export (referenced from other tables) key.

sys_primarykeys

Describes the primary keys.

The following query retrieves the primary keys from all tables and views:

SELECT * FROM sys_primarykeys
Columns
Name Type Description
CatalogName String The name of the database containing the key.
SchemaName String The name of the schema containing the key.
TableName String The name of the table containing the key.
ColumnName String The name of the key column.
KeySeq String The sequence number of the primary key.
KeyName String The name of the primary key.

sys_indexes

Describes the available indexes. By filtering on indexes, you can write more selective queries with faster query response times.

The following query retrieves all indexes that are not primary keys:

SELECT * FROM sys_indexes WHERE IsPrimary='false'
Columns
Name Type Description
CatalogName String The name of the database containing the index.
SchemaName String The name of the schema containing the index.
TableName String The name of the table containing the index.
IndexName String The index name.
ColumnName String The name of the column associated with the index.
IsUnique Boolean True if the index is unique. False otherwise.
IsPrimary Boolean True if the index is a primary key. False otherwise.
Type Int16 An integer value corresponding to the index type: statistic (0), clustered (1), hashed (2), or other (3).
SortOrder String The sort order: A for ascending or D for descending.
OrdinalPosition Int16 The sequence number of the column in the index.

sys_connection_props

Returns information on the available connection properties and those set in the connection string.

When querying this table, the config connection string should be used:

jdbc:cdata:sageintacct:config:

This connection string enables you to query this table without a valid connection.

The following query retrieves all connection properties that have been set in the connection string or set through a default value:

SELECT * FROM sys_connection_props WHERE Value <> ''
Columns
Name Type Description
Name String The name of the connection property.
ShortDescription String A brief description.
Type String The data type of the connection property.
Default String The default value if one is not explicitly set.
Values String A comma-separated list of possible values. A validation error is thrown if another value is specified.
Value String The value you set or a preconfigured default.
Required Boolean Whether the property is required to connect.
Category String The category of the connection property.
IsSessionProperty String Whether the property is a session property, used to save information about the current connection.
Sensitivity String The sensitivity level of the property. This informs whether the property is obfuscated in logging and authentication forms.
PropertyName String A camel-cased truncated form of the connection property name.
Ordinal Int32 The index of the parameter.
CatOrdinal Int32 The index of the parameter category.
Hierarchy String Shows dependent properties associated that need to be set alongside this one.
Visible Boolean Informs whether the property is visible in the connection UI.
ETC String Various miscellaneous information about the property.

sys_sqlinfo

Describes the SELECT query processing that the connector can offload to the data source.

Discovering the Data Source's SELECT Capabilities

Below is an example data set of SQL capabilities. Some aspects of SELECT functionality are returned in a comma-separated list if supported; otherwise, the column contains NO.

Name Description Possible Values
AGGREGATE_FUNCTIONS Supported aggregation functions. AVG, COUNT, MAX, MIN, SUM, DISTINCT
COUNT Whether COUNT function is supported. YES, NO
IDENTIFIER_QUOTE_OPEN_CHAR The opening character used to escape an identifier. [
IDENTIFIER_QUOTE_CLOSE_CHAR The closing character used to escape an identifier. ]
SUPPORTED_OPERATORS A list of supported SQL operators. =, >, <, >=, <=, <>, !=, LIKE, NOT LIKE, IN, NOT IN, IS NULL, IS NOT NULL, AND, OR
GROUP_BY Whether GROUP BY is supported, and, if so, the degree of support. NO, NO_RELATION, EQUALS_SELECT, SQL_GB_COLLATE
STRING_FUNCTIONS Supported string functions. LENGTH, CHAR, LOCATE, REPLACE, SUBSTRING, RTRIM, LTRIM, RIGHT, LEFT, UCASE, SPACE, SOUNDEX, LCASE, CONCAT, ASCII, REPEAT, OCTET, BIT, POSITION, INSERT, TRIM, UPPER, REGEXP, LOWER, DIFFERENCE, CHARACTER, SUBSTR, STR, REVERSE, PLAN, UUIDTOSTR, TRANSLATE, TRAILING, TO, STUFF, STRTOUUID, STRING, SPLIT, SORTKEY, SIMILAR, REPLICATE, PATINDEX, LPAD, LEN, LEADING, KEY, INSTR, INSERTSTR, HTML, GRAPHICAL, CONVERT, COLLATION, CHARINDEX, BYTE
NUMERIC_FUNCTIONS Supported numeric functions. ABS, ACOS, ASIN, ATAN, ATAN2, CEILING, COS, COT, EXP, FLOOR, LOG, MOD, SIGN, SIN, SQRT, TAN, PI, RAND, DEGREES, LOG10, POWER, RADIANS, ROUND, TRUNCATE
TIMEDATE_FUNCTIONS Supported date/time functions. NOW, CURDATE, DAYOFMONTH, DAYOFWEEK, DAYOFYEAR, MONTH, QUARTER, WEEK, YEAR, CURTIME, HOUR, MINUTE, SECOND, TIMESTAMPADD, TIMESTAMPDIFF, DAYNAME, MONTHNAME, CURRENT_DATE, CURRENT_TIME, CURRENT_TIMESTAMP, EXTRACT
REPLICATION_SKIP_TABLES Indicates tables skipped during replication.
REPLICATION_TIMECHECK_COLUMNS A string array containing a list of columns which will be used to check for (in the given order) to use as a modified column during replication.
IDENTIFIER_PATTERN String value indicating what string is valid for an identifier.
SUPPORT_TRANSACTION Indicates if the provider supports transactions such as commit and rollback. YES, NO
DIALECT Indicates the SQL dialect to use.
KEY_PROPERTIES Indicates the properties which identify the uniform database.
SUPPORTS_MULTIPLE_SCHEMAS Indicates if multiple schemas may exist for the provider. YES, NO
SUPPORTS_MULTIPLE_CATALOGS Indicates if multiple catalogs may exist for the provider. YES, NO
DATASYNCVERSION The Data Sync version needed to access this driver. Standard, Starter, Professional, Enterprise
DATASYNCCATEGORY The Data Sync category of this driver. Source, Destination, Cloud Destination
SUPPORTSENHANCEDSQL Whether enhanced SQL functionality beyond what is offered by the API is supported. TRUE, FALSE
SUPPORTS_BATCH_OPERATIONS Whether batch operations are supported. YES, NO
SQL_CAP All supported SQL capabilities for this driver. SELECT, INSERT, DELETE, UPDATE, TRANSACTIONS, ORDERBY, OAUTH, ASSIGNEDID, LIMIT, LIKE, BULKINSERT, COUNT, BULKDELETE, BULKUPDATE, GROUPBY, HAVING, AGGS, OFFSET, REPLICATE, COUNTDISTINCT, JOINS, DROP, CREATE, DISTINCT, INNERJOINS, SUBQUERIES, ALTER, MULTIPLESCHEMAS, GROUPBYNORELATION, OUTERJOINS, UNIONALL, UNION, UPSERT, GETDELETED, CROSSJOINS, GROUPBYCOLLATE, MULTIPLECATS, FULLOUTERJOIN, MERGE, JSONEXTRACT, BULKUPSERT, SUM, SUBQUERIESFULL, MIN, MAX, JOINSFULL, XMLEXTRACT, AVG, MULTISTATEMENTS, FOREIGNKEYS, CASE, LEFTJOINS, COMMAJOINS, WITH, LITERALS, RENAME, NESTEDTABLES, EXECUTE, BATCH, BASIC, INDEX
PREFERRED_CACHE_OPTIONS A string value specifies the preferred cacheOptions.
ENABLE_EF_ADVANCED_QUERY Indicates if the driver directly supports advanced queries coming from Entity Framework. If not, queries will be handled client side. YES, NO
PSEUDO_COLUMNS A string array indicating the available pseudo columns.
MERGE_ALWAYS If the value is true, The Merge Mode is forcibly executed in Data Sync. TRUE, FALSE
REPLICATION_MIN_DATE_QUERY A select query to return the replicate start datetime.
REPLICATION_MIN_FUNCTION Allows a provider to specify the formula name to use for executing a server side min.
REPLICATION_START_DATE Allows a provider to specify a replicate startdate.
REPLICATION_MAX_DATE_QUERY A select query to return the replicate end datetime.
REPLICATION_MAX_FUNCTION Allows a provider to specify the formula name to use for executing a server side max.
IGNORE_INTERVALS_ON_INITIAL_REPLICATE A list of tables which will skip dividing the replicate into chunks on the initial replicate.
CHECKCACHE_USE_PARENTID Indicates whether the CheckCache statement should be done against the parent key column. TRUE, FALSE
CREATE_SCHEMA_PROCEDURES Indicates stored procedures that can be used for generating schema files.

The following query retrieves the operators that can be used in the WHERE clause:

SELECT * FROM sys_sqlinfo WHERE Name = 'SUPPORTED_OPERATORS'

Note that individual tables may have different limitations or requirements on the WHERE clause; refer to the Data Model section for more information.

Columns
Name Type Description
NAME String A component of SQL syntax, or a capability that can be processed on the server.
VALUE String Detail on the supported SQL or SQL syntax.

sys_identity

Returns information about attempted modifications.

The following query retrieves the Ids of the modified rows in a batch operation:

SELECT * FROM sys_identity
Columns
Name Type Description
Id String The database-generated ID returned from a data modification operation.
Batch String An identifier for the batch. 1 for a single operation.
Operation String The result of the operation in the batch: INSERTED, UPDATED, or DELETED.
Message String SUCCESS or an error message if the update in the batch failed.

Data Type Mapping

Data Type Mappings

The connector maps types from the data source to the corresponding data type available in the schema. The table below documents these mappings.

Sage Intacct Schema
Check Box bool
Currency string
Date date
Email string
Number float
Password string
Percent float
Picklist string
Picklist Multi-select string
Sequence string
Text string
Text Area string
User Link string
URL string

Advanced Configurations Properties

The advanced configurations properties are the various options that can be used to establish a connection. This section provides a complete list of the options you can configure. Click the links for further details.

Authentication

Property Description
AuthScheme The authorization scheme to be used when server authorization is to be performed.
CompanyID The Company ID of the user who is authenticating to Intacct.
URL The endpoint URL used to connect to Sage Intacct. The default value of this property is usually sufficient.
User The Sage Intacct user account used to authenticate.
Password The password used to authenticate the user.
SenderID The Web Services SenderID assigned to you by Intacct.
SenderPassword Your registered Web Services password.

Connection

Property Description
SessionID The session ID used to connect to Intacct.
UseSessionID Set to true if connecting with a SessionID.

SSO

Property Description
SSOLoginURL The identity provider's login URL.
SSOProperties Additional properties required to connect to the identity provider in a semicolon-separated list.

SSL

Property Description
SSLServerCert The certificate to be accepted from the server when connecting using TLS/SSL.

Schema

Property Description
Location A path to the directory that contains the schema files defining tables, views, and stored procedures.
BrowsableSchemas This property restricts the schemas reported to a subset of the available schemas. For example, BrowsableSchemas=SchemaA, SchemaB, SchemaC.
Tables This property restricts the tables reported to a subset of the available tables. For example, Tables=TableA, TableB, TableC.
Views Restricts the views reported to a subset of the available tables. For example, Views=ViewA, ViewB, ViewC.

Miscellaneous

Property Description
UseLegacy Set to False to use new API implementation.
ClientID The Client ID of the distributed child company to access.
DocParId Used to select different groups of columns exposed on Sage Intacct. The docparid should be an object type from the Objects list, available under Platform Services.
EnableSubscriptions Provide the comma separated list of subscriptions enabled for the Sage Intacct account to allow access for specific tables related to the subscriptions.
IncludeDetailAggregate A boolean indicating if aggregate columns should be displayed.
IncludeGLEntries Sage Intacct allows users to update the GLBatch table with new GLEntry items.By default the driver will include existing GLEntry items assocaited with the record being updated. When this option is set to false the driver will not include the existing items and they will be deleted from the table.
IncludeRelatedAttributes The extend of related attributes to be queried.
LocationsId The Location ID of the shared child company to access.
MaxRows Limits the number of rows returned when no aggregation or GROUP BY is used in the query. This takes precedence over LIMIT clauses.
MinimumColumnSize If field size information from the Intacct API appears to be incorrect or does not match what you expect, set this value to change the field sizes received by the driver, and make them greater than or equal to this value. This connection property does not apply if Intacct returns no valid field size information at all, and only applies to columns with string data type.
Other These hidden properties are used only in specific use cases.
Pagesize The maximum number of results to return per page from Sage Intacct.
PseudoColumns This property indicates whether or not to include pseudo columns as columns to the table.
ReadByName A boolean indicating if Intacct's XML request should use ReadByName clause.
ReturnFormatAsXML A boolean indicating if Intacct's XML return format should be used, rather than the JSON return format. By default, the XML return format is used.
Timeout The value in seconds until the timeout error is thrown, canceling the operation.
UserDefinedViews A filepath pointing to the JSON configuration file containing your custom views.

Authentication

This section provides a complete list of authentication properties you can configure.

Property Description
AuthScheme The authorization scheme to be used when server authorization is to be performed.
CompanyID The Company ID of the user who is authenticating to Intacct.
URL The endpoint URL used to connect to Sage Intacct. The default value of this property is usually sufficient.
User The Sage Intacct user account used to authenticate.
Password The password used to authenticate the user.
SenderID The Web Services SenderID assigned to you by Intacct.
SenderPassword Your registered Web Services password.

AuthScheme

The authorization scheme to be used when server authorization is to be performed.

Possible Values

Auto, BasicReadOnly, Basic, OKTA

Data Type

string

Default Value

Auto

Remarks

This property specifies the type of authentication to perform. Possible values are:

  • Auto: Lets the driver decide automatically based on the other connection properties you have set.
  • Basic: Set this to use BASIC authentication.

By default, AuthScheme is Basic, and if the User and Password properties are set, the connector will attempt basic authentication.

The following options are available for SSO:

  • OKTA: Set to use a single sign on connection with OKTA as the identify provider.

CompanyID

The Company ID of the user who is authenticating to Intacct.

Data Type

string

Default Value

""

Remarks

The Company ID of the user who is authenticating to Intacct.

URL

The endpoint URL used to connect to Sage Intacct. The default value of this property is usually sufficient.

Data Type

string

Default Value

https://api.intacct.com/ia/xml/xmlgw.phtml

Remarks

The endpoint URL used to connect to Sage Intacct. The default value of this property is usually sufficient.

User

The Sage Intacct user account used to authenticate.

Data Type

string

Default Value

""

Remarks

Together with Password, this field is used to authenticate against the Sage Intacct server.

Together with Password, this field is used to authenticate against the Sage Intacct server.

Password

The password used to authenticate the user.

Data Type

string

Default Value

""

Remarks

The User and Password are together used to authenticate with the server.

The User and Password are together used to authenticate with the server.

SenderID

The Web Services SenderID assigned to you by Intacct.

Data Type

string

Default Value

""

Remarks

Along with SenderPassword, this credential is attached to your Intacct Web Services Developer License. The driver has embedded Web Services credentials that can be used to read data from Intacct. To use the embedded SenderID, do not specify anything for the SenderID connection property. Web Services credentials you supply will be used in place of the embedded credentials for any interactions with Intacct.

SenderPassword

Your registered Web Services password.

Data Type

string

Default Value

""

Remarks

Along with SenderID, this credential is attached to your Intacct Web Services Developer License. The driver has embedded Web Services credentials that can be used to read data from Intacct. To use the embedded SenderPassword, do not specify anything for the SenderPassword connection property. Web Services credentials you supply will be used in place of the embedded credentials for any interactions with Intacct.

Connection

This section provides a complete list of connection properties you can configure.

Property Description
SessionID The session ID used to connect to Intacct.
UseSessionID Set to true if connecting with a SessionID.

SessionID

The session ID used to connect to Intacct.

Data Type

string

Default Value

""

Remarks

You can obtain this from the URL after logging into Sage Intacct. Additionally, set UseSessionID.

UseSessionID

Set to true if connecting with a SessionID.

Data Type

bool

Default Value

false

Remarks

Set to true if connecting with a SessionID.

SSO

This section provides a complete list of SSO properties you can configure.

Property Description
SSOLoginURL The identity provider's login URL.
SSOProperties Additional properties required to connect to the identity provider in a semicolon-separated list.

SSOLoginURL

The identity provider's login URL.

Data Type

string

Default Value

""

Remarks

The identity provider's login URL.

SSOProperties

Additional properties required to connect to the identity provider in a semicolon-separated list.

Data Type

string

Default Value

""

Remarks

Additional properties required to connect to the identity provider in a semicolon-separated list. is used in conjunction with the SSOLoginURL.

SSO configuration is discussed further in .

SSL

This section provides a complete list of SSL properties you can configure.

Property Description
SSLServerCert The certificate to be accepted from the server when connecting using TLS/SSL.

SSLServerCert

The certificate to be accepted from the server when connecting using TLS/SSL.

Data Type

string

Default Value

""

Remarks

If using a TLS/SSL connection, this property can be used to specify the TLS/SSL certificate to be accepted from the server. Any other certificate that is not trusted by the machine is rejected.

This property can take the following forms:

Description Example
A full PEM Certificate (example shortened for brevity) -----BEGIN CERTIFICATE----- MIIChTCCAe4CAQAwDQYJKoZIhv......Qw== -----END CERTIFICATE-----
A path to a local file containing the certificate C:\cert.cer
The public key (example shortened for brevity) -----BEGIN RSA PUBLIC KEY----- MIGfMA0GCSq......AQAB -----END RSA PUBLIC KEY-----
The MD5 Thumbprint (hex values can also be either space or colon separated) ecadbdda5a1529c58a1e9e09828d70e4
The SHA1 Thumbprint (hex values can also be either space or colon separated) 34a929226ae0819f2ec14b4a3d904f801cbb150d

If not specified, any certificate trusted by the machine is accepted.

Certificates are validated as trusted by the machine based on the System's trust store. The trust store used is the 'javax.net.ssl.trustStore' value specified for the system. If no value is specified for this property, Java's default trust store is used (for example, JAVA_HOME\lib\security\cacerts).

Use '*' to signify to accept all certificates. Note that this is not recommended due to security concerns.

Schema

This section provides a complete list of schema properties you can configure.

Property Description
Location A path to the directory that contains the schema files defining tables, views, and stored procedures.
BrowsableSchemas This property restricts the schemas reported to a subset of the available schemas. For example, BrowsableSchemas=SchemaA, SchemaB, SchemaC.
Tables This property restricts the tables reported to a subset of the available tables. For example, Tables=TableA, TableB, TableC.
Views Restricts the views reported to a subset of the available tables. For example, Views=ViewA, ViewB, ViewC.

Location

A path to the directory that contains the schema files defining tables, views, and stored procedures.

Data Type

string

Default Value

%APPDATA%\SageIntacct Data Provider\Schema

Remarks

The path to a directory which contains the schema files for the connector (.rsd files for tables and views, .rsb files for stored procedures). The folder location can be a relative path from the location of the executable. The Location property is only needed if you want to customize definitions (for example, change a column name, ignore a column, and so on) or extend the data model with new tables, views, or stored procedures.

If left unspecified, the default location is "%APPDATA%\SageIntacct Data Provider\Schema" with %APPDATA% being set to the user's configuration directory:

Platform %APPDATA%
Windows The value of the APPDATA environment variable
Mac ~/Library/Application Support
Linux ~/.config

BrowsableSchemas

This property restricts the schemas reported to a subset of the available schemas. For example, BrowsableSchemas=SchemaA,SchemaB,SchemaC.

Data Type

string

Default Value

""

Remarks

Listing the schemas from databases can be expensive. Providing a list of schemas in the connection string improves the performance.

Tables

This property restricts the tables reported to a subset of the available tables. For example, Tables=TableA,TableB,TableC.

Data Type

string

Default Value

""

Remarks

Listing the tables from some databases can be expensive. Providing a list of tables in the connection string improves the performance of the connector.

This property can also be used as an alternative to automatically listing views if you already know which ones you want to work with and there would otherwise be too many to work with.

Specify the tables you want in a comma-separated list. Each table should be a valid SQL identifier with any special characters escaped using square brackets, double-quotes or backticks. For example, Tables=TableA,[TableB/WithSlash],WithCatalog.WithSchema.`TableC With Space`.

Note that when connecting to a data source with multiple schemas or catalogs, you will need to provide the fully qualified name of the table in this property, as in the last example here, to avoid ambiguity between tables that exist in multiple catalogs or schemas.

Views

Restricts the views reported to a subset of the available tables. For example, Views=ViewA,ViewB,ViewC.

Data Type

string

Default Value

""

Remarks

Listing the views from some databases can be expensive. Providing a list of views in the connection string improves the performance of the connector.

This property can also be used as an alternative to automatically listing views if you already know which ones you want to work with and there would otherwise be too many to work with.

Specify the views you want in a comma-separated list. Each view should be a valid SQL identifier with any special characters escaped using square brackets, double-quotes or backticks. For example, Views=ViewA,[ViewB/WithSlash],WithCatalog.WithSchema.`ViewC With Space`.

Note that when connecting to a data source with multiple schemas or catalogs, you will need to provide the fully qualified name of the table in this property, as in the last example here, to avoid ambiguity between tables that exist in multiple catalogs or schemas.

Miscellaneous

This section provides a complete list of miscellaneous properties you can configure.

Property Description
UseLegacy Set to False to use new API implementation.
ClientID The Client ID of the distributed child company to access.
DocParId Used to select different groups of columns exposed on Sage Intacct. The docparid should be an object type from the Objects list, available under Platform Services.
EnableSubscriptions Provide the comma separated list of subscriptions enabled for the Sage Intacct account to allow access for specific tables related to the subscriptions.
IncludeDetailAggregate A boolean indicating if aggregate columns should be displayed.
IncludeGLEntries Sage Intacct allows users to update the GLBatch table with new GLEntry items.By default the driver will include existing GLEntry items assocaited with the record being updated. When this option is set to false the driver will not include the existing items and they will be deleted from the table.
IncludeRelatedAttributes The extend of related attributes to be queried.
LocationsId The Location ID of the shared child company to access.
MaxRows Limits the number of rows returned when no aggregation or GROUP BY is used in the query. This takes precedence over LIMIT clauses.
MinimumColumnSize If field size information from the Intacct API appears to be incorrect or does not match what you expect, set this value to change the field sizes received by the driver, and make them greater than or equal to this value. This connection property does not apply if Intacct returns no valid field size information at all, and only applies to columns with string data type.
Other These hidden properties are used only in specific use cases.
Pagesize The maximum number of results to return per page from Sage Intacct.
PseudoColumns This property indicates whether or not to include pseudo columns as columns to the table.
ReadByName A boolean indicating if Intacct's XML request should use ReadByName clause.
ReturnFormatAsXML A boolean indicating if Intacct's XML return format should be used, rather than the JSON return format. By default, the XML return format is used.
Timeout The value in seconds until the timeout error is thrown, canceling the operation.
UserDefinedViews A filepath pointing to the JSON configuration file containing your custom views.

UseLegacy

Set to False to use new API implementation.

Data Type

bool

Default Value

true

Remarks

The new API adds support for server-side filtering, ORDERBY, offset and aggregate functions including count, avg, min, max and sum.

ClientID

The Client ID of the distributed child company to access.

Data Type

string

Default Value

""

Remarks

Either this property, or LocationsID can be set. If both are set, an error will be thrown.

DocParId

Used to select different groups of columns exposed on Sage Intacct. The docparid should be an object type from the Objects list, available under Platform Services.

Data Type

string

Default Value

""

Remarks

The default value is empty, which uses the base definitions of these columns as provided by Sage Intacct.

EnableSubscriptions

Provide the comma separated list of subscriptions enabled for the Sage Intacct account to allow access for specific tables related to the subscriptions.

Data Type

string

Default Value

""

Remarks

The required format for a single subscriptions is: Construction

For example: Construction, Consolidation

IncludeDetailAggregate

A boolean indicating if aggregate columns should be displayed.

Data Type

bool

Default Value

false

Remarks

If this is set to true, aggregate columns containing child entity information will be displayed on the parent entity.

IncludeGLEntries

Sage Intacct allows users to update the GLBatch table with new GLEntry items.By default the driver will include existing GLEntry items assocaited with the record being updated. When this option is set to false the driver will not include the existing items and they will be deleted from the table.

Data Type

bool

Default Value

true

Remarks

Sage Intacct will remove existing GLEntries if they are not included when updating the GLBatch table.

IncludeRelatedAttributes

The extend of related attributes to be queried.

Possible Values

None, PrimaryKeys, All

Data Type

string

Default Value

PrimaryKeys

Remarks

The extend of related attributes to be queried. If set to 'None', only attributes from the queried table will be shown. If set to 'PrimaryKeys', only Primary keys of related objects will be shown. If set to 'All', all attributes of related objects will be shown.

Note

Use this only when 'UseLegacy' connection property is set to False.

LocationsId

The Location ID of the shared child company to access.

Data Type

string

Default Value

""

Remarks

Either this property or ClientID can be set. If both are set, an error will be thrown.

MaxRows

Limits the number of rows returned when no aggregation or GROUP BY is used in the query. This takes precedence over LIMIT clauses.

Data Type

int

Default Value

-1

Remarks

Limits the number of rows returned when no aggregation or GROUP BY is used in the query. This takes precedence over LIMIT clauses.

MinimumColumnSize

If field size information from the Intacct API appears to be incorrect or does not match what you expect, set this value to change the field sizes received by the driver, and make them greater than or equal to this value. This connection property does not apply if Intacct returns no valid field size information at all, and only applies to columns with string data type.

Data Type

string

Default Value

-1

Remarks

This property should not need to be set in most use cases. The property will usually only be useful with DataSync or caching use cases.

Other

These hidden properties are used only in specific use cases.

Data Type

string

Default Value

""

Remarks

The properties listed below are available for specific use cases. Normal driver use cases and functionality should not require these properties.

Specify multiple properties in a semicolon-separated list.

Integration and Formatting
Property Description
DefaultColumnSize Sets the default length of string fields when the data source does not provide column length in the metadata. The default value is 2000.
ConvertDateTimeToGMT Determines whether to convert date-time values to GMT, instead of the local time of the machine.
RecordToFile=filename Records the underlying socket data transfer to the specified file.

Pagesize

The maximum number of results to return per page from Sage Intacct.

Data Type

string

Default Value

""

Remarks

The Pagesize property affects the maximum number of results to return per page from Sage Intacct when executing a query. A higher value will return more results per page, but may also cause a timeout exception. When UseLegacy=True, the default pagesize is set to 1000. When UseLegacy=False, the default pagesize is set to 2000.

PseudoColumns

This property indicates whether or not to include pseudo columns as columns to the table.

Data Type

string

Default Value

""

Remarks

This setting is particularly helpful in Entity Framework, which does not allow you to set a value for a pseudo column unless it is a table column. The value of this connection setting is of the format "Table1=Column1, Table1=Column2, Table2=Column3". You can use the "*" character to include all tables and all columns; for example, "*=*".

ReadByName

A boolean indicating if Intacct's XML request should use ReadByName clause.

Data Type

bool

Default Value

false

Remarks

A boolean indicating if Intacct's XML request should use ReadByName clause.

Note

Use this only when 'UseLegacy' connection property is set to True. Also, only Primary Key must be specified as the filter criteria for the query. If no criteria is specified, a ReadByQuery clause will be used instead.

ReturnFormatAsXML

A boolean indicating if Intacct's XML return format should be used, rather than the JSON return format. By default, the XML return format is used.

Data Type

bool

Default Value

true

Remarks

The XML return format offers inferior performance as compared to the JSON return format, but has support for concurrent requests to the same API object. Use the XML return format in situations where such concurrent requests might occur. The JSON return format offers superior performance, but typically does not support concurrent requests to the same API object.

Timeout

The value in seconds until the timeout error is thrown, canceling the operation.

Data Type

int

Default Value

60

Remarks

If Timeout = 0, operations do not time out. The operations run until they complete successfully or until they encounter an error condition.

If Timeout expires and the operation is not yet complete, the connector throws an exception.

UserDefinedViews

A filepath pointing to the JSON configuration file containing your custom views.

Data Type

string

Default Value

""

Remarks

User Defined Views are defined in a JSON-formatted configuration file called UserDefinedViews.json. The connector automatically detects the views specified in this file.

You can also have multiple view definitions and control them using the UserDefinedViews connection property. When you use this property, only the specified views are seen by the connector.

This User Defined View configuration file is formatted as follows:

  • Each root element defines the name of a view.
  • Each root element contains a child element, called query, which contains the custom SQL query for the view.

For example:

{
    "MyView": {
        "query": "SELECT * FROM Customer WHERE MyColumn = 'value'"
    },
    "MyView2": {
        "query": "SELECT * FROM MyTable WHERE Id IN (1,2,3)"
    }
}

Use the UserDefinedViews connection property to specify the location of your JSON configuration file. For example:

"UserDefinedViews", "C:\Users\yourusername\Desktop\tmp\UserDefinedViews.json"