Acumatica v2 Connection Details
Introduction
Connector Version
This documentation is based on version 25.0.9368 of the connector.
Get Started
Acumatica Version Support
The connector supports Acumatica 2017 R2 and later.
Establish a Connection
Connect to Acumatica
In order to connect to the Acumatica data source, you must specify the following connection properties.
- URL: (Required) The base URL for the Acumatica ERP instance. For example:
https://domain.acumatica.com/. - Schema: (Optional) There are two schemas that contain different data. The default one is REST, which uses the Acumatica REST Contract-Based API, and the OData schema, which uses the Acumatica OData API. The OData schema is used to query Acumatica Generic Inquiries.
- Company: (Partially required) Set this to the name of your company or tenant. It is required if Schema is set to OData.
- EndpointVersion: (Optional) The version of the Web Services endpoint. For example:
24.200.001. This applies only to the REST schema. - EndpointName: (Optional) The name of the Web Services endpoint. For example: Default. This applies only to the REST schema.
To find out the EndpointVersion and EndpointName for your Acumatica instance, log into Acumatica in a web browser, and then navigate to the Web Service Endpoints page. If necessary, navigate to this page by editing the web browser URL and replacing ScreenId=00000000 (the homepage) with ScreenId=SM207060. If you are redirected back to the homepage, this means your user does not have the necessary permissions to access web services. Under Endpoints properties get the Endpoint Name and Endpoint Version.
Expose Generic Inquiries
The connector is capable of discovering generic inquiry data as tables and views. However, you must first extend the Web Services Endpoint to expose them.
The process for exposing generic inquiries is different depending on the schema specified in the Schema connection property.
REST Schema
Generic Inquiries are not exposed via REST by default. To expose them:
- Navigate in the Acumatica UI to
Integration > Show All > Web Service Endpoints. - Click the "Default" endpoint with the most recent Endpoint Version.
- From the available action buttons (in the button bar below the endpoint name at the top of the page), click
EXTEND ENDPOINT.- You may have to find this action in the full action list, which you can view by clicking the
"..."button.
- You may have to find this action in the full action list, which you can view by clicking the
- Use
Endpoint Nameto name the extended endpoint andEndpoint Versionto specify the endpoint version you want it to have, then clickOK. - On the page for your new extended endpoint, click the
+ Insertbutton (above the ENDPOINT tree structure). - Create an entity definition for a new custom object as follows.
- Name the object in the
Object Namefield. - Leave the
Object Typefield set to the default --Top-Level. - In the
Screen Namefield, click the magnifying glass icon to search for the screen associated with your generic inquiry. Select the screen matching theSite Map Titlefield of your generic inquiry.- Ensure that the autopopulated
Screen IDfield's value matches that of your generic inquiry.
- Ensure that the autopopulated
- Click
OK.
- Name the object in the
- Create a new "Results" entity under your custom object as follows:
- Select the newly created object in the ENDPOINT tree structure, then click the
+ Insertbutton. - Set
Field Nameto "Result". - Specify a name for this object in
Object Name. - Set
Object TypetoDetail. - Click
OK.
- Select the newly created object in the ENDPOINT tree structure, then click the
- In the ENDPOINT tree structure, expand the node for your custom object, select the new Results object you just created, then click
FIELDS > POPULATE. - In the
Populate Fieldwindow'sObjectfield, select "Result" (the object you just created). - Select the check box for each field you want to expose from the general inquiry, then click
OK. - To see the exposed general inquiry in your table list, set EndpointName to the name of your extended endpoint and set InquiryTables to the name of your top-level custom object from step 6 above.
OData Schema
Generic Inquiries are not exposed via OData by default. To expose them, navigate in the Acumatica UI to Customization > Profiles > Generic Inquiry and select the Expose via OData checkbox.
Authenticate to Acumatica
There are two authentication methods available for connecting to Acumatica data source, Basic and OAuth.
User Credentials
Set the AuthScheme to Basic and set the User and Password to your login credentials.
OAuth
OAuth requires the authenticating user to interact with Acumatica using the browser, so all OAuth flows require a custom OAuth application. Also, for all flows, set AuthScheme to OAuth. The following sections assume that you have done so.
Desktop Applications
An embedded OAuth application is provided to simplify OAuth desktop authentication. Alternatively, you can create a custom OAuth application. See Creating a Custom OAuth App for information about creating custom applications and reasons for doing so.
For authentication, the only difference between the two methods is that you must set two additional connection properties when using custom OAuth applications.
After setting the following connection properties, you are ready to connect:
- InitiateOAuth: Set this to
GETANDREFRESH. You can use InitiateOAuth to avoid repeating the OAuth exchange and manually setting the OAuthAccessToken. - OAuthClientId: Set this to the client ID in your application settings.
- OAuthClientSecret: Set this to the client secret in your application settings.
- CallbackURL: Set this to the Redirect URL in your application settings.
When you connect the connector opens the OAuth endpoint in your default browser. Log in and grant permissions to the application. The connector then completes the OAuth process:
- Extracts the access token from the callback URL and authenticates requests.
- Obtains a new access token when the old one expires.
- Saves OAuth values in OAuthSettingsLocation that persist across connections.
Web Applications
When connecting via a Web application, you need to create and register a custom OAuth application with Acumatica. See Creating a Custom OAuth App for more information about custom applications. You can then use the connector to acquire and manage the OAuth token values.
Get an OAuth Access Token
Set the following connection properties to obtain the OAuthAccessToken:
- OAuthClientId: Set this to the client ID in your application settings.
- OAuthClientSecret: Set this to the client secret in your application settings
Then call stored procedures to complete the OAuth exchange:
- Call the GetOAuthAuthorizationURL stored procedure. Set the CallbackURL input to the callback URL you specified in your application settings. If necessary, set the Scope parameter to request custom permissions. The stored procedure returns the URL to the OAuth endpoint.
- Open the URL, log in, and authorize the application. You are redirected back to the callback URL.
- Call the GetOAuthAccessToken stored procedure. Set the AuthMode input to
WEB. Set the Verifier input to the "code" parameter in the query string of the callback URL. If necessary, set the Scope parameter to request custom permissions.
Once you have obtained the access and refresh tokens, you can connect to data and refresh the OAuth access token either automatically or manually.
Automatic Refresh of the OAuth Access Token
To have the driver automatically refresh the OAuth access token, set the following for the first data connection:
- InitiateOAuth: Set this to
REFRESH. - OAuthClientId: Set this to the client ID in your application settings.
- OAuthClientSecret: Set this to the client secret in your application settings.
- OAuthAccessToken: Set this to the access token returned by GetOAuthAccessToken.
- OAuthRefreshToken: Set this to the refresh token returned by GetOAuthAccessToken.
- OAuthSettingsLocation: Set this to the location where the connector saves the OAuth token values, which persist across connections.
On subsequent data connections, the values for OAuthAccessToken and OAuthRefreshToken are taken from OAuthSettingsLocation.
Manual Refresh of the OAuth Access Token
The only value needed to manually refresh the OAuth access token when connecting to data is the OAuth refresh token.
Use the RefreshOAuthAccessToken stored procedure to manually refresh the OAuthAccessToken after the ExpiresIn parameter value returned by GetOAuthAccessToken has elapsed, then set the following connection properties:
- OAuthClientId: Set this to the client ID in your application settings.
- OAuthClientSecret: Set this to the client secret in your application settings.
Then call RefreshOAuthAccessToken with OAuthRefreshToken set to the OAuth refresh token returned by GetOAuthAccessToken. After retrieving the new tokens, open a new connection by setting the OAuthAccessToken property to the value returned by RefreshOAuthAccessToken.
Finally, store the OAuth refresh token so that you can use it to manually refresh the OAuth access token after it has expired.
Create a Custom OAuth App
Acumatica uses the OAuth authentication standard, which requires the authenticating user to interact with Acumatica via the browser. The connector facilitates the OAuth exchange in various ways as described below.
Register an OAuth Application
You can follow the procedure below to obtain the OAuth client credentials, the OAuthClientId and OAuthClientSecret.
- You use the Connected Applications (SM303010) form to register an OAuth 2.0 or OpenID Connect client application. To register a client application in Acumatica ERP, you need to know the OAuth 2.0 flow that this application implements.
- When you are registering the client application, you have to be logged in to the tenant whose data the client application needs to access.
- On the System tab, click Integration. In the navigation pane, navigate to Configure > Connected Applications.
- In the Client Name box, type the name of the registered application.
- In the OAuth 2.0 Flow box, select Authorization Code.
- On the Secrets tab, do the following for each client secret you want to add:
- On the tab toolbar, click Add Shared Secret. The Add Shared Secret dialog box opens.
- In the Description box, type the description of the shared secret.
- Optional: In the Expires On (UTC) box, enter the date and time on which the secret expires.
- Copy and save the value that is displayed in the Value box. The client application should use this client secret for authentication in Acumatica ERP.
- Click OK to save the secret and close the dialog box.
- On the Redirect URIs tab, do the following for each redirect URI you want to add: On the tab toolbar, click Add Row. In the Redirect URI column of the new row, type the exact redirect URI to which Acumatica ERP should redirect the client application after the client application has been authorized. The redirect URI must be absolute and must not have the fragment part (the part preceded with #). On the form toolbar, click Save. Notice that the client ID has been generated in the Client ID box. The client application should use this client ID along with the client secret for authentication in Acumatica ERP.
Authenticate to Acumatica from a Desktop Application
In order to obtain a token, the client application needs to call the Oauth2 endpoint using various grants depending on the authentication scenarios required. After setting the following connection properties, you are ready to connect:
- OAuthClientId: Set this to your clientId.
- OAuthClientSecret: Set this to your clientSecret.
- InitiateOAuth: Set this to GETANDREFRESH. You can use InitiateOAuth to avoid repeating the OAuth exchange and manually setting the OAuthAccessToken connection property.
- CallbackURL: Set this to the redirect URI configured in the OAuth application.
When you connect, the connector completes the OAuth process:
- Extracts the access token from the CallbackURL.
- Obtains a new access token when the old one expires.
- Saves OAuth values along with geolocation in OAuthSettingsLocation to be persisted across connections.
Acumatica Optimization
Acumatica has introduced an optimization in version 3 of the Contract Based API. When multiple records are retrieved from the Acumatica ERP through an endpoint, the system tries to optimize the retrieval of the records and obtain all needed records in one request to the database. If the optimization fails, the system returns an error, specifying the entities or fields that caused the failure of the optimized request. Mostly the Navigation Views break the optimization because Acumatica is trying to get data from the linked tables, because of this the SELECT * queries from Navigation Views without specifying the key of the parent table are not possible. Our drivers tries to remove the columns that break the optimization from the SELECT * queries.
Some of the Views that break the optimization when selected without specifying the keyfields are JournalVoucher_Details. In order to query the JournalVoucher_Details the ParentBatchNbr should be specified.
SELECT * FROM JournalVoucher_Details where ParentBatchNbr = '0001'
The view can be queried by geting the parent key field in this case ParentBatchNbr from the parent table JournalVoucher.
SELECT * FROM JournalVoucher_Details where ParentBatchNbr IN (SELECT BatchNbr FROM JournalVoucher)
More information on how to bypass the Acumatica optimization can be found here: Limitations.
Important Notes
Configuration Files and Their Paths
- All references to adding configuration files and their paths refer to files and locations on the Jitterbit 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 Acumatica connector.
User Defined Views
The connector supports the use of user defined views, virtual tables whose contents are decided by a pre-configured user defined query. These views are useful when you cannot directly control queries being issued to the drivers. For an overview of creating and configuring custom views, see User Defined Views.
SSL Configuration
Use SSL Configuration to adjust how connector handles TLS/SSL certificate negotiations. You can choose from various certificate formats. For further information, see the SSLServerCert property under "Connection String Options".
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 Acumatica and then processes the rest of the query in memory (client-side).
For further information, see Query Processing.
Log
For an overview of configuration settings that can be used to refine logging, see Logging. Only two connection properties are required for basic logging, but there are numerous features that support more refined logging, which enables you to use the LogModules connection property to specify subsets of information to be logged.
User Defined Views
The Jitterbit Connector for Acumatica supports the use of user defined views: user-defined virtual tables whose contents are decided by a preconfigured query. User defined views are useful in situations where you cannot directly control the query being issued to the driver; for example, when using the driver from Jitterbit.
Use a user defined view 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 so that each root element defines the name of a view, and includes a child element, called query, which contains the custom SQL query for the view.
For example:
{
"MyView": {
"query": "SELECT * FROM Events 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
In order to avoid a view's name clashing with an actual entity in the data model, user defined views are exposed in the UserViews schema by default. To change the name of the schema used for UserViews, reset 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
To enable TLS, set the following:
- URL: Prefix the connection string with
https://
With this configuration, the connector attempts to negotiate TLS with the server. The server certificate is validated against the default system trusted certificate store. You can override how the certificate gets validated using the SSLServerCert connection property.
To specify another certificate, see the SSLServerCert connection property.
REST Data Model
The connector models the Acumatica API as relational tables.
When you connect, the connector connects to Acumatica and gets the list of tables and the metadata for the tables and views.
Since the table definitions are dynamically retrieved, any changes to the remote data are immediately reflected in your queries;.
Generic Inquiries
The connector can discover generic inquiry data as tables and views when the Web Services Endpoint has been extended to expose them.
See for a guide to extending the Web Services Endpoint and exposing your generic inquiries.
Generic inquiries can also be configured to support server-side filtering. Server-side Filtering for Generic Inquiries describes this procedure.
Limitations
Limitations describes the limits of the Acumatica REST API and how they affect the operation of the connector.
Tables
Tables shows default table definitions from Acumatica. Your actual tables may differ depending on your customizations. Set the URL connection property to the latest version to get the changes.
The Jitterbit Connector for Acumatica reads table and column metadata dynamically, so it will include both your customizations and any new features that are added to standard Acumatica entities in the future.
Views
Views are read-only tables representing Acumatica entities such as child tables.
Stored Procedures
Stored Procedures are function-like interfaces to Acumatica. They can be used to perform extra tasks that do not fit into the standard operation of directly interacting with a table.
Limitations
Custom Fields
By default, the table and view schemas describe the column behavior of system fields as well as custom fields. You can set the IncludeCustomFields property to false if you want to work only with system fields. On a SELECT * FROM EntityName query, the custom fields will not be returned even though IncludeCustomFields is set to true. The Custom fields will be returned only when they are specified on projections. For example:
SELECT Custom_FieldA, Custom_FieldB, Custom_FieldC FROM EntityName
The requirement to explicitly select the custom fields is due to a limitation with the Acumatica API. It will not return results when too much overall data is selected per record. It is not possible to dynamically calculate at what point Acumatica will cut off results. You should only select the columns you need and not everything to keep things working smoothly.
In case a group of custom fields are important to your use case and the Acumatica API cannot return them in a single response, it is recommended to setup an extended endpoint and include the custom fields in it. After this change, you should be able to retrieve them as non-custom fields from the extended endpoint.
An alternative to extending an existing endpoint is to split the main query into two or more subqueries and distribute the selected custom fields between them. Lastly, you can join the subqueries on the primary key column as in the example below.
SELECT Customer_1.CustomerID, Customer_1.Custom_Timezone, Customer_1.Custom_ProductGroup, Customer_2.Custom_ContactCategory, Customer_2.Custom_DiscountGroup
FROM Customer Customer_1 JOIN Customer Customer_2
ON Customer_1.CustomerID = Customer_2.CustomerID
Linked and Detail Entities
The Linked and Detail entities to main entity are exposed in the main entity table as aggregate columns starting with the 'Linked' prefix. They are also exposed as separate views using the naming format 'MainEntityName_LinkedEntityName'. For example, the Customer table exposes the linked entity 'Contacts' as the aggregate field 'LinkedContacts'. The linked entity Contacts is also exposed as the separate view Customer_Contacts.
Due to Acumatica REST API limitations, the Linked and Detail entities cannot be retrieved when requesting multiple main entity records. For this reason, when querying the main entity, without specifying the primary key in the WHERE clause conditions, the linked aggregate fields are returned as null. For example, in order to retrieve the aggregate values of the linked entity Contacts in the Customer table, you can execute one of the queries below.
SELECT CustomerID, LinkedContacts FROM Customer WHERE customerId = '100009'
You can also make use of the IN operator and subqueries as below, in order to retrieve the Linked and Detail entities for multiple parent records.
SELECT CustomerID, LinkedContacts FROM Customer WHERE CustomerId IN (SELECT CustomerId FROM Customer)
Additionally, to query the exposed Linked and Detail entities, specifying the parent entity primary key in the WHERE clause conditions, is required. For example:
SELECT * from Customer_Contacts where ParentCustomerID = '100009'
Excluded Columns
Acumatica has introduced an optimization in version 3 of the Contract Based API. When multiple records are retrieved from the Acumatica ERP through an endpoint, the system tries to optimize the retrieval of the records and obtain all needed records in one request to the database. If the optimization fails, the system returns an error, specifying the entities or fields that caused the failure of the optimized request. To prevent the error from occurring, we need to do one of the following:
- Get all the records one by one by specifying the key fields.
- Get only the fields that don't break the optimization.
Create the schema by calling the CreateSchema if you have not already done so.
Add the additional parameters in the .rsd schema files below.
key="true"other:exclude="true"
These two parameters are needed so the new entities don't return an error in SELECT * FROM Table queries. The example below is a rsd snippet that shows how these parameters are used.
In the example Contact.rsd, Duplicate and AddressValidated are fields that break the Acumatica optimization so they have the additional parameter other:exclude="true". When a SELECT * FROM Contact query is done, the driver will get all fields except those with the other:exclude="true" parameter. However, the omitted fields will still appear on your result set as null. The data provider will request the excluded fields from the endpoint only if they are explicitly stated in the SELECT clause or if the primary key column/s are specified.
In the example Contact.rsd, ContactID is the primary key so the additional parameter key="true" is added. When a SELECT * FROM Contact WHERE ContactID='contactid' is done, the driver will get all fields from the API including the Duplicate and AddressValidated.
<rsb:script xmlns:rsb="http://www.rssbus.com/ns/rsbscript/2">
<rsb:info title="Contact" description="Contact is an auto-generated table." other:tablehref="https://try.acumatica.com/ISV/entity/Default/17.200.001/Contact" other:tablekind="EntitySet"/>
<attr name="LanguageOrLocale" xs:type="string" columnsize="2000" readonly="false" description="null" other:entityname="Contact" other:schemanamespace="Contact" other:internalcolumnname="LanguageOrLocale"/>
<attr name="DuplicateFound" xs:type="bool" readonly="false" description="null" other:internalcolumnname="DuplicateFound"/>
<attr name="JobTitle" xs:type="string" columnsize="2000" readonly="false" description="null" other:internalcolumnname="JobTitle"/>
<attr name="ContactID" xs:type="int" key="true" readonly="false" description="null" other:queue="0" other:internalkey="ContactID" other:internalcolumnname="ContactID"/>
.......
<attr name="Duplicate" xs:type="string" columnsize="2000" readonly="false" description="null" other:exclude="true" other:internalcolumnname="Duplicate"/>
.......
<attr name="AddressValidated" xs:type="bool" readonly="false" description="null" other:exclude="true" other:internalcolumnname="AddressValidated"/>
.......
<rsb:set attr="other:tablekind" value="EntitySet" />
<rsb:set attr="tablename" value="Contact" />
<rsb:set attr="description" value="Contact is an auto-generated table." />
<rsb:set attr="entity" value="Contact" />
<rsb:set attr="other:tablehref" value="https://try.acumatica.com/ISV/entity/Default/17.200.001/Contact" />
<rsb:set attr="supportgetdeleted" value="true" />
<rsb:script method="GET">
<rsb:call op="acumaticaadoExecuteSearch">
<rsb:push/>
</rsb:call>
</rsb:script>
<rsb:script method="POST">
<rsb:call op="acumaticaadoExecuteInsert">
<rsb:push/>
</rsb:call>
</rsb:script>
<rsb:script method="MERGE">
<rsb:call op="acumaticaadoExecuteUpdate">
<rsb:push/>
</rsb:call>
</rsb:script>
<rsb:script method="DELETE">
<rsb:call op="acumaticaadoExecuteDelete">
<rsb:push/>
</rsb:call>
</rsb:script>
</rsb:script>
Create User Defined Views
A simple and effective way to automate the process of getting all records one by one by specifying the key fields are the User Defined Views. User Defined Views are predefined queries stored in a local JSON file, which can be queried from the driver just as the existing views.
As stated in the above section, the excluded fields will be retrieved if the primary key is specified. You can use the driver's enhanced SQL support to automatically do this for each record by appending an IN subquery to your main query. From the subquery, you should be selecting only the primary key column as in the example below.
SELECT * FROM Contact WHERE ContactId IN (SELECT ContactId FROM Contact)
You can then add this query under the "query" field of a local created JSON file (ex. C:\Users\user\Desktop\CustomViews.json).
{
"AllContacts": {
"query": "SELECT * FROM Contact WHERE ContactId IN (SELECT ContactId FROM Contact)"
},
"AllCustomers": {
"query": "SELECT * FROM Customer WHERE CustomerId IN (SELECT CustomerId FROM Customer)"
}
}
Lastly, you can directly query the defined views (AllContacts and AllCustomers) after stating the Custom Views file location in the UserDefinedViews property under the Other connection parameter.
Other='UserDefinedViews=C:\Users\User\Desktop\CustomViews.json;'
You can also execute a query to the sys_tables view to verify if the custom views are added. You should be able to find them under the UserViews schema.
SELECT * FROM sys_tables where TableType='view'
Tables
The connector models the data in Acumatica as a list of tables in a relational database that can be queried using standard SQL statements.
Jitterbit Connector for Acumatica Tables
| Name | Description |
|---|---|
Account |
Account is an auto-generated table. |
AccountByPeriodInquiry |
AccountByPeriodInquiry is an auto-generated table. |
AccountBySubaccountInquiry |
AccountBySubaccountInquiry is an auto-generated table. |
AccountDetailsInquiry |
AccountDetailsInquiry is an auto-generated table. |
AccountLocation |
AccountLocation is an auto-generated table. |
AccountSummaryInquiry |
AccountSummaryInquiry is an auto-generated table. |
Adjustment |
Adjustment is an auto-generated table. |
AttributeDefinition |
AttributeDefinition is an auto-generated table. |
Bill |
Bill is an auto-generated table. |
BusinessAccount |
BusinessAccount is an auto-generated table. |
Carrier |
Carrier is an auto-generated table. |
Case |
Case is an auto-generated table. |
CashSale |
CashSale is an auto-generated table. |
Check |
Check is an auto-generated table. |
Contact |
Contact is an auto-generated table. |
Currency |
Currency is an auto-generated table. |
Customer |
Customer is an auto-generated table. |
CustomerClass |
CustomerClass is an auto-generated table. |
CustomerLocation |
CustomerLocation is an auto-generated table. |
CustomerPaymentMethod |
CustomerPaymentMethod is an auto-generated table. |
CustomerPriceClass |
CustomerPriceClass is an auto-generated table. |
Discount |
Discount is an auto-generated table. |
DiscountCode |
DiscountCode is an auto-generated table. |
Email |
Email is an auto-generated table. |
Employee |
Employee is an auto-generated table. |
Event |
Event is an auto-generated table. |
FinancialPeriod |
FinancialPeriod is an auto-generated table. |
FOBPoint |
FOBPoint is an auto-generated table. |
InterBranchAccountMapping |
InterBranchAccountMapping is an auto-generated table. |
InventoryAllocationInquiry |
InventoryAllocationInquiry is an auto-generated table. |
InventoryReceipt |
InventoryReceipt is an auto-generated table. |
InventorySummaryInquiry |
InventorySummaryInquiry is an auto-generated table. |
Invoice |
Invoice is an auto-generated table. |
ItemClass |
ItemClass is an auto-generated table. |
ItemWarehouse |
ItemWarehouse is an auto-generated table. |
JournalTransaction |
JournalTransaction is an auto-generated table. |
JournalVoucher |
JournalVoucher is an auto-generated table. |
KitAssembly |
KitAssembly is an auto-generated table. |
KitSpecification |
KitSpecification is an auto-generated table. |
Lead |
Lead is an auto-generated table. |
LotSerialClass |
LotSerialClass is an auto-generated table. |
NonStockItem |
NonStockItem is an auto-generated table. |
Opportunity |
Opportunity is an auto-generated table. |
Payment |
Payment is an auto-generated table. |
PaymentMethod |
PaymentMethod is an auto-generated table. |
PhysicalInventoryReview |
PhysicalInventoryReview is an auto-generated table. |
ProjectTransaction |
ProjectTransaction is an auto-generated table. |
PurchaseOrder |
PurchaseOrder is an auto-generated table. |
PurchaseReceipt |
PurchaseReceipt is an auto-generated table. |
ReportingSettings |
ReportingSettings is an auto-generated table. |
SalesInvoice |
SalesInvoice is an auto-generated table. |
SalesOrder |
SalesOrder is an auto-generated table. |
Salesperson |
Salesperson is an auto-generated table. |
SalesPricesInquiry |
SalesPricesInquiry is an auto-generated table. |
SalesPriceWorksheet |
SalesPriceWorksheet is an auto-generated table. |
Shipment |
Shipment is an auto-generated table. |
ShippingBox |
ShippingBox is an auto-generated table. |
ShippingTerm |
ShippingTerm is an auto-generated table. |
ShippingZones |
ShippingZones is an auto-generated table. |
ShipVia |
ShipVia is an auto-generated table. |
StatementCycle |
StatementCycle is an auto-generated table. |
StockItem |
StockItem is an auto-generated table. |
Subaccount |
Subaccount is an auto-generated table. |
Task |
Task is an auto-generated table. |
Tax |
Tax is an auto-generated table. |
TaxCategory |
TaxCategory is an auto-generated table. |
TaxZone |
TaxZone is an auto-generated table. |
TransferOrder |
TransferOrder is an auto-generated table. |
TrialBalance |
TrialBalance is an auto-generated table. |
UnitsOfMeasure |
UnitsOfMeasure is an auto-generated table. |
Vendor |
Vendor is an auto-generated table. |
VendorClass |
VendorClass is an auto-generated table. |
VendorPricesInquiry |
VendorPricesInquiry is an auto-generated table. |
VendorPriceWorksheet |
VendorPriceWorksheet is an auto-generated table. |
VoucherEntryCode |
VoucherEntryCode is an auto-generated table. |
Warehouse |
Warehouse is an auto-generated table. |
Account
Account is an auto-generated table.
Columns
| Name | Type | ReadOnly | Description |
|---|---|---|---|
Id [KEY] |
String |
True | |
TaxCategory |
String |
False | |
AccountGroup |
String |
False | |
AccountClass |
String |
False | |
ConsolidationAccount |
String |
False | |
Type |
String |
False | |
AccountCD [KEY] |
String |
False | |
PostOption |
String |
False | |
RequireUnits |
Bool |
False | |
LastModifiedDateTime |
Datetime |
False | |
AccountID |
Int |
False | |
CurrencyID |
String |
False | |
CreatedDateTime |
Datetime |
False | |
Active |
Bool |
False | |
RevaluationRateType |
String |
False | |
Secured |
Bool |
False | |
UseDefaultSubaccount |
Bool |
False | |
CashAccount |
Bool |
False | |
Description |
String |
False | |
ChartOfAccountsOrder |
Int |
False | |
Custom_AccountRecords_NoteText |
String |
False | |
Custom_AccountRecords_NoteID |
String |
False |
AccountByPeriodInquiry
AccountByPeriodInquiry is an auto-generated table.
Columns
| Name | Type | ReadOnly | Description |
|---|---|---|---|
Id [KEY] |
String |
True | |
Subaccount |
String |
False | |
LinkedResults |
String |
False | |
Account [KEY] |
String |
False | |
Ledger |
String |
False | |
BranchID |
String |
False | |
FinancialYear |
String |
False | |
Custom_Filter_ShowCuryDetail |
Bool |
False |
AccountBySubaccountInquiry
AccountBySubaccountInquiry is an auto-generated table.
Columns
| Name | Type | ReadOnly | Description |
|---|---|---|---|
Id [KEY] |
String |
True | |
Subaccount |
String |
False | |
Branch |
String |
False | |
LinkedResults |
String |
False | |
Account [KEY] |
String |
False | |
Ledger |
String |
False | |
Period |
String |
False | |
Custom_Filter_ShowCuryDetail |
Bool |
False |
AccountDetailsInquiry
AccountDetailsInquiry is an auto-generated table.
Columns
| Name | Type | ReadOnly | Description |
|---|---|---|---|
Id [KEY] |
String |
True | |
FromPeriod |
String |
False | |
ToPeriod |
String |
False | |
LinkedResults |
String |
False | |
PeriodStartDate |
Datetime |
False | |
PeriodEndDate |
Datetime |
False | |
BeginingBalance |
Double |
False | |
Account [KEY] |
String |
False | |
FromDate |
Datetime |
False | |
Turnover |
Double |
False | |
IncludeReclassified |
Bool |
False | |
Subaccount |
String |
False | |
IncludeUnreleased |
Bool |
False | |
ToDate |
Datetime |
False | |
Branch |
String |
False | |
Ledger |
String |
False | |
IncludeUnposted |
Bool |
False | |
EndingBalance |
Double |
False | |
Custom_Filter_ShowCuryDetail |
Bool |
False | |
Custom_Filter_StartDateUI |
String |
False | |
Custom_Filter_ShowSummary |
Bool |
False | |
Custom_Filter_PeriodStartDateUI |
String |
False |
AccountLocation
AccountLocation is an auto-generated table.
Columns
| Name | Type | ReadOnly | Description |
|---|---|---|---|
Id [KEY] |
String |
True | |
DefaultProject |
String |
False | |
Warehouse |
String |
False | |
ShippingRule |
String |
False | |
FreightAccount |
String |
False | |
FOBPoint |
String |
False | |
BusinessAccountID |
String |
False | |
ShippingTerms |
String |
False | |
ARAccount |
String |
False | |
LinkedContact |
String |
False | |
Calendar |
String |
False | |
ShippingBranch |
String |
False | |
SaturdayDelivery |
Bool |
False | |
Active |
Bool |
False | |
ShippingZone |
String |
False | |
ResidentialDelivery |
Bool |
False | |
DiscountSubaccount |
String |
False | |
LocationID [KEY] |
String |
False | |
SameAsDefaultLocation |
Bool |
False | |
TaxZone |
String |
False | |
SalesAccount |
String |
False | |
LeadTimeInDays |
Int |
False | |
TaxRegistrationID |
String |
False | |
AddressValidated |
Bool |
False | |
ARSubaccount |
String |
False | |
FedExGroundCollect |
Bool |
False | |
SalesSubaccount |
String |
False | |
LinkedAddress |
String |
False | |
PriceClass |
String |
False | |
OrderPriority |
Int |
False | |
ShipVia |
String |
False | |
FreightSubaccount |
String |
False | |
Insurance |
Bool |
False | |
DiscountAccount |
String |
False | |
EntityUsageType |
String |
False | |
LinkedOpportunities |
String |
False | |
TaxExemptionNumber |
String |
False | |
AddressSameAsMain |
Bool |
False | |
LinkedCases |
String |
False | |
LocationName |
String |
False | |
Custom_LocationCurrent_CSiteID |
String |
False | |
Custom_LocationCurrent_CDiscountSubID |
String |
False | |
Custom_LocationCurrent_CInsurance |
Bool |
False | |
Custom_LocationCurrent_CCarrierID |
String |
False | |
Custom_LocationCurrent_CShipTermsID |
String |
False | |
Custom_LocationCurrent_CLeadTime |
Int |
False | |
Custom_LocationCurrent_NoteID |
String |
False | |
Custom_LocationCurrent_IsAddressSameAsMain |
Bool |
False | |
Custom_LocationCurrent_CDefProjectID |
String |
False | |
Custom_LocationCurrent_CFreightAcctID |
String |
False | |
Custom_LocationCurrent_CTaxZoneID |
String |
False | |
Custom_LocationCurrent_IsARAccountSameAsMain |
Bool |
False | |
Custom_LocationCurrent_CCalendarID |
String |
False | |
Custom_LocationCurrent_CAvalaraExemptionNumber |
String |
False | |
Custom_LocationCurrent_CPriceClassID |
String |
False | |
Custom_LocationCurrent_COrderPriority |
Int |
False | |
Custom_Address_NoteID |
String |
False | |
Custom_LocationCurrent_CShipZoneID |
String |
False | |
Custom_LocationCurrent_CDiscountAcctID |
String |
False | |
Custom_LocationCurrent_CResedential |
Bool |
False | |
Custom_LocationCurrent_CBranchID |
String |
False | |
Custom_LocationCurrent_CAvalaraCustomerUsageType |
String |
False | |
Custom_LocationCurrent_CFreightSubID |
String |
False | |
Custom_LocationCurrent_CSalesAcctID |
String |
False | |
Custom_Location_NoteText |
String |
False | |
Custom_LocationCurrent_CSalesSubID |
String |
False | |
Custom_LocationCurrent_TaxRegistrationID |
String |
False | |
Custom_LocationCurrent_CGroundCollect |
Bool |
False | |
Custom_LocationCurrent_CFOBPointID |
String |
False | |
Custom_LocationCurrent_CSaturdayDelivery |
Bool |
False | |
Custom_Location_NoteID |
String |
False | |
Custom_LocationCurrent_CShipComplete |
String |
False |
AccountSummaryInquiry
AccountSummaryInquiry is an auto-generated table.
Columns
| Name | Type | ReadOnly | Description |
|---|---|---|---|
Id [KEY] |
String |
True | |
Subaccount |
String |
False | |
Branch |
String |
False | |
LinkedResults |
String |
False | |
Ledger |
String |
False | |
Period |
String |
False | |
AccountClass [KEY] |
String |
False | |
Custom_Filter_ShowCuryDetail |
Bool |
False |
Adjustment
Adjustment is an auto-generated table.
Columns
| Name | Type | ReadOnly | Description |
|---|---|---|---|
Id [KEY] |
String |
True | |
Description |
String |
False | |
TotalQty |
Double |
False | |
TotalCost |
Double |
False | |
Hold |
Bool |
False | |
ExternalRef |
String |
False | |
Date |
Datetime |
False | |
Status |
String |
False | |
ReferenceNbr [KEY] |
String |
False | |
LinkedDetails |
String |
False | |
Custom_adjustment_ControlQty |
String |
False | |
Custom_adjustment_NoteText |
String |
False | |
Custom_adjustment_NoteID |
String |
False | |
Custom_adjustment_FinPeriodID |
String |
False | |
Custom_adjustment_ControlCost |
String |
False |
AttributeDefinition
AttributeDefinition is an auto-generated table.
Columns
| Name | Type | ReadOnly | Description |
|---|---|---|---|
Id [KEY] |
String |
True | |
Description |
String |
False | |
LinkedValues |
String |
False | |
Internal |
Bool |
False | |
ControlType |
String |
False | |
AttributeID [KEY] |
String |
False | |
EntryMask |
String |
False | |
LastModifiedDateTime |
Datetime |
False | |
CreatedDateTime |
Datetime |
False | |
RegExp |
String |
False | |
Custom_Attributes_NoteID |
String |
False |
Bill
Bill is an auto-generated table.
Columns
| Name | Type | ReadOnly | Description |
|---|---|---|---|
Id [KEY] |
String |
True | |
Date |
Datetime |
False | |
LinkedDetails |
String |
False | |
Type [KEY] |
String |
False | |
DueDate |
Datetime |
False | |
BranchID |
String |
False | |
LocationID |
String |
False | |
CurrencyID |
String |
False | |
Balance |
Double |
False | |
LinkedApplications |
String |
False | |
ReferenceNbr [KEY] |
String |
False | |
Terms |
String |
False | |
Status |
String |
False | |
ApprovedForPayment |
Bool |
False | |
TaxTotal |
Double |
False | |
Hold |
Bool |
False | |
PostPeriod |
String |
False | |
Amount |
Double |
False | |
Vendor |
String |
False | |
LinkedTaxDetails |
String |
False | |
CashAccount |
String |
False | |
Description |
String |
False | |
VendorRef |
String |
False | |
Custom_CurrentDocument_PayLocationID |
String |
False | |
Custom_CurrentDocument_SuppliedByVendorID |
String |
False | |
Custom_Document_DiscDate |
String |
False | |
Custom_CurrentDocument_PayDate |
String |
False | |
Custom_CurrentDocument_PayAccountID |
String |
False | |
Custom_Document_CuryLineTotal |
String |
False | |
Custom_CurrentDocument_EmployeeID |
String |
False | |
Custom_CurrentDocument_UsesManualVAT |
Bool |
False | |
Custom_CurrentDocument_EmployeeWorkgroupID |
String |
False | |
Custom_CurrentDocument_BatchNbr |
String |
False | |
Custom_CurrentDocument_APSubID |
String |
False | |
Custom_CurrentDocument_PaySel |
Bool |
False | |
Custom_CurrentDocument_OrigRefNbr |
String |
False | |
Custom_CurrentDocument_CuryDiscountedPrice |
String |
False | |
Custom_Document_CuryVatExemptTotal |
String |
False | |
Custom_CurrentDocument_PrebookSubID |
String |
False | |
Custom_CurrentDocument_PrebookBatchNbr |
String |
False | |
Custom_CurrentDocument_CuryDiscountedDocTotal |
String |
False | |
Custom_Document_CuryViewState |
Bool |
False | |
Custom_Document_CuryOrigWhTaxAmt |
String |
False | |
Custom_CurrentDocument_SuppliedByVendorLocationID |
String |
False | |
Custom_CurrentDocument_NoteID |
String |
False | |
Custom_Document_NoteText |
String |
False | |
Custom_CurrentDocument_PayTypeID |
String |
False | |
Custom_Document_CuryRoundDiff |
String |
False | |
Custom_Document_CuryInitDocBal |
String |
False | |
Custom_CurrentDocument_DisplayCuryInitDocBal |
String |
False | |
Custom_CurrentDocument_PrebookAcctID |
String |
False | |
Custom_CurrentDocument_VoidBatchNbr |
String |
False | |
Custom_Document_NoteID |
String |
False | |
Custom_Document_CuryTaxAmt |
String |
False | |
Custom_CurrentDocument_APAccountID |
String |
False | |
Custom_Document_CuryVatTaxableTotal |
String |
False | |
Custom_CurrentDocument_TaxCalcMode |
String |
False | |
Custom_CurrentDocument_TaxZoneID |
String |
False | |
Custom_CurrentDocument_CuryDiscountedTaxableTotal |
String |
False | |
Custom_Document_LCEnabled |
Bool |
False | |
Custom_Document_CuryOrigDiscAmt |
String |
False | |
Custom_CurrentDocument_SeparateCheck |
Bool |
False | |
Custom_Document_CuryDiscTot |
String |
False |
BusinessAccount
BusinessAccount is an auto-generated table.
Columns
| Name | Type | ReadOnly | Description |
|---|---|---|---|
Id [KEY] |
String |
True | |
WorkgroupDescription |
String |
False | |
LinkedLocations |
String |
False | |
LinkedMainContact |
String |
False | |
ParentAccount |
String |
False | |
AccountRef |
String |
False | |
BusinessAccountID [KEY] |
String |
False | |
LinkedContacts |
String |
False | |
ShippingAddressSameAsMain |
Bool |
False | |
Duplicate |
String |
False | |
Name |
String |
False | |
SourceCampaign |
String |
False | |
Owner |
String |
False | |
LinkedCases |
String |
False | |
LinkedCampaigns |
String |
False | |
LinkedRelations |
String |
False | |
Workgroup |
String |
False | |
Type |
String |
False | |
LinkedActivities |
String |
False | |
LinkedShippingContact |
String |
False | |
LinkedMainAddress |
String |
False | |
LinkedDuplicates |
String |
False | |
Status |
String |
False | |
LastOutgoingActivity |
Datetime |
False | |
LinkedMarketingLists |
String |
False | |
LinkedDefaultLocationSettings |
String |
False | |
LinkedAttributes |
String |
False | |
LinkedOpportunities |
String |
False | |
ClassID |
String |
False | |
LinkedContracts |
String |
False | |
LinkedShippingAddress |
String |
False | |
MainAddressValidated |
Bool |
False | |
ShippingAddressValidated |
Bool |
False | |
LastIncomingActivity |
Datetime |
False | |
LinkedOrders |
String |
False | |
OwnerEmployeeName |
String |
False | |
Custom_CurrentBAccount_NoteID |
String |
False | |
Custom_DefLocationCurrent_NoteID |
String |
False | |
Custom_AddressCurrent_NoteID |
String |
False | |
Custom_DefLocationAddress_NoteID |
String |
False | |
Custom_BAccount_NoteID |
String |
False | |
Custom_BAccount_NoteText |
String |
False |
Carrier
Carrier is an auto-generated table.
Columns
| Name | Type | ReadOnly | Description |
|---|---|---|---|
Id [KEY] |
String |
True | |
Description |
String |
False | |
CarrierUnitOfWeight |
String |
False | |
PlugInType |
String |
False | |
LinkedPlugInParameters |
String |
False | |
CarrierID [KEY] |
String |
False | |
UOM |
String |
False | |
LastModifiedDateTime |
Datetime |
False | |
CreatedDateTime |
Datetime |
False | |
LinkedCustomerAccounts |
String |
False | |
Custom_Plugin_NoteID |
String |
False | |
Custom_Plugin_NoteText |
String |
False |
Case
Case is an auto-generated table.
Columns
| Name | Type | ReadOnly | Description |
|---|---|---|---|
Id [KEY] |
String |
True | |
ManualOverride |
Bool |
False | |
Subject |
String |
False | |
LinkedAttributes |
String |
False | |
Status |
String |
False | |
OwnerEmployeeName |
String |
False | |
OvertimeSpent |
String |
False | |
Description |
String |
False | |
Owner |
String |
False | |
LinkedActivities |
String |
False | |
ContactID |
Int |
False | |
BillableTime |
Int |
False | |
Severity |
String |
False | |
ResolutionTime |
String |
False | |
LinkedRelations |
String |
False | |
Contract |
String |
False | |
ClosingDate |
Datetime |
False | |
DateReported |
Datetime |
False | |
InitialResponse |
String |
False | |
LastOutgoingActivity |
Datetime |
False | |
LastActivityDate |
Datetime |
False | |
Workgroup |
String |
False | |
LastIncomingActivity |
Datetime |
False | |
BusinessAccountName |
String |
False | |
ClassID |
String |
False | |
Billable |
Bool |
False | |
ContactDisplayName |
String |
False | |
Reason |
String |
False | |
TimeSpent |
String |
False | |
Location |
String |
False | |
Priority |
String |
False | |
BillableOvertime |
Int |
False | |
SLA |
Datetime |
False | |
BusinessAccount |
String |
False | |
LinkedRelatedCases |
String |
False | |
CaseID [KEY] |
String |
False | |
WorkgroupDescription |
String |
False | |
Custom_CaseCurrent_NoteID |
String |
False | |
Custom_CaseCurrent_ContractID |
String |
False | |
Custom_Case_NoteText |
String |
False | |
Custom_CaseCurrent_CustomerID |
String |
False | |
Custom_CaseCurrent_OvertimeSpent |
String |
False | |
Custom_CaseCurrent_IsBillable |
Bool |
False | |
Custom_CaseCurrent_ManualBillableTimes |
Bool |
False | |
Custom_CaseCurrent_TimeBillable |
Int |
False | |
Custom_CaseCurrent_TimeSpent |
String |
False | |
Custom_CaseCurrent_LocationID |
String |
False | |
Custom_CaseCurrent_OvertimeBillable |
Int |
False | |
Custom_Case_NoteID |
String |
False | |
Custom_CaseCurrent_WorkgroupID |
String |
False | |
Custom_CaseCurrent_WorkgroupID_description |
String |
False | |
Custom_CaseCurrent_TimeResolution |
String |
False | |
Custom_CaseCurrent_InitResponse |
String |
False |
CashSale
CashSale is an auto-generated table.
Columns
| Name | Type | ReadOnly | Description |
|---|---|---|---|
Id [KEY] |
String |
True | |
Description |
String |
False | |
Type [KEY] |
String |
False | |
CustomerID |
String |
False | |
PaymentMethod |
String |
False | |
Hold |
Bool |
False | |
Amount |
Double |
False | |
CashAccount |
String |
False | |
Date |
Datetime |
False | |
PaymentRef |
String |
False | |
Status |
String |
False | |
ReferenceNbr [KEY] |
String |
False | |
LinkedDetails |
String |
False | |
TaxTotal |
Double |
False | |
CreatedDateTime |
Datetime |
False | |
Balance |
Double |
False | |
LastModifiedDateTime |
Datetime |
False | |
Custom_Document_DepositAfter |
String |
False | |
Custom_Document_PMInstanceID |
Int |
False | |
Custom_Document_CCPaymentStateDescr |
String |
False | |
Custom_Document_NoteText |
String |
False | |
Custom_Document_CuryChargeAmt |
String |
False | |
Custom_Document_RefTranExtNbr |
String |
False | |
Custom_Document_CuryConsolidateChargeTotal |
String |
False | |
Custom_Document_CuryLineTotal |
String |
False | |
Custom_Document_IsCCPayment |
Bool |
False | |
Custom_Document_PMInstanceID_description |
String |
False | |
Custom_Document_CustomerLocationID |
String |
False | |
Custom_Document_CuryRoundDiff |
String |
False | |
Custom_Document_ProjectID |
String |
False | |
Custom_Document_CuryID |
String |
False | |
Custom_Document_NoteID |
String |
False | |
Custom_Document_CuryVatExemptTotal |
String |
False | |
Custom_Document_AdjFinPeriodID |
String |
False | |
Custom_Document_CuryVatTaxableTotal |
String |
False | |
Custom_Document_CuryViewState |
Bool |
False | |
Custom_Document_CuryOrigDiscAmt |
String |
False |
Check
Check is an auto-generated table.
Columns
| Name | Type | ReadOnly | Description |
|---|---|---|---|
Id [KEY] |
String |
True | |
Description |
String |
False | |
Type [KEY] |
String |
False | |
CurrencyID |
String |
False | |
Vendor |
String |
False | |
LinkedHistory |
String |
False | |
PaymentMethod |
String |
False | |
UnappliedBalance |
Double |
False | |
ApplicationDate |
Datetime |
False | |
Hold |
Bool |
False | |
CashAccount |
String |
False | |
PaymentRef |
String |
False | |
Status |
String |
False | |
ReferenceNbr [KEY] |
String |
False | |
LinkedDetails |
String |
False | |
PaymentAmount |
Double |
False | |
Custom_Document_NoteID |
String |
False | |
Custom_Document_DepositAfter |
String |
False | |
Custom_Document_NoteText |
String |
False | |
Custom_Document_CuryApplAmt |
String |
False | |
Custom_Document_AdjFinPeriodID |
String |
False | |
Custom_Document_PTInstanceID_description |
String |
False | |
Custom_Document_CuryChargeAmt |
String |
False | |
Custom_Document_CuryViewState |
Bool |
False | |
Custom_Document_PTInstanceID |
Int |
False | |
Custom_Document_VendorLocationID |
String |
False | |
Custom_Document_CuryInitDocBal |
String |
False |
Contact
Contact is an auto-generated table.
Columns
| Name | Type | ReadOnly | Description |
|---|---|---|---|
Id [KEY] |
String |
True | |
LanguageOrLocale |
String |
False | |
DuplicateFound |
Bool |
False | |
JobTitle |
String |
False | |
MiddleName |
String |
False | |
FirstName |
String |
False | |
DoNotFax |
Bool |
False | |
LinkedAttributes |
String |
False | |
Status |
String |
False | |
ParentAccount |
String |
False | |
OwnerEmployeeName |
String |
False | |
Phone3 |
String |
False | |
Phone2 |
String |
False | |
Phone1 |
String |
False | |
Phone2Type |
String |
False | |
MaritalStatus |
String |
False | |
Email |
String |
False | |
FaxType |
String |
False | |
LinkedMarketingLists |
String |
False | |
DoNotCall |
Bool |
False | |
LinkedNotifications |
String |
False | |
Active |
Bool |
False | |
LinkedDuplicates |
String |
False | |
Owner |
String |
False | |
DoNotMail |
Bool |
False | |
Title |
String |
False | |
Gender |
String |
False | |
LinkedActivities |
String |
False | |
Phone1Type |
String |
False | |
ContactID [KEY] |
Int |
False | |
WebSite |
String |
False | |
LinkedRelations |
String |
False | |
ContactClass |
String |
False | |
CompanyName |
String |
False | |
AddressIsSameAsInAccount |
Bool |
False | |
NoMassMail |
Bool |
False | |
LastOutgoingActivity |
Datetime |
False | |
DisplayName |
String |
False | |
LinkedUserInfo |
String |
False | |
ContactMethod |
String |
False | |
Workgroup |
String |
False | |
AddressValidated |
Bool |
False | |
LastIncomingActivity |
Datetime |
False | |
LinkedCampaigns |
String |
False | |
SourceCampaign |
String |
False | |
SpouseOrPartnerName |
String |
False | |
LinkedAddress |
String |
False | |
Reason |
String |
False | |
Synchronize |
Bool |
False | |
ConvertedBy |
String |
False | |
Image |
String |
False | |
Type |
String |
False | |
NoMarketing |
Bool |
False | |
DateOfBirth |
Datetime |
False | |
Duplicate |
String |
False | |
DoNotEmail |
Bool |
False | |
Phone3Type |
String |
False | |
Source |
String |
False | |
BusinessAccount |
String |
False | |
LastName |
String |
False | |
LinkedOpportunities |
String |
False | |
Fax |
String |
False | |
QualificationDate |
Datetime |
False | |
WorkgroupDescription |
String |
False | |
LinkedCases |
String |
False | |
Custom_ContactCurrent_NoMarketing |
Bool |
False | |
Custom_ContactCurrent_DuplicateStatus |
String |
False | |
Custom_ContactCurrent2_NoteID |
String |
False | |
Custom_ContactCurrent_FullName |
String |
False | |
Custom_ContactCurrent_NoEMail |
Bool |
False | |
Custom_ContactCurrent_Method |
String |
False | |
Custom_ContactCurrent_ParentBAccountID |
String |
False | |
Custom_ContactCurrent_Synchronize |
Bool |
False | |
Custom_ContactCurrent_Gender |
String |
False | |
Custom_ContactCurrent_QualificationDate |
String |
False | |
Custom_ContactCurrent_DateOfBirth |
String |
False | |
Custom_ContactCurrent_ConvertedBy |
String |
False | |
Custom_Contact_ContactID_displayName |
String |
False | |
Custom_ContactCurrent_NoteID |
String |
False | |
Custom_ContactCurrent_CampaignID |
String |
False | |
Custom_ContactCurrent_LanguageID |
String |
False | |
Custom_ContactCurrent_Resolution |
String |
False | |
Custom_ContactCurrent_Source |
String |
False | |
Custom_ContactCurrent_MaritalStatus |
String |
False | |
Custom_ContactCurrent_NoFax |
Bool |
False | |
Custom_AddressCurrent_NoteID |
String |
False | |
Custom_ContactCurrent_NoCall |
Bool |
False | |
Custom_ContactCurrent_Status |
String |
False | |
Custom_ContactCurrent_NoMail |
Bool |
False | |
Custom_ContactCurrent_Img |
String |
False | |
Custom_ContactCurrent_Spouse |
String |
False | |
Custom_ContactCurrent_NoMassMail |
Bool |
False | |
Custom_Contact_NoteID |
String |
False | |
Custom_Contact_NoteText |
String |
False |
Currency
Currency is an auto-generated table.
Columns
| Name | Type | ReadOnly | Description |
|---|---|---|---|
Id [KEY] |
String |
True | |
DecimalPrecision |
Int |
False | |
CurrencyID [KEY] |
String |
False | |
Active |
Bool |
False | |
CreatedDateTime |
Datetime |
False | |
CurrencySymbol |
String |
False | |
Description |
String |
False | |
UseForAccounting |
Bool |
False | |
LastModifiedDateTime |
Datetime |
False |
Customer
Customer is an auto-generated table.
Columns
| Name | Type | ReadOnly | Description |
|---|---|---|---|
Id [KEY] |
String |
True | |
LinkedBillingContact |
String |
False | |
ShippingRule |
String |
False | |
AccountRef |
String |
False | |
CurrencyID |
String |
False | |
BillingAddressSameAsMain |
Bool |
False | |
LinkedAttributes |
String |
False | |
Status |
String |
False | |
WarehouseID |
String |
False | |
PrintStatements |
Bool |
False | |
ShippingAddressSameAsMain |
Bool |
False | |
FOBPoint |
String |
False | |
AutoApplyPayments |
Bool |
False | |
ShippingTerms |
String |
False | |
PrintDunningLetters |
Bool |
False | |
CustomerID [KEY] |
String |
False | |
CustomerClass |
String |
False | |
ParentRecord |
String |
False | |
ShippingBranch |
String |
False | |
LinkedMainContact |
String |
False | |
SaturdayDelivery |
Bool |
False | |
CurrencyRateType |
String |
False | |
StatementCycleID |
String |
False | |
SendStatementsbyEmail |
Bool |
False | |
LeadTimedays |
Int |
False | |
ResidentialDelivery |
Bool |
False | |
LinkedShippingContact |
String |
False | |
LinkedPaymentInstructions |
String |
False | |
PriceClassID |
String |
False | |
SendDunningLettersbyEmail |
Bool |
False | |
Terms |
String |
False | |
CustomerName |
String |
False | |
TaxZone |
String |
False | |
PrintInvoices |
Bool |
False | |
LastModifiedDateTime |
Datetime |
False | |
MultiCurrencyStatements |
Bool |
False | |
EnableCurrencyOverride |
Bool |
False | |
WriteOffLimit |
Double |
False | |
EnableRateOverride |
Bool |
False | |
TaxRegistrationID |
String |
False | |
ApplyOverdueCharges |
Bool |
False | |
SendInvoicesbyEmail |
Bool |
False | |
ShippingZoneID |
String |
False | |
BillingContactSameAsMain |
Bool |
False | |
StatementType |
String |
False | |
LinkedContacts |
String |
False | |
ShippingContactSameAsMain |
Bool |
False | |
OrderPriority |
Int |
False | |
ShipVia |
String |
False | |
CreatedDateTime |
Datetime |
False | |
EnableWriteOffs |
Bool |
False | |
LinkedSalespersons |
String |
False | |
LinkedCreditVerificationRules |
String |
False | |
LocationName |
String |
False |
CustomerClass
CustomerClass is an auto-generated table.
Columns
| Name | Type | ReadOnly | Description |
|---|---|---|---|
Id [KEY] |
String |
True | |
OverdueChargeID |
String |
False | |
GroupDocumentDiscountLimit |
Double |
False | |
CreditVerification |
String |
False | |
ShippingRule |
String |
False | |
FreightAccount |
String |
False | |
CurrencyID |
String |
False | |
LinkedAttributes |
String |
False | |
PrintStatements |
Bool |
False | |
CreditLimit |
Double |
False | |
PaymentMethod |
String |
False | |
DefaultRestrictionGroup |
String |
False | |
OverLimitAmount |
Double |
False | |
AutoApplyPayments |
Bool |
False | |
ShippingTerms |
String |
False | |
ARAccount |
String |
False | |
DefaultLocationIDfromBranch |
Bool |
False | |
PrintDunningLetters |
Bool |
False | |
MiscAccount |
String |
False | |
SalespersonID |
String |
False | |
UnrealizedGainAccount |
String |
False | |
SendStatementsByEmail |
Bool |
False | |
Description |
String |
False | |
CurrencyRateType |
String |
False | |
StatementCycleID |
String |
False | |
CashDiscountSubaccount |
String |
False | |
DiscountSubaccount |
String |
False | |
RequireTaxZone |
Bool |
False | |
COGSAccount |
String |
False | |
SendDunningLettersbyEmail |
Bool |
False | |
Terms |
String |
False | |
UnrealizedGainSubaccount |
String |
False | |
UnrealizedLossSubaccount |
String |
False | |
PrintInvoices |
Bool |
False | |
SalesAccount |
String |
False | |
MultiCurrencyStatements |
Bool |
False | |
LastModifiedDateTime |
Datetime |
False | |
EnableCurrencyOverride |
Bool |
False | |
CashDiscountAccount |
String |
False | |
COGSSubaccount |
String |
False | |
TaxZoneID |
String |
False | |
WriteOffLimit |
Double |
False | |
EnableRateOverride |
Bool |
False | |
ApplyOverdueCharges |
Bool |
False | |
RequireEntityUsageType |
Bool |
False | |
Country |
String |
False | |
SendInvoicesbyEmail |
Bool |
False | |
ClassID [KEY] |
String |
False | |
ARSubaccount |
String |
False | |
PrepaymentSubaccount |
String |
False | |
SalesSubaccount |
String |
False | |
StatementType |
String |
False | |
MiscSubaccount |
String |
False | |
PrepaymentAccount |
String |
False | |
CreditDaysPastDue |
Int |
False | |
ShipVia |
String |
False | |
FreightSubaccount |
String |
False | |
DiscountAccount |
String |
False | |
CreatedDateTime |
Datetime |
False | |
EntityUsageType |
String |
False | |
EnableWriteOffs |
Bool |
False | |
UnrealizedLossAccount |
String |
False | |
Custom_CurCustomerClassRecord_FinChargeApply |
Bool |
False | |
Custom_CurCustomerClassRecord_FreightAcctID |
String |
False | |
Custom_CurCustomerClassRecord_DiscTakenSubID |
String |
False | |
Custom_CurCustomerClassRecord_FinChargeID |
String |
False | |
Custom_CurCustomerClassRecord_CreditLimit |
String |
False | |
Custom_CurCustomerClassRecord_COGSAcctID |
String |
False | |
Custom_CustomerClassRecord_LocaleName_translatedName |
String |
False | |
Custom_CurCustomerClassRecord_UnrealizedGainAcctID |
String |
False | |
Custom_CurCustomerClassRecord_SmallBalanceAllow |
Bool |
False | |
Custom_CurCustomerClassRecord_PrepaymentAcctID |
String |
False | |
Custom_CurCustomerClassRecord_PrintDunningLetters |
Bool |
False | |
Custom_CurCustomerClassRecord_CuryID |
String |
False | |
Custom_CurCustomerClassRecord_ARAcctID |
String |
False | |
Custom_CurCustomerClassRecord_DiscountAcctID |
String |
False | |
Custom_CurCustomerClassRecord_AllowOverrideCury |
Bool |
False | |
Custom_CurCustomerClassRecord_AutoApplyPayments |
Bool |
False | |
Custom_CurCustomerClassRecord_OverLimitAmount |
String |
False | |
Custom_CustomerClassRecord_NoteID |
String |
False | |
Custom_CurCustomerClassRecord_UnrealizedLossAcctID |
String |
False | |
Custom_CurCustomerClassRecord_DiscountLimit |
String |
False | |
Custom_CurCustomerClassRecord_ARSubID |
String |
False | |
Custom_CurCustomerClassRecord_NoteID |
String |
False | |
Custom_CustomerClassRecord_LocaleName |
String |
False | |
Custom_CurCustomerClassRecord_CreditRule |
String |
False | |
Custom_CurCustomerClassRecord_DiscountSubID |
String |
False | |
Custom_CurCustomerClassRecord_SalesSubID |
String |
False | |
Custom_CurCustomerClassRecord_MailDunningLetters |
Bool |
False | |
Custom_CurCustomerClassRecord_COGSSubID |
String |
False | |
Custom_CurCustomerClassRecord_MiscAcctID |
String |
False | |
Custom_CurCustomerClassRecord_SmallBalanceLimit |
String |
False | |
Custom_CurCustomerClassRecord_ShipTermsID |
String |
False | |
Custom_CurCustomerClassRecord_TermsID |
String |
False | |
Custom_CurCustomerClassRecord_SalesAcctID |
String |
False | |
Custom_CurCustomerClassRecord_ShipComplete |
String |
False | |
Custom_CurCustomerClassRecord_StatementType |
String |
False | |
Custom_CurCustomerClassRecord_MiscSubID |
String |
False | |
Custom_CurCustomerClassRecord_AllowOverrideRate |
Bool |
False | |
Custom_CurCustomerClassRecord_DefPaymentMethodID |
String |
False | |
Custom_CurCustomerClassRecord_DiscTakenAcctID |
String |
False | |
Custom_CustomerClassRecord_NoteText |
String |
False | |
Custom_CurCustomerClassRecord_UnrealizedGainSubID |
String |
False | |
Custom_CurCustomerClassRecord_CreditDaysPastDue |
Int |
False | |
Custom_CurCustomerClassRecord_UnrealizedLossSubID |
String |
False | |
Custom_CurCustomerClassRecord_PrintCuryStatements |
Bool |
False | |
Custom_CurCustomerClassRecord_CuryRateTypeID |
String |
False | |
Custom_CurCustomerClassRecord_FreightSubID |
String |
False | |
Custom_CurCustomerClassRecord_PrintStatements |
Bool |
False | |
Custom_CurCustomerClassRecord_MailInvoices |
Bool |
False | |
Custom_CurCustomerClassRecord_SendStatementByEmail |
Bool |
False | |
Custom_CurCustomerClassRecord_PrepaymentSubID |
String |
False | |
Custom_CurCustomerClassRecord_PrintInvoices |
Bool |
False | |
Custom_CurCustomerClassRecord_StatementCycleId |
String |
False | |
Custom_CurCustomerClassRecord_ShipVia |
String |
False |
CustomerLocation
CustomerLocation is an auto-generated table.
Columns
| Name | Type | ReadOnly | Description |
|---|---|---|---|
Id [KEY] |
String |
True | |
TaxRegistrationID |
String |
False | |
ShippingTerms |
String |
False | |
ShippingZone |
String |
False | |
TaxZone |
String |
False | |
ShipVia |
String |
False | |
Warehouse |
String |
False | |
Insurance |
Bool |
False | |
FOBPoint |
String |
False | |
AddressSameAsMain |
Bool |
False | |
LinkedLocationContact |
String |
False | |
LeadTimeDays |
Int |
False | |
TaxExemptionNbr |
String |
False | |
FedExGroundCollect |
Bool |
False | |
Customer |
String |
False | |
EntityUsageType |
String |
False | |
ShippingRule |
String |
False | |
LocationName |
String |
False | |
LocationID [KEY] |
String |
False | |
LastModifiedDateTime |
Datetime |
False | |
Calendar |
String |
False | |
CreatedDateTime |
Datetime |
False | |
PriceClass |
String |
False | |
DefaultProject |
String |
False | |
Active |
Bool |
False | |
ContactSameAsMain |
Bool |
False | |
SaturdayDelivery |
Bool |
False | |
ShippingBranch |
String |
False | |
OrderPriority |
Int |
False | |
ResidentialDelivery |
Bool |
False |
CustomerPaymentMethod
CustomerPaymentMethod is an auto-generated table.
Columns
| Name | Type | ReadOnly | Description |
|---|---|---|---|
Id [KEY] |
String |
True | |
CustomerID [KEY] |
String |
False | |
Active |
Bool |
False | |
PaymentMethod [KEY] |
String |
False | |
CashAccount |
String |
False | |
CustomerProfileID |
String |
False | |
LinkedDetails |
String |
False | |
InstanceID |
Int |
False | |
CardAccountNbr |
String |
False | |
CreatedDateTime |
Datetime |
False | |
LastModifiedDateTime |
Datetime |
False | |
ProcCenterID |
String |
False | |
Custom_CustomerPaymentMethod_NoteText |
String |
False | |
Custom_CustomerPaymentMethod_HasBillingInfo |
Bool |
False | |
Custom_CustomerPaymentMethod_ExpirationDate |
String |
False | |
Custom_CustomerPaymentMethod_NoteID |
String |
False |
CustomerPriceClass
CustomerPriceClass is an auto-generated table.
Columns
| Name | Type | ReadOnly | Description |
|---|---|---|---|
Id [KEY] |
String |
True | |
CreatedDateTime |
Datetime |
False | |
Description |
String |
False | |
LastModifiedDateTime |
Datetime |
False | |
PriceClassID [KEY] |
String |
False | |
Custom_Records_SortOrder |
Int |
False | |
Custom_Records_NoteText |
String |
False | |
Custom_Records_NoteID |
String |
False |
Discount
Discount is an auto-generated table.
Columns
| Name | Type | ReadOnly | Description |
|---|---|---|---|
Id [KEY] |
String |
True | |
Promotional |
Bool |
False | |
LinkedCustomerPriceClasses |
String |
False | |
BreakBy |
String |
False | |
LinkedItemPriceClasses |
String |
False | |
LinkedDiscountBreakpoints |
String |
False | |
DiscountCode [KEY] |
String |
False | |
LinkedCustomers |
String |
False | |
Sequence [KEY] |
String |
False | |
EffectiveDate |
Datetime |
False | |
ProrateDiscount |
Bool |
False | |
LastModifiedDateTime |
Datetime |
False | |
DiscountBy |
String |
False | |
CreatedDateTime |
Datetime |
False | |
Active |
Bool |
False | |
LinkedWarehouses |
String |
False | |
LinkedItems |
String |
False | |
ExpirationDate |
Datetime |
False | |
ShowFreeItem |
Bool |
False | |
Description |
String |
False | |
Custom_Sequence_NoteID |
String |
False | |
Custom_Sequence_NoteText |
String |
False |
DiscountCode
DiscountCode is an auto-generated table.
Columns
| Name | Type | ReadOnly | Description |
|---|---|---|---|
Id [KEY] |
String |
True | |
ApplicableTo |
String |
False | |
CreatedDateTime |
Datetime |
False | |
DiscountType |
String |
False | |
Description |
String |
False | |
LastModifiedDateTime |
Datetime |
False | |
DiscountCodeID [KEY] |
String |
False | |
Custom_Document_IsManual |
Bool |
False | |
Custom_Document_IsAutoNumber |
Bool |
False | |
Custom_Document_ExcludeFromDiscountableAmt |
Bool |
False | |
Custom_Document_IsAppliedToDR |
Bool |
False | |
Custom_Document_SkipDocumentDiscounts |
Bool |
False | |
Custom_Document_LastNumber |
String |
False |
Email is an auto-generated table.
Columns
| Name | Type | ReadOnly | Description |
|---|---|---|---|
Id [KEY] |
String |
True | |
Bcc |
String |
False | |
Date |
Datetime |
False | |
To |
String |
False | |
StartTime |
Datetime |
False | |
Owner |
String |
False | |
Parent |
String |
False | |
RelatedEntityDescription |
String |
False | |
Workgroup |
String |
False | |
Subject |
String |
False | |
Internal |
Bool |
False | |
Incoming |
Bool |
False | |
LinkedTimeActivity |
String |
False | |
FromEmailAccountDisplayName |
String |
False | |
Body |
String |
False | |
Cc |
String |
False | |
MailStatus |
String |
False | |
ParentSummary |
String |
False | |
FromEmailAccountID |
Int |
False | |
Description |
String |
False | |
From |
String |
False | |
Custom_CurrentMessage_WorkgroupID |
String |
False | |
Custom_CurrentMessage_StartDate_Time |
String |
False | |
Custom_Message_MailTo_SearchSuggestion |
String |
False | |
Custom_CurrentMessage_Source |
String |
False | |
Custom_CurrentMessage_IsIncome |
Bool |
False | |
Custom_CurrentMessage_ParentNoteID |
String |
False | |
Custom_Message_MailBcc_SearchSuggestion |
String |
False | |
Custom_CurrentMessage_ParentNoteID_description |
String |
False | |
Custom_Message_NoteID |
String |
False | |
Custom_CurrentMessage_OwnerID |
String |
False | |
Custom_CurrentMessage_NoteID |
String |
False | |
Custom_Message_MailCc_SearchSuggestion |
String |
False | |
Custom_CurrentMessage_StartDate_Date |
String |
False | |
Custom_CurrentMessage_IsPrivate |
Bool |
False | |
Custom_Message_NoteText |
String |
False | |
Custom_CurrentMessage_MPStatus |
String |
False |
Employee
Employee is an auto-generated table.
Columns
| Name | Type | ReadOnly | Description |
|---|---|---|---|
Id [KEY] |
String |
True | |
CurrencyID |
String |
False | |
LinkedContact |
String |
False | |
PaymentMethod |
String |
False | |
EmployeeClassID |
String |
False | |
Name |
String |
False | |
Status |
String |
False | |
BranchID |
String |
False | |
ReportsToID |
String |
False | |
LinkedEmployeeCost |
String |
False | |
EmployeeID [KEY] |
String |
False | |
LinkedEmploymentHistory |
String |
False | |
DepartmentID |
String |
False | |
DateOfBirth |
Datetime |
False |
Event
Event is an auto-generated table.
Columns
| Name | Type | ReadOnly | Description |
|---|---|---|---|
Id [KEY] |
String |
True | |
Location |
String |
False | |
AllDay |
Bool |
False | |
StartTime |
Datetime |
False | |
ShowAs |
String |
False | |
LinkedReminder |
String |
False | |
EndDate |
Datetime |
False | |
RelatedEntityDescription |
String |
False | |
Summary [KEY] |
String |
False | |
NoteID |
String |
False | |
Internal |
Bool |
False | |
LinkedTimeActivity |
String |
False | |
Status |
String |
False | |
LinkedAttendees |
String |
False | |
Body |
String |
False | |
Category |
String |
False | |
EndTime |
Datetime |
False | |
StartDate |
Datetime |
False | |
LinkedRelatedActivities |
String |
False | |
Priority |
String |
False | |
Custom_Events_NoteText |
String |
False |
FinancialPeriod
FinancialPeriod is an auto-generated table.
Columns
| Name | Type | ReadOnly | Description |
|---|---|---|---|
Id [KEY] |
String |
True | |
UserDefinedPeriods |
Bool |
False | |
LinkedDetails |
String |
False | |
NbrOfPeriods |
Int |
False | |
CreatedDateTime |
Datetime |
False | |
FinancialYear |
String |
False | |
LastModifiedDateTime |
Datetime |
False | |
StartDate |
Datetime |
False | |
Custom_FiscalYear_NoteID |
String |
False | |
Custom_FiscalYear_NoteText |
String |
False |
FOBPoint
FOBPoint is an auto-generated table.
Columns
| Name | Type | ReadOnly | Description |
|---|---|---|---|
Id [KEY] |
String |
True | |
Description |
String |
False | |
FOBPointID [KEY] |
String |
False | |
Custom_FOBPoint_NoteText |
String |
False | |
Custom_FOBPoint_NoteID |
String |
False |
InterBranchAccountMapping
InterBranchAccountMapping is an auto-generated table.
Columns
| Name | Type | ReadOnly | Description |
|---|---|---|---|
Id [KEY] |
String |
True | |
LinkedTransactionsInSourceBranch |
String |
False | |
OriginatingBranch [KEY] |
String |
False | |
PostingLedger |
String |
False | |
LinkedTransactionsInDestinationBranch |
String |
False |
InventoryAllocationInquiry
InventoryAllocationInquiry is an auto-generated table.
Columns
| Name | Type | ReadOnly | Description |
|---|---|---|---|
Id [KEY] |
String |
True | |
Location |
String |
False | |
KitAssemblyDemand |
Double |
False | |
OnHand |
Double |
False | |
PurchaseOrders |
Double |
False | |
OnLocationNotAvailable |
Double |
False | |
SOToPurchase |
Double |
False | |
PurchaseReceipts |
Double |
False | |
LinkedResults |
String |
False | |
SOPrepared |
Double |
False | |
PurchaseForSO |
Double |
False | |
InventoryIssues |
Double |
False | |
InTransitToSO |
Double |
False | |
SOShipped |
Double |
False | |
KitAssemblySupply |
Double |
False | |
PurchasePrepared |
Double |
False | |
AvailableForIssue |
Double |
False | |
TotalAddition |
Double |
False | |
TotalDeduction |
Double |
False | |
AvailableForShipping |
Double |
False | |
SOBackOrdered |
Double |
False | |
Available |
Double |
False | |
InTransit |
Double |
False | |
SOBooked |
Double |
False | |
PurchaseForSOPrepared |
Double |
False | |
ReceiptsForSO |
Double |
False | |
SOAllocated |
Double |
False | |
WarehouseID |
String |
False | |
BaseUnit |
String |
False | |
InventoryReceipts |
Double |
False | |
InventoryID [KEY] |
String |
False | |
Custom_Filter_InclQtyInTransit |
Bool |
False | |
Custom_Filter_QtyPODropShipOrders |
String |
False | |
Custom_Filter_LotSerialNbr |
String |
False | |
Custom_Filter_QtyPODropShipPrepared |
String |
False | |
Custom_Filter_SubItemCD |
String |
False | |
Custom_Filter_InclQtyPOPrepared |
Bool |
False | |
Custom_Filter_Label2 |
String |
False | |
Custom_Filter_InclQtyINReceipts |
Bool |
False | |
Custom_Filter_Label |
String |
False | |
Custom_Filter_InclQtyINAssemblySupply |
Bool |
False | |
Custom_Filter_QtyPODropShipReceipts |
String |
False | |
Custom_Filter_InclQtyINAssemblyDemand |
Bool |
False | |
Custom_Filter_InclQtySOBackOrdered |
Bool |
False | |
Custom_Filter_InclQtySOShipping |
Bool |
False | |
Custom_Filter_InclQtySOShipped |
Bool |
False | |
Custom_Filter_InclQtySOBooked |
Bool |
False | |
Custom_Filter_InclQtyINIssues |
Bool |
False | |
Custom_Filter_InclQtyPOReceipts |
Bool |
False | |
Custom_Filter_InclQtySOPrepared |
Bool |
False | |
Custom_Filter_InclQtyPOOrders |
Bool |
False | |
Custom_Filter_QtyExpired |
String |
False | |
Custom_Filter_QtySODropShip |
String |
False |
InventoryReceipt
InventoryReceipt is an auto-generated table.
Columns
| Name | Type | ReadOnly | Description |
|---|---|---|---|
Id [KEY] |
String |
True | |
Description |
String |
False | |
TransferNbr |
String |
False | |
TotalQty |
Double |
False | |
TotalCost |
Double |
False | |
Hold |
Bool |
False | |
Date |
Datetime |
False | |
Status |
String |
False | |
ReferenceNbr [KEY] |
String |
False | |
LinkedDetails |
String |
False | |
ControlCost |
Double |
False | |
ControlQty |
Double |
False | |
PostPeriod |
String |
False | |
Custom_receipt_NoteText |
String |
False | |
Custom_receipt_ExtRefNbr |
String |
False | |
Custom_receipt_NoteID |
String |
False |
InventorySummaryInquiry
InventorySummaryInquiry is an auto-generated table.
Columns
| Name | Type | ReadOnly | Description |
|---|---|---|---|
Id [KEY] |
String |
True | |
LinkedResults |
String |
False | |
WarehouseID |
String |
False | |
ExpandByLotSerialNbr |
Bool |
False | |
InventoryID [KEY] |
String |
False | |
Subitem |
String |
False | |
LocationID |
String |
False |
Invoice
Invoice is an auto-generated table.
Columns
| Name | Type | ReadOnly | Description |
|---|---|---|---|
Id [KEY] |
String |
True | |
LinkBranch |
String |
False | |
Date |
Datetime |
False | |
LinkedApplicationsCreditMemo |
String |
False | |
BillingPrinted |
Bool |
False | |
LinkARAccount |
String |
False | |
LinkedDetails |
String |
False | |
Customer |
String |
False | |
Type [KEY] |
String |
False | |
DueDate |
Datetime |
False | |
LocationID |
String |
False | |
LastModifiedDateTime |
Datetime |
False | |
Balance |
Double |
False | |
ReferenceNbr [KEY] |
String |
False | |
Terms |
String |
False | |
Status |
String |
False | |
CreatedDateTime |
Datetime |
False | |
CustomerOrder |
String |
False | |
Project |
String |
False | |
TaxTotal |
Double |
False | |
Hold |
Bool |
False | |
Amount |
Double |
False | |
PostPeriod |
String |
False | |
LinkedTaxDetails |
String |
False | |
Description |
String |
False | |
LinkedApplicationsDefault |
String |
False | |
Custom_CurrentDocument_DontEmail |
Bool |
False | |
Custom_Document_DiscDate |
String |
False | |
Custom_CurrentDocument_WorkgroupID |
String |
False | |
Custom_CurrentDocument_PMInstanceID_description |
String |
False | |
Custom_Document_CuryLineTotal |
String |
False | |
Custom_CurrentDocument_BatchNbr |
String |
False | |
Custom_Document_CuryID |
String |
False | |
Custom_CurrentDocument_OrigRefNbr |
String |
False | |
Custom_CurrentDocument_CuryDiscountedPrice |
String |
False | |
Custom_CurrentDocument_AvalaraCustomerUsageType |
String |
False | |
Custom_Document_CuryVatExemptTotal |
String |
False | |
Custom_CurrentDocument_CuryDiscountedDocTotal |
String |
False | |
Custom_Document_CuryViewState |
Bool |
False | |
Custom_CurrentDocument_ARSubID |
String |
False | |
Custom_CurrentDocument_CuryCommnblAmt |
String |
False | |
Custom_CurrentDocument_NoteID |
String |
False | |
Custom_Document_NoteText |
String |
False | |
Custom_CurrentDocument_ApplyOverdueCharge |
Bool |
False | |
Custom_CurrentDocument_CashAccountID |
String |
False | |
Custom_Document_CuryRoundDiff |
String |
False | |
Custom_CurrentDocument_PMInstanceID |
Int |
False | |
Custom_Document_CuryInitDocBal |
String |
False | |
Custom_CurrentDocument_DisplayCuryInitDocBal |
String |
False | |
Custom_Document_NoteID |
String |
False | |
Custom_CurrentDocument_CampaignID |
String |
False | |
Custom_CurrentDocument_DontPrint |
Bool |
False | |
Custom_CurrentDocument_OwnerID |
String |
False | |
Custom_Document_CuryVatTaxableTotal |
String |
False | |
Custom_CurrentDocument_TaxZoneID |
String |
False | |
Custom_CurrentDocument_CuryCommnAmt |
String |
False | |
Custom_CurrentDocument_CuryDiscountedTaxableTotal |
String |
False | |
Custom_CurrentDocument_Emailed |
Bool |
False | |
Custom_CurrentDocument_PaymentMethodID |
String |
False | |
Custom_CurrentDocument_Revoked |
Bool |
False | |
Custom_CurrentDocument_SalesPersonID |
String |
False | |
Custom_Document_CuryOrigDiscAmt |
String |
False | |
Custom_Document_CuryDiscTot |
String |
False | |
Custom_CurrentDocument_Printed |
Bool |
False |
ItemClass
ItemClass is an auto-generated table.
Columns
| Name | Type | ReadOnly | Description |
|---|---|---|---|
Id [KEY] |
String |
True | |
Description |
String |
False | |
PriceClass |
String |
False | |
LinkedAttributes |
String |
False | |
TaxCategoryID |
String |
False | |
PurchaseUOM |
String |
False | |
ItemType |
String |
False | |
SalesUOM |
String |
False | |
PostingClass |
String |
False | |
StockItem |
Bool |
False | |
ValuationMethod |
String |
False | |
DefaultWarehouseID |
String |
False | |
ClassID [KEY] |
String |
False | |
BaseUOM |
String |
False | |
LotSerialClass |
String |
False | |
LastModifiedDateTime |
Datetime |
False | |
AvailabilityCalculationRule |
String |
False | |
Custom_itemclasssettings_TaxCalcMode |
String |
False | |
Custom_itemclasssettings_NegQty |
Bool |
False | |
Custom_itemclasssettings_DemandCalculation |
String |
False | |
Custom_itemclasssettings_PriceWorkgroupID |
String |
False | |
Custom_itemclasssettings_MinGrossProfitPct |
String |
False | |
Custom_itemclasssettings_PriceManagerID |
String |
False | |
Custom_itemclasssettings_SalesUnit |
String |
False | |
Custom_itemclasssettings_MarkupPct |
String |
False | |
Custom_itemclasssettings_NoteID |
String |
False | |
Custom_itemclass_NoteID |
String |
False | |
Custom_itemclass_NoteText |
String |
False | |
Custom_itemclasssettings_PurchaseUnit |
String |
False | |
Custom_itemclasssettings_BaseUnit |
String |
False |
ItemWarehouse
ItemWarehouse is an auto-generated table.
Columns
| Name | Type | ReadOnly | Description |
|---|---|---|---|
Id [KEY] |
String |
True | |
OverrideServiceLevelOverride |
Bool |
False | |
OverrideReplenishmentSettings |
Bool |
False | |
ProductManager |
String |
False | |
ReplenishmentSource |
String |
False | |
OverrideInventoryAccountSubaccount |
Bool |
False | |
DefaultReceiptTo |
String |
False | |
ReplenishmentClass |
String |
False | |
DefaultSubitem |
String |
False | |
ProductWorkgroup |
String |
False | |
InventorySubaccount |
String |
False | |
LastModifiedDateTime |
Datetime |
False | |
PreferredVendor |
String |
False | |
MSRP |
Double |
False | |
Status |
String |
False | |
InventoryAccount |
String |
False | |
CreatedDateTime |
Datetime |
False | |
ReplenishmentWarehouse |
String |
False | |
OverridePreferredVendor |
Bool |
False | |
ReplenishmentMethod |
String |
False | |
PreferredLocation |
String |
False | |
Seasonality |
String |
False | |
OverrideStandardCost |
Bool |
False | |
WarehouseID [KEY] |
String |
False | |
ServiceLevel |
Double |
False | |
DefaultIssueFrom |
String |
False | |
OverridePrice |
Bool |
False | |
InventoryID [KEY] |
String |
False | |
Custom_itemsitesettings_SubItemOverride |
Bool |
False | |
Custom_itemsitesettings_SafetyStock |
String |
False | |
Custom_itemsitesettings_MaxQty |
String |
False | |
Custom_itemsitesettings_LaunchDate |
String |
False | |
Custom_itemsitesettings_PreferredVendorOverride |
Bool |
False | |
Custom_itemsitesettings_SafetyStockOverride |
Bool |
False | |
Custom_itemsitesettings_MinQtySuggested |
String |
False | |
Custom_itemsitesettings_RecPriceOverride |
Bool |
False | |
Custom_itemsitesettings_ServiceLevelOverride |
Bool |
False | |
Custom_itemsitesettings_ReplenishmentMethod |
String |
False | |
Custom_itemsitesettings_MaxShelfLife |
Int |
False | |
Custom_itemsitesettings_TerminationDate |
String |
False | |
Custom_itemsitesettings_ABCCodeID |
String |
False | |
Custom_itemsitesettings_TerminationDateOverride |
Bool |
False | |
Custom_itemsiterecord_NoteID |
String |
False | |
Custom_itemsitesettings_MovementClassIsFixed |
Bool |
False | |
Custom_itemsitesettings_TransferERQ |
String |
False | |
Custom_itemsitesettings_ServiceLevelPct |
String |
False | |
Custom_itemsitesettings_MovementClassOverride |
Bool |
False | |
Custom_itemsitesettings_MinQty |
String |
False | |
Custom_itemsitesettings_MaxQtyOverride |
Bool |
False | |
Custom_itemsitesettings_LastForecastDate |
String |
False | |
Custom_itemsitesettings_ReplenishmentClassID |
String |
False | |
Custom_itemsitesettings_InventoryItem_DefaultSubItemID |
String |
False | |
Custom_itemsitesettings_ReplenishmentPolicyOverride |
Bool |
False | |
Custom_itemsitesettings_LeadTimeSTDEV |
String |
False | |
Custom_itemsitesettings_PendingStdCostDate |
String |
False | |
Custom_itemsitesettings_LastStdCost |
String |
False | |
Custom_itemsitesettings_MaxShelfLifeOverride |
Bool |
False | |
Custom_itemsitesettings_InvtAcctID |
String |
False | |
Custom_itemsitesettings_PendingStdCost |
String |
False | |
Custom_itemsitesettings_LaunchDateOverride |
Bool |
False | |
Custom_itemsitesettings_DemandPerDayAverage |
String |
False | |
Custom_itemsitesettings_ReplenishmentPolicyID |
String |
False | |
Custom_itemsitesettings_SafetyStockSuggested |
String |
False | |
Custom_itemsitesettings_ABCCodeIsFixed |
Bool |
False | |
Custom_itemsitesettings_StdCost |
String |
False | |
Custom_itemsitesettings_ABCCodeOverride |
Bool |
False | |
Custom_itemsitesettings_RecPrice |
String |
False | |
Custom_itemsitesettings_DemandPerDaySTDEV |
String |
False | |
Custom_itemsitesettings_MinCost |
String |
False | |
Custom_itemsitesettings_InvtSubID |
String |
False | |
Custom_itemsitesettings_OverrideInvtAcctSub |
Bool |
False | |
Custom_itemsitesettings_PriceWorkgroupID |
String |
False | |
Custom_itemsitesettings_PreferredVendorLocationID |
String |
False | |
Custom_itemsitesettings_MaxCost |
String |
False | |
Custom_itemsitesettings_ReplenishmentSource |
String |
False | |
Custom_itemsitesettings_LastCost |
String |
False | |
Custom_itemsitesettings_AvgCost |
String |
False | |
Custom_itemsitesettings_PriceManagerID |
String |
False | |
Custom_itemsitesettings_TransferERQOverride |
Bool |
False | |
Custom_itemsitesettings_StdCostOverride |
Bool |
False | |
Custom_itemsitesettings_NoteID |
String |
False | |
Custom_itemsitesettings_MovementClassID |
String |
False | |
Custom_itemsitesettings_Commissionable |
Bool |
False | |
Custom_itemsitesettings_PreferredVendorID |
String |
False | |
Custom_itemsitesettings_LeadTimeAverage |
String |
False | |
Custom_itemsitesettings_MarkupPct |
String |
False | |
Custom_itemsitesettings_MinQtyOverride |
Bool |
False | |
Custom_itemsitesettings_MarkupPctOverride |
Bool |
False | |
Custom_itemsiterecord_NoteText |
String |
False | |
Custom_itemsitesettings_StdCostDate |
String |
False | |
Custom_itemsitesettings_ReplenishmentSourceSiteID |
String |
False |
JournalTransaction
JournalTransaction is an auto-generated table.
Columns
| Name | Type | ReadOnly | Description |
|---|---|---|---|
Id [KEY] |
String |
True | |
Description |
String |
False | |
CurrencyID |
String |
False | |
Hold |
Bool |
False | |
Module [KEY] |
String |
False | |
TransactionDate |
Datetime |
False | |
BatchNbr [KEY] |
String |
False | |
Status |
String |
False | |
LinkedDetails |
String |
False | |
BranchID |
String |
False | |
LedgerID |
String |
False | |
CreatedDateTime |
Datetime |
False | |
LastModifiedDateTime |
Datetime |
False | |
PostPeriod |
String |
False | |
Custom_BatchModule_CuryViewState |
Bool |
False | |
Custom_BatchModule_NoteID |
String |
False | |
Custom_BatchModule_CuryCreditTotal |
String |
False | |
Custom_BatchModule_BatchType |
String |
False | |
Custom_BatchModule_SkipTaxValidation |
Bool |
False | |
Custom_BatchModule_ReverseCount |
Int |
False | |
Custom_BatchModule_CreateTaxTrans |
Bool |
False | |
Custom_BatchModule_CuryDebitTotal |
String |
False | |
Custom_BatchModule_AutoReverseCopy |
Bool |
False | |
Custom_BatchModule_OrigBatchNbr |
String |
False | |
Custom_BatchModule_CuryControlTotal |
String |
False | |
Custom_BatchModule_AutoReverse |
Bool |
False | |
Custom_BatchModule_NoteText |
String |
False |
JournalVoucher
JournalVoucher is an auto-generated table.
Columns
| Name | Type | ReadOnly | Description |
|---|---|---|---|
Id [KEY] |
String |
True | |
ControlTotal |
Double |
False | |
BaseCurrencyID |
String |
False | |
ReciprocalRate |
Double |
False | |
TransactionDate |
Datetime |
False | |
Ledger |
String |
False | |
LinkedDetails |
String |
False | |
EffectiveDate |
Datetime |
False | |
LastModifiedDateTime |
Datetime |
False | |
Branch |
String |
False | |
DebitTotal |
Double |
False | |
CurrencyID |
String |
False | |
BatchNbr [KEY] |
String |
False | |
Status |
String |
False | |
CreditTotal |
Double |
False | |
CreatedDateTime |
Datetime |
False | |
Hold |
Bool |
False | |
PostPeriod |
String |
False | |
CurrencyRate |
Double |
False | |
CurrencyRateTypeID |
String |
False | |
Description |
String |
False | |
LinkedGLTransactions |
String |
False | |
Custom_BatchModule_CuryViewState |
Bool |
False | |
Custom_BatchModule_NoteID |
String |
False | |
Custom_BatchModule_NoteText |
String |
False |
KitAssembly
KitAssembly is an auto-generated table.
Columns
| Name | Type | ReadOnly | Description |
|---|---|---|---|
Id [KEY] |
String |
True | |
Date |
Datetime |
False | |
KitInventoryID |
String |
False | |
LinkedNonStockComponents |
String |
False | |
UOM |
String |
False | |
Subitem |
String |
False | |
Revision |
String |
False | |
Type |
String |
False | |
LocationID |
String |
False | |
LinkedAllocations |
String |
False | |
ReferenceNbr |
String |
False | |
Status |
String |
False | |
Qty |
Double |
False | |
Hold |
Bool |
False | |
PostPeriod |
String |
False | |
LinkedStockComponents |
String |
False | |
WarehouseID |
String |
False | |
ReasonCode |
String |
False | |
Description |
String |
False | |
Custom_Document_NoteID |
String |
False | |
Custom_Document_NoteText |
String |
False |
KitSpecification
KitSpecification is an auto-generated table.
Columns
| Name | Type | ReadOnly | Description |
|---|---|---|---|
Id [KEY] |
String |
True | |
KitInventoryID [KEY] |
String |
False | |
LinkedStockComponents |
String |
False | |
Active |
Bool |
False | |
RevisionID [KEY] |
String |
False | |
Description |
String |
False | |
LinkedNonStockComponents |
String |
False | |
IsNonStock |
Bool |
False | |
Custom_Hdr_AllowCompAddition |
Bool |
False | |
Custom_Hdr_NoteID |
String |
False | |
Custom_Hdr_NoteText |
String |
False | |
Custom_Hdr_KitSubItemID |
String |
False |
Lead
Lead is an auto-generated table.
Columns
| Name | Type | ReadOnly | Description |
|---|---|---|---|
Id [KEY] |
String |
True | |
LanguageOrLocale |
String |
False | |
DuplicateFound |
Bool |
False | |
JobTitle |
String |
False | |
FirstName |
String |
False | |
DoNotFax |
Bool |
False | |
LinkedAttributes |
String |
False | |
Status |
String |
False | |
ParentAccount |
String |
False | |
OwnerEmployeeName |
String |
False | |
Phone3 |
String |
False | |
LeadClass |
String |
False | |
Phone2 |
String |
False | |
Phone1 |
String |
False | |
Phone2Type |
String |
False | |
Email |
String |
False | |
FaxType |
String |
False | |
LinkedMarketingLists |
String |
False | |
DoNotCall |
Bool |
False | |
LeadID [KEY] |
Int |
False | |
LinkedDuplicates |
String |
False | |
Owner |
String |
False | |
DoNotMail |
Bool |
False | |
Title |
String |
False | |
LinkedActivities |
String |
False | |
Phone1Type |
String |
False | |
WebSite |
String |
False | |
LinkedRelations |
String |
False | |
CompanyName |
String |
False | |
NoMassMail |
Bool |
False | |
LastOutgoingActivity |
Datetime |
False | |
LeadDisplayName |
String |
False | |
ContactMethod |
String |
False | |
Workgroup |
String |
False | |
LastIncomingActivity |
Datetime |
False | |
LinkedCampaigns |
String |
False | |
SourceCampaign |
String |
False | |
LinkedAddress |
String |
False | |
Reason |
String |
False | |
NoMarketing |
Bool |
False | |
Duplicate |
String |
False | |
DoNotEmail |
Bool |
False | |
Phone3Type |
String |
False | |
Source |
String |
False | |
BusinessAccount |
String |
False | |
LastName |
String |
False | |
Fax |
String |
False | |
WorkgroupDescription |
String |
False | |
Custom_LeadCurrent_Method |
String |
False | |
Custom_LeadCurrent_NoMarketing |
Bool |
False | |
Custom_LeadCurrent_Source |
String |
False | |
Custom_Lead_NoteText |
String |
False | |
Custom_LeadCurrent_CampaignID |
String |
False | |
Custom_LeadCurrent_NoMassMail |
Bool |
False | |
Custom_LeadCurrent_NoMail |
Bool |
False | |
Custom_LeadCurrent_LanguageID |
String |
False | |
Custom_LeadCurrent_ClassID |
String |
False | |
Custom_Lead_FullName |
String |
False | |
Custom_LeadCurrent_NoEMail |
Bool |
False | |
Custom_LeadCurrent_NoFax |
Bool |
False | |
Custom_LeadCurrent_DuplicateStatus |
String |
False | |
Custom_Lead_ContactID_displayName |
String |
False | |
Custom_LeadCurrent_ParentBAccountID |
String |
False | |
Custom_LeadCurrent_NoteID |
String |
False | |
Custom_Lead_NoteID |
String |
False | |
Custom_LeadCurrent_NoCall |
Bool |
False |
LotSerialClass
LotSerialClass is an auto-generated table.
Columns
| Name | Type | ReadOnly | Description |
|---|---|---|---|
Id [KEY] |
String |
True | |
IssueMethod |
String |
False | |
TrackingMethod |
String |
False | |
ClassID [KEY] |
String |
False | |
LinkedSegments |
String |
False | |
AssignmentMethod |
String |
False | |
Description |
String |
False | |
TrackExpirationDate |
Bool |
False | |
Custom_lotserclass_NoteText |
String |
False | |
Custom_lotserclass_NoteID |
String |
False | |
Custom_lotserclass_LotSerNumVal |
String |
False | |
Custom_lotserclass_AutoSerialMaxCount |
Int |
False | |
Custom_lotserclass_LotSerNumShared |
Bool |
False | |
Custom_lotserclass_RequiredForDropship |
Bool |
False | |
Custom_lotserclass_AutoNextNbr |
Bool |
False |
NonStockItem
NonStockItem is an auto-generated table.
Columns
| Name | Type | ReadOnly | Description |
|---|---|---|---|
Id [KEY] |
String |
True | |
PendingCostDate |
Datetime |
False | |
IsKit |
Bool |
False | |
LinkedAttributes |
String |
False | |
WeightUOM |
String |
False | |
LinkedCrossReferences |
String |
False | |
ItemType |
String |
False | |
Volume |
Double |
False | |
VolumeUOM |
String |
False | |
POAccrualSubaccount |
String |
False | |
ExpenseAccrualSubaccount |
String |
False | |
CurrentCost |
Double |
False | |
POAccrualAccount |
String |
False | |
Weight |
Double |
False | |
Description |
String |
False | |
PendingCost |
Double |
False | |
EffectiveDate |
Datetime |
False | |
LinkedVendorDetails |
String |
False | |
DeferralAccount |
String |
False | |
PurchasePriceVarianceAccount |
String |
False | |
SalesUnit |
String |
False | |
PostingClass |
String |
False | |
DeferralSubaccount |
String |
False | |
ExpenseAccrualAccount |
String |
False | |
SalesAccount |
String |
False | |
TaxCategory |
String |
False | |
LastModifiedDateTime |
Datetime |
False | |
RequireReceipt |
Bool |
False | |
ExpenseAccount |
String |
False | |
LinkedSalesCategories |
String |
False | |
LastCost |
Double |
False | |
ItemClass |
String |
False | |
SalesSubaccount |
String |
False | |
BaseUnit |
String |
False | |
ReasonCodeSubaccount |
String |
False | |
PurchasePriceVarianceSubaccount |
String |
False | |
PriceClass |
String |
False | |
PurchaseUnit |
String |
False | |
ItemStatus |
String |
False | |
RequireShipment |
Bool |
False | |
DefaultPrice |
Double |
False | |
InventoryID [KEY] |
String |
False | |
ExpenseSubaccount |
String |
False | |
Custom_ItemSettings_Body |
String |
False | |
Custom_ItemSettings_PriceClassID |
String |
False | |
Custom_ItemSettings_NoteID |
String |
False | |
Custom_ItemSettings_TaxCalcMode |
String |
False | |
Custom_ItemSettings_TotalPercentage |
String |
False | |
Custom_ItemSettings_DeferralAcctID |
String |
False | |
Custom_ItemSettings_DefaultTermUOM |
String |
False | |
Custom_ItemSettings_DeferredCode |
String |
False | |
Custom_ItemSettings_InvtSubID |
String |
False | |
Custom_ItemSettings_LastStdCost |
String |
False | |
Custom_ItemSettings_BaseItemVolume |
String |
False | |
Custom_ItemSettings_StdCostDate |
String |
False | |
Custom_Item_ProductManagerID |
String |
False | |
Custom_ItemSettings_StdCost |
String |
False | |
Custom_ItemSettings_SalesAcctID |
String |
False | |
Custom_ItemSettings_Commisionable |
Bool |
False | |
Custom_ItemSettings_ImageUrl |
String |
False | |
Custom_ItemSettings_SalesUnit |
String |
False | |
Custom_ItemSettings_PurchaseUnit |
String |
False | |
Custom_ItemSettings_PendingStdCost |
String |
False | |
Custom_ItemSettings_DfltSiteID |
String |
False | |
Custom_ItemSettings_RecPrice |
String |
False | |
Custom_ItemSettings_BaseItemWeight |
String |
False | |
Custom_ItemSettings_ReasonCodeSubID |
String |
False | |
Custom_ItemSettings_SalesSubID |
String |
False | |
Custom_ItemSettings_PriceWorkgroupID |
String |
False | |
Custom_ItemSettings_DeferralSubID |
String |
False | |
Custom_Item_ProductWorkgroupID |
String |
False | |
Custom_Item_NoteID |
String |
False | |
Custom_ItemSettings_WeightUOM |
String |
False | |
Custom_ItemSettings_VolumeUOM |
String |
False | |
Custom_ItemSettings_POAccrualSubID |
String |
False | |
Custom_ItemSettings_PPVAcctID |
String |
False | |
Custom_ItemSettings_UseParentSubID |
Bool |
False | |
Custom_ItemSettings_PPVSubID |
String |
False | |
Custom_ItemSettings_CompletePOLine |
String |
False | |
Custom_ItemSettings_DefaultTerm |
String |
False | |
Custom_ItemSettings_BasePrice |
String |
False | |
Custom_ItemSettings_PriceManagerID |
String |
False | |
Custom_ItemSettings_MinGrossProfitPct |
String |
False | |
Custom_Item_NoteText |
String |
False | |
Custom_ItemSettings_POAccrualAcctID |
String |
False | |
Custom_ItemSettings_COGSAcctID |
String |
False | |
Custom_ItemSettings_InvtAcctID |
String |
False | |
Custom_ItemSettings_PendingStdCostDate |
String |
False | |
Custom_ItemSettings_MarkupPct |
String |
False | |
Custom_ItemSettings_COGSSubID |
String |
False | |
Custom_ItemSettings_BaseUnit |
String |
False |
Opportunity
Opportunity is an auto-generated table.
Columns
| Name | Type | ReadOnly | Description |
|---|---|---|---|
Id [KEY] |
String |
True | |
ManualAmount |
Bool |
False | |
Subject |
String |
False | |
CurrencyID |
String |
False | |
LinkedContactInformation |
String |
False | |
LinkedAttributes |
String |
False | |
Status |
String |
False | |
ParentAccount |
String |
False | |
OwnerEmployeeName |
String |
False | |
WorkgroupID |
String |
False | |
WeightTotal |
Double |
False | |
ConvertedLeadID |
Int |
False | |
Owner |
String |
False | |
Override |
Bool |
False | |
Total |
Double |
False | |
LinkedDiscounts |
String |
False | |
Estimation |
Datetime |
False | |
LinkedActivities |
String |
False | |
ContactID |
Int |
False | |
Branch |
String |
False | |
LinkedRelations |
String |
False | |
TaxZone |
String |
False | |
Amount |
Double |
False | |
ClassID |
String |
False | |
SourceCampaign |
String |
False | |
OpportunityID [KEY] |
String |
False | |
Details |
String |
False | |
Discount |
Double |
False | |
LinkedAddress |
String |
False | |
ContactDisplayName |
String |
False | |
Reason |
String |
False | |
CurrencyViewState |
Bool |
False | |
ConvertedLeadDisplayName |
String |
False | |
Location |
String |
False | |
LinkedTaxDetails |
String |
False | |
Source |
String |
False | |
BusinessAccount |
String |
False | |
Project |
String |
False | |
LinkedProducts |
String |
False | |
WorkgroupDescription |
String |
False | |
Stage |
String |
False | |
Custom_OpportunityCurrent_NoteID |
String |
False | |
Custom_Opportunity_NoteID |
String |
False | |
Custom_OpportunityCurrent_AllowOverrideContactAddress |
Bool |
False | |
Custom_Opportunity_NoteText |
String |
False |
Payment
Payment is an auto-generated table.
Columns
| Name | Type | ReadOnly | Description |
|---|---|---|---|
Id [KEY] |
String |
True | |
LinkedDocumentsToApply |
String |
False | |
ApplicationDate |
Datetime |
False | |
LinkedOrdersToApply |
String |
False | |
AppliedToDocuments |
Double |
False | |
LinkedApplicationHistory |
String |
False | |
LinkedCreditCardProcessingInfo |
String |
False | |
Type [KEY] |
String |
False | |
CustomerID |
String |
False | |
CurrencyID |
String |
False | |
ReferenceNbr [KEY] |
String |
False | |
Status |
String |
False | |
PaymentMethod |
String |
False | |
CardAccountNbr |
Int |
False | |
Hold |
Bool |
False | |
PaymentRef |
String |
False | |
PaymentAmount |
Double |
False | |
CashAccount |
String |
False | |
Description |
String |
False | |
Custom_Document_CCPaymentStateDescr |
String |
False | |
Custom_Document_DepositAfter |
String |
False | |
Custom_Document_NoteText |
String |
False | |
Custom_Document_CuryChargeAmt |
String |
False | |
Custom_Document_RefTranExtNbr |
String |
False | |
Custom_Document_CuryUnappliedBal |
String |
False | |
Custom_Document_CurySOApplAmt |
String |
False | |
Custom_Document_CuryConsolidateChargeTotal |
String |
False | |
Custom_Document_PMInstanceID_description |
String |
False | |
Custom_Document_IsCCPayment |
Bool |
False | |
Custom_Document_CustomerLocationID |
String |
False | |
Custom_Document_CuryInitDocBal |
String |
False | |
Custom_Document_NoteID |
String |
False | |
Custom_Document_CuryWOAmt |
String |
False | |
Custom_Document_AdjFinPeriodID |
String |
False | |
Custom_Document_CuryViewState |
Bool |
False |
PaymentMethod
PaymentMethod is an auto-generated table.
Columns
| Name | Type | ReadOnly | Description |
|---|---|---|---|
Id [KEY] |
String |
True | |
LinkedAllowedCashAccounts |
String |
False | |
Description |
String |
False | |
IntegratedProcessing |
Bool |
False | |
UseInAR |
Bool |
False | |
Active |
Bool |
False | |
RequireRemittanceInformationforCashAccount |
Bool |
False | |
UseInAP |
Bool |
False | |
PaymentMethodID [KEY] |
String |
False | |
MeansOfPayment |
String |
False | |
CreatedDateTime |
Datetime |
False | |
LastModifiedDateTime |
Datetime |
False | |
LinkedProcessingCenters |
String |
False | |
Custom_PaymentMethod_NoteText |
String |
False | |
Custom_PaymentMethod_NoteID |
String |
False |
PhysicalInventoryReview
PhysicalInventoryReview is an auto-generated table.
Columns
| Name | Type | ReadOnly | Description |
|---|---|---|---|
Id [KEY] |
String |
True | |
Description |
String |
False | |
WarehouseID |
String |
False | |
FreezeDate |
Datetime |
False | |
TotalVarianceCost |
Double |
False | |
Status |
String |
False | |
TotalVarianceQty |
Double |
False | |
TypeID |
String |
False | |
ReferenceNbr [KEY] |
String |
False | |
LinkedDetails |
String |
False | |
TotalPhysicalQty |
Double |
False | |
Custom_PIHeaderInfo_NoteID |
String |
False | |
Custom_PIHeader_NoteID |
String |
False | |
Custom_PIHeaderInfo_TotalPhysicalQty |
String |
False | |
Custom_PIHeaderInfo_TotalVarCost |
String |
False | |
Custom_PIHeaderInfo_TotalVarQty |
String |
False | |
Custom_PIHeader_NoteText |
String |
False | |
Custom_PIHeaderInfo_PIAdjRefNbr |
String |
False |
ProjectTransaction
ProjectTransaction is an auto-generated table.
Columns
| Name | Type | ReadOnly | Description |
|---|---|---|---|
Id [KEY] |
String |
True | |
Description |
String |
False | |
TotalQty |
Double |
False | |
Module [KEY] |
String |
False | |
TotalAmount |
Double |
False | |
Status |
String |
False | |
OriginalDocNbr |
String |
False | |
ReferenceNbr [KEY] |
String |
False | |
LinkedDetails |
String |
False | |
TotalBillableQty |
Double |
False | |
OriginalDocType |
String |
False | |
CreatedDateTime |
Datetime |
False | |
LastModifiedDateTime |
Datetime |
False | |
Custom_Document_NoteID |
String |
False | |
Custom_Transactions_NoteText |
String |
False | |
Custom_Transactions_NoteID |
String |
False | |
Custom_Transactions_CostCodeID |
String |
False |
PurchaseOrder
PurchaseOrder is an auto-generated table.
Columns
| Name | Type | ReadOnly | Description |
|---|---|---|---|
Id [KEY] |
String |
True | |
ControlTotal |
Double |
False | |
Location |
String |
False | |
Date |
Datetime |
False | |
PromisedOn |
Datetime |
False | |
Owner |
String |
False | |
LinkedShippingInstructions |
String |
False | |
LinkedDetails |
String |
False | |
Type [KEY] |
String |
False | |
LineTotal |
Double |
False | |
CurrencyID |
String |
False | |
VendorID |
String |
False | |
Status |
String |
False | |
OrderNbr [KEY] |
String |
False | |
TaxTotal |
Double |
False | |
Hold |
Bool |
False | |
OrderTotal |
Double |
False | |
Description |
String |
False | |
VendorRef |
String |
False | |
Custom_Document_NoteID |
String |
False | |
Custom_Document_Approved |
Bool |
False | |
Custom_Document_CuryVatExemptTotal |
String |
False | |
Custom_Document_NoteText |
String |
False | |
Custom_Document_CuryVatTaxableTotal |
String |
False | |
Custom_Document_CuryViewState |
Bool |
False | |
Custom_Document_RequestApproval |
Bool |
False | |
Custom_Document_ExpirationDate |
String |
False | |
Custom_Document_CuryDiscTot |
String |
False |
PurchaseReceipt
PurchaseReceipt is an auto-generated table.
Columns
| Name | Type | ReadOnly | Description |
|---|---|---|---|
Id [KEY] |
String |
True | |
Type [KEY] |
String |
False | |
TotalQty |
Double |
False | |
CurrencyID |
String |
False | |
VendorRef |
String |
False | |
ControlAmount |
Double |
False | |
Hold |
Bool |
False | |
CreateBill |
Bool |
False | |
Date |
Datetime |
False | |
ReceiptNbr [KEY] |
String |
False | |
Status |
String |
False | |
TotalAmount |
Double |
False | |
LinkedDetails |
String |
False | |
ControlQty |
Double |
False | |
PostPeriod |
String |
False | |
VendorID |
String |
False | |
Custom_Document_NoteID |
String |
False | |
Custom_Document_CuryVatExemptTotal |
String |
False | |
Custom_Document_NoteText |
String |
False | |
Custom_Document_SiteID |
String |
False | |
Custom_Document_CuryVatTaxableTotal |
String |
False | |
Custom_Document_CuryViewState |
Bool |
False | |
Custom_Document_VendorLocationID |
String |
False | |
Custom_Document_CuryDiscTot |
String |
False |
ReportingSettings
ReportingSettings is an auto-generated table.
Columns
| Name | Type | ReadOnly | Description |
|---|---|---|---|
Id [KEY] |
String |
True | |
LinkedReportingGroups |
String |
False | |
TaxAgency [KEY] |
String |
False | |
Custom_TaxVendor_ShowNoTemp |
Bool |
False | |
Custom_TaxVendor_NoteID |
String |
False |
SalesInvoice
SalesInvoice is an auto-generated table.
Columns
| Name | Type | ReadOnly | Description |
|---|---|---|---|
Id [KEY] |
String |
True | |
Description |
String |
False | |
Type [KEY] |
String |
False | |
CustomerOrder |
String |
False | |
LinkedBillingSettings |
String |
False | |
CustomerID |
String |
False | |
Hold |
Bool |
False | |
Amount |
Double |
False | |
DueDate |
Datetime |
False | |
Date |
Datetime |
False | |
Status |
String |
False | |
ReferenceNbr [KEY] |
String |
False | |
LinkedDetails |
String |
False | |
Balance |
Double |
False | |
LinkedFreightDetails |
String |
False | |
Custom_Document_NoteText |
String |
False | |
Custom_Document_DiscDate |
String |
False | |
Custom_Document_TermsID |
String |
False | |
Custom_Document_CreditHold |
Bool |
False | |
Custom_Document_CustomerLocationID |
String |
False | |
Custom_Document_ProjectID |
String |
False | |
Custom_Document_CuryID |
String |
False | |
Custom_Document_CuryVatExemptTotal |
String |
False | |
Custom_Document_NoteID |
String |
False | |
Custom_Document_CuryVatTaxableTotal |
String |
False | |
Custom_Document_CuryViewState |
Bool |
False | |
Custom_Document_FinPeriodID |
String |
False | |
Custom_Document_CuryOrigDiscAmt |
String |
False |
SalesOrder
SalesOrder is an auto-generated table.
Columns
| Name | Type | ReadOnly | Description |
|---|---|---|---|
Id [KEY] |
String |
True | |
LinkedShipToContact |
String |
False | |
OrderNbr [KEY] |
String |
False | |
CurrencyID |
String |
False | |
TaxTotal |
Double |
False | |
Status |
String |
False | |
CurrencyRate |
Double |
False | |
LinkedBillToContact |
String |
False | |
PaymentMethod |
String |
False | |
ControlTotal |
Double |
False | |
VATTaxableTotal |
Double |
False | |
ShipToAddressOverride |
Bool |
False | |
CustomerID |
String |
False | |
PreferredWarehouseID |
String |
False | |
OrderTotal |
Double |
False | |
PreAuthorizationNbr |
String |
False | |
BaseCurrencyID |
String |
False | |
Description |
String |
False | |
BillToAddressValidated |
Bool |
False | |
EffectiveDate |
Datetime |
False | |
IsTaxValid |
Bool |
False | |
BillToContactOverride |
Bool |
False | |
PreAuthorizedAmount |
Double |
False | |
LinkedShipments |
String |
False | |
Hold |
Bool |
False | |
CurrencyRateTypeID |
String |
False | |
LastModified |
Datetime |
False | |
LocationID |
String |
False | |
CreditHold |
Bool |
False | |
ShipToAddressValidated |
Bool |
False | |
LinkedShipToAddress |
String |
False | |
LinkedCommissions |
String |
False | |
LinkedDiscountDetails |
String |
False | |
CashAccount |
String |
False | |
ReciprocalRate |
Double |
False | |
OrderType [KEY] |
String |
False | |
LinkedBillToAddress |
String |
False | |
PaymentCardIdentifier |
String |
False | |
CustomerOrder |
String |
False | |
VATExemptTotal |
Double |
False | |
ExternalRef |
String |
False | |
BillToAddressOverride |
Bool |
False | |
LinkedDetails |
String |
False | |
NewCard |
Bool |
False | |
Date |
Datetime |
False | |
DestinationWarehouseID |
String |
False | |
LinkedPayments |
String |
False | |
PaymentRef |
String |
False | |
OrderedQty |
Double |
False | |
LinkedShippingSettings |
String |
False | |
Approved |
Bool |
False | |
ShipToContactOverride |
Bool |
False | |
ShipVia |
String |
False | |
RequestedOn |
Datetime |
False | |
LinkedTaxDetails |
String |
False | |
LinkedTotals |
String |
False | |
Project |
String |
False | |
LinkedFinancialSettings |
String |
False | |
Custom_CurrentDocument_CuryPremiumFreightAmt |
String |
False | |
Custom_CurrentDocument_DueDate |
String |
False | |
Custom_CurrentDocument_CuryDiscTot |
String |
False | |
Custom_CurrentDocument_CuryUnpaidBalance |
String |
False | |
Custom_CurrentDocument_PackageWeight |
String |
False | |
Custom_CurrentDocument_OverrideTaxZone |
Bool |
False | |
Custom_CurrentDocument_AvalaraCustomerUsageType |
String |
False | |
Custom_CurrentDocument_CuryOpenOrderTotal |
String |
False | |
Custom_CurrentDocument_CuryFreightCost |
String |
False | |
Custom_CurrentDocument_Insurance |
Bool |
False | |
Custom_CurrentDocument_CCAuthExpirationDate |
String |
False | |
Custom_CurrentDocument_CuryTaxTotal |
String |
False | |
Custom_CurrentDocument_CreatePMInstance |
Bool |
False | |
Custom_CurrentDocument_CuryPaymentTotal |
String |
False | |
Custom_CurrentDocument_PreAuthTranNumber |
String |
False | |
Custom_DefPaymentMethodInstance_NoteID |
String |
False | |
Custom_CurrentDocument_CancelDate |
String |
False | |
Custom_CurrentDocument_PMInstanceID |
Int |
False | |
Custom_CurrentDocument_FOBPoint |
String |
False | |
Custom_CurrentDocument_ExtRefNbr |
String |
False | |
Custom_CurrentDocument_GroundCollect |
Bool |
False | |
Custom_CurrentDocument_CuryMiscTot |
String |
False | |
Custom_CurrentDocument_Emailed |
Bool |
False | |
Custom_CurrentDocument_PaymentMethodID |
String |
False | |
Custom_Document_DontApprove |
Bool |
False | |
Custom_CurrentDocument_CCPaymentStateDescr |
String |
False | |
Custom_CurrentDocument_CuryUnbilledOrderTotal |
String |
False | |
Custom_CurrentDocument_CaptureTranNumber |
String |
False | |
Custom_CurrentDocument_UseCustomerAccount |
Bool |
False | |
Custom_CurrentDocument_OrigOrderType |
String |
False | |
Custom_CurrentDocument_FreightCostIsValid |
Bool |
False | |
Custom_CurrentDocument_DefaultSiteID |
String |
False | |
Custom_CurrentDocument_UnbilledOrderQty |
String |
False | |
Custom_CurrentDocument_Cancelled |
Bool |
False | |
Custom_CurrentDocument_OrigOrderNbr |
String |
False | |
Custom_CurrentDocument_PMInstanceID_description |
String |
False | |
Custom_CurrentDocument_CuryFreightAmt |
String |
False | |
Custom_CurrentDocument_OrderVolume |
String |
False | |
Custom_CurrentDocument_CCCardNumber |
String |
False | |
Custom_CurrentDocument_CuryCCPreAuthAmount |
String |
False | |
Custom_CurrentDocument_RefTranExtNbr |
String |
False | |
Custom_CurrentDocument_WillCall |
Bool |
False | |
Custom_CurrentDocument_FinPeriodID |
String |
False | |
Custom_CurrentDocument_OrderWeight |
String |
False | |
Custom_Document_CuryViewState |
Bool |
False | |
Custom_CurrentDocument_ShipZoneID |
String |
False | |
Custom_CurrentDocument_CuryLineTotal |
String |
False | |
Custom_CurrentDocument_ShipComplete |
String |
False | |
Custom_CurrentDocument_FreightTaxCategoryID |
String |
False | |
Custom_CurrentDocument_PCResponseReasonText |
String |
False | |
Custom_CurrentDocument_Resedential |
Bool |
False | |
Custom_CurrentDocument_NoteID |
String |
False | |
Custom_Document_NoteText |
String |
False | |
Custom_CurrentDocument_ShipDate |
String |
False | |
Custom_CurrentDocument_ShipTermsID |
String |
False | |
Custom_CurrentDocument_CashAccountID |
String |
False | |
Custom_DefPaymentMethodInstance_CCProcessingCenterID |
String |
False | |
Custom_CurrentDocument_ShipVia |
String |
False | |
Custom_Document_NoteID |
String |
False | |
Custom_CurrentDocument_SaturdayDelivery |
Bool |
False | |
Custom_CurrentDocument_CampaignID |
String |
False | |
Custom_CurrentDocument_TermsID |
String |
False | |
Custom_CurrentDocument_ShipSeparately |
Bool |
False | |
Custom_CurrentDocument_OwnerID |
String |
False | |
Custom_CurrentDocument_OpenOrderQty |
String |
False | |
Custom_CurrentDocument_TaxZoneID |
String |
False | |
Custom_CurrentDocument_BillSeparately |
Bool |
False | |
Custom_CurrentDocument_InvoiceNbr |
String |
False | |
Custom_CurrentDocument_Priority |
Int |
False | |
Custom_CurrentDocument_DiscDate |
String |
False | |
Custom_CurrentDocument_BranchID |
String |
False | |
Custom_CurrentDocument_InvoiceDate |
String |
False |
Salesperson
Salesperson is an auto-generated table.
Columns
| Name | Type | ReadOnly | Description |
|---|---|---|---|
Id [KEY] |
String |
True | |
Name |
String |
False | |
CreatedDateTime |
Datetime |
False | |
DefaultCommission |
Double |
False | |
IsActive |
Bool |
False | |
SalespersonID [KEY] |
String |
False | |
SalesSubaccount |
String |
False | |
LastModifiedDateTime |
Datetime |
False | |
Custom_Salesperson_NoteID |
String |
False | |
Custom_Salesperson_NoteText |
String |
False |
SalesPricesInquiry
SalesPricesInquiry is an auto-generated table.
Columns
| Name | Type | ReadOnly | Description |
|---|---|---|---|
Id [KEY] |
String |
True | |
EffectiveAsOf |
Datetime |
False | |
PriceCode |
String |
False | |
PriceClass |
String |
False | |
PriceWorkgroupIsMine |
Bool |
False | |
ItemClassID |
String |
False | |
LinkedSalesPriceDetails |
String |
False | |
PriceType |
String |
False | |
PriceManagerIsMe |
Bool |
False | |
PriceManager |
String |
False | |
InventoryID [KEY] |
String |
False | |
PriceWorkgroup |
String |
False | |
Custom_Filter_SiteID |
String |
False |
SalesPriceWorksheet
SalesPriceWorksheet is an auto-generated table.
Columns
| Name | Type | ReadOnly | Description |
|---|---|---|---|
Id [KEY] |
String |
True | |
Description |
String |
False | |
Hold |
Bool |
False | |
EffectiveDate |
Datetime |
False | |
ExpirationDate |
Datetime |
False | |
Status |
String |
False | |
ReferenceNbr [KEY] |
String |
False | |
LinkedSalesPrices |
String |
False | |
OverwriteOverlappingPrices |
Bool |
False | |
CreatedDateTime |
Datetime |
False | |
LastModifiedDateTime |
Datetime |
False | |
Custom_Document_NoteID |
String |
False | |
Custom_Document_IsPromotional |
Bool |
False |
Shipment
Shipment is an auto-generated table.
Columns
| Name | Type | ReadOnly | Description |
|---|---|---|---|
Id [KEY] |
String |
True | |
ShipmentNbr [KEY] |
String |
False | |
LinkedPackages |
String |
False | |
Operation |
String |
False | |
CurrencyID |
String |
False | |
Status |
String |
False | |
WarehouseID |
String |
False | |
CurrencyRate |
Double |
False | |
FOBPoint |
String |
False | |
PackageCount |
Int |
False | |
UseCustomersAccount |
Bool |
False | |
ShippingTerms |
String |
False | |
ShipmentDate |
Datetime |
False | |
WorkgroupID |
String |
False | |
CustomerID |
String |
False | |
BaseCurrencyID |
String |
False | |
FreightAmount |
Double |
False | |
SaturdayDelivery |
Bool |
False | |
Owner |
String |
False | |
ShippedVolume |
Double |
False | |
EffectiveDate |
Datetime |
False | |
ResidentialDelivery |
Bool |
False | |
ControlQty |
Double |
False | |
Hold |
Bool |
False | |
CurrencyRateTypeID |
String |
False | |
LocationID |
String |
False | |
ShippedWeight |
Double |
False | |
LinkedOrders |
String |
False | |
ReciprocalRate |
Double |
False | |
FreightCost |
Double |
False | |
LastModifiedDateTime |
Datetime |
False | |
FreightCurrency |
String |
False | |
GroundCollect |
Bool |
False | |
PackageWeight |
Double |
False | |
ShippedQty |
Double |
False | |
LinkedDetails |
String |
False | |
ShippingZoneID |
String |
False | |
LinkedShippingSettings |
String |
False | |
ToWarehouseID |
String |
False | |
CurrencyViewState |
Bool |
False | |
Type |
String |
False | |
ShipVia |
String |
False | |
Insurance |
Bool |
False | |
CreatedDateTime |
Datetime |
False | |
Custom_Document_NoteID |
String |
False | |
Custom_CurrentDocument_NoteID |
String |
False | |
Custom_Document_NoteText |
String |
False | |
Custom_Document_OwnerID_description |
String |
False |
ShippingBox
ShippingBox is an auto-generated table.
Columns
| Name | Type | ReadOnly | Description |
|---|---|---|---|
Id [KEY] |
String |
True | |
Description |
String |
False | |
BoxID [KEY] |
String |
False | |
Height |
Int |
False | |
WeightUOM |
String |
False | |
BoxWeight |
Double |
False | |
Length |
Int |
False | |
VolumeUOM |
String |
False | |
CarriersPackage |
String |
False | |
MaxVolume |
Double |
False | |
MaxWeight |
Double |
False | |
ActiveByDefault |
Bool |
False | |
Width |
Int |
False |
ShippingTerm
ShippingTerm is an auto-generated table.
Columns
| Name | Type | ReadOnly | Description |
|---|---|---|---|
Id [KEY] |
String |
True | |
LinkedDetails |
String |
False | |
Description |
String |
False | |
TermID [KEY] |
String |
False | |
Custom_ShipTermsCurrent_NoteID |
String |
False |
ShippingZones
ShippingZones is an auto-generated table.
Columns
| Name | Type | ReadOnly | Description |
|---|---|---|---|
Id [KEY] |
String |
True | |
Description |
String |
False | |
ZoneID [KEY] |
String |
False |
ShipVia
ShipVia is an auto-generated table.
Columns
| Name | Type | ReadOnly | Description |
|---|---|---|---|
Id [KEY] |
String |
True | |
Description |
String |
False | |
Calendar |
String |
False | |
LinkedFreightRates |
String |
False | |
LinkedPackages |
String |
False | |
FreightExpenseAccount |
String |
False | |
TaxCategory |
String |
False | |
CarrierID [KEY] |
String |
False | |
FreightSalesSubaccount |
String |
False | |
FreightSalesAccount |
String |
False | |
CommonCarrier |
Bool |
False | |
CalculationMethod |
String |
False | |
FreightExpenseSubaccount |
String |
False | |
Custom_Carrier_NoteText |
String |
False | |
Custom_Carrier_NoteID |
String |
False | |
Custom_CarrierCurrent_PackageRequired |
Bool |
False | |
Custom_CarrierCurrent_ConfirmationRequired |
Bool |
False | |
Custom_Carrier_IsExternal |
Bool |
False | |
Custom_CarrierCurrent_BaseRate |
String |
False | |
Custom_CarrierCurrent_CarrierPluginID |
String |
False | |
Custom_CarrierCurrent_PluginMethod |
String |
False | |
Custom_CarrierCurrent_NoteID |
String |
False |
StatementCycle
StatementCycle is an auto-generated table.
Columns
| Name | Type | ReadOnly | Description |
|---|---|---|---|
Id [KEY] |
String |
True | |
OverdueChargeID |
String |
False | |
LastStatementDate |
Datetime |
False | |
AgingPeriod3Message |
String |
False | |
AgingPeriod1Message |
String |
False | |
AgingPeriod1EndDay |
Int |
False | |
PrepareOn |
String |
False | |
ApplyOverdueCharges |
Bool |
False | |
LastModifiedDateTime |
Datetime |
False | |
RequirePaymentApplicationBeforeStatementProcessing |
Bool |
False | |
AgingPeriod4Message |
String |
False | |
CreatedDateTime |
Datetime |
False | |
AgingPeriod2Message |
String |
False | |
AgingPeriod3EndDay |
Int |
False | |
AgingPeriod2EndDay |
Int |
False | |
RequireOverdueChargesCalculationBeforeStatement |
Bool |
False | |
DayOfMonth1 |
Int |
False | |
Description |
String |
False | |
DayOfMonth |
Int |
False | |
CycleID [KEY] |
String |
False | |
Custom_ARStatementCycleRecord_AgeBasedOn |
String |
False | |
Custom_ARStatementCycleRecord_AgeDays02 |
Int |
False | |
Custom_ARStatementCycleRecord_Bucket04LowerExclusiveBound |
Int |
False | |
Custom_ARStatementCycleRecord_AgeMsgCurrent |
String |
False | |
Custom_ARStatementCycleRecord_AgeMsg00 |
String |
False | |
Custom_ARStatementCycleRecord_NoteID |
String |
False | |
Custom_ARStatementCycleRecord_AgeDays01 |
Int |
False | |
Custom_ARStatementCycleRecord_DayOfWeek |
String |
False | |
Custom_ARStatementCycleRecord_PrintEmptyStatements |
Bool |
False | |
Custom_ARStatementCycleRecord_NoteText |
String |
False | |
Custom_ARStatementCycleRecord_AgeMsg01 |
String |
False | |
Custom_ARStatementCycleRecord_UseFinPeriodForAging |
Bool |
False | |
Custom_ARStatementCycleRecord_AgeDays00 |
Int |
False | |
Custom_ARStatementCycleRecord_Bucket02LowerInclusiveBound |
Int |
False | |
Custom_ARStatementCycleRecord_AgeMsg02 |
String |
False | |
Custom_ARStatementCycleRecord_FinChargeID |
String |
False | |
Custom_ARStatementCycleRecord_Bucket01LowerInclusiveBound |
Int |
False | |
Custom_ARStatementCycleRecord_AgeMsg03 |
String |
False | |
Custom_ARStatementCycleRecord_RequireFinChargeProcessing |
Bool |
False | |
Custom_ARStatementCycleRecord_Bucket03LowerInclusiveBound |
Int |
False | |
Custom_ARStatementCycleRecord_FinChargeApply |
Bool |
False |
StockItem
StockItem is an auto-generated table.
Columns
| Name | Type | ReadOnly | Description |
|---|---|---|---|
Id [KEY] |
String |
True | |
DefaultPrice |
Double |
False | |
PriceWorkgroup |
String |
False | |
LandedCostVarianceSubaccount |
String |
False | |
InventorySubaccount |
String |
False | |
LandedCostVarianceAccount |
String |
False | |
POAccrualSubaccount |
String |
False | |
ItemStatus |
String |
False | |
LinkedWarehouseDetails |
String |
False | |
LastModified |
Datetime |
False | |
DefaultIssueLocationID |
String |
False | |
DefaultReceiptLocationID |
String |
False | |
UseOnEntry |
Bool |
False | |
SalesSubaccount |
String |
False | |
LinkedVendorDetails |
String |
False | |
DefaultSubitem |
String |
False | |
LotSerialClass |
String |
False | |
SubjectToCommission |
Bool |
False | |
PriceManager |
String |
False | |
LinkedReplenishmentParameters |
String |
False | |
LastCost |
Double |
False | |
COGSAccount |
String |
False | |
SalesAccount |
String |
False | |
StandardCostVarianceSubaccount |
String |
False | |
COGSSubaccount |
String |
False | |
PackSeparately |
Bool |
False | |
ReasonCodeSubaccount |
String |
False | |
ImageUrl |
String |
False | |
ItemClass |
String |
False | |
ItemType |
String |
False | |
MinMarkup |
Double |
False | |
DeferralAccount |
String |
False | |
VolumeUOM |
String |
False | |
StandardCostVarianceAccount |
String |
False | |
AverageCost |
Double |
False | |
IsAKit |
Bool |
False | |
CurrentStdCost |
Double |
False | |
SalesUOM |
String |
False | |
DefaultWarehouseID |
String |
False | |
BaseUOM |
String |
False | |
ProductWorkgroup |
String |
False | |
ProductManager |
String |
False | |
AutoIncrementalValue |
String |
False | |
Description |
String |
False | |
PackagingOption |
String |
False | |
DimensionVolume |
Double |
False | |
PostingClass |
String |
False | |
DimensionWeight |
Double |
False | |
InventoryAccount |
String |
False | |
ABCCode |
String |
False | |
ValuationMethod |
String |
False | |
LinkedCrossReferences |
String |
False | |
LinkedUOMConversions |
String |
False | |
MSRP |
Double |
False | |
PriceClass |
String |
False | |
PurchaseUOM |
String |
False | |
LinkedBoxes |
String |
False | |
DiscountAccount |
String |
False | |
MaxCost |
Double |
False | |
Markup |
Double |
False | |
StandardCostRevaluationSubaccount |
String |
False | |
DeferralSubaccount |
String |
False | |
StandardCostRevaluationAccount |
String |
False | |
WeightUOM |
String |
False | |
LastStdCost |
Double |
False | |
LinkedAttributes |
String |
False | |
TaxCategory |
String |
False | |
LinkedCategories |
String |
False | |
PurchasePriceVarianceSubaccount |
String |
False | |
MinCost |
Double |
False | |
POAccrualAccount |
String |
False | |
LinkedSubItems |
String |
False | |
DiscountSubaccount |
String |
False | |
InventoryID [KEY] |
String |
False | |
Content |
String |
False | |
PendingStdCost |
Double |
False | |
PurchasePriceVarianceAccount |
String |
False | |
Custom_ItemSettings_Body |
String |
False | |
Custom_ItemSettings_NoteID |
String |
False | |
Custom_ItemSettings_MovementClassID |
String |
False | |
Custom_ItemSettings_StdCstRevSubID |
String |
False | |
Custom_ItemSettings_LCVarianceSubID |
String |
False | |
Custom_ItemSettings_DefaultTermUOM |
String |
False | |
Custom_ItemSettings_ABCCodeID |
String |
False | |
Custom_ItemSettings_InvtSubID |
String |
False | |
Custom_ItemSettings_ABCCodeIsFixed |
Bool |
False | |
Custom_ItemSettings_BaseItemVolume |
String |
False | |
Custom_ItemSettings_DiscAcctID |
String |
False | |
Custom_ItemSettings_ImageUrl |
String |
False | |
Custom_ItemSettings_PurchaseUnit |
String |
False | |
Custom_ItemSettings_BaseItemWeight |
String |
False | |
Custom_ItemSettings_DeferralSubID |
String |
False | |
Custom_ItemSettings_UseParentSubID |
Bool |
False | |
Custom_ItemSettings_PPVAcctID |
String |
False | |
Custom_ItemSettings_DefaultTerm |
String |
False | |
Custom_ItemSettings_StdCstVarSubID |
String |
False | |
Custom_ItemSettings_PackSeparately |
Bool |
False | |
Custom_ItemSettings_DfltReceiptLocationID |
String |
False | |
Custom_ItemSettings_COGSAcctID |
String |
False | |
Custom_ItemSettings_LCVarianceAcctID |
String |
False | |
Custom_ItemSettings_MarkupPct |
String |
False | |
Custom_ItemSettings_DiscSubID |
String |
False | |
Custom_ItemSettings_COGSSubID |
String |
False | |
Custom_ItemSettings_BaseUnit |
String |
False | |
Custom_ItemSettings_PriceClassID |
String |
False | |
Custom_ItemSettings_TotalPercentage |
String |
False | |
Custom_ItemSettings_DeferralAcctID |
String |
False | |
Custom_ItemSettings_CycleID |
String |
False | |
Custom_ItemSettings_StdCstRevAcctID |
String |
False | |
Custom_ItemSettings_DeferredCode |
String |
False | |
Custom_ItemSettings_MovementClassIsFixed |
Bool |
False | |
Custom_ItemSettings_LastStdCost |
String |
False | |
Custom_ItemSettings_StdCstVarAcctID |
String |
False | |
Custom_ItemSettings_DefaultSubItemID |
String |
False | |
Custom_ItemSettings_StdCostDate |
String |
False | |
Custom_ItemSettings_StdCost |
String |
False | |
Custom_ItemSettings_SalesAcctID |
String |
False | |
Custom_ItemSettings_Commisionable |
Bool |
False | |
Custom_ItemSettings_SalesUnit |
String |
False | |
Custom_ItemSettings_PendingStdCost |
String |
False | |
Custom_ItemSettings_DefaultSubItemOnEntry |
Bool |
False | |
Custom_ItemSettings_DfltSiteID |
String |
False | |
Custom_ItemSettings_RecPrice |
String |
False | |
Custom_ItemSettings_ReasonCodeSubID |
String |
False | |
Custom_ItemSettings_SalesSubID |
String |
False | |
Custom_ItemSettings_PriceWorkgroupID |
String |
False | |
Custom_Item_NoteID |
String |
False | |
Custom_ItemSettings_WeightUOM |
String |
False | |
Custom_ItemSettings_VolumeUOM |
String |
False | |
Custom_ItemSettings_POAccrualSubID |
String |
False | |
Custom_ItemSettings_PPVSubID |
String |
False | |
Custom_ItemSettings_DfltShipLocationID |
String |
False | |
Custom_ItemSettings_BasePrice |
String |
False | |
Custom_ItemSettings_PriceManagerID |
String |
False | |
Custom_ItemSettings_MinGrossProfitPct |
String |
False | |
Custom_Item_NoteText |
String |
False | |
Custom_ItemSettings_POAccrualAcctID |
String |
False | |
Custom_ItemSettings_InvtAcctID |
String |
False | |
Custom_ItemSettings_PendingStdCostDate |
String |
False | |
Custom_ItemSettings_PackageOption |
String |
False |
Subaccount
Subaccount is an auto-generated table.
Columns
| Name | Type | ReadOnly | Description |
|---|---|---|---|
Id [KEY] |
String |
True | |
Secured |
Bool |
False | |
Active |
Bool |
False | |
SubaccountCD |
String |
False | |
SubaccountID |
Int |
False | |
Description |
String |
False | |
Custom_SubRecords_NoteText |
String |
False | |
Custom_SubRecords_NoteID |
String |
False |
Task
Task is an auto-generated table.
Columns
| Name | Type | ReadOnly | Description |
|---|---|---|---|
Id [KEY] |
String |
True | |
LinkedReminder |
String |
False | |
Owner |
String |
False | |
Parent |
String |
False | |
RelatedEntityDescription |
String |
False | |
Summary |
String |
False | |
NoteID |
String |
False | |
DueDate |
Datetime |
False | |
Internal |
Bool |
False | |
CompletedAt |
Datetime |
False | |
LinkedTimeActivity |
String |
False | |
Status |
String |
False | |
WorkgroupID |
String |
False | |
Body |
String |
False | |
CompletionPercentage |
Int |
False | |
Category |
String |
False | |
ParentSummary |
String |
False | |
StartDate |
Datetime |
False | |
LinkedRelatedActivities |
String |
False | |
Priority |
String |
False | |
LinkedRelatedTasks |
String |
False | |
Custom_Tasks_ParentNoteID_Subject |
String |
False | |
Custom_Tasks_NoteText |
String |
False |
Tax
Tax is an auto-generated table.
Columns
| Name | Type | ReadOnly | Description |
|---|---|---|---|
Id [KEY] |
String |
True | |
CalculateOn |
String |
False | |
TaxID [KEY] |
String |
False | |
IncludeInVATTaxableTotal |
Bool |
False | |
TaxPayableAccount |
String |
False | |
TaxExpenseAccount |
String |
False | |
TaxClaimableSubaccount |
String |
False | |
PendingVAT |
Bool |
False | |
ExcludeFromTaxonTaxCalculation |
Bool |
False | |
TaxClaimableAccount |
String |
False | |
TaxType |
String |
False | |
TaxAgency |
String |
False | |
ReverseVAT |
Bool |
False | |
IncludeInVATExemptTotal |
Bool |
False | |
StatisticalVAT |
Bool |
False | |
LastModifiedDateTime |
Datetime |
False | |
LinkedTaxSchedule |
String |
False | |
EnterFromTaxBill |
Bool |
False | |
CashDiscount |
String |
False | |
TaxPayableSubaccount |
String |
False | |
TaxExpenseSubaccount |
String |
False | |
CreatedDateTime |
Datetime |
False | |
NotValidAfter |
Datetime |
False | |
LinkedZones |
String |
False | |
Description |
String |
False | |
DeductibleVAT |
Bool |
False | |
Custom_Tax_PurchTaxSubID |
String |
False | |
Custom_Tax_ReportExpenseToSingleAccount |
Bool |
False | |
Custom_Tax_NoteID |
String |
False | |
Custom_Tax_PurchTaxAcctID |
String |
False | |
Custom_Tax_PendingSalesTaxSubID |
String |
False | |
Custom_Tax_PendingSalesTaxAcctID |
String |
False | |
Custom_Tax_ExpenseSubID |
String |
False | |
Custom_Tax_PendingPurchTaxSubID |
String |
False | |
Custom_Tax_SalesTaxSubID |
String |
False | |
Custom_Tax_ExpenseAccountID |
String |
False | |
Custom_Tax_SalesTaxAcctID |
String |
False | |
Custom_Tax_PendingPurchTaxAcctID |
String |
False |
TaxCategory
TaxCategory is an auto-generated table.
Columns
| Name | Type | ReadOnly | Description |
|---|---|---|---|
Id [KEY] |
String |
True | |
LinkedDetails |
String |
False | |
TaxCategoryID [KEY] |
String |
False | |
ExcludeListedTaxes |
Bool |
False | |
Active |
Bool |
False | |
CreatedDateTime |
Datetime |
False | |
Description |
String |
False | |
LastModifiedDateTime |
Datetime |
False | |
Custom_TxCategory_NoteText |
String |
False | |
Custom_TxCategory_NoteID |
String |
False |
TaxZone
TaxZone is an auto-generated table.
Columns
| Name | Type | ReadOnly | Description |
|---|---|---|---|
Id [KEY] |
String |
True | |
TaxZoneID [KEY] |
String |
False | |
CreatedDateTime |
Datetime |
False | |
Description |
String |
False | |
LastModifiedDateTime |
Datetime |
False | |
LinkedApplicableTaxes |
String |
False | |
Custom_TxZone_DfltTaxCategoryID |
String |
False | |
Custom_TxZone_ShowZipTabExpr |
Bool |
False | |
Custom_TxZone_TaxVendorID |
String |
False | |
Custom_TxZone_ShowTaxTabExpr |
Bool |
False | |
Custom_TxZone_IsManualVATZone |
Bool |
False | |
Custom_TxZone_NoteID |
String |
False | |
Custom_TxZone_TaxID |
String |
False | |
Custom_TxZone_IsExternal |
Bool |
False | |
Custom_TxZone_NoteText |
String |
False |
TransferOrder
TransferOrder is an auto-generated table.
Columns
| Name | Type | ReadOnly | Description |
|---|---|---|---|
Id [KEY] |
String |
True | |
Description |
String |
False | |
TotalQty |
Double |
False | |
Hold |
Bool |
False | |
ExternalRef |
String |
False | |
Date |
Datetime |
False | |
Status |
String |
False | |
ReferenceNbr [KEY] |
String |
False | |
LinkedDetails |
String |
False | |
ToWarehouseID |
String |
False | |
TransferType |
String |
False | |
FromWarehouseID |
String |
False | |
PostPeriod |
String |
False | |
Custom_transfer_ControlQty |
String |
False | |
Custom_transfer_NoteID |
String |
False | |
Custom_transfer_NoteText |
String |
False |
TrialBalance
TrialBalance is an auto-generated table.
Columns
| Name | Type | ReadOnly | Description |
|---|---|---|---|
Id [KEY] |
String |
True | |
Description |
String |
False | |
ControlTotal |
Double |
False | |
CreditTotal |
Double |
False | |
DebitTotal |
Double |
False | |
Hold |
Bool |
False | |
ImportNbr [KEY] |
String |
False | |
BatchNbr |
String |
False | |
ImportDate |
Datetime |
False | |
Status |
String |
False | |
LinkedDetails |
String |
False | |
Branch |
String |
False | |
Ledger |
String |
False | |
CreatedDateTime |
Datetime |
False | |
LastModifiedDateTime |
Datetime |
False | |
Period |
String |
False | |
Custom_Map_NoteID |
String |
False | |
Custom_Map_NoteText |
String |
False |
UnitsOfMeasure
UnitsOfMeasure is an auto-generated table.
Columns
| Name | Type | ReadOnly | Description |
|---|---|---|---|
Id [KEY] |
String |
True | |
FromUOM |
String |
False | |
ConversionFactor |
Double |
False | |
CreatedDateTime |
Datetime |
False | |
MultiplyOrDivide |
String |
False | |
LastModifiedDateTime |
Datetime |
False | |
ToUOM |
String |
False | |
Custom_Unit_ItemClassID |
Int |
False | |
Custom_Unit_UnitType |
String |
False | |
Custom_Unit_InventoryID |
Int |
False |
Vendor
Vendor is an auto-generated table.
Columns
| Name | Type | ReadOnly | Description |
|---|---|---|---|
Id [KEY] |
String |
True | |
APAccount |
String |
False | |
F1099Box |
String |
False | |
Warehouse |
String |
False | |
AccountRef |
String |
False | |
CurrencyID |
String |
False | |
LinkedAttributes |
String |
False | |
Status |
String |
False | |
MinReceipt |
Double |
False | |
ParentAccount |
String |
False | |
PaymentMethod |
String |
False | |
FOBPoint |
String |
False | |
PaySeparately |
Bool |
False | |
ReceivingBranch |
String |
False | |
LandedCostVendor |
Bool |
False | |
ShippingTerms |
String |
False | |
VendorIsTaxAgency |
Bool |
False | |
VendorID [KEY] |
String |
False | |
FATCA |
Bool |
False | |
LinkedRemittanceContact |
String |
False | |
RemittanceContactSameasMain |
Bool |
False | |
ThresholdReceipt |
Double |
False | |
LinkedMainContact |
String |
False | |
CurrencyRateType |
String |
False | |
VendorClass |
String |
False | |
ShippersContactSameasMain |
Bool |
False | |
LeadTimedays |
Int |
False | |
ReceiptAction |
String |
False | |
LinkedShippingContact |
String |
False | |
MaxReceipt |
Double |
False | |
LinkedPaymentInstructions |
String |
False | |
PaymentLeadTimedays |
Int |
False | |
Terms |
String |
False | |
PaymentBy |
String |
False | |
ForeignEntity |
Bool |
False | |
RemittanceAddressSameasMain |
Bool |
False | |
TaxZone |
String |
False | |
CashAccount |
String |
False | |
ShippingAddressSameasMain |
Bool |
False | |
LastModifiedDateTime |
Datetime |
False | |
EnableCurrencyOverride |
Bool |
False | |
SendOrdersbyEmail |
Bool |
False | |
EnableRateOverride |
Bool |
False | |
TaxRegistrationID |
String |
False | |
F1099Vendor |
Bool |
False | |
PrintOrders |
Bool |
False | |
TaxCalculationMode |
String |
False | |
VendorIsLaborUnion |
Bool |
False | |
LinkedContacts |
String |
False | |
APSubaccount |
String |
False | |
ShipVia |
String |
False | |
CreatedDateTime |
Datetime |
False | |
LocationName |
String |
False | |
VendorName |
String |
False |
VendorClass
VendorClass is an auto-generated table.
Columns
| Name | Type | ReadOnly | Description |
|---|---|---|---|
Id [KEY] |
String |
True | |
ClassID [KEY] |
String |
False | |
CreatedDateTime |
Datetime |
False | |
Description |
String |
False | |
LinkedAttributes |
String |
False | |
LastModifiedDateTime |
Datetime |
False | |
Custom_VendorClassRecord_LocaleName |
String |
False | |
Custom_VendorClassRecord_NoteText |
String |
False | |
Custom_VendorClassRecord_NoteID |
String |
False | |
Custom_VendorClassRecord_LocaleName_translatedName |
String |
False |
VendorPricesInquiry
VendorPricesInquiry is an auto-generated table.
Columns
| Name | Type | ReadOnly | Description |
|---|---|---|---|
Id [KEY] |
String |
True | |
ProductWorkgroup |
String |
False | |
ProductManager |
String |
False | |
InventoryID [KEY] |
String |
False | |
ItemClass |
String |
False | |
Vendor |
String |
False | |
LinkedVendorPriceDetails |
String |
False | |
Custom_Filter_SiteID |
String |
False | |
Custom_Filter_MyOwner |
Bool |
False | |
Custom_Filter_EffectiveAsOfDate |
String |
False | |
Custom_Filter_MyWorkGroup |
Bool |
False |
VendorPriceWorksheet
VendorPriceWorksheet is an auto-generated table.
Columns
| Name | Type | ReadOnly | Description |
|---|---|---|---|
Id [KEY] |
String |
True | |
Description |
String |
False | |
LinkedVendorSalesPrices |
String |
False | |
Hold |
Bool |
False | |
EffectiveDate |
Datetime |
False | |
ExpirationDate |
Datetime |
False | |
Status |
String |
False | |
Promotional |
Bool |
False | |
ReferenceNbr [KEY] |
String |
False | |
OverwriteOverlappingPrices |
Bool |
False | |
CreatedDateTime |
Datetime |
False | |
LastModifiedDateTime |
Datetime |
False | |
Custom_Document_NoteID |
String |
False |
VoucherEntryCode
VoucherEntryCode is an auto-generated table.
Columns
| Name | Type | ReadOnly | Description |
|---|---|---|---|
Id [KEY] |
String |
True | |
ModuleTransactionType |
String |
False | |
UniqueTransactionCode |
String |
False | |
Module |
String |
False | |
Active |
Bool |
False | |
Description |
String |
False |
Warehouse
Warehouse is an auto-generated table.
Columns
| Name | Type | ReadOnly | Description |
|---|---|---|---|
Id [KEY] |
String |
True | |
ReceivingLocationID |
String |
False | |
LinkedLocations |
String |
False | |
StandardCostVarianceAccount |
String |
False | |
MiscChargeAccount |
String |
False | |
PurchasePriceVarianceSubaccount |
String |
False | |
LandedCostVarianceAccount |
String |
False | |
POAccrualSubaccount |
String |
False | |
DropShipLocationID |
String |
False | |
COGSExpenseAccount |
String |
False | |
StandardCostRevaluationSubaccount |
String |
False | |
DiscountSubaccount |
String |
False | |
DiscountAccount |
String |
False | |
OverrideInventoryAccountSubaccount |
Bool |
False | |
SalesSubaccount |
String |
False | |
LandedCostVarianceSubaccount |
String |
False | |
InventorySubaccount |
String |
False | |
COGSExpenseSubaccount |
String |
False | |
FreightChargeAccount |
String |
False | |
PurchasePriceVarianceAccount |
String |
False | |
ShippingLocationID |
String |
False | |
InventoryAccount |
String |
False | |
FreightChargeSubaccount |
String |
False | |
POAccrualAccount |
String |
False | |
StandardCostRevaluationAccount |
String |
False | |
StandardCostVarianceSubaccount |
String |
False | |
Active |
Bool |
False | |
RMALocationID |
String |
False | |
ReasonCodeSubaccount |
String |
False | |
MiscChargeSubaccount |
String |
False | |
WarehouseID [KEY] |
String |
False | |
Description |
String |
False | |
SalesAccount |
String |
False | |
Custom_siteaccounts_POAccrualAcctID |
String |
False | |
Custom_siteaccounts_LCVarianceAcctID |
String |
False | |
Custom_siteaccounts_StdCstVarAcctID |
String |
False | |
Custom_site_ReplenishmentClassID |
String |
False | |
Custom_siteaccounts_MiscAcctID |
String |
False | |
Custom_siteaccounts_FreightAcctID |
String |
False | |
Custom_siteaccounts_DiscAcctID |
String |
False | |
Custom_siteaccounts_POAccrualSubID |
String |
False | |
Custom_siteaccounts_NoteID |
String |
False | |
Custom_siteaccounts_PPVSubID |
String |
False | |
Custom_siteaccounts_DiscSubID |
String |
False | |
Custom_site_BranchID |
String |
False | |
Custom_siteaccounts_FreightSubID |
String |
False | |
Custom_site_AvgDefaultCost |
String |
False | |
Custom_siteaccounts_SalesAcctID |
String |
False | |
Custom_siteaccounts_OverrideInvtAccSub |
Bool |
False | |
Custom_siteaccounts_COGSSubID |
String |
False | |
Custom_siteaccounts_SalesSubID |
String |
False | |
Custom_site_FIFODefaultCost |
String |
False | |
Custom_siteaccounts_PPVAcctID |
String |
False | |
Custom_site_LocationValid |
String |
False | |
Custom_siteaccounts_LCVarianceSubID |
String |
False | |
Custom_site_NoteText |
String |
False | |
Custom_siteaccounts_InvtAcctID |
String |
False | |
Custom_siteaccounts_StdCstRevSubID |
String |
False | |
Custom_siteaccounts_MiscSubID |
String |
False | |
Custom_siteaccounts_InvtSubID |
String |
False | |
Custom_site_LockSitePICountEntry |
Bool |
False | |
Custom_siteaccounts_StdCstRevAcctID |
String |
False | |
Custom_siteaccounts_StdCstVarSubID |
String |
False | |
Custom_siteaccounts_ReasonCodeSubID |
String |
False | |
Custom_site_NoteID |
String |
False | |
Custom_siteaccounts_COGSAcctID |
String |
False |
Views
Views are similar to tables in the way that data is represented; however, views are read-only.
Queries can be executed against a view as if it were a normal table.
Jitterbit Connector for Acumatica Views
| Name | Description |
|---|---|
AccountByPeriodInquiry_Results |
AccountByPeriodInquiry_Results is an auto-generated table. |
AccountBySubaccountInquiry_Results |
AccountBySubaccountInquiry_Results is an auto-generated table. |
AccountDetailsInquiry_Results |
AccountDetailsInquiry_Results is an auto-generated table. |
AccountLocation_Address |
AccountLocation_Address is an auto-generated table. |
AccountLocation_Cases |
AccountLocation_Cases is an auto-generated table. |
AccountLocation_Contact |
AccountLocation_Contact is an auto-generated table. |
AccountLocation_Opportunities |
AccountLocation_Opportunities is an auto-generated table. |
AccountSummaryInquiry_Results |
AccountSummaryInquiry_Results is an auto-generated table. |
Adjustment_Details |
Adjustment_Details is an auto-generated table. |
AttributeDefinition_Values |
AttributeDefinition_Values is an auto-generated table. |
Bill_Applications |
Bill_Applications is an auto-generated table. |
Bill_Details |
Bill_Details is an auto-generated table. |
Bill_TaxDetails |
Bill_TaxDetails is an auto-generated table. |
BusinessAccount_Activities |
BusinessAccount_Activities is an auto-generated table. |
BusinessAccount_Attributes |
BusinessAccount_Attributes is an auto-generated table. |
BusinessAccount_Campaigns |
BusinessAccount_Campaigns is an auto-generated table. |
BusinessAccount_Cases |
BusinessAccount_Cases is an auto-generated table. |
BusinessAccount_Contacts |
BusinessAccount_Contacts is an auto-generated table. |
BusinessAccount_Contracts |
BusinessAccount_Contracts is an auto-generated table. |
BusinessAccount_DefaultLocationSettings |
BusinessAccount_DefaultLocationSettings is an auto-generated table. |
BusinessAccount_Duplicates |
BusinessAccount_Duplicates is an auto-generated table. |
BusinessAccount_Locations |
BusinessAccount_Locations is an auto-generated table. |
BusinessAccount_MainAddress |
BusinessAccount_MainAddress is an auto-generated table. |
BusinessAccount_MainContact |
BusinessAccount_MainContact is an auto-generated table. |
BusinessAccount_MarketingLists |
BusinessAccount_MarketingLists is an auto-generated table. |
BusinessAccount_Opportunities |
BusinessAccount_Opportunities is an auto-generated table. |
BusinessAccount_Orders |
BusinessAccount_Orders is an auto-generated table. |
BusinessAccount_Relations |
BusinessAccount_Relations is an auto-generated table. |
BusinessAccount_ShippingAddress |
BusinessAccount_ShippingAddress is an auto-generated table. |
BusinessAccount_ShippingContact |
BusinessAccount_ShippingContact is an auto-generated table. |
Carrier_CustomerAccounts |
Carrier_CustomerAccounts is an auto-generated table. |
Carrier_PlugInParameters |
Carrier_PlugInParameters is an auto-generated table. |
Case_Activities |
Case_Activities is an auto-generated table. |
Case_Attributes |
Case_Attributes is an auto-generated table. |
Case_RelatedCases |
Case_RelatedCases is an auto-generated table. |
Case_Relations |
Case_Relations is an auto-generated table. |
CashSale_Details |
CashSale_Details is an auto-generated table. |
Check_Details |
Check_Details is an auto-generated table. |
Check_History |
Check_History is an auto-generated table. |
Contact_Activities |
Contact_Activities is an auto-generated table. |
Contact_Address |
Contact_Address is an auto-generated table. |
Contact_Attributes |
Contact_Attributes is an auto-generated table. |
Contact_Campaigns |
Contact_Campaigns is an auto-generated table. |
Contact_Cases |
Contact_Cases is an auto-generated table. |
Contact_Duplicates |
Contact_Duplicates is an auto-generated table. |
Contact_MarketingLists |
Contact_MarketingLists is an auto-generated table. |
Contact_Notifications |
Contact_Notifications is an auto-generated table. |
Contact_Opportunities |
Contact_Opportunities is an auto-generated table. |
Contact_Relations |
Contact_Relations is an auto-generated table. |
Contact_UserInfo |
Contact_UserInfo is an auto-generated table. |
CustomerClass_Attributes |
CustomerClass_Attributes is an auto-generated table. |
CustomerLocation_LocationContact |
CustomerLocation_LocationContact is an auto-generated table. |
CustomerPaymentMethod_Details |
CustomerPaymentMethod_Details is an auto-generated table. |
Customer_Attributes |
Customer_Attributes is an auto-generated table. |
Customer_BillingContact |
Customer_BillingContact is an auto-generated table. |
Customer_Contacts |
Customer_Contacts is an auto-generated table. |
Customer_CreditVerificationRules |
Customer_CreditVerificationRules is an auto-generated table. |
Customer_MainContact |
Customer_MainContact is an auto-generated table. |
Customer_PaymentInstructions |
Customer_PaymentInstructions is an auto-generated table. |
Customer_Salespersons |
Customer_Salespersons is an auto-generated table. |
Customer_ShippingContact |
Customer_ShippingContact is an auto-generated table. |
Discount_CustomerPriceClasses |
Discount_CustomerPriceClasses is an auto-generated table. |
Discount_Customers |
Discount_Customers is an auto-generated table. |
Discount_DiscountBreakpoints |
Discount_DiscountBreakpoints is an auto-generated table. |
Discount_ItemPriceClasses |
Discount_ItemPriceClasses is an auto-generated table. |
Discount_Items |
Discount_Items is an auto-generated table. |
Discount_Warehouses |
Discount_Warehouses is an auto-generated table. |
Email_TimeActivity |
Email_TimeActivity is an auto-generated table. |
Employee_Contact |
Employee_Contact is an auto-generated table. |
Employee_EmployeeCost |
Employee_EmployeeCost is an auto-generated table. |
Employee_EmploymentHistory |
Employee_EmploymentHistory is an auto-generated table. |
Event_Attendees |
Event_Attendees is an auto-generated table. |
Event_RelatedActivities |
Event_RelatedActivities is an auto-generated table. |
Event_Reminder |
Event_Reminder is an auto-generated table. |
Event_TimeActivity |
Event_TimeActivity is an auto-generated table. |
FinancialPeriod_Details |
FinancialPeriod_Details is an auto-generated table. |
InterBranchAccountMapping_TransactionsInDestinationBranch |
InterBranchAccountMapping_TransactionsInDestinationBranch is an auto-generated table. |
InterBranchAccountMapping_TransactionsInSourceBranch |
InterBranchAccountMapping_TransactionsInSourceBranch is an auto-generated table. |
InventoryAllocationInquiry_Results |
InventoryAllocationInquiry_Results is an auto-generated table. |
InventoryReceipt_Details |
InventoryReceipt_Details is an auto-generated table. |
InventorySummaryInquiry_Results |
InventorySummaryInquiry_Results is an auto-generated table. |
Invoice_ApplicationsCreditMemo |
Invoice_ApplicationsCreditMemo is an auto-generated table. |
Invoice_ApplicationsDefault |
Invoice_ApplicationsDefault is an auto-generated table. |
Invoice_Details |
Invoice_Details is an auto-generated table. |
Invoice_TaxDetails |
Invoice_TaxDetails is an auto-generated table. |
ItemClass_Attributes |
ItemClass_Attributes is an auto-generated table. |
JournalTransaction_Details |
JournalTransaction_Details is an auto-generated table. |
JournalVoucher_Details |
JournalVoucher_Details is an auto-generated table. |
JournalVoucher_GLTransactions |
JournalVoucher_GLTransactions is an auto-generated table. |
KitAssembly_Allocations |
KitAssembly_Allocations is an auto-generated table. |
KitAssembly_NonStockComponents |
KitAssembly_NonStockComponents is an auto-generated table. |
KitAssembly_StockComponents |
KitAssembly_StockComponents is an auto-generated table. |
KitSpecification_NonStockComponents |
KitSpecification_NonStockComponents is an auto-generated table. |
KitSpecification_StockComponents |
KitSpecification_StockComponents is an auto-generated table. |
Lead_Activities |
Lead_Activities is an auto-generated table. |
Lead_Address |
Lead_Address is an auto-generated table. |
Lead_Attributes |
Lead_Attributes is an auto-generated table. |
Lead_Campaigns |
Lead_Campaigns is an auto-generated table. |
Lead_Duplicates |
Lead_Duplicates is an auto-generated table. |
Lead_MarketingLists |
Lead_MarketingLists is an auto-generated table. |
Lead_Relations |
Lead_Relations is an auto-generated table. |
LotSerialClass_Segments |
LotSerialClass_Segments is an auto-generated table. |
NonStockItem_Attributes |
NonStockItem_Attributes is an auto-generated table. |
NonStockItem_CrossReferences |
NonStockItem_CrossReferences is an auto-generated table. |
NonStockItem_SalesCategories |
NonStockItem_SalesCategories is an auto-generated table. |
NonStockItem_VendorDetails |
NonStockItem_VendorDetails is an auto-generated table. |
Opportunity_Activities |
Opportunity_Activities is an auto-generated table. |
Opportunity_Address |
Opportunity_Address is an auto-generated table. |
Opportunity_Attributes |
Opportunity_Attributes is an auto-generated table. |
Opportunity_ContactInformation |
Opportunity_ContactInformation is an auto-generated table. |
Opportunity_Discounts |
Opportunity_Discounts is an auto-generated table. |
Opportunity_Products |
Opportunity_Products is an auto-generated table. |
Opportunity_Relations |
Opportunity_Relations is an auto-generated table. |
Opportunity_TaxDetails |
Opportunity_TaxDetails is an auto-generated table. |
PaymentMethod_AllowedCashAccounts |
PaymentMethod_AllowedCashAccounts is an auto-generated table. |
PaymentMethod_ProcessingCenters |
PaymentMethod_ProcessingCenters is an auto-generated table. |
Payment_ApplicationHistory |
Payment_ApplicationHistory is an auto-generated table. |
Payment_CreditCardProcessingInfo |
Payment_CreditCardProcessingInfo is an auto-generated table. |
Payment_DocumentsToApply |
Payment_DocumentsToApply is an auto-generated table. |
Payment_OrdersToApply |
Payment_OrdersToApply is an auto-generated table. |
PhysicalInventoryReview_Details |
PhysicalInventoryReview_Details is an auto-generated table. |
ProjectTransaction_Details |
ProjectTransaction_Details is an auto-generated table. |
PurchaseOrder_Details |
PurchaseOrder_Details is an auto-generated table. |
PurchaseOrder_ShippingInstructions |
PurchaseOrder_ShippingInstructions is an auto-generated table. |
PurchaseReceipt_Details |
PurchaseReceipt_Details is an auto-generated table. |
ReportingSettings_ReportingGroups |
ReportingSettings_ReportingGroups is an auto-generated table. |
SalesInvoice_BillingSettings |
SalesInvoice_BillingSettings is an auto-generated table. |
SalesInvoice_Details |
SalesInvoice_Details is an auto-generated table. |
SalesInvoice_FreightDetails |
SalesInvoice_FreightDetails is an auto-generated table. |
SalesOrder_BillToAddress |
SalesOrder_BillToAddress is an auto-generated table. |
SalesOrder_BillToContact |
SalesOrder_BillToContact is an auto-generated table. |
SalesOrder_Commissions |
SalesOrder_Commissions is an auto-generated table. |
SalesOrder_Details |
SalesOrder_Details is an auto-generated table. |
SalesOrder_DiscountDetails |
SalesOrder_DiscountDetails is an auto-generated table. |
SalesOrder_FinancialSettings |
SalesOrder_FinancialSettings is an auto-generated table. |
SalesOrder_Payments |
SalesOrder_Payments is an auto-generated table. |
SalesOrder_Shipments |
SalesOrder_Shipments is an auto-generated table. |
SalesOrder_ShippingSettings |
SalesOrder_ShippingSettings is an auto-generated table. |
SalesOrder_ShipToAddress |
SalesOrder_ShipToAddress is an auto-generated table. |
SalesOrder_ShipToContact |
SalesOrder_ShipToContact is an auto-generated table. |
SalesOrder_TaxDetails |
SalesOrder_TaxDetails is an auto-generated table. |
SalesOrder_Totals |
SalesOrder_Totals is an auto-generated table. |
SalesPricesInquiry_SalesPriceDetails |
SalesPricesInquiry_SalesPriceDetails is an auto-generated table. |
SalesPriceWorksheet_SalesPrices |
SalesPriceWorksheet_SalesPrices is an auto-generated table. |
Shipment_Details |
Shipment_Details is an auto-generated table. |
Shipment_Orders |
Shipment_Orders is an auto-generated table. |
Shipment_Packages |
Shipment_Packages is an auto-generated table. |
Shipment_ShippingSettings |
Shipment_ShippingSettings is an auto-generated table. |
ShippingTerm_Details |
ShippingTerm_Details is an auto-generated table. |
ShipVia_FreightRates |
ShipVia_FreightRates is an auto-generated table. |
ShipVia_Packages |
ShipVia_Packages is an auto-generated table. |
StockItem_Attributes |
StockItem_Attributes is an auto-generated table. |
StockItem_Boxes |
StockItem_Boxes is an auto-generated table. |
StockItem_Categories |
StockItem_Categories is an auto-generated table. |
StockItem_CrossReferences |
StockItem_CrossReferences is an auto-generated table. |
StockItem_ReplenishmentParameters |
StockItem_ReplenishmentParameters is an auto-generated table. |
StockItem_SubItems |
StockItem_SubItems is an auto-generated table. |
StockItem_UOMConversions |
StockItem_UOMConversions is an auto-generated table. |
StockItem_VendorDetails |
StockItem_VendorDetails is an auto-generated table. |
StockItem_WarehouseDetails |
StockItem_WarehouseDetails is an auto-generated table. |
Task_RelatedActivities |
Task_RelatedActivities is an auto-generated table. |
Task_RelatedTasks |
Task_RelatedTasks is an auto-generated table. |
Task_Reminder |
Task_Reminder is an auto-generated table. |
Task_TimeActivity |
Task_TimeActivity is an auto-generated table. |
TaxCategory_Details |
TaxCategory_Details is an auto-generated table. |
TaxZone_ApplicableTaxes |
TaxZone_ApplicableTaxes is an auto-generated table. |
Tax_TaxSchedule |
Tax_TaxSchedule is an auto-generated table. |
Tax_Zones |
Tax_Zones is an auto-generated table. |
TransferOrder_Details |
TransferOrder_Details is an auto-generated table. |
TrialBalance_Details |
TrialBalance_Details is an auto-generated table. |
VendorClass_Attributes |
VendorClass_Attributes is an auto-generated table. |
VendorPricesInquiry_VendorPriceDetails |
VendorPricesInquiry_VendorPriceDetails is an auto-generated table. |
VendorPriceWorksheet_VendorSalesPrices |
VendorPriceWorksheet_VendorSalesPrices is an auto-generated table. |
Vendor_Attributes |
Vendor_Attributes is an auto-generated table. |
Vendor_Contacts |
Vendor_Contacts is an auto-generated table. |
Vendor_MainContact |
Vendor_MainContact is an auto-generated table. |
Vendor_PaymentInstructions |
Vendor_PaymentInstructions is an auto-generated table. |
Vendor_RemittanceContact |
Vendor_RemittanceContact is an auto-generated table. |
Vendor_ShippingContact |
Vendor_ShippingContact is an auto-generated table. |
Warehouse_Locations |
Warehouse_Locations is an auto-generated table. |
AccountByPeriodInquiry_Results
AccountByPeriodInquiry_Results is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentAccount [KEY] |
String |
|
CreditTotal |
Double |
|
CurrencyBeginingBalance |
Double |
|
CurrencyID |
String |
|
CurrencyCreditTotal |
Double |
|
DebitTotal |
Double |
|
BeginingBalance |
Double |
|
CurrencyEndingBalance |
Double |
|
CurrencyDebitTotal |
Double |
|
CurrencyPtdTotal |
Double |
|
PtdTotal |
Double |
|
LedgerID |
Int |
|
EndingBalance |
Double |
|
Period |
String |
|
Custom_EnqResult_AccountCD |
String |
|
Custom_EnqResult_SubCD |
String |
AccountBySubaccountInquiry_Results
AccountBySubaccountInquiry_Results is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentAccount [KEY] |
String |
|
CreditTotal |
Double |
|
CurrencyBeginingBalance |
Double |
|
CurrencyID |
String |
|
CurrencyCreditTotal |
Double |
|
DebitTotal |
Double |
|
BeginingBalance |
Double |
|
CurrencyEndingBalance |
Double |
|
CurrencyDebitTotal |
Double |
|
CurrencyPtdTotal |
Double |
|
Subaccount |
String |
|
PtdTotal |
Double |
|
LedgerID |
Int |
|
EndingBalance |
Double |
|
Custom_EnqResult_AccountCD |
String |
AccountDetailsInquiry_Results
AccountDetailsInquiry_Results is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentAccount [KEY] |
String |
|
CurrencyCreditAmount |
Double |
|
CurrencyBeginingBalance |
Double |
|
CreditAmount |
Double |
|
TransactionDate |
Datetime |
|
Subaccount |
String |
|
LineNbr |
Int |
|
VendorOrCustomer |
String |
|
Branch |
String |
|
CurrencyID |
String |
|
IncludedinReclassHistory |
Bool |
|
DebitAmount |
Double |
|
ReferenceNbr |
String |
|
BatchNbr |
String |
|
CurrencyEndingBalance |
Double |
|
Selected |
Bool |
|
CurrencyDebitAmount |
Double |
|
Account |
String |
|
Period |
String |
|
EndingBalance |
Double |
|
ReclassBatchNbr |
String |
|
BeginingBalance |
Double |
|
Description |
String |
|
Module |
String |
|
InventoryID |
String |
|
Custom_GLTranEnq_NoteText |
String |
|
Custom_GLTranEnq_NoteID |
String |
|
Custom_GLTranEnq_ReferenceID_BaccountR_AcctName |
String |
AccountLocation_Address
AccountLocation_Address is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentLocationId [KEY] |
String |
|
State |
String |
|
AddressLine2 |
String |
|
PostalCode |
String |
|
AddressLine1 |
String |
|
City |
String |
|
Country |
String |
AccountLocation_Cases
AccountLocation_Cases is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentLocationId [KEY] |
String |
|
DateReported |
Datetime |
|
Subject |
String |
|
Workgroup |
String |
|
Estimation |
String |
|
ClosingDate |
Datetime |
|
CaseID |
String |
|
Status |
String |
|
Reason |
String |
|
Severity |
String |
|
ClassID |
String |
|
Owner |
String |
|
InitialResponse |
String |
|
Custom_Cases_NoteText |
String |
|
Custom_Cases_NoteID |
String |
AccountLocation_Contact
AccountLocation_Contact is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentLocationId [KEY] |
String |
|
WebSite |
String |
|
Phone2 |
String |
|
Fax |
String |
|
Phone1 |
String |
|
Phone2Type |
String |
|
CompanyName |
String |
|
FaxType |
String |
|
Email |
String |
|
Phone1Type |
String |
|
Attention |
String |
|
SameAsMain |
Bool |
|
Custom_Contact_NoteID |
String |
AccountLocation_Opportunities
AccountLocation_Opportunities is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentLocationId [KEY] |
String |
|
Subject |
String |
|
DisplayName |
String |
|
Workgroup |
String |
|
Estimation |
Datetime |
|
Stage |
String |
|
Currency |
String |
|
Total |
Double |
|
Status |
String |
|
Owner |
String |
|
Probability |
Int |
|
Custom_Opportunities_NoteID |
String |
|
Custom_Opportunities_OpportunityID |
String |
|
Custom_Opportunities_NoteText |
String |
AccountSummaryInquiry_Results
AccountSummaryInquiry_Results is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentAccountClass [KEY] |
String |
|
CurrencyDebitTotal |
Double |
|
CurrencyBeginingBalance |
Double |
|
AccountClass |
String |
|
LedgerID |
Int |
|
ConsolidationAccount |
String |
|
Subaccount |
String |
|
PtdTotal |
Double |
|
Type |
String |
|
LastActivity |
String |
|
Branch |
String |
|
DebitTotal |
Double |
|
CurrencyID |
String |
|
CurrencyEndingBalance |
Double |
|
CreditTotal |
Double |
|
CurrencyPtdTotal |
Double |
|
Account |
String |
|
CurrencyCreditTotal |
Double |
|
EndingBalance |
Double |
|
BeginingBalance |
Double |
|
Description |
String |
Adjustment_Details
Adjustment_Details is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentReferenceNbr [KEY] |
String |
|
Description |
String |
|
WarehouseID |
String |
|
LocationID |
String |
|
Subitem |
String |
|
ReasonCode |
String |
|
ExtendedCost |
Double |
|
ExpirationDate |
Datetime |
|
ReceiptNbr |
String |
|
UOM |
String |
|
BranchID |
String |
|
InventoryID |
String |
|
LotSerialNbr |
String |
|
Qty |
Double |
|
Custom_transactions_Availability |
String |
|
Custom_transactions_POReceiptNbr |
String |
|
Custom_transactions_SOOrderNbr |
String |
|
Custom_transactions_DocType |
String |
|
Custom_transactions_SOOrderType |
String |
|
Custom_transactions_NoteID |
String |
|
Custom_transactions_SOShipmentNbr |
String |
|
Custom_transactions_UnitCost |
String |
|
Custom_transactions_RefNbr |
String |
|
Custom_transactions_NoteText |
String |
|
Custom_transactions_LineNbr |
Int |
AttributeDefinition_Values
AttributeDefinition_Values is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentAttributeID [KEY] |
String |
|
SortOrder |
Int |
|
Disabled |
Bool |
|
ValueID |
String |
|
Description |
String |
|
Custom_AttributeDetails_AttributeID |
String |
|
Custom_AttributeDetails_NoteText |
String |
|
Custom_AttributeDetails_NoteID |
String |
Bill_Applications
Bill_Applications is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentType [KEY] |
String |
|
ParentReferenceNbr [KEY] |
String |
|
Status |
String |
|
ReferenceNbr |
String |
|
Balance |
Double |
|
AmountPaid |
Double |
|
DocType |
String |
|
Custom_Adjustments_AdjNbr |
Int |
|
Custom_Adjustments_AdjgDocType |
String |
|
Custom_Adjustments_DisplayCuryID |
String |
|
Custom_Adjustments_CuryAdjdPPDAmt |
String |
|
Custom_Adjustments_AdjdRefNbr |
String |
|
Custom_Adjustments_AdjgBranchID |
String |
|
Custom_Adjustments_DisplayDocDate |
String |
|
Custom_Adjustments_DisplayDocDesc |
String |
|
Custom_Adjustments_AdjdDocType |
String |
|
Custom_Adjustments_DisplayFinPeriodID |
String |
|
Custom_Adjustments_AdjgRefNbr |
String |
|
Custom_Adjustments_APPayment_ExtRefNbr |
String |
|
Custom_Adjustments_NoteID |
String |
|
Custom_Adjustments_NoteText |
String |
Bill_Details
Bill_Details is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentType [KEY] |
String |
|
ParentReferenceNbr [KEY] |
String |
|
UnitCost |
Double |
|
Description |
String |
|
Account |
String |
|
TaxCategory |
String |
|
Amount |
Double |
|
Project |
String |
|
ExtendedCost |
Double |
|
ProjectTask |
String |
|
POOrderType |
String |
|
Subaccount |
String |
|
TransactionDescription |
String |
|
UOM |
String |
|
NonBillable |
Bool |
|
POOrderNbr |
String |
|
Branch |
String |
|
Qty |
Double |
|
Custom_Transactions_ReceiptNbr |
String |
|
Custom_Transactions_ManualDisc |
Bool |
|
Custom_Transactions_POLineNbr |
Int |
|
Custom_Transactions_CostCodeID |
String |
|
Custom_Transactions_POReceiptLine_SubItemID |
String |
|
Custom_Transactions_ManualPrice |
Bool |
|
Custom_Transactions_DiscountSequenceID |
String |
|
Custom_Transactions_DiscPct |
String |
|
Custom_Transactions_NoteText |
String |
|
Custom_Transactions_NoteID |
String |
|
Custom_Transactions_PPVRefNbr |
String |
|
Custom_Transactions_PPVDocType |
String |
|
Custom_Transactions_DefScheduleID |
String |
|
Custom_Transactions_LineNbr |
Int |
|
Custom_Transactions_ReceiptLineNbr |
Int |
|
Custom_Transactions_Box1099 |
String |
|
Custom_Transactions_TranType |
String |
|
Custom_Transactions_CuryDiscCost |
String |
|
Custom_Transactions_SortOrder |
Int |
|
Custom_Transactions_RefNbr |
String |
|
Custom_Transactions_Date |
String |
|
Custom_Transactions_BaseQty |
String |
|
Custom_Transactions_InventoryID |
String |
|
Custom_Transactions_DiscountID |
String |
|
Custom_Transactions_CuryDiscAmt |
String |
|
Custom_Transactions_DeferredCode |
String |
Bill_TaxDetails
Bill_TaxDetails is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentType [KEY] |
String |
|
ParentReferenceNbr [KEY] |
String |
|
TaxableAmount |
Double |
|
TaxAmount |
Double |
|
TaxRate |
Double |
|
TaxID |
String |
|
Custom_Taxes_CuryExpenseAmt |
String |
|
Custom_Taxes_CuryDiscountedPrice |
String |
|
Custom_Taxes_CuryDiscountedTaxableAmt |
String |
|
Custom_Taxes_TranType |
String |
|
Custom_Taxes_Module |
String |
|
Custom_Taxes_RefNbr |
String |
|
Custom_Taxes_Tax_ExemptTax |
Bool |
|
Custom_Taxes_RecordID |
Int |
|
Custom_Taxes_Tax_ReverseTax |
Bool |
|
Custom_Taxes_Tax_PendingTax |
Bool |
|
Custom_Taxes_Tax_StatisticalTax |
Bool |
|
Custom_Taxes_NonDeductibleTaxRate |
String |
|
Custom_Taxes_Tax_TaxType |
String |
BusinessAccount_Activities
BusinessAccount_Activities is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentBusinessAccountID [KEY] |
String |
|
ClassIcon |
String |
|
IsCompleteIcon |
String |
|
PriorityIcon |
String |
|
Owner |
String |
|
Released |
Bool |
|
RelatedEntityDescription |
String |
|
Workgroup |
String |
|
Summary |
String |
|
Type |
String |
|
CreatorID |
String |
|
CreatedAt |
Datetime |
|
Status |
String |
|
Project |
String |
|
RefNoteID |
String |
|
ProjectTask |
String |
|
StartDate |
Datetime |
|
TimeSpent |
String |
|
CreatorUsername |
String |
|
ReminderIcon |
String |
|
Custom_Activities_NoteID |
String |
|
Custom_Activities_NoteText |
String |
BusinessAccount_Attributes
BusinessAccount_Attributes is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentBusinessAccountID [KEY] |
String |
|
Value |
String |
|
Attribute |
String |
|
RefNoteID |
String |
|
Required |
Bool |
BusinessAccount_Campaigns
BusinessAccount_Campaigns is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentBusinessAccountID [KEY] |
String |
|
CampaignName |
String |
|
CampaignID |
String |
|
ContactID |
Int |
|
Stage |
String |
BusinessAccount_Cases
BusinessAccount_Cases is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentBusinessAccountID [KEY] |
String |
|
DateReported |
Datetime |
|
Subject |
String |
|
Workgroup |
String |
|
Estimation |
String |
|
ClosingDate |
Datetime |
|
CaseID |
String |
|
Contract |
String |
|
Status |
String |
|
Reason |
String |
|
Severity |
String |
|
ClassID |
String |
|
Owner |
String |
|
InitialResponse |
String |
|
Custom_Cases_NoteText |
String |
|
Custom_Cases_NoteID |
String |
BusinessAccount_Contacts
BusinessAccount_Contacts is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentBusinessAccountID [KEY] |
String |
|
Type |
String |
|
DisplayName |
String |
|
Workgroup |
String |
|
Phone1 |
String |
|
Active |
Bool |
|
Email |
String |
|
JobTitle |
String |
|
City |
String |
|
ContactID |
Int |
|
Owner |
String |
|
Custom_Contacts_NoteID |
String |
|
Custom_Contacts_NoteText |
String |
BusinessAccount_Contracts
BusinessAccount_Contracts is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentBusinessAccountID [KEY] |
String |
|
BusinessAccountID |
String |
|
Status |
String |
|
BusinessAccountName |
String |
|
Location |
String |
|
ContractID |
String |
|
Description |
String |
|
ExpirationDate |
Datetime |
|
Custom_Contracts_NoteID |
String |
|
Custom_Contracts_NoteText |
String |
BusinessAccount_DefaultLocationSettings
BusinessAccount_DefaultLocationSettings is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentBusinessAccountID [KEY] |
String |
|
LocationName |
String |
|
ResidentialDelivery |
Bool |
|
FOBPoint |
String |
|
PriceClass |
String |
|
Warehouse |
String |
|
ShippingZone |
String |
|
ShippingTerms |
String |
|
LeadTimeInDays |
Int |
|
SaturdayDelivery |
Bool |
|
ShippingRule |
String |
|
ShipVia |
String |
|
Insurance |
Bool |
|
TaxRegistrationID |
String |
|
ShippingBranch |
String |
|
OrderPriority |
Int |
|
TaxZone |
String |
|
Custom_DefLocation_CPriceClassID |
String |
|
Custom_DefLocation_CBranchID |
String |
|
Custom_DefLocation_CShipComplete |
String |
|
Custom_DefLocation_CTaxZoneID |
String |
|
Custom_DefLocation_CLeadTime |
Int |
|
Custom_DefLocation_CShipTermsID |
String |
|
Custom_DefLocation_COrderPriority |
Int |
|
Custom_DefLocation_NoteID |
String |
|
Custom_DefLocation_CShipZoneID |
String |
|
Custom_DefLocation_CFOBPointID |
String |
|
Custom_DefLocation_CSaturdayDelivery |
Bool |
|
Custom_DefLocation_CInsurance |
Bool |
|
Custom_DefLocation_CCarrierID |
String |
|
Custom_DefLocation_TaxRegistrationID |
String |
|
Custom_DefLocation_CSiteID |
String |
|
Custom_DefLocation_Descr |
String |
|
Custom_DefLocation_CResedential |
Bool |
BusinessAccount_Duplicates
BusinessAccount_Duplicates is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentBusinessAccountID [KEY] |
String |
|
Type |
String |
|
LastModifiedDate |
Datetime |
|
AccountName |
String |
|
DisplayName |
String |
|
EntityType |
String |
|
Email |
String |
|
BusinessAccountType |
String |
|
BusinessAccount |
String |
|
Duplicate |
String |
|
DuplicateContactID |
Int |
|
ContactID |
Int |
|
Custom_Duplicates_Selected |
Bool |
BusinessAccount_Locations
BusinessAccount_Locations is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentBusinessAccountID [KEY] |
String |
|
LocationName |
String |
|
LocationID |
String |
|
PriceClass |
String |
|
Active |
Bool |
|
SalesSubaccount |
String |
|
Default |
Bool |
|
SalesAccount |
String |
|
City |
String |
|
State |
String |
|
Country |
String |
|
TaxZone |
String |
|
Custom_Locations_BAccountID |
Int |
|
Custom_Locations_NoteID |
String |
|
Custom_Locations_NoteText |
String |
BusinessAccount_MainAddress
BusinessAccount_MainAddress is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentBusinessAccountID [KEY] |
String |
|
State |
String |
|
AddressLine2 |
String |
|
PostalCode |
String |
|
AddressLine1 |
String |
|
City |
String |
|
Country |
String |
BusinessAccount_MainContact
BusinessAccount_MainContact is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentBusinessAccountID [KEY] |
String |
|
CompanyName |
String |
|
Phone2 |
String |
|
Fax |
String |
|
Phone1 |
String |
|
LanguageOrLocale |
String |
|
JobTitle |
String |
|
Web |
String |
|
Email |
String |
|
Custom_DefContact_LanguageID |
String |
|
Custom_DefContact_DuplicateFound |
Bool |
|
Custom_DefContact_NoteID |
String |
BusinessAccount_MarketingLists
BusinessAccount_MarketingLists is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentBusinessAccountID [KEY] |
String |
|
Phone1 |
String |
|
Email |
String |
|
MarketingListID |
Int |
|
Subscribed |
Bool |
|
MemberName |
String |
|
DynamicList |
Bool |
|
Format |
String |
|
ContactID |
Int |
|
ListName |
String |
BusinessAccount_Opportunities
BusinessAccount_Opportunities is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentBusinessAccountID [KEY] |
String |
|
BusinessAccountName |
String |
|
CurrencyID |
String |
|
Subject |
String |
|
DisplayName |
String |
|
BusinessAccountID |
String |
|
Workgroup |
String |
|
Estimation |
Datetime |
|
Stage |
String |
|
Total |
Double |
|
Status |
String |
|
Owner |
String |
|
Probability |
Int |
|
Custom_Opportunities_NoteID |
String |
|
Custom_Opportunities_OpportunityID |
String |
|
Custom_Opportunities_NoteText |
String |
BusinessAccount_Orders
BusinessAccount_Orders is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentBusinessAccountID [KEY] |
String |
|
Description |
String |
|
CustomerOrder |
String |
|
RequestedOn |
Datetime |
|
CurrencyID |
String |
|
OrderTotal |
Double |
|
ScheduledShipment |
Datetime |
|
ShippingZone |
String |
|
ShipVia |
String |
|
Status |
String |
|
OrderNbr |
String |
|
OrderVolume |
Double |
|
OrderedQty |
Double |
|
OrderWeight |
Double |
|
OrderType |
String |
|
Custom_Orders_NoteID |
String |
|
Custom_Orders_NoteText |
String |
BusinessAccount_Relations
BusinessAccount_Relations is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentBusinessAccountID [KEY] |
String |
|
Type |
String |
|
DocumentTargetNoteIDDescription |
String |
|
ContactDisplayName |
String |
|
Account |
String |
|
Email |
String |
|
Document |
String |
|
Name |
String |
|
RelationID |
Int |
|
Role |
String |
|
ContactID |
Int |
|
AddToCc |
Bool |
|
Primary |
Bool |
BusinessAccount_ShippingAddress
BusinessAccount_ShippingAddress is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentBusinessAccountID [KEY] |
String |
|
State |
String |
|
AddressLine2 |
String |
|
PostalCode |
String |
|
AddressLine1 |
String |
|
City |
String |
|
Country |
String |
BusinessAccount_ShippingContact
BusinessAccount_ShippingContact is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentBusinessAccountID [KEY] |
String |
|
Phone2 |
String |
|
Fax |
String |
|
Phone1 |
String |
|
SameasMain |
Bool |
|
JobTitle |
String |
|
Email |
String |
|
Custom_DefLocationContact_NoteID |
String |
Carrier_CustomerAccounts
Carrier_CustomerAccounts is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentCarrierID [KEY] |
String |
|
CustomerID |
String |
|
CustomerName |
String |
|
Location |
String |
|
PostalCode |
String |
|
RecordID |
Int |
|
Active |
Bool |
|
CarrierAccount |
String |
|
Custom_CustomerAccounts_CarrierPluginID |
String |
Carrier_PlugInParameters
Carrier_PlugInParameters is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentCarrierID [KEY] |
String |
|
PluginID |
String |
|
Value |
String |
|
Description |
String |
|
Custom_Details_CarrierPluginID |
String |
Case_Activities
Case_Activities is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentCaseID [KEY] |
String |
|
BillableTime |
String |
|
ClassIcon |
String |
|
IsCompleteIcon |
String |
|
BillableOvertime |
String |
|
PriorityIcon |
String |
|
Owner |
String |
|
Released |
Bool |
|
Workgroup |
String |
|
Summary |
String |
|
Type |
String |
|
CreatedAt |
Datetime |
|
Status |
String |
|
Category |
String |
|
Project |
String |
|
RefNoteID |
String |
|
ProjectTask |
String |
|
CreatedBy |
String |
|
StartDate |
Datetime |
|
Overtime |
String |
|
Billable |
Bool |
|
TimeSpent |
String |
|
ReminderIcon |
String |
|
Custom_Activities_NoteID |
String |
|
Custom_Activities_NoteText |
String |
Case_Attributes
Case_Attributes is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentCaseID [KEY] |
String |
|
Value |
String |
|
Attribute |
String |
|
RefNoteID |
String |
|
Required |
Bool |
Case_RelatedCases
Case_RelatedCases is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentCaseID [KEY] |
String |
|
Status |
String |
|
Subject |
String |
|
Workgroup |
String |
|
ParentCaseID |
Int |
|
RelationType |
String |
|
Owner |
String |
|
CaseID |
String |
Case_Relations
Case_Relations is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentCaseID [KEY] |
String |
|
Type |
String |
|
DocumentTargetNoteIDDescription |
String |
|
ContactDisplayName |
String |
|
Account |
String |
|
Email |
String |
|
Document |
String |
|
Name |
String |
|
RelationID |
Int |
|
Role |
String |
|
ContactID |
Int |
|
AddToCc |
Bool |
|
Primary |
Bool |
CashSale_Details
CashSale_Details is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentType [KEY] |
String |
|
ParentReferenceNbr [KEY] |
String |
|
Account |
String |
|
ExtendedPrice |
Double |
|
TaxCategory |
String |
|
Amount |
Double |
|
Subaccount |
String |
|
TransactionDescription |
String |
|
Branch |
String |
|
InventoryID |
String |
|
UnitPrice |
Double |
|
Qty |
Double |
|
Custom_Transactions_DRTermStartDate |
String |
|
Custom_Transactions_CuryUnitPriceDR |
String |
|
Custom_Transactions_DRTermEndDate |
String |
|
Custom_Transactions_TranType |
String |
|
Custom_Transactions_Commissionable |
Bool |
|
Custom_Transactions_ManualDisc |
Bool |
|
Custom_Transactions_CostCodeID |
String |
|
Custom_Transactions_RefNbr |
String |
|
Custom_Transactions_SalesPersonID |
String |
|
Custom_Transactions_ManualPrice |
Bool |
|
Custom_Transactions_TaskID |
String |
|
Custom_Transactions_DiscPct |
String |
|
Custom_Transactions_UOM |
String |
|
Custom_Transactions_NoteText |
String |
|
Custom_Transactions_NoteID |
String |
|
Custom_Transactions_CuryDiscAmt |
String |
|
Custom_Transactions_DefScheduleID |
String |
|
Custom_Transactions_DiscPctDR |
String |
|
Custom_Transactions_DeferredCode |
String |
|
Custom_Transactions_LineNbr |
Int |
Check_Details
Check_Details is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentType [KEY] |
String |
|
ParentReferenceNbr [KEY] |
String |
|
ReferenceNbr |
String |
|
CashDiscountBalance |
Double |
|
Balance |
Double |
|
AmountPaid |
Double |
|
DocType |
String |
|
Custom_Adjustments_CuryAdjgWhTaxAmt |
String |
|
Custom_Adjustments_AdjNbr |
Int |
|
Custom_Adjustments_AdjgDocType |
String |
|
Custom_Adjustments_APInvoice_SuppliedByVendorID |
String |
|
Custom_Adjustments_AdjdCuryID |
String |
|
Custom_Adjustments_AdjdFinPeriodID |
String |
|
Custom_Adjustments_AdjdCuryRate |
String |
|
Custom_Adjustments_CuryWhTaxBal |
String |
|
Custom_Adjustments_APInvoice_InvoiceNbr |
String |
|
Custom_Adjustments_APInvoice_DocDesc |
String |
|
Custom_Adjustments_AdjdDocDate |
String |
|
Custom_Adjustments_AdjgRefNbr |
String |
|
Custom_Adjustments_CuryAdjgPPDAmt |
String |
|
Custom_Adjustments_APInvoice_DueDate |
String |
|
Custom_Adjustments_NoteID |
String |
|
Custom_Adjustments_NoteText |
String |
|
Custom_Adjustments_APInvoice_DiscDate |
String |
|
Custom_Adjustments_AdjdBranchID |
String |
Check_History
Check_History is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentType [KEY] |
String |
|
ParentReferenceNbr [KEY] |
String |
|
CashDiscountTaken |
Double |
|
ReferenceNbr |
String |
|
VendorRef |
String |
|
CashDiscountBalance |
Double |
|
Balance |
Double |
|
AmountPaid |
Double |
|
DocType |
String |
|
Custom_Adjustments_History_AdjdRefNbr |
String |
|
Custom_Adjustments_History_NoteID |
String |
|
Custom_Adjustments_History_APInvoice_DueDate |
String |
|
Custom_Adjustments_History_AdjdDocDate |
String |
|
Custom_Adjustments_History_AdjNbr |
Int |
|
Custom_Adjustments_History_NoteText |
String |
|
Custom_Adjustments_History_PendingPPD |
Bool |
|
Custom_Adjustments_History_PPDDebitAdjRefNbr |
String |
|
Custom_Adjustments_History_AdjdFinPeriodID |
String |
|
Custom_Adjustments_History_TaxInvoiceNbr |
String |
|
Custom_Adjustments_History_AdjgRefNbr |
String |
|
Custom_Adjustments_History_DisplayCuryWhTaxAmt |
String |
|
Custom_Adjustments_History_AdjgDocType |
String |
|
Custom_Adjustments_History_DisplayDocDesc |
String |
|
Custom_Adjustments_History_DisplayDocType |
String |
|
Custom_Adjustments_History_AdjBatchNbr |
String |
|
Custom_Adjustments_History_DisplayCuryID |
String |
|
Custom_Adjustments_History_APInvoice_DiscDate |
String |
|
Custom_Adjustments_History_DisplayCuryPPDAmt |
String |
|
Custom_Adjustments_History_AdjgFinPeriodID |
String |
|
Custom_Adjustments_History_AdjdBranchID |
String |
|
Custom_Adjustments_History_APInvoice_SuppliedByVendorID |
String |
Contact_Activities
Contact_Activities is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentContactID [KEY] |
String |
|
ClassIcon |
String |
|
IsCompleteIcon |
String |
|
PriorityIcon |
String |
|
Owner |
String |
|
Released |
Bool |
|
Summary |
String |
|
Type |
String |
|
CreatorID |
String |
|
CreatedAt |
Datetime |
|
Status |
String |
|
WorkgroupID |
String |
|
Project |
String |
|
RefNoteID |
String |
|
ProjectTask |
String |
|
StartDate |
Datetime |
|
TimeSpent |
String |
|
CreatorUsername |
String |
|
ReminderIcon |
String |
|
Custom_Activities_NoteID |
String |
|
Custom_Activities_NoteText |
String |
Contact_Address
Contact_Address is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentContactID [KEY] |
String |
|
State |
String |
|
AddressLine2 |
String |
|
PostalCode |
String |
|
AddressLine1 |
String |
|
City |
String |
|
Country |
String |
Contact_Attributes
Contact_Attributes is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentContactID [KEY] |
String |
|
Value |
String |
|
Attribute |
String |
|
RefNoteID |
String |
|
Required |
Bool |
Contact_Campaigns
Contact_Campaigns is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentContactID [KEY] |
String |
|
CampaignName |
String |
|
CampaignID |
String |
|
ContactID |
Int |
|
Stage |
String |
Contact_Cases
Contact_Cases is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentContactID [KEY] |
String |
|
DateReported |
Datetime |
|
Subject |
String |
|
Workgroup |
String |
|
Estimation |
String |
|
ClosingDate |
Datetime |
|
CaseID |
String |
|
Status |
String |
|
Reason |
String |
|
Severity |
String |
|
ClassID |
String |
|
Owner |
String |
|
InitialResponse |
String |
|
Custom_Cases_NoteText |
String |
|
Custom_Cases_NoteID |
String |
Contact_Duplicates
Contact_Duplicates is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentContactID [KEY] |
String |
|
BusinessAccount |
String |
|
BusinessAccountName |
String |
|
Type |
String |
|
BusinessAccountType |
String |
|
LastModifiedDate |
Datetime |
|
DisplayName |
String |
|
Duplicate |
String |
|
Email |
String |
|
Custom_Duplicates_ContactID |
Int |
|
Custom_Duplicates_Selected |
Bool |
|
Custom_Duplicates_DuplicateContactID |
Int |
|
Custom_Duplicates_ValidationType |
String |
|
Custom_Duplicates_Contact2_ContactID |
Int |
Contact_MarketingLists
Contact_MarketingLists is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentContactID [KEY] |
String |
|
DynamicList |
Bool |
|
ListName |
String |
|
Subscribed |
Bool |
|
Format |
String |
|
ContactID |
Int |
|
MarketingListID |
Int |
|
Custom_Subscriptions_CRMarketingList_IsStatic |
Bool |
Contact_Notifications
Contact_Notifications is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentContactID [KEY] |
String |
|
Description |
String |
|
MailingID |
String |
|
Source |
String |
|
Active |
Bool |
|
Module |
String |
|
Bcc |
Bool |
|
Report |
String |
|
NotificationID |
Int |
|
ClassID |
String |
|
Format |
String |
Contact_Opportunities
Contact_Opportunities is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentContactID [KEY] |
String |
|
Subject |
String |
|
DisplayName |
String |
|
Workgroup |
String |
|
Estimation |
Datetime |
|
Stage |
String |
|
Currency |
String |
|
Total |
Double |
|
Status |
String |
|
Owner |
String |
|
Probability |
Int |
|
Custom_Opportunities_NoteID |
String |
|
Custom_Opportunities_OpportunityID |
String |
|
Custom_Opportunities_NoteText |
String |
Contact_Relations
Contact_Relations is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentContactID [KEY] |
String |
|
Type |
String |
|
DocumentTargetNoteIDDescription |
String |
|
ContactDisplayName |
String |
|
Account |
String |
|
Email |
String |
|
Document |
String |
|
Name |
String |
|
RelationID |
Int |
|
Role |
String |
|
ContactID |
Int |
|
AddToCc |
Bool |
|
Primary |
Bool |
Contact_UserInfo
Contact_UserInfo is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentContactID [KEY] |
String |
|
Status |
String |
|
GeneratePassword |
Bool |
|
Password |
String |
|
Login |
String |
|
UserType |
String |
|
Custom_User_ConfirmPassword |
String |
|
Custom_User_NewPassword |
String |
|
Custom_User_NoteID |
String |
CustomerClass_Attributes
CustomerClass_Attributes is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentClassID [KEY] |
String |
|
DefaultValue |
String |
|
Active |
Bool |
|
SortOrder |
Int |
|
Description |
String |
|
AttributeID |
String |
|
Required |
Bool |
|
Custom_Mapping_EntityClassID |
String |
|
Custom_Mapping_CSAttribute_IsInternal |
Bool |
|
Custom_Mapping_ControlType |
String |
|
Custom_Mapping_EntityType |
String |
CustomerLocation_LocationContact
CustomerLocation_LocationContact is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentLocationID [KEY] |
String |
|
LanguageOrLocale |
String |
|
DuplicateFound |
Bool |
|
JobTitle |
String |
|
MiddleName |
String |
|
FirstName |
String |
|
DoNotFax |
Bool |
|
Status |
String |
|
ParentAccount |
String |
|
OwnerEmployeeName |
String |
|
Phone3 |
String |
|
Phone2 |
String |
|
Phone1 |
String |
|
Phone2Type |
String |
|
MaritalStatus |
String |
|
Email |
String |
|
FaxType |
String |
|
DoNotCall |
Bool |
|
Active |
Bool |
|
Owner |
String |
|
DoNotMail |
Bool |
|
Title |
String |
|
Gender |
String |
|
Phone1Type |
String |
|
ContactID |
Int |
|
WebSite |
String |
|
ContactClass |
String |
|
CompanyName |
String |
|
AddressIsSameAsInAccount |
Bool |
|
NoMassMail |
Bool |
|
LastOutgoingActivity |
Datetime |
|
DisplayName |
String |
|
ContactMethod |
String |
|
Workgroup |
String |
|
AddressValidated |
Bool |
|
LastIncomingActivity |
Datetime |
|
SourceCampaign |
String |
|
SpouseOrPartnerName |
String |
|
Reason |
String |
|
Synchronize |
Bool |
|
ConvertedBy |
String |
|
Image |
String |
|
Type |
String |
|
NoMarketing |
Bool |
|
DateOfBirth |
Datetime |
|
Duplicate |
String |
|
DoNotEmail |
Bool |
|
Phone3Type |
String |
|
Source |
String |
|
BusinessAccount |
String |
|
LastName |
String |
|
Fax |
String |
|
QualificationDate |
Datetime |
|
WorkgroupDescription |
String |
CustomerPaymentMethod_Details
CustomerPaymentMethod_Details is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentCustomerID [KEY] |
String |
|
ParentPaymentMethod [KEY] |
String |
|
Name |
String |
|
Value |
String |
|
Custom_Details_PaymentMethodID |
String |
|
Custom_Details_PMInstanceID |
Int |
Customer_Attributes
Customer_Attributes is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentCustomerID [KEY] |
String |
|
Value |
String |
|
Attribute |
String |
|
RefNoteID |
String |
|
Required |
Bool |
Customer_BillingContact
Customer_BillingContact is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentCustomerID [KEY] |
String |
|
LanguageOrLocale |
String |
|
DuplicateFound |
Bool |
|
JobTitle |
String |
|
MiddleName |
String |
|
FirstName |
String |
|
DoNotFax |
Bool |
|
Status |
String |
|
ParentAccount |
String |
|
OwnerEmployeeName |
String |
|
Phone3 |
String |
|
Phone2 |
String |
|
Phone1 |
String |
|
Phone2Type |
String |
|
MaritalStatus |
String |
|
Email |
String |
|
FaxType |
String |
|
DoNotCall |
Bool |
|
Active |
Bool |
|
Owner |
String |
|
DoNotMail |
Bool |
|
Title |
String |
|
Gender |
String |
|
Phone1Type |
String |
|
ContactID |
Int |
|
WebSite |
String |
|
ContactClass |
String |
|
CompanyName |
String |
|
AddressIsSameAsInAccount |
Bool |
|
NoMassMail |
Bool |
|
LastOutgoingActivity |
Datetime |
|
DisplayName |
String |
|
ContactMethod |
String |
|
Workgroup |
String |
|
AddressValidated |
Bool |
|
LastIncomingActivity |
Datetime |
|
SourceCampaign |
String |
|
SpouseOrPartnerName |
String |
|
Reason |
String |
|
Synchronize |
Bool |
|
ConvertedBy |
String |
|
Image |
String |
|
Type |
String |
|
NoMarketing |
Bool |
|
DateOfBirth |
Datetime |
|
Duplicate |
String |
|
DoNotEmail |
Bool |
|
Phone3Type |
String |
|
Source |
String |
|
BusinessAccount |
String |
|
LastName |
String |
|
Fax |
String |
|
QualificationDate |
Datetime |
|
WorkgroupDescription |
String |
Customer_Contacts
Customer_Contacts is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentCustomerID [KEY] |
String |
|
ContactID |
Int |
Customer_CreditVerificationRules
Customer_CreditVerificationRules is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentCustomerID [KEY] |
String |
|
OpenOrdersBalance |
Double |
|
CreditDaysPastDue |
Int |
|
CreditVerification |
String |
|
RemainingCreditLimit |
Double |
|
CreditLimit |
Double |
|
FirstDueDate |
Datetime |
|
UnreleasedBalance |
Double |
Customer_MainContact
Customer_MainContact is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentCustomerID [KEY] |
String |
|
LanguageOrLocale |
String |
|
DuplicateFound |
Bool |
|
JobTitle |
String |
|
MiddleName |
String |
|
FirstName |
String |
|
DoNotFax |
Bool |
|
Status |
String |
|
ParentAccount |
String |
|
OwnerEmployeeName |
String |
|
Phone3 |
String |
|
Phone2 |
String |
|
Phone1 |
String |
|
Phone2Type |
String |
|
MaritalStatus |
String |
|
Email |
String |
|
FaxType |
String |
|
DoNotCall |
Bool |
|
Active |
Bool |
|
Owner |
String |
|
DoNotMail |
Bool |
|
Title |
String |
|
Gender |
String |
|
Phone1Type |
String |
|
ContactID |
Int |
|
WebSite |
String |
|
ContactClass |
String |
|
CompanyName |
String |
|
AddressIsSameAsInAccount |
Bool |
|
NoMassMail |
Bool |
|
LastOutgoingActivity |
Datetime |
|
DisplayName |
String |
|
ContactMethod |
String |
|
Workgroup |
String |
|
AddressValidated |
Bool |
|
LastIncomingActivity |
Datetime |
|
SourceCampaign |
String |
|
SpouseOrPartnerName |
String |
|
Reason |
String |
|
Synchronize |
Bool |
|
ConvertedBy |
String |
|
Image |
String |
|
Type |
String |
|
NoMarketing |
Bool |
|
DateOfBirth |
Datetime |
|
Duplicate |
String |
|
DoNotEmail |
Bool |
|
Phone3Type |
String |
|
Source |
String |
|
BusinessAccount |
String |
|
LastName |
String |
|
Fax |
String |
|
QualificationDate |
Datetime |
|
WorkgroupDescription |
String |
Customer_PaymentInstructions
Customer_PaymentInstructions is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentCustomerID [KEY] |
String |
|
Value |
String |
|
PaymentInstructionsID |
String |
|
PaymentMethod |
String |
|
Description |
String |
|
LocationID |
Int |
Customer_Salespersons
Customer_Salespersons is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentCustomerID [KEY] |
String |
|
Name |
String |
|
Default |
Bool |
|
Commission |
Double |
|
LocationName |
String |
|
SalespersonID |
String |
|
LocationID |
String |
Customer_ShippingContact
Customer_ShippingContact is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentCustomerID [KEY] |
String |
|
LanguageOrLocale |
String |
|
DuplicateFound |
Bool |
|
JobTitle |
String |
|
MiddleName |
String |
|
FirstName |
String |
|
DoNotFax |
Bool |
|
Status |
String |
|
ParentAccount |
String |
|
OwnerEmployeeName |
String |
|
Phone3 |
String |
|
Phone2 |
String |
|
Phone1 |
String |
|
Phone2Type |
String |
|
MaritalStatus |
String |
|
Email |
String |
|
FaxType |
String |
|
DoNotCall |
Bool |
|
Active |
Bool |
|
Owner |
String |
|
DoNotMail |
Bool |
|
Title |
String |
|
Gender |
String |
|
Phone1Type |
String |
|
ContactID |
Int |
|
WebSite |
String |
|
ContactClass |
String |
|
CompanyName |
String |
|
AddressIsSameAsInAccount |
Bool |
|
NoMassMail |
Bool |
|
LastOutgoingActivity |
Datetime |
|
DisplayName |
String |
|
ContactMethod |
String |
|
Workgroup |
String |
|
AddressValidated |
Bool |
|
LastIncomingActivity |
Datetime |
|
SourceCampaign |
String |
|
SpouseOrPartnerName |
String |
|
Reason |
String |
|
Synchronize |
Bool |
|
ConvertedBy |
String |
|
Image |
String |
|
Type |
String |
|
NoMarketing |
Bool |
|
DateOfBirth |
Datetime |
|
Duplicate |
String |
|
DoNotEmail |
Bool |
|
Phone3Type |
String |
|
Source |
String |
|
BusinessAccount |
String |
|
LastName |
String |
|
Fax |
String |
|
QualificationDate |
Datetime |
|
WorkgroupDescription |
String |
Discount_CustomerPriceClasses
Discount_CustomerPriceClasses is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentDiscountCode [KEY] |
String |
|
ParentSequence [KEY] |
String |
|
PriceClassID |
String |
|
Custom_CustomerPriceClasses_ARPriceClass_Description |
String |
|
Custom_CustomerPriceClasses_DiscountID |
String |
|
Custom_CustomerPriceClasses_DiscountSequenceID |
String |
Discount_Customers
Discount_Customers is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentDiscountCode [KEY] |
String |
|
ParentSequence [KEY] |
String |
|
CustomerID |
String |
|
CustomerName |
String |
|
Custom_Customers_DiscountID |
String |
|
Custom_Customers_DiscountSequenceID |
String |
Discount_DiscountBreakpoints
Discount_DiscountBreakpoints is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentDiscountCode [KEY] |
String |
|
ParentSequence [KEY] |
String |
|
PendingFreeItemQty |
Double |
|
BreakAmount |
Double |
|
DiscountDetailID |
Int |
|
LastFreeItemQty |
Double |
|
PendingDate |
Datetime |
|
LastBreakQty |
Double |
|
DiscountPercent |
Double |
|
FreeItemQty |
Double |
|
LastDiscountPercent |
Double |
|
PendingDiscountPercent |
Double |
|
PendingBreakQty |
Double |
|
PendingDiscountAmount |
Double |
|
DiscountAmount |
Double |
|
EffectiveDate |
Datetime |
|
LastBreakAmount |
Double |
|
LastDiscountAmount |
Double |
|
PendingBreakAmount |
Double |
|
BreakQty |
Double |
|
Custom_Details_IsActive |
Bool |
Discount_ItemPriceClasses
Discount_ItemPriceClasses is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentDiscountCode [KEY] |
String |
|
ParentSequence [KEY] |
String |
|
PriceClassID |
String |
|
Custom_InventoryPriceClasses_INPriceClass_Description |
String |
|
Custom_InventoryPriceClasses_DiscountSequenceID |
String |
|
Custom_InventoryPriceClasses_DiscountID |
String |
Discount_Items
Discount_Items is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentDiscountCode [KEY] |
String |
|
ParentSequence [KEY] |
String |
|
Description |
String |
|
InventoryID |
String |
|
Custom_Items_DiscountID |
String |
|
Custom_Items_DiscountSequenceID |
String |
Discount_Warehouses
Discount_Warehouses is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentDiscountCode [KEY] |
String |
|
ParentSequence [KEY] |
String |
|
Warehouse |
String |
|
Custom_Sites_INSite_Descr |
String |
|
Custom_Sites_DiscountID |
String |
|
Custom_Sites_DiscountSequenceID |
String |
Email_TimeActivity
Email_TimeActivity is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
EarningType |
String |
|
Approver |
String |
|
TrackTime |
Bool |
|
Overtime |
String |
|
BillableOvertime |
String |
|
Project |
String |
|
ProjectTask |
String |
|
Released |
Bool |
|
Status |
String |
|
TimeSpent |
String |
|
BillableTime |
String |
|
Billable |
Bool |
|
Custom_TimeActivity_NoteID |
String |
|
Custom_TimeActivity_CostCodeID |
String |
Employee_Contact
Employee_Contact is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentEmployeeID [KEY] |
String |
|
LanguageOrLocale |
String |
|
DuplicateFound |
Bool |
|
JobTitle |
String |
|
MiddleName |
String |
|
FirstName |
String |
|
DoNotFax |
Bool |
|
Status |
String |
|
ParentAccount |
String |
|
OwnerEmployeeName |
String |
|
Phone3 |
String |
|
Phone2 |
String |
|
Phone1 |
String |
|
Phone2Type |
String |
|
MaritalStatus |
String |
|
Email |
String |
|
FaxType |
String |
|
DoNotCall |
Bool |
|
Active |
Bool |
|
Owner |
String |
|
DoNotMail |
Bool |
|
Title |
String |
|
Gender |
String |
|
Phone1Type |
String |
|
ContactID |
Int |
|
WebSite |
String |
|
ContactClass |
String |
|
CompanyName |
String |
|
AddressIsSameAsInAccount |
Bool |
|
NoMassMail |
Bool |
|
LastOutgoingActivity |
Datetime |
|
DisplayName |
String |
|
ContactMethod |
String |
|
Workgroup |
String |
|
AddressValidated |
Bool |
|
LastIncomingActivity |
Datetime |
|
SourceCampaign |
String |
|
SpouseOrPartnerName |
String |
|
Reason |
String |
|
Synchronize |
Bool |
|
ConvertedBy |
String |
|
Image |
String |
|
Type |
String |
|
NoMarketing |
Bool |
|
DateOfBirth |
Datetime |
|
Duplicate |
String |
|
DoNotEmail |
Bool |
|
Phone3Type |
String |
|
Source |
String |
|
BusinessAccount |
String |
|
LastName |
String |
|
Fax |
String |
|
QualificationDate |
Datetime |
|
WorkgroupDescription |
String |
Employee_EmployeeCost
Employee_EmployeeCost is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentEmployeeID [KEY] |
String |
|
EffectiveDate |
Datetime |
|
HourlyRate |
Double |
|
AnnualSalaryAmount |
Double |
|
RegularHoursPerWeek |
Double |
|
TypeOfEmployment |
String |
Employee_EmploymentHistory
Employee_EmploymentHistory is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentEmployeeID [KEY] |
String |
|
StartDate |
Datetime |
|
EndDate |
Datetime |
|
PositionID |
String |
|
RehireEligible |
Bool |
|
Active |
Bool |
|
LineNbr |
Int |
|
TerminationReason |
String |
|
StartReason |
String |
|
Terminated |
Bool |
Event_Attendees
Event_Attendees is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentSummary [KEY] |
String |
|
Key |
String |
|
Name |
String |
|
Type |
Int |
|
EventNoteID |
String |
|
Comment |
String |
|
InvitationStatus |
String |
|
NameAttendeeName |
String |
|
Email |
String |
Event_RelatedActivities
Event_RelatedActivities is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentSummary [KEY] |
String |
|
Type |
String |
|
Summary |
String |
|
StartDate |
Datetime |
|
Overtime |
String |
|
BillableOvertime |
String |
|
Status |
String |
|
TimeSpent |
String |
|
BillableTime |
String |
|
Billable |
Bool |
|
Custom_ChildActivities_CostCodeID |
String |
|
Custom_ChildActivities_NoteText |
String |
|
Custom_ChildActivities_NoteID |
String |
Event_Reminder
Event_Reminder is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentSummary [KEY] |
String |
|
RemindAtDate |
Datetime |
|
IsActive |
Bool |
|
RemindAtTime |
Datetime |
Event_TimeActivity
Event_TimeActivity is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentSummary [KEY] |
String |
|
TimeSpent |
String |
|
BillableOvertime |
String |
|
Overtime |
String |
|
BillableTime |
String |
FinancialPeriod_Details
FinancialPeriod_Details is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
Description |
String |
|
StartDate |
Datetime |
|
FinancialPeriodID |
String |
|
EndDate |
Datetime |
|
AdjustmentPeriod |
Bool |
|
LengthInDays |
Int |
|
Active |
Bool |
|
ClosedInPR |
Bool |
|
ClosedInFA |
Bool |
|
ClosedInAR |
Bool |
|
ClosedInCA |
Bool |
|
ClosedInAP |
Bool |
|
ClosedInGL |
Bool |
|
PeriodNbr |
String |
|
ClosedInIN |
Bool |
|
Custom_Periods_StartDateUI |
String |
|
Custom_Periods_NoteID |
String |
|
Custom_Periods_NoteText |
String |
InterBranchAccountMapping_TransactionsInDestinationBranch
InterBranchAccountMapping_TransactionsInDestinationBranch is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentOriginatingBranch [KEY] |
String |
|
OffsetAccount |
String |
|
OffsetSubaccount |
String |
|
AccountFrom |
String |
|
LineNbr |
Int |
|
BranchID |
Int |
|
DestinationBranch |
String |
|
AccountTo |
String |
InterBranchAccountMapping_TransactionsInSourceBranch
InterBranchAccountMapping_TransactionsInSourceBranch is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentOriginatingBranch [KEY] |
String |
|
OffsetAccount |
String |
|
OffsetSubaccount |
String |
|
AccountFrom |
String |
|
LineNbr |
Int |
|
BranchID |
Int |
|
DestinationBranch |
String |
|
AccountTo |
String |
InventoryAllocationInquiry_Results
InventoryAllocationInquiry_Results is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentInventoryID [KEY] |
String |
|
Location |
String |
|
Expired |
Bool |
|
Module |
String |
|
LotSerialNbr |
String |
|
Qty |
Double |
|
AllocationDate |
Datetime |
|
DocType |
String |
|
AllocationType |
String |
|
Custom_ResultRecords_RefNbr |
String |
|
Custom_ResultRecords_SubItemID |
String |
|
Custom_ResultRecords_AcctName |
String |
|
Custom_ResultRecords_GridLineNbr |
Int |
|
Custom_ResultRecords_LocNotAvailable |
Bool |
|
Custom_ResultRecords_BAccountID |
String |
|
Custom_ResultRecords_SiteID |
String |
InventoryReceipt_Details
InventoryReceipt_Details is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentReferenceNbr [KEY] |
String |
|
UnitCost |
Double |
|
Description |
String |
|
WarehouseID |
String |
|
LineNumber |
Int |
|
Subitem |
String |
|
Location |
String |
|
ExpirationDate |
Datetime |
|
UOM |
String |
|
InventoryID |
String |
|
ExtCost |
Double |
|
LotSerialNbr |
String |
|
Qty |
Double |
|
Custom_transactions_TaskID |
String |
|
Custom_transactions_Availability |
String |
|
Custom_transactions_POReceiptNbr |
String |
|
Custom_transactions_ProjectID |
String |
|
Custom_transactions_ReasonCode |
String |
|
Custom_transactions_DocType |
String |
|
Custom_transactions_NoteID |
String |
|
Custom_transactions_RefNbr |
String |
|
Custom_transactions_NoteText |
String |
|
Custom_transactions_BranchID |
String |
InventorySummaryInquiry_Results
InventorySummaryInquiry_Results is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentInventoryID [KEY] |
String |
|
EstimatedUnitCost |
Double |
|
WarehouseID |
String |
|
LocationID |
String |
|
QtyNotAvailable |
Double |
|
EstimatedTotalCost |
Double |
|
QtyAvailableForShipment |
Double |
|
Subitem |
String |
|
QtyOnHand |
Double |
|
QtyAvailable |
Double |
|
ExpirationDate |
Datetime |
|
BaseUOM |
String |
|
LotSerialNbr |
String |
|
Custom_ISERecords_QtyPODropShipReceipts |
String |
|
Custom_ISERecords_QtyInTransit |
String |
|
Custom_ISERecords_QtyInTransitToSO |
String |
|
Custom_ISERecords_QtySOPrepared |
String |
|
Custom_ISERecords_QtyActual |
String |
|
Custom_ISERecords_QtySOBackOrdered |
String |
|
Custom_ISERecords_QtyPOFixedOrders |
String |
|
Custom_ISERecords_QtyPOPrepared |
String |
|
Custom_ISERecords_QtySOBooked |
String |
|
Custom_ISERecords_QtyPODropShipPrepared |
String |
|
Custom_ISERecords_QtySODropShip |
String |
|
Custom_ISERecords_QtyPODropShipOrders |
String |
|
Custom_ISERecords_QtyPOFixedPrepared |
String |
|
Custom_ISERecords_QtyINIssues |
String |
|
Custom_ISERecords_QtyInAssemblyDemand |
String |
|
Custom_ISERecords_QtySOShipping |
String |
|
Custom_ISERecords_QtySOShipped |
String |
|
Custom_ISERecords_QtyINReceipts |
String |
|
Custom_ISERecords_QtyExpired |
String |
|
Custom_ISERecords_QtyInAssemblySupply |
String |
|
Custom_ISERecords_QtySOFixed |
String |
|
Custom_ISERecords_QtyPOFixedReceipts |
String |
|
Custom_ISERecords_QtyPOOrders |
String |
|
Custom_ISERecords_QtyPOReceipts |
String |
|
Custom_ISERecords_InventoryID |
String |
Invoice_ApplicationsCreditMemo
Invoice_ApplicationsCreditMemo is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentType [KEY] |
String |
|
ParentReferenceNbr [KEY] |
String |
|
Description |
String |
|
CustomerOrder |
String |
|
Customer |
String |
|
DocType |
String |
|
AmountPaid |
Double |
|
Status |
String |
|
ReferenceNbr |
String |
|
Balance |
Double |
|
PostPeriod |
String |
|
Custom_Adjustments_1\_AdjgDocType |
String |
|
Custom_Adjustments_1\_ARInvoice_DocDate |
String |
|
Custom_Adjustments_1\_ARInvoice_CuryID |
String |
|
Custom_Adjustments_1\_NoteID |
String |
|
Custom_Adjustments_1\_AdjNbr |
Int |
|
Custom_Adjustments_1\_AdjgBranchID |
String |
|
Custom_Adjustments_1\_AdjgRefNbr |
String |
|
Custom_Adjustments_1\_NoteText |
String |
Invoice_ApplicationsDefault
Invoice_ApplicationsDefault is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentType [KEY] |
String |
|
ParentReferenceNbr [KEY] |
String |
|
Status |
String |
|
CashDiscountTaken |
Double |
|
ReferenceNbr |
String |
|
Balance |
Double |
|
AmountPaid |
Double |
|
PaymentDate |
Datetime |
|
DocType |
String |
|
Custom_Adjustments_CustomerID |
String |
|
Custom_Adjustments_PPDCrMemoRefNbr |
String |
|
Custom_Adjustments_AdjNbr |
Int |
|
Custom_Adjustments_ARPayment_DocDesc |
String |
|
Custom_Adjustments_AdjdRefNbr |
String |
|
Custom_Adjustments_AdjgBranchID |
String |
|
Custom_Adjustments_ARPayment_CuryID |
String |
|
Custom_Adjustments_ARPayment_ExtRefNbr |
String |
|
Custom_Adjustments_AdjdDocType |
String |
|
Custom_Adjustments_NoteID |
String |
|
Custom_Adjustments_PendingPPD |
Bool |
|
Custom_Adjustments_ARPayment_FinPeriodID |
String |
|
Custom_Adjustments_NoteText |
String |
Invoice_Details
Invoice_Details is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentType [KEY] |
String |
|
ParentReferenceNbr [KEY] |
String |
|
Subitem |
String |
|
Account |
String |
|
LineNbr |
Int |
|
ExtendedPrice |
Double |
|
DiscountAmount |
Double |
|
Amount |
Double |
|
ProjectTask |
String |
|
Subaccount |
String |
|
TransactionDescription |
String |
|
UOM |
String |
|
Branch |
String |
|
InventoryID |
String |
|
UnitPrice |
Double |
|
LastModifiedDateTime |
Datetime |
|
Qty |
Double |
|
Custom_Transactions_CaseID |
String |
|
Custom_Transactions_DRTermStartDate |
String |
|
Custom_Transactions_CuryUnitPriceDR |
String |
|
Custom_Transactions_DRTermEndDate |
String |
|
Custom_Transactions_TranType |
String |
|
Custom_Transactions_Commissionable |
Bool |
|
Custom_Transactions_ManualDisc |
Bool |
|
Custom_Transactions_AccountID_Account_description |
String |
|
Custom_Transactions_CostCodeID |
String |
|
Custom_Transactions_RefNbr |
String |
|
Custom_Transactions_Date |
String |
|
Custom_Transactions_SalesPersonID |
String |
|
Custom_Transactions_BaseQty |
String |
|
Custom_Transactions_ManualPrice |
Bool |
|
Custom_Transactions_DiscountSequenceID |
String |
|
Custom_Transactions_DiscountID |
String |
|
Custom_Transactions_TaxCategoryID |
String |
|
Custom_Transactions_DiscPct |
String |
|
Custom_Transactions_NoteText |
String |
|
Custom_Transactions_NoteID |
String |
|
Custom_Transactions_DefScheduleID |
String |
|
Custom_Transactions_DiscPctDR |
String |
|
Custom_Transactions_DeferredCode |
String |
Invoice_TaxDetails
Invoice_TaxDetails is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentType [KEY] |
String |
|
ParentReferenceNbr [KEY] |
String |
|
TaxableAmount |
Double |
|
TaxAmount |
Double |
|
TaxRate |
Double |
|
TaxID |
String |
|
Custom_Taxes_RecordID |
Int |
|
Custom_Taxes_Tax_ReverseTax |
Bool |
|
Custom_Taxes_Tax_PendingTax |
Bool |
|
Custom_Taxes_CuryDiscountedPrice |
String |
|
Custom_Taxes_CuryDiscountedTaxableAmt |
String |
|
Custom_Taxes_Tax_StatisticalTax |
Bool |
|
Custom_Taxes_TranType |
String |
|
Custom_Taxes_Module |
String |
|
Custom_Taxes_RefNbr |
String |
|
Custom_Taxes_Tax_ExemptTax |
Bool |
|
Custom_Taxes_Tax_TaxType |
String |
ItemClass_Attributes
ItemClass_Attributes is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentClassID [KEY] |
String |
|
SortOrder |
Int |
|
AttributeID |
String |
|
Required |
Bool |
|
Custom_Mapping_IsActive |
Bool |
|
Custom_Mapping_EntityClassID |
String |
|
Custom_Mapping_Description |
String |
|
Custom_Mapping_ControlType |
String |
|
Custom_Mapping_EntityType |
String |
JournalTransaction_Details
JournalTransaction_Details is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentModule [KEY] |
String |
|
ParentBatchNbr [KEY] |
String |
|
Description |
String |
|
VendorOrCustomer |
String |
|
Account |
String |
|
LineNbr |
Int |
|
Project |
String |
|
ProjectTask |
String |
|
Subaccount |
String |
|
TransactionDescription |
String |
|
UOM |
String |
|
NonBillable |
Bool |
|
ReferenceNbr |
String |
|
BranchID |
String |
|
DebitAmount |
Double |
|
CreditAmount |
Double |
|
Qty |
Double |
|
Custom_GLTranModuleBatNbr_NoteText |
String |
|
Custom_GLTranModuleBatNbr_ReclassBatchNbr |
String |
|
Custom_GLTranModuleBatNbr_OrigBatchNbr |
String |
|
Custom_GLTranModuleBatNbr_InventoryID |
String |
|
Custom_GLTranModuleBatNbr_CostCodeID |
String |
|
Custom_GLTranModuleBatNbr_IncludedInReclassHistory |
Bool |
|
Custom_GLTranModuleBatNbr_OrigModule |
String |
|
Custom_GLTranModuleBatNbr_Module |
String |
|
Custom_GLTranModuleBatNbr_TaxID |
String |
|
Custom_GLTranModuleBatNbr_BatchNbr |
String |
|
Custom_GLTranModuleBatNbr_TranDate |
String |
|
Custom_GLTranModuleBatNbr_TaxCategoryID |
String |
|
Custom_GLTranModuleBatNbr_OrigLineNbr |
Int |
|
Custom_GLTranModuleBatNbr_LedgerID |
String |
|
Custom_GLTranModuleBatNbr_NoteID |
String |
JournalVoucher_Details
JournalVoucher_Details is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentBatchNbr [KEY] |
String |
|
DocTotal |
Double |
|
DebitSubaccount |
String |
|
PaymentMethod |
String |
|
CreditAccount |
String |
|
VendorOrCustomer |
String |
|
Released |
Bool |
|
Split |
Bool |
|
TaxAmount |
Double |
|
CardAccountNbr |
Int |
|
CashDiscount |
Double |
|
ProjectTask |
String |
|
Terms |
String |
|
LineNbr |
Int |
|
TaxZone |
String |
|
ReferenceNbr |
String |
|
EntryTypeID |
String |
|
TaxCategory |
String |
|
IncludedTaxAmount |
Double |
|
TransactionDate |
Datetime |
|
GroupTransactionID |
Int |
|
TotalAmount |
Double |
|
BatchNbr |
String |
|
DueDate |
Datetime |
|
ExternalRef |
String |
|
CardAccountNbrCardAccountNbr |
String |
|
TransactionDescription |
String |
|
CashDiscountDate |
Datetime |
|
TransactionCode |
String |
|
Location |
String |
|
DocCreated |
Bool |
|
Project |
String |
|
SubtotalAmount |
Double |
|
BatchModule |
String |
|
DebitAccount |
String |
|
CreditSubaccount |
String |
|
Custom_GLTranModuleBatNbr_NoteText |
String |
|
Custom_GLTranModuleBatNbr_CostCodeID |
String |
|
Custom_GLTranModuleBatNbr_NoteID |
String |
JournalVoucher_GLTransactions
JournalVoucher_GLTransactions is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentBatchNbr [KEY] |
String |
|
CurrencyID |
String |
|
Account |
String |
|
LineNbr |
Int |
|
Module |
String |
|
TransactionDate |
Datetime |
|
Subaccount |
String |
|
BatchNbr |
String |
|
TransactionDescription |
String |
|
ReferenceNbr |
String |
|
DebitAmount |
Double |
|
CreditAmount |
Double |
|
Qty |
Double |
|
Custom_GLTransactions_NoteID |
String |
|
Custom_GLTransactions_NoteText |
String |
KitAssembly_Allocations
KitAssembly_Allocations is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
SplitLineNbr |
Int |
|
LotSerialNbr |
String |
|
UOM |
String |
|
LineNbr |
Int |
|
Qty |
Double |
|
ExpirationDate |
Datetime |
|
Subitem |
String |
|
LocationID |
String |
|
Custom_MasterSplits_LineNbr |
Int |
|
Custom_MasterSplits_DocType |
String |
|
Custom_MasterSplits_RefNbr |
String |
KitAssembly_NonStockComponents
KitAssembly_NonStockComponents is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ComponentQty |
Double |
|
UOM |
String |
|
ReasonCode |
String |
|
LineNbr |
Int |
|
Qty |
Double |
|
NonStockInventoryID |
String |
|
UnitCost |
Double |
|
Custom_Overhead_RefNbr |
String |
|
Custom_Overhead_INKitSpecNonStkDet_MinCompQty |
String |
|
Custom_Overhead_INKitSpecNonStkDet_MaxCompQty |
String |
|
Custom_Overhead_INKitSpecNonStkDet_UOM |
String |
|
Custom_Overhead_INKitSpecNonStkDet_AllowQtyVariation |
Bool |
|
Custom_Overhead_DocType |
String |
KitAssembly_StockComponents
KitAssembly_StockComponents is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
UnitCost |
Double |
|
LocationID |
String |
|
Subitem |
String |
|
ComponentQty |
Double |
|
LineNbr |
Int |
|
ReasonCode |
String |
|
StockInventoryID |
String |
|
UOM |
String |
|
Qty |
Double |
|
Custom_Components_NoteText |
String |
|
Custom_Components_INKitSpecStkDet_AllowSubstitution |
Bool |
|
Custom_Components_RefNbr |
String |
|
Custom_Components_NoteID |
String |
|
Custom_Components_INKitSpecStkDet_MaxCompQty |
String |
|
Custom_Components_INKitSpecStkDet_MinCompQty |
String |
|
Custom_Components_INKitSpecStkDet_DisassemblyCoeff |
String |
|
Custom_Components_DocType |
String |
|
Custom_Components_INKitSpecStkDet_UOM |
String |
|
Custom_Components_INKitSpecStkDet_AllowQtyVariation |
Bool |
|
Custom_Components_Availability |
String |
KitSpecification_NonStockComponents
KitSpecification_NonStockComponents is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentKitInventoryID [KEY] |
String |
|
ParentRevisionID [KEY] |
String |
|
AllowComponentQtyVariance |
Bool |
|
ComponentQty |
Double |
|
MaxComponentQty |
Double |
|
UOM |
String |
|
NonStockInventoryID |
String |
|
MinComponentQty |
Double |
|
Custom_NonStockDet_KitInventoryID |
String |
|
Custom_NonStockDet_RevisionID |
String |
|
Custom_NonStockDet_LineNbr |
Int |
KitSpecification_StockComponents
KitSpecification_StockComponents is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentKitInventoryID [KEY] |
String |
|
ParentRevisionID [KEY] |
String |
|
AllowComponentQtyVariance |
Bool |
|
ComponentQty |
Double |
|
MaxComponentQty |
Double |
|
UOM |
String |
|
StockInventoryID |
String |
|
MinComponentQty |
Double |
|
Subitem |
String |
|
Custom_StockDet_DisassemblyCoeff |
String |
|
Custom_StockDet_KitInventoryID |
String |
|
Custom_StockDet_RevisionID |
String |
|
Custom_StockDet_LineNbr |
Int |
|
Custom_StockDet_AllowSubstitution |
Bool |
Lead_Activities
Lead_Activities is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentLeadID [KEY] |
String |
|
ClassIcon |
String |
|
IsCompleteIcon |
String |
|
PriorityIcon |
String |
|
Owner |
String |
|
Released |
Bool |
|
Summary |
String |
|
Type |
String |
|
CreatorID |
String |
|
CreatedAt |
Datetime |
|
Status |
String |
|
WorkgroupID |
String |
|
Project |
String |
|
RefNoteID |
String |
|
ProjectTask |
String |
|
StartDate |
Datetime |
|
TimeSpent |
String |
|
CreatorUsername |
String |
|
ReminderIcon |
String |
|
Custom_Activities_NoteID |
String |
|
Custom_Activities_NoteText |
String |
Lead_Address
Lead_Address is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentLeadID [KEY] |
String |
|
State |
String |
|
AddressLine2 |
String |
|
PostalCode |
String |
|
AddressLine1 |
String |
|
City |
String |
|
Country |
String |
|
Custom_AddressCurrent_NoteID |
String |
Lead_Attributes
Lead_Attributes is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentLeadID [KEY] |
String |
|
Value |
String |
|
Attribute |
String |
|
RefNoteID |
String |
|
Required |
Bool |
Lead_Campaigns
Lead_Campaigns is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentLeadID [KEY] |
String |
|
CampaignName |
String |
|
CampaignID |
String |
|
ContactID |
Int |
|
Stage |
String |
Lead_Duplicates
Lead_Duplicates is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentLeadID [KEY] |
String |
|
Type |
String |
|
LastModifiedDate |
Datetime |
|
AccountName |
String |
|
DisplayName |
String |
|
EntityType |
String |
|
Email |
String |
|
BusinessAccountType |
String |
|
BusinessAccount |
String |
|
Duplicate |
String |
|
DuplicateContactID |
Int |
|
ContactID |
Int |
|
Custom_Duplicates_Selected |
Bool |
Lead_MarketingLists
Lead_MarketingLists is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentLeadID [KEY] |
String |
|
DynamicList |
Bool |
|
ListName |
String |
|
Subscribed |
Bool |
|
Format |
String |
|
ContactID |
Int |
|
MarketingListID |
Int |
Lead_Relations
Lead_Relations is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentLeadID [KEY] |
String |
|
Type |
String |
|
DocumentTargetNoteIDDescription |
String |
|
ContactDisplayName |
String |
|
Account |
String |
|
Email |
String |
|
Document |
String |
|
Name |
String |
|
RelationID |
Int |
|
Role |
String |
|
ContactID |
Int |
|
AddToCc |
Bool |
|
Primary |
Bool |
LotSerialClass_Segments
LotSerialClass_Segments is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentClassID [KEY] |
String |
|
Type |
String |
|
Value |
String |
|
SegmentNbr |
Int |
|
Custom_lotsersegments_LotSerClassID |
String |
NonStockItem_Attributes
NonStockItem_Attributes is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentInventoryID [KEY] |
String |
|
Value |
String |
|
Attribute |
String |
|
Required |
Bool |
|
Custom_Answers_RefNoteID |
String |
NonStockItem_CrossReferences
NonStockItem_CrossReferences is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentInventoryID [KEY] |
String |
|
AlternateID |
String |
|
VendorOrCustomer |
String |
|
Description |
String |
|
AlternateType |
String |
|
Subitem |
String |
|
Custom_itemxrefrecords_InventoryID |
String |
|
Custom_itemxrefrecords_SubItemID |
String |
|
Custom_itemxrefrecords_UOM |
String |
NonStockItem_SalesCategories
NonStockItem_SalesCategories is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentInventoryID [KEY] |
String |
|
CategoryID |
Int |
|
Custom_Category_InventoryID |
String |
NonStockItem_VendorDetails
NonStockItem_VendorDetails is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentInventoryID [KEY] |
String |
|
VendorID |
String |
|
VendorName |
String |
|
Custom_VendorItems_CuryID |
String |
|
Custom_VendorItems_VendorInventoryID |
String |
|
Custom_VendorItems_VendorLocationID |
String |
|
Custom_VendorItems_PurchaseUnit |
String |
|
Custom_VendorItems_IsDefault |
Bool |
|
Custom_VendorItems_LastPrice |
String |
|
Custom_VendorItems_Active |
Bool |
|
Custom_VendorItems_RecordID |
Int |
Opportunity_Activities
Opportunity_Activities is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentOpportunityID [KEY] |
String |
|
ClassIcon |
String |
|
IsCompleteIcon |
String |
|
PriorityIcon |
String |
|
Owner |
String |
|
Released |
Bool |
|
Summary |
String |
|
Type |
String |
|
CreatorID |
String |
|
CreatedAt |
Datetime |
|
Status |
String |
|
WorkgroupID |
String |
|
Project |
String |
|
RefNoteID |
String |
|
ProjectTask |
String |
|
StartDate |
Datetime |
|
TimeSpent |
String |
|
CreatorUsername |
String |
|
ReminderIcon |
String |
|
Custom_Activities_NoteID |
String |
|
Custom_Activities_NoteText |
String |
Opportunity_Address
Opportunity_Address is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentOpportunityID [KEY] |
String |
|
State |
String |
|
AddressLine2 |
String |
|
PostalCode |
String |
|
AddressLine1 |
String |
|
City |
String |
|
Country |
String |
Opportunity_Attributes
Opportunity_Attributes is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentOpportunityID [KEY] |
String |
|
Value |
String |
|
Attribute |
String |
|
RefNoteID |
String |
|
Required |
Bool |
Opportunity_ContactInformation
Opportunity_ContactInformation is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentOpportunityID [KEY] |
String |
|
WebSite |
String |
|
Phone3 |
String |
|
Position |
String |
|
Phone2 |
String |
|
Fax |
String |
|
Phone1 |
String |
|
Phone3Type |
String |
|
FaxType |
String |
|
CompanyName |
String |
|
Phone2Type |
String |
|
Email |
String |
|
Phone1Type |
String |
|
Title |
String |
|
LastName |
String |
|
FirstName |
String |
Opportunity_Discounts
Opportunity_Discounts is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentOpportunityID [KEY] |
String |
|
Type |
String |
|
SequenceID |
String |
|
DiscountableQty |
Double |
|
LineNbr |
Int |
|
ManualDiscount |
Bool |
|
DiscountAmount |
Double |
|
DiscountCode |
String |
|
DiscountPercent |
Double |
|
SkipDiscount |
Bool |
|
FreeItem |
String |
|
FreeItemQty |
Double |
|
DiscountableAmount |
Double |
|
Custom_DiscountDetails_OpportunityID |
String |
Opportunity_Products
Opportunity_Products is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentOpportunityID [KEY] |
String |
|
ExternalPrice |
Double |
|
TaxCategory |
String |
|
Discount |
Double |
|
Warehouse |
String |
|
UnitPrice |
Double |
|
UOM |
String |
|
FreeItem |
Bool |
|
ManualDiscount |
Bool |
|
Subitem |
String |
|
DiscountCode |
String |
|
DiscountAmount |
Double |
|
OpportunityProductID |
Int |
|
DiscountSequence |
String |
|
Qty |
Double |
|
ProjectTask |
String |
|
Amount |
Double |
|
TransactionDescription |
String |
|
InventoryID |
String |
|
Custom_Products_CROpportunityID |
String |
|
Custom_Products_NoteID |
String |
|
Custom_Products_NoteText |
String |
Opportunity_Relations
Opportunity_Relations is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentOpportunityID [KEY] |
String |
|
Type |
String |
|
DocumentTargetNoteIDDescription |
String |
|
ContactDisplayName |
String |
|
Account |
String |
|
Email |
String |
|
Document |
String |
|
Name |
String |
|
RelationID |
Int |
|
Role |
String |
|
ContactID |
Int |
|
AddToCc |
Bool |
|
Primary |
Bool |
Opportunity_TaxDetails
Opportunity_TaxDetails is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentOpportunityID [KEY] |
String |
|
TaxType |
String |
|
ReverseVAT |
Bool |
|
TaxID |
String |
|
PendingVAT |
Bool |
|
LineNbr |
Int |
|
TaxAmount |
Double |
|
TaxableAmount |
Double |
|
StatisticalVAT |
Bool |
|
IncludeInVATExemptTotal |
Bool |
|
TaxRate |
Double |
|
Custom_Taxes_OpportunityID |
String |
PaymentMethod_AllowedCashAccounts
PaymentMethod_AllowedCashAccounts is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentPaymentMethodID [KEY] |
String |
|
Description |
String |
|
APDefault |
Bool |
|
UseInAR |
Bool |
|
ARLastRefNbr |
String |
|
PaymentMethod |
String |
|
UseInAP |
Bool |
|
BatchLastRefNbr |
String |
|
CashAccount |
String |
|
ARDefaultForRefund |
Bool |
|
ARSuggestNextNbr |
Bool |
|
APLastRefNbr |
String |
|
APSuggestNextNbr |
Bool |
|
Branch |
String |
|
ARDefault |
Bool |
|
Custom_CashAccounts_NoteText |
String |
PaymentMethod_ProcessingCenters
PaymentMethod_ProcessingCenters is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentPaymentMethodID [KEY] |
String |
|
Default |
Bool |
|
PaymentMethod |
String |
|
Active |
Bool |
|
ProcCenterID |
String |
Payment_ApplicationHistory
Payment_ApplicationHistory is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentType [KEY] |
String |
|
ParentReferenceNbr [KEY] |
String |
|
Date |
Datetime |
|
AdjustingRefNbr |
String |
|
VATCreditMemo |
String |
|
CashDiscountBalance |
Double |
|
Customer |
String |
|
DisplayDocType |
String |
|
DueDate |
Datetime |
|
AdjustingDocType |
String |
|
DisplayRefNbr |
String |
|
CurrencyID |
String |
|
Balance |
Double |
|
AdjustedDocType |
String |
|
BatchNbr |
String |
|
CashDiscountTaken |
Double |
|
ApplicationPeriod |
String |
|
AmountPaid |
Double |
|
CustomerOrder |
String |
|
AdjustmentNbr |
Int |
|
PostPeriod |
String |
|
AdjustsVAT |
Bool |
|
AdjustedRefNbr |
String |
|
CashDiscountDate |
Datetime |
|
BalanceWriteOff |
Double |
|
Description |
String |
|
Custom_Adjustments_History_NoteID |
String |
|
Custom_Adjustments_History_NoteText |
String |
|
Custom_Adjustments_History_TaxInvoiceNbr |
String |
|
Custom_Adjustments_History_AdjdBranchID |
String |
Payment_CreditCardProcessingInfo
Payment_CreditCardProcessingInfo is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentType [KEY] |
String |
|
ParentReferenceNbr [KEY] |
String |
|
TransactionStatus |
String |
|
TransactionAmount |
Double |
|
Custom_ccProcTran_ErrorSource |
String |
|
Custom_ccProcTran_PCResponseReasonText |
String |
|
Custom_ccProcTran_RefTranNbr |
Int |
|
Custom_ccProcTran_CVVVerificationStatus |
String |
|
Custom_ccProcTran_TranNbr |
Int |
|
Custom_ccProcTran_AuthNumber |
String |
|
Custom_ccProcTran_ErrorText |
String |
|
Custom_ccProcTran_PCTranNumber |
String |
|
Custom_ccProcTran_StartTime |
String |
|
Custom_ccProcTran_ProcStatus |
String |
|
Custom_ccProcTran_TranType |
String |
|
Custom_ccProcTran_ProcessingCenterID |
String |
Payment_DocumentsToApply
Payment_DocumentsToApply is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentType [KEY] |
String |
|
ParentReferenceNbr [KEY] |
String |
|
BalanceWriteOff |
Double |
|
ReferenceNbr |
String |
|
AmountPaid |
Double |
|
Description |
String |
|
DocType |
String |
|
CustomerOrder |
String |
|
WriteOffReasonCode |
String |
|
Custom_Adjustments_AdjNbr |
Int |
|
Custom_Adjustments_AdjgDocType |
String |
|
Custom_Adjustments_AdjdCuryID |
String |
|
Custom_Adjustments_AdjdFinPeriodID |
String |
|
Custom_Adjustments_AdjdCuryRate |
String |
|
Custom_Adjustments_AdjdCustomerID |
String |
|
Custom_Adjustments_ARRegisterAlias_DocDesc |
String |
|
Custom_Adjustments_ARRegisterAlias_DueDate |
String |
|
Custom_Adjustments_CuryDiscBal |
String |
|
Custom_Adjustments_AdjdDocDate |
String |
|
Custom_Adjustments_AdjgRefNbr |
String |
|
Custom_Adjustments_CuryAdjgPPDAmt |
String |
|
Custom_Adjustments_NoteID |
String |
|
Custom_Adjustments_ARInvoice_DiscDate |
String |
|
Custom_Adjustments_CuryDocBal |
String |
|
Custom_Adjustments_NoteText |
String |
|
Custom_Adjustments_AdjdBranchID |
String |
Payment_OrdersToApply
Payment_OrdersToApply is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentType [KEY] |
String |
|
ParentReferenceNbr [KEY] |
String |
|
OrderType |
String |
|
AppliedToOrder |
Double |
|
OrderNbr |
String |
|
Custom_SOAdjustments_SOOrder_DueDate |
String |
|
Custom_SOAdjustments_SOOrder_InvoiceDate |
String |
|
Custom_SOAdjustments_AdjgRefNbr |
String |
|
Custom_SOAdjustments_AdjgDocType |
String |
|
Custom_SOAdjustments_SOOrder_InvoiceNbr |
String |
|
Custom_SOAdjustments_CuryDocBal |
String |
|
Custom_SOAdjustments_SOOrder_CuryID |
String |
|
Custom_SOAdjustments_CuryAdjgBilledAmt |
String |
|
Custom_SOAdjustments_SOOrder_DiscDate |
String |
|
Custom_SOAdjustments_NoteID |
String |
|
Custom_SOAdjustments_SOOrder_CuryOrderTotal |
String |
|
Custom_SOAdjustments_SOOrder_OrderDesc |
String |
|
Custom_SOAdjustments_NoteText |
String |
|
Custom_SOAdjustments_AdjdOrderDate |
String |
|
Custom_SOAdjustments_SOOrder_Status |
String |
PhysicalInventoryReview_Details
PhysicalInventoryReview_Details is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentReferenceNbr [KEY] |
String |
|
UnitCost |
Double |
|
Description |
String |
|
LocationID |
String |
|
PhysicalQty |
Double |
|
BookQty |
Double |
|
Subitem |
String |
|
VarianceQty |
Double |
|
LineNbr |
Int |
|
ReasonCode |
String |
|
TagNbr |
Int |
|
ExtendedVarianceCost |
Double |
|
ExpirationDate |
Datetime |
|
Status |
String |
|
InventoryID |
String |
|
LotSerialNbr |
String |
|
Custom_PIDetail_NoteText |
String |
|
Custom_PIDetail_BaseUnit |
String |
|
Custom_PIDetail_NoteID |
String |
|
Custom_PIDetail_PIID |
String |
ProjectTransaction_Details
ProjectTransaction_Details is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentModule [KEY] |
String |
|
ParentReferenceNbr [KEY] |
String |
|
DebitAccount |
String |
|
Location |
String |
|
AccountGroup |
String |
|
DebitSubaccount |
String |
|
Date |
Datetime |
|
EarningType |
String |
|
UOM |
String |
|
AccountGroupDescription |
String |
|
Allocated |
Bool |
|
Released |
Bool |
|
EndDate |
Datetime |
|
CreditAccount |
String |
|
VendorOrCustomer |
String |
|
Employee |
String |
|
UnitRate |
Double |
|
Branch |
String |
|
BatchNbr |
String |
|
Project |
String |
|
Qty |
Double |
|
FinPeriod |
String |
|
ProjectTask |
String |
|
Amount |
Double |
|
Multiplier |
Double |
|
StartDate |
Datetime |
|
Billable |
Bool |
|
TransactionID |
Long |
|
Description |
String |
|
UseBillableQtyInAmountFormula |
Bool |
|
CreditSubaccount |
String |
|
BillableQty |
Double |
|
InventoryID |
String |
PurchaseOrder_Details
PurchaseOrder_Details is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentType [KEY] |
String |
|
ParentOrderNbr [KEY] |
String |
|
TaxCategory |
String |
|
ReceivedAmount |
Double |
|
Cancelled |
Bool |
|
ExtendedCost |
Double |
|
UOM |
String |
|
MaxReceiptPercent |
Double |
|
OrigPOType |
String |
|
Requested |
Datetime |
|
AlternateID |
String |
|
OrderQty |
Double |
|
Subaccount |
String |
|
UnitCost |
Double |
|
Subitem |
String |
|
LineDescription |
String |
|
BranchID |
String |
|
LineNbr |
Int |
|
QtyOnReceipts |
Double |
|
OrderType |
String |
|
Account |
String |
|
OrderNbr |
String |
|
MinReceiptPercent |
Double |
|
CompleteOn |
Double |
|
WarehouseID |
String |
|
LineType |
String |
|
Description |
String |
|
ReceiptAction |
String |
|
Completed |
Bool |
|
OrigPONbr |
String |
|
Promised |
Datetime |
|
InventoryID |
String |
|
Custom_Transactions_CompletePOLine |
String |
|
Custom_Transactions_CuryDiscCost |
String |
|
Custom_Transactions_ManualDisc |
Bool |
|
Custom_Transactions_CostCodeID |
String |
|
Custom_Transactions_SortOrder |
Int |
|
Custom_Transactions_CuryExtCost |
String |
|
Custom_Transactions_ManualPrice |
Bool |
|
Custom_Transactions_DiscountSequenceID |
String |
|
Custom_Transactions_DiscountID |
String |
|
Custom_Transactions_TaskID |
String |
|
Custom_Transactions_ProjectID |
String |
|
Custom_Transactions_DiscPct |
String |
|
Custom_Transactions_NoteText |
String |
|
Custom_Transactions_NoteID |
String |
|
Custom_Transactions_CuryDiscAmt |
String |
|
Custom_Transactions_BaseOrderQty |
String |
|
Custom_Transactions_LotSerialNbr |
String |
PurchaseOrder_ShippingInstructions
PurchaseOrder_ShippingInstructions is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentType [KEY] |
String |
|
ParentOrderNbr [KEY] |
String |
|
ShipToContactOverride |
Bool |
|
Warehouse |
String |
|
ShippingLocation |
String |
|
ShipTo |
String |
|
ShippingDestinationType |
String |
|
ShipToAddressOverride |
Bool |
|
ShipToAddressValidated |
Bool |
|
Custom_CurrentDocument_NoteID |
String |
|
Custom_CurrentDocument_DontEmail |
Bool |
|
Custom_CurrentDocument_RQReqNbr |
String |
|
Custom_CurrentDocument_PayToVendorID |
String |
|
Custom_CurrentDocument_ShipVia |
String |
|
Custom_CurrentDocument_CuryOpenOrderTotal |
String |
|
Custom_CurrentDocument_DontPrint |
Bool |
|
Custom_CurrentDocument_FOBPoint |
String |
|
Custom_CurrentDocument_TermsID |
String |
|
Custom_CurrentDocument_OpenOrderQty |
String |
|
Custom_CurrentDocument_TaxZoneID |
String |
|
Custom_CurrentDocument_Emailed |
Bool |
|
Custom_CurrentDocument_SOOrderType |
String |
|
Custom_CurrentDocument_OwnerWorkgroupID |
String |
|
Custom_CurrentDocument_PrepaymentRefNbr |
String |
|
Custom_CurrentDocument_BranchID |
String |
|
Custom_CurrentDocument_SOOrderNbr |
String |
|
Custom_CurrentDocument_Printed |
Bool |
PurchaseReceipt_Details
PurchaseReceipt_Details is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentType [KEY] |
String |
|
ParentReceiptNbr [KEY] |
String |
|
Location |
String |
|
ExtendedCost |
Double |
|
Warehouse |
String |
|
UOM |
String |
|
Subaccount |
String |
|
UnitCost |
Double |
|
POLineNbr |
Int |
|
Subitem |
String |
|
LineNbr |
Int |
|
OrderedQty |
Double |
|
POOrderType |
String |
|
Branch |
String |
|
OpenQty |
Double |
|
Account |
String |
|
Project |
String |
|
AccrualAccount |
String |
|
ProjectTask |
String |
|
LotSerialNbr |
String |
|
ExpirationDate |
Datetime |
|
LineType |
String |
|
POOrderNbr |
String |
|
AccrualSubaccount |
String |
|
ReceiptQty |
Double |
|
InventoryID |
String |
|
TransactionDescription |
String |
|
Custom_transactions_CuryDiscCost |
String |
|
Custom_transactions_ReasonCode |
String |
|
Custom_transactions_BaseReceiptQty |
String |
|
Custom_transactions_ManualDisc |
Bool |
|
Custom_transactions_SOOrderType |
String |
|
Custom_transactions_DiscPct |
String |
|
Custom_transactions_SOOrderLineNbr |
Int |
|
Custom_transactions_ReceiptNbr |
String |
|
Custom_transactions_NoteText |
String |
|
Custom_transactions_ManualPrice |
Bool |
|
Custom_transactions_Availability |
String |
|
Custom_transactions_DiscountSequenceID |
String |
|
Custom_transactions_SOOrderNbr |
String |
|
Custom_transactions_NoteID |
String |
|
Custom_transactions_ExpenseAcctID_Account_description |
String |
|
Custom_transactions_CuryDiscAmt |
String |
|
Custom_transactions_SOShipmentNbr |
String |
|
Custom_transactions_AllowComplete |
Bool |
|
Custom_transactions_DiscountID |
String |
|
Custom_transactions_TaxCategoryID |
String |
|
Custom_transactions_SortOrder |
Int |
|
Custom_transactions_AllowOpen |
Bool |
|
Custom_transactions_CuryExtCost |
String |
ReportingSettings_ReportingGroups
ReportingSettings_ReportingGroups is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentTaxAgency [KEY] |
String |
|
Name |
String |
|
GroupType |
String |
|
LastModifiedDateTime |
Datetime |
|
Custom_Bucket_BucketID |
Int |
|
Custom_Bucket_VendorID |
Int |
SalesInvoice_BillingSettings
SalesInvoice_BillingSettings is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentType [KEY] |
String |
|
ParentReferenceNbr [KEY] |
String |
|
BillToAddressOverride |
Bool |
|
BillToContactOverride |
Bool |
SalesInvoice_Details
SalesInvoice_Details is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentType [KEY] |
String |
|
ParentReferenceNbr [KEY] |
String |
|
Description |
String |
|
LineNbr |
Int |
|
ShipmentNbr |
String |
|
Amount |
Double |
|
UOM |
String |
|
OrderNbr |
String |
|
BranchID |
String |
|
InventoryID |
String |
|
UnitPrice |
Double |
|
OrderType |
String |
|
Qty |
Double |
|
Custom_Transactions_AccountID |
String |
|
Custom_Transactions_DRTermStartDate |
String |
|
Custom_Transactions_ManualDisc |
Bool |
|
Custom_Transactions_CostCodeID |
String |
|
Custom_Transactions_SubID |
String |
|
Custom_Transactions_LineType |
String |
|
Custom_Transactions_SubItemID |
String |
|
Custom_Transactions_ManualPrice |
Bool |
|
Custom_Transactions_DiscountSequenceID |
String |
|
Custom_Transactions_TaskID |
String |
|
Custom_Transactions_TaxCategoryID |
String |
|
Custom_Transactions_DiscPct |
String |
|
Custom_Transactions_NoteText |
String |
|
Custom_Transactions_NoteID |
String |
|
Custom_Transactions_DefScheduleID |
String |
|
Custom_Transactions_SOOrderLineNbr |
Int |
|
Custom_Transactions_DRTermEndDate |
String |
|
Custom_Transactions_TranType |
String |
|
Custom_Transactions_Commissionable |
Bool |
|
Custom_Transactions_SortOrder |
Int |
|
Custom_Transactions_RefNbr |
String |
|
Custom_Transactions_SalesPersonID |
String |
|
Custom_Transactions_BaseQty |
String |
|
Custom_Transactions_DiscountID |
String |
|
Custom_Transactions_TranDesc |
String |
|
Custom_Transactions_CuryDiscAmt |
String |
|
Custom_Transactions_DeferredCode |
String |
SalesInvoice_FreightDetails
SalesInvoice_FreightDetails is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentType [KEY] |
String |
|
ParentReferenceNbr [KEY] |
String |
|
Description |
String |
|
LineTotal |
Double |
|
ShipmentNbr |
String |
|
PremiumFreightAmount |
Double |
|
TotalFreightAmount |
Double |
|
ShipmentType |
String |
|
FreightCost |
Double |
|
Weight |
Double |
|
Volume |
Double |
|
FreightAmount |
Double |
|
Custom_FreightDetails_ShipTermsID |
String |
|
Custom_FreightDetails_DocType |
String |
|
Custom_FreightDetails_RefNbr |
String |
|
Custom_FreightDetails_AccountID |
String |
|
Custom_FreightDetails_TaskID |
String |
|
Custom_FreightDetails_TaxCategoryID |
String |
|
Custom_FreightDetails_ShipVia |
String |
|
Custom_FreightDetails_SubID |
String |
|
Custom_FreightDetails_NoteID |
String |
|
Custom_FreightDetails_ShipZoneID |
String |
|
Custom_FreightDetails_NoteText |
String |
SalesOrder_BillToAddress
SalesOrder_BillToAddress is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentOrderType [KEY] |
String |
|
ParentOrderNbr [KEY] |
String |
|
State |
String |
|
AddressLine2 |
String |
|
PostalCode |
String |
|
AddressLine1 |
String |
|
City |
String |
|
Country |
String |
SalesOrder_BillToContact
SalesOrder_BillToContact is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentOrderType [KEY] |
String |
|
ParentOrderNbr [KEY] |
String |
|
Attention |
String |
|
Phone1 |
String |
|
BusinessName |
String |
|
Email |
String |
SalesOrder_Commissions
SalesOrder_Commissions is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentOrderType [KEY] |
String |
|
ParentOrderNbr [KEY] |
String |
|
DefaultSalesperson |
String |
SalesOrder_Details
SalesOrder_Details is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentOrderType [KEY] |
String |
|
ParentOrderNbr [KEY] |
String |
|
OpenQty |
Double |
|
AlternateID |
String |
|
DiscountedUnitPrice |
Double |
|
Operation |
String |
|
ShippingRule |
String |
|
Account |
String |
|
ReasonCode |
String |
|
WarehouseID |
String |
|
UndershipThreshold |
Double |
|
MarkForPO |
Bool |
|
LineType |
String |
|
SalespersonID |
String |
|
UnitCost |
Double |
|
QtyOnShipments |
Double |
|
Subitem |
String |
|
UnitPrice |
Double |
|
POSource |
String |
|
ProjectTask |
String |
|
ManualDiscount |
Bool |
|
Commissionable |
Bool |
|
AverageCost |
Double |
|
LineNbr |
Int |
|
DiscountCode |
String |
|
Branch |
String |
|
UOM |
String |
|
ShipOn |
Datetime |
|
ExtendedPrice |
Double |
|
TaxCategory |
String |
|
FreeItem |
Bool |
|
OrderQty |
Double |
|
OvershipThreshold |
Double |
|
LastModifiedDate |
String |
|
Completed |
Bool |
|
DiscountPercent |
Double |
|
DiscountAmount |
Double |
|
Location |
String |
|
AutoCreateIssue |
Bool |
|
RequestedOn |
Datetime |
|
LineDescription |
String |
|
InventoryID |
String |
|
UnbilledAmount |
Double |
|
Custom_Transactions_Availability |
String |
|
Custom_Transactions_DRTermStartDate |
String |
|
Custom_Transactions_DRTermEndDate |
String |
|
Custom_Transactions_CuryUnitPriceDR |
String |
|
Custom_Transactions_SalesSubID |
String |
|
Custom_Transactions_IsStockItem |
Bool |
|
Custom_Transactions_OrderType |
String |
|
Custom_Transactions_CostCodeID |
String |
|
Custom_Transactions_SortOrder |
Int |
|
Custom_Transactions_OrderNbr |
String |
|
Custom_Transactions_InvoiceNbr |
String |
|
Custom_Transactions_ManualPrice |
Bool |
|
Custom_Transactions_DiscountSequenceID |
String |
|
Custom_Transactions_NoteText |
String |
|
Custom_Transactions_NoteID |
String |
|
Custom_Transactions_ExpireDate |
String |
|
Custom_Transactions_DiscPctDR |
String |
|
Custom_Transactions_BaseOrderQty |
String |
|
Custom_Transactions_LotSerialNbr |
String |
SalesOrder_DiscountDetails
SalesOrder_DiscountDetails is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentOrderType [KEY] |
String |
|
ParentOrderNbr [KEY] |
String |
|
Type |
String |
|
SequenceID |
String |
|
DiscountableQty |
Double |
|
ManualDiscount |
Bool |
|
DiscountAmount |
Double |
|
DiscountCode |
String |
|
DiscountPercent |
Double |
|
SkipDiscount |
Bool |
|
FreeItem |
String |
|
FreeItemQty |
Double |
|
DiscountableAmount |
Double |
|
Custom_DiscountDetails_OrderNbr |
String |
|
Custom_DiscountDetails_OrderType |
String |
|
Custom_DiscountDetails_LineNbr |
Int |
SalesOrder_FinancialSettings
SalesOrder_FinancialSettings is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentOrderType [KEY] |
String |
|
ParentOrderNbr [KEY] |
String |
|
OriginalOrderType |
String |
|
BillSeparately |
Bool |
|
OverrideTaxZone |
Bool |
|
Terms |
String |
|
EntityUsageType |
String |
|
InvoiceDate |
Datetime |
|
DueDate |
Datetime |
|
InvoiceNbr |
String |
|
CustomerTaxZone |
String |
|
Branch |
String |
|
CashDiscountDate |
Datetime |
|
OriginalOrderNbr |
String |
|
Owner |
String |
|
PostPeriod |
String |
SalesOrder_Payments
SalesOrder_Payments is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentOrderType [KEY] |
String |
|
ParentOrderNbr [KEY] |
String |
|
CurrencyID |
String |
|
DocType |
String |
|
PaymentMethod |
String |
|
CashAccount |
String |
|
PaymentRef |
String |
|
Status |
String |
|
OrderNbr |
String |
|
ReferenceNbr |
String |
|
PaymentAmount |
Double |
|
TransferredtoInvoice |
Double |
|
AppliedToOrder |
Double |
|
Balance |
Double |
|
OrderType |
String |
|
Custom_Adjustments_NoteID |
String |
|
Custom_Adjustments_NoteText |
String |
SalesOrder_Shipments
SalesOrder_Shipments is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentOrderType [KEY] |
String |
|
ParentOrderNbr [KEY] |
String |
|
ShipmentDate |
Datetime |
|
ShipmentNbr |
String |
|
ShippedQty |
Double |
|
InventoryRefNbr |
String |
|
Status |
String |
|
InventoryDocType |
String |
|
InvoiceNbr |
String |
|
ShipmentType |
String |
|
ShippedWeight |
Double |
|
ShippedVolume |
Double |
|
InvoiceType |
String |
|
Custom_ShipmentList_NoteText |
String |
|
Custom_ShipmentList_Operation |
String |
|
Custom_ShipmentList_OrderType |
String |
|
Custom_ShipmentList_NoteID |
String |
|
Custom_ShipmentList_OrderNbr |
String |
SalesOrder_ShippingSettings
SalesOrder_ShippingSettings is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentOrderType [KEY] |
String |
|
ParentOrderNbr [KEY] |
String |
|
UseCustomersAccount |
Bool |
|
ScheduledShipmentDate |
Datetime |
|
ResidentialDelivery |
Bool |
|
FOBPoint |
String |
|
ShipSeparately |
Bool |
|
Canceled |
Bool |
|
GroundCollect |
Bool |
|
ShippingTerms |
String |
|
ShippingZone |
String |
|
SaturdayDelivery |
Bool |
|
ShippingRule |
String |
|
ShipVia |
String |
|
PreferredWarehouseID |
String |
|
Priority |
Int |
|
CancelByDate |
Datetime |
|
Insurance |
Bool |
SalesOrder_ShipToAddress
SalesOrder_ShipToAddress is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentOrderType [KEY] |
String |
|
ParentOrderNbr [KEY] |
String |
|
State |
String |
|
AddressLine2 |
String |
|
PostalCode |
String |
|
AddressLine1 |
String |
|
City |
String |
|
Country |
String |
SalesOrder_ShipToContact
SalesOrder_ShipToContact is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentOrderType [KEY] |
String |
|
ParentOrderNbr [KEY] |
String |
|
Attention |
String |
|
Phone1 |
String |
|
BusinessName |
String |
|
Email |
String |
SalesOrder_TaxDetails
SalesOrder_TaxDetails is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentOrderType [KEY] |
String |
|
ParentOrderNbr [KEY] |
String |
|
TaxType |
String |
|
ReverseVAT |
Bool |
|
TaxID |
String |
|
PendingVAT |
Bool |
|
LineNbr |
Int |
|
RecordID |
Int |
|
TaxAmount |
Double |
|
OrderNbr |
String |
|
TaxableAmount |
Double |
|
StatisticalVAT |
Bool |
|
IncludeInVATExemptTotal |
Bool |
|
TaxRate |
Double |
|
OrderType |
String |
SalesOrder_Totals
SalesOrder_Totals is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentOrderType [KEY] |
String |
|
ParentOrderNbr [KEY] |
String |
|
UnbilledAmount |
Double |
|
FreightTaxCategory |
String |
|
FreightCostIsuptodate |
Bool |
|
PremiumFreight |
Double |
|
MiscTotalAmount |
Double |
|
UnbilledQty |
Double |
|
PackageWeight |
Double |
|
LineTotalAmount |
Double |
|
DiscountTotal |
Double |
|
FreightCost |
Double |
|
OrderVolume |
Double |
|
OrderWeight |
Double |
|
TaxTotal |
Double |
|
UnpaidBalance |
Double |
|
Freight |
Double |
SalesPricesInquiry_SalesPriceDetails
SalesPricesInquiry_SalesPriceDetails is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentInventoryID [KEY] |
String |
|
Description |
String |
|
PriceCode |
String |
|
CurrencyID |
String |
|
Promotion |
Bool |
|
Tax |
String |
|
Price |
Double |
|
RecordID |
Int |
|
EffectiveDate |
Datetime |
|
PriceType |
String |
|
ExpirationDate |
Datetime |
|
UOM |
String |
|
BreakQty |
Double |
|
InventoryID |
String |
|
CreatedDateTime |
Datetime |
|
LastModifiedDateTime |
Datetime |
|
Custom_Records_SiteID |
String |
|
Custom_Records_AlternateID |
String |
SalesPriceWorksheet_SalesPrices
SalesPriceWorksheet_SalesPrices is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentReferenceNbr [KEY] |
String |
|
Description |
String |
|
PriceCode |
String |
|
CurrencyID |
String |
|
LineID |
Int |
|
Tax |
String |
|
PriceType |
String |
|
UOM |
String |
|
PendingPrice |
Double |
|
ReferenceNbr |
String |
|
BreakQty |
Double |
|
InventoryID |
String |
|
SourcePrice |
Double |
|
Custom_Details_AlternateID |
String |
|
Custom_Details_SiteID |
String |
Shipment_Details
Shipment_Details is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentShipmentNbr [KEY] |
String |
|
UOM |
String |
|
FreeItem |
Bool |
|
ShippedQty |
Double |
|
Subitem |
String |
|
OrderLineNbr |
Int |
|
LineNbr |
Int |
|
OrderedQty |
Double |
|
LocationID |
String |
|
OpenQty |
Double |
|
OrderType |
String |
|
OrderNbr |
String |
|
LotSerialNbr |
String |
|
ExpirationDate |
Datetime |
|
WarehouseID |
String |
|
ReasonCode |
String |
|
OriginalQty |
Double |
|
Description |
String |
|
InventoryID |
String |
|
Custom_Transactions_CompleteQtyMin |
String |
|
Custom_Transactions_ShipmentNbr |
String |
|
Custom_Transactions_BaseShippedQty |
String |
|
Custom_Transactions_Availability |
String |
|
Custom_Transactions_NoteText |
String |
|
Custom_Transactions_UnassignedQty |
String |
|
Custom_Transactions_NoteID |
String |
|
Custom_Transactions_ShipmentType |
String |
|
Custom_Transactions_ShipComplete |
String |
Shipment_Orders
Shipment_Orders is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentShipmentNbr [KEY] |
String |
|
ShipmentNbr |
String |
|
ShippedQty |
Double |
|
InventoryRefNbr |
String |
|
InventoryDocType |
String |
|
InvoiceNbr |
String |
|
ShippedWeight |
Double |
|
OrderNbr |
String |
|
ShippedVolume |
Double |
|
ShipmentType |
String |
|
InvoiceType |
String |
|
OrderType |
String |
|
Custom_OrderList_NoteText |
String |
|
Custom_OrderList_NoteID |
String |
Shipment_Packages
Shipment_Packages is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentShipmentNbr [KEY] |
String |
|
Description |
String |
|
CustomRefNbr1 |
String |
|
Type |
String |
|
BoxID |
String |
|
CODAmount |
Double |
|
Confirmed |
Bool |
|
DeclaredValue |
Double |
|
UOM |
String |
|
TrackingNbr |
String |
|
Weight |
Double |
|
CustomRefNbr2 |
String |
|
Custom_Packages_NoteID |
String |
|
Custom_Packages_ShipmentNbr |
String |
|
Custom_Packages_LineNbr |
Int |
|
Custom_Packages_NoteText |
String |
Shipment_ShippingSettings
Shipment_ShippingSettings is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentShipmentNbr [KEY] |
String |
|
ShipToAddressOverride |
Bool |
|
ShipToContactOverride |
Bool |
|
Validated |
Bool |
ShippingTerm_Details
ShippingTerm_Details is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentTermID [KEY] |
String |
|
InvoiceAmount |
Double |
|
LineHandling |
Double |
|
ShippingandHandling |
Double |
|
BreakAmount |
Double |
|
LineNbr |
Int |
|
FreightCost |
Double |
|
Custom_ShipTermsDetail_ShipTermsID |
String |
ShipVia_FreightRates
ShipVia_FreightRates is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentCarrierID [KEY] |
String |
|
Rate |
Double |
|
Volume |
Double |
|
LineNbr |
Int |
|
Weight |
Double |
|
ZoneID |
String |
|
Custom_FreightRates_CarrierID |
String |
ShipVia_Packages
ShipVia_Packages is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentCarrierID [KEY] |
String |
|
Description |
String |
|
BoxID |
String |
|
Height |
Int |
|
WeightUOM |
String |
|
BoxWeight |
Double |
|
Length |
Int |
|
VolumeUOM |
String |
|
CarriersPackage |
String |
|
MaxVolume |
Double |
|
MaxWeight |
Double |
|
ActiveByDefault |
Bool |
|
Width |
Int |
|
Custom_CarrierPackages_CarrierID |
String |
StockItem_Attributes
StockItem_Attributes is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentInventoryID [KEY] |
String |
|
Value |
String |
|
AttributeID |
String |
|
Required |
Bool |
|
Custom_Answers_RefNoteID |
String |
StockItem_Boxes
StockItem_Boxes is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentInventoryID [KEY] |
String |
|
BoxID |
String |
|
MaxVolume |
Double |
|
MaxWeight |
Double |
|
UOM |
String |
|
Qty |
Double |
|
Description |
String |
|
MaxQty |
Double |
|
Custom_Boxes_NoteID |
String |
|
Custom_Boxes_InventoryID |
Int |
StockItem_Categories
StockItem_Categories is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentInventoryID [KEY] |
String |
|
CategoryID |
Int |
|
Custom_Category_InventoryID |
String |
StockItem_CrossReferences
StockItem_CrossReferences is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentInventoryID [KEY] |
String |
|
AlternateID |
String |
|
VendorOrCustomer |
String |
|
Description |
String |
|
AlternateType |
String |
|
Subitem |
String |
|
Custom_itemxrefrecords_InventoryID |
String |
|
Custom_itemxrefrecords_UOM |
String |
StockItem_ReplenishmentParameters
StockItem_ReplenishmentParameters is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentInventoryID [KEY] |
String |
|
DemandForecastModel |
String |
|
TransferERQ |
Double |
|
MaxShelfLifeInDays |
Int |
|
ReplenishmentWarehouse |
String |
|
ReplenishmentClass |
String |
|
Method |
String |
|
Source |
String |
|
ReorderPoint |
Double |
|
TerminationDate |
Datetime |
|
Seasonality |
String |
|
ServiceLevel |
Double |
|
PeriodsToAnalyze |
Int |
|
SafetyStock |
Double |
|
ForecastPeriodType |
String |
|
LaunchDate |
Datetime |
|
MaxQty |
Double |
|
Custom_replenishment_InventoryID |
String |
StockItem_SubItems
StockItem_SubItems is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentInventoryID [KEY] |
String |
|
SegmentID |
Int |
|
Value |
String |
|
Active |
Bool |
|
Description |
String |
StockItem_UOMConversions
StockItem_UOMConversions is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentInventoryID [KEY] |
String |
|
FromUOM |
String |
|
ConversionFactor |
Double |
|
MultiplyOrDivide |
String |
|
ToUOM |
String |
|
Custom_itemunits_ItemClassID |
Int |
|
Custom_itemunits_UnitType |
String |
|
Custom_itemunits_PriceAdjustmentMultiplier |
String |
|
Custom_itemunits_SampleToUnit |
String |
|
Custom_itemunits_InventoryID |
Int |
StockItem_VendorDetails
StockItem_VendorDetails is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentInventoryID [KEY] |
String |
|
Location |
String |
|
LastVendorPrice |
Double |
|
Warehouse |
String |
|
LeadTimeDays |
Int |
|
MaxOrderQty |
Double |
|
MinOrderQty |
Double |
|
EOQ |
Double |
|
Default |
Bool |
|
Subitem |
String |
|
Override |
Bool |
|
MinOrderFrequencyInDays |
Int |
|
AddLeadTimeDays |
Int |
|
CurrencyID |
String |
|
VendorID |
String |
|
LotSize |
Double |
|
RecordID |
Int |
|
Active |
Bool |
|
PurchaseUnit |
String |
|
VendorName |
String |
|
Custom_VendorItems_VendorInventoryID |
String |
StockItem_WarehouseDetails
StockItem_WarehouseDetails is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentInventoryID [KEY] |
String |
|
DefaultReceiptLocationID |
String |
|
OverrideReplenishmentSettings |
Bool |
|
DailyDemandForecastErrorSTDEV |
Double |
|
DefaultIssueLocationID |
String |
|
ProductManager |
String |
|
ReplenishmentSource |
String |
|
ProductWorkgroup |
String |
|
Override |
Bool |
|
InventorySubaccount |
String |
|
DailyDemandForecast |
Double |
|
PreferredVendor |
String |
|
Status |
String |
|
InventoryAccount |
String |
|
QtyOnHand |
Double |
|
ReplenishmentWarehouse |
String |
|
LastForecastDate |
Datetime |
|
OverridePreferredVendor |
Bool |
|
OverrideStdCost |
Bool |
|
Seasonality |
String |
|
WarehouseID |
String |
|
IsDefault |
Bool |
|
ServiceLevel |
Double |
|
PriceOverride |
Bool |
|
Custom_itemsiterecords_SiteID_INSite_SiteCD |
String |
|
Custom_itemsiterecords_NoteText |
String |
|
Custom_itemsiterecords_NoteID |
String |
|
Custom_itemsiterecords_InventoryID |
String |
Task_RelatedActivities
Task_RelatedActivities is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
BillableTime |
String |
|
IsCompleteIcon |
String |
|
BillableOvertime |
String |
|
PriorityIcon |
String |
|
Owner |
String |
|
Released |
Bool |
|
Workgroup |
String |
|
Summary |
String |
|
Type |
String |
|
CreatedAt |
Datetime |
|
Status |
String |
|
Category |
String |
|
RefNoteID |
String |
|
CreatedBy |
String |
|
StartDate |
Datetime |
|
Billable |
Bool |
|
Overtime |
String |
|
TimeSpent |
String |
|
Custom_ChildActivities_CostCodeID |
String |
|
Custom_ChildActivities_NoteText |
String |
|
Custom_ChildActivities_NoteID |
String |
Task_RelatedTasks
Task_RelatedTasks is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
Status |
String |
|
Subject |
String |
|
CompletedAt |
Datetime |
|
DueDate |
Datetime |
|
RecordID |
Int |
|
StartDate |
Datetime |
|
Custom_ReferencedTasks_NoteID |
String |
Task_Reminder
Task_Reminder is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
RemindAtDate |
Datetime |
|
IsActive |
Bool |
|
RemindAtTime |
Datetime |
Task_TimeActivity
Task_TimeActivity is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ProjectTask |
String |
|
TimeSpent |
String |
|
BillableOvertime |
String |
|
Overtime |
String |
|
BillableTime |
String |
|
Project |
String |
|
Custom_TimeActivity_CostCodeID |
String |
TaxCategory_Details
TaxCategory_Details is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentTaxCategoryID [KEY] |
String |
|
CashDiscount |
String |
|
CalculateOn |
String |
|
TaxCategory |
String |
|
TaxType |
String |
|
Description |
String |
|
TaxID |
String |
TaxZone_ApplicableTaxes
TaxZone_ApplicableTaxes is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentTaxZoneID [KEY] |
String |
|
TaxID |
String |
|
Custom_Details_Tax_TaxType |
String |
|
Custom_Details_Tax_TaxApplyTermsDisc |
String |
|
Custom_Details_Tax_TaxCalcRule |
String |
|
Custom_Details_TaxZoneID |
String |
|
Custom_Details_Tax_Descr |
String |
Tax_TaxSchedule
Tax_TaxSchedule is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentTaxID [KEY] |
String |
|
MinTaxableAmount |
Double |
|
MaxTaxableAmount |
Double |
|
DeductibleTaxRate |
Double |
|
RevisionID |
Int |
|
TaxRate |
Double |
|
ReportingGroup |
String |
|
TaxID |
String |
|
StartDate |
Datetime |
|
Custom_TaxRevisions_TaxType |
String |
Tax_Zones
Tax_Zones is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentTaxID [KEY] |
String |
|
TaxZoneID |
String |
|
DefaultTaxCategory |
String |
|
Description |
String |
|
TaxID |
String |
TransferOrder_Details
TransferOrder_Details is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentReferenceNbr [KEY] |
String |
|
Description |
String |
|
Subitem |
String |
|
LineNbr |
Int |
|
ToLocationID |
String |
|
ReasonCode |
String |
|
ExpirationDate |
Datetime |
|
UOM |
String |
|
InventoryID |
String |
|
FromLocationID |
String |
|
LotSerialNbr |
String |
|
Qty |
Double |
|
Custom_transactions_Availability |
String |
|
Custom_transactions_ReceiptedQty |
String |
|
Custom_transactions_DocType |
String |
|
Custom_transactions_INTransitQty |
String |
|
Custom_transactions_NoteID |
String |
|
Custom_transactions_RefNbr |
String |
|
Custom_transactions_NoteText |
String |
TrialBalance_Details
TrialBalance_Details is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentImportNbr [KEY] |
String |
|
Description |
String |
|
Type |
String |
|
Selected |
Bool |
|
MappedSubaccount |
String |
|
ImportedAccount |
String |
|
Line |
Int |
|
MappedAccount |
String |
|
ImportedSubaccount |
String |
|
YTDBalance |
Double |
|
Status |
String |
|
MapNbr |
String |
|
CurrencyYTDBalance |
Double |
VendorClass_Attributes
VendorClass_Attributes is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentClassID [KEY] |
String |
|
DefaultValue |
String |
|
Active |
Bool |
|
SortOrder |
Int |
|
Description |
String |
|
AttributeID |
String |
|
Required |
Bool |
|
Custom_Mapping_EntityClassID |
String |
|
Custom_Mapping_CSAttribute_IsInternal |
Bool |
|
Custom_Mapping_ControlType |
String |
|
Custom_Mapping_EntityType |
String |
VendorPricesInquiry_VendorPriceDetails
VendorPricesInquiry_VendorPriceDetails is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentInventoryID [KEY] |
String |
|
Description |
String |
|
CurrencyID |
String |
|
Vendor |
String |
|
VendorName |
String |
|
Price |
Double |
|
RecordID |
Int |
|
EffectiveDate |
Datetime |
|
ExpirationDate |
Datetime |
|
Promotional |
Bool |
|
UOM |
String |
|
BreakQty |
Double |
|
InventoryID |
String |
|
CreatedDateTime |
Datetime |
|
LastModifiedDateTime |
Datetime |
|
Custom_Records_SiteID |
String |
|
Custom_Records_AlternateID |
String |
VendorPriceWorksheet_VendorSalesPrices
VendorPriceWorksheet_VendorSalesPrices is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentReferenceNbr [KEY] |
String |
|
Description |
String |
|
CurrencyID |
String |
|
Vendor |
String |
|
LineID |
Int |
|
Tax |
String |
|
UOM |
String |
|
PendingPrice |
Double |
|
ReferenceNbr |
String |
|
BreakQty |
Double |
|
InventoryID |
String |
|
SourcePrice |
Double |
|
Custom_Details_AlternateID |
String |
|
Custom_Details_SiteID |
String |
Vendor_Attributes
Vendor_Attributes is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentVendorID [KEY] |
String |
|
Value |
String |
|
Attribute |
String |
|
RefNoteID |
String |
|
Required |
Bool |
Vendor_Contacts
Vendor_Contacts is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentVendorID [KEY] |
String |
|
ContactID |
Int |
Vendor_MainContact
Vendor_MainContact is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentVendorID [KEY] |
String |
|
LanguageOrLocale |
String |
|
DuplicateFound |
Bool |
|
JobTitle |
String |
|
MiddleName |
String |
|
FirstName |
String |
|
DoNotFax |
Bool |
|
Status |
String |
|
ParentAccount |
String |
|
OwnerEmployeeName |
String |
|
Phone3 |
String |
|
Phone2 |
String |
|
Phone1 |
String |
|
Phone2Type |
String |
|
MaritalStatus |
String |
|
Email |
String |
|
FaxType |
String |
|
DoNotCall |
Bool |
|
Active |
Bool |
|
Owner |
String |
|
DoNotMail |
Bool |
|
Title |
String |
|
Gender |
String |
|
Phone1Type |
String |
|
ContactID |
Int |
|
WebSite |
String |
|
ContactClass |
String |
|
CompanyName |
String |
|
AddressIsSameAsInAccount |
Bool |
|
NoMassMail |
Bool |
|
LastOutgoingActivity |
Datetime |
|
DisplayName |
String |
|
ContactMethod |
String |
|
Workgroup |
String |
|
AddressValidated |
Bool |
|
LastIncomingActivity |
Datetime |
|
SourceCampaign |
String |
|
SpouseOrPartnerName |
String |
|
Reason |
String |
|
Synchronize |
Bool |
|
ConvertedBy |
String |
|
Image |
String |
|
Type |
String |
|
NoMarketing |
Bool |
|
DateOfBirth |
Datetime |
|
Duplicate |
String |
|
DoNotEmail |
Bool |
|
Phone3Type |
String |
|
Source |
String |
|
BusinessAccount |
String |
|
LastName |
String |
|
Fax |
String |
|
QualificationDate |
Datetime |
|
WorkgroupDescription |
String |
Vendor_PaymentInstructions
Vendor_PaymentInstructions is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentVendorID [KEY] |
String |
|
Value |
String |
|
PaymentInstructionsID |
String |
|
PaymentMethod |
String |
|
Description |
String |
|
LocationID |
Int |
Vendor_RemittanceContact
Vendor_RemittanceContact is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentVendorID [KEY] |
String |
|
LanguageOrLocale |
String |
|
DuplicateFound |
Bool |
|
JobTitle |
String |
|
MiddleName |
String |
|
FirstName |
String |
|
DoNotFax |
Bool |
|
Status |
String |
|
ParentAccount |
String |
|
OwnerEmployeeName |
String |
|
Phone3 |
String |
|
Phone2 |
String |
|
Phone1 |
String |
|
Phone2Type |
String |
|
MaritalStatus |
String |
|
Email |
String |
|
FaxType |
String |
|
DoNotCall |
Bool |
|
Active |
Bool |
|
Owner |
String |
|
DoNotMail |
Bool |
|
Title |
String |
|
Gender |
String |
|
Phone1Type |
String |
|
ContactID |
Int |
|
WebSite |
String |
|
ContactClass |
String |
|
CompanyName |
String |
|
AddressIsSameAsInAccount |
Bool |
|
NoMassMail |
Bool |
|
LastOutgoingActivity |
Datetime |
|
DisplayName |
String |
|
ContactMethod |
String |
|
Workgroup |
String |
|
AddressValidated |
Bool |
|
LastIncomingActivity |
Datetime |
|
SourceCampaign |
String |
|
SpouseOrPartnerName |
String |
|
Reason |
String |
|
Synchronize |
Bool |
|
ConvertedBy |
String |
|
Image |
String |
|
Type |
String |
|
NoMarketing |
Bool |
|
DateOfBirth |
Datetime |
|
Duplicate |
String |
|
DoNotEmail |
Bool |
|
Phone3Type |
String |
|
Source |
String |
|
BusinessAccount |
String |
|
LastName |
String |
|
Fax |
String |
|
QualificationDate |
Datetime |
|
WorkgroupDescription |
String |
Vendor_ShippingContact
Vendor_ShippingContact is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentVendorID [KEY] |
String |
|
LanguageOrLocale |
String |
|
DuplicateFound |
Bool |
|
JobTitle |
String |
|
MiddleName |
String |
|
FirstName |
String |
|
DoNotFax |
Bool |
|
Status |
String |
|
ParentAccount |
String |
|
OwnerEmployeeName |
String |
|
Phone3 |
String |
|
Phone2 |
String |
|
Phone1 |
String |
|
Phone2Type |
String |
|
MaritalStatus |
String |
|
Email |
String |
|
FaxType |
String |
|
DoNotCall |
Bool |
|
Active |
Bool |
|
Owner |
String |
|
DoNotMail |
Bool |
|
Title |
String |
|
Gender |
String |
|
Phone1Type |
String |
|
ContactID |
Int |
|
WebSite |
String |
|
ContactClass |
String |
|
CompanyName |
String |
|
AddressIsSameAsInAccount |
Bool |
|
NoMassMail |
Bool |
|
LastOutgoingActivity |
Datetime |
|
DisplayName |
String |
|
ContactMethod |
String |
|
Workgroup |
String |
|
AddressValidated |
Bool |
|
LastIncomingActivity |
Datetime |
|
SourceCampaign |
String |
|
SpouseOrPartnerName |
String |
|
Reason |
String |
|
Synchronize |
Bool |
|
ConvertedBy |
String |
|
Image |
String |
|
Type |
String |
|
NoMarketing |
Bool |
|
DateOfBirth |
Datetime |
|
Duplicate |
String |
|
DoNotEmail |
Bool |
|
Phone3Type |
String |
|
Source |
String |
|
BusinessAccount |
String |
|
LastName |
String |
|
Fax |
String |
|
QualificationDate |
Datetime |
|
WorkgroupDescription |
String |
Warehouse_Locations
Warehouse_Locations is an auto-generated table.
Columns
| Name | Type | Description |
|---|---|---|
ParentGUID [KEY] |
String |
|
ParentWarehouseID [KEY] |
String |
|
AssemblyAllowed |
Bool |
|
Active |
Bool |
|
TransfersAllowed |
Bool |
|
Description |
String |
|
ReceiptsAllowed |
Bool |
|
SalesAllowed |
Bool |
|
LocationID |
String |
|
PickPriority |
Int |
|
Custom_location_PrimaryItemClassID |
String |
|
Custom_location_TaskID |
String |
|
Custom_location_ProjectID |
String |
|
Custom_location_NoteID |
String |
|
Custom_location_IsCosted |
Bool |
|
Custom_location_PrimaryItemValid |
String |
|
Custom_location_SiteID |
Int |
|
Custom_location_PrimaryItemID |
String |
|
Custom_location_InclQtyAvail |
Bool |
|
Custom_location_NoteText |
String |
Stored Procedures
Stored procedures are function-like interfaces that extend the functionality of the connector beyond simple SELECT/INSERT/UPDATE/DELETE operations with Acumatica.
Stored procedures accept a list of parameters, perform their intended function, and then return any relevant response data from Acumatica, along with an indication of whether the procedure succeeded or failed.
Jitterbit Connector for Acumatica Stored Procedures
| Name | Description |
|---|---|
GetOAuthAccessToken |
Gets the OAuth access token from Basecamp. |
GetOAuthAuthorizationURL |
Gets the Acumatica authorization URL. Access the URL returned in the output in a Web browser. |
RefreshOAuthAccessToken |
Refreshes the OAuth access token used for authentication. |
CreateAttachment
Attach a file to a record.
Note
This procedure makes use of indexed parameters.
Indexed parameters facilitate providing multiple instances a single parameter as inputs for the procedure.
Suppose there is an input parameter named Param#. To input multiple instances of an indexed parameter like this, execute:
EXEC ProcedureName Param#1 = "value1", Param#2 = "value2", Param#3 = "value3"
In the table below, indexed parameters are denoted with a # character at the end of their names.
Input
| Name | Type | Description |
|---|---|---|
TopLevelEntity |
String |
The name of the entity for which you are going to attach a file. |
KeyValue# |
String |
The values for one or more key fields of the record to which you are going to attach a file. You should provide the number and order of key fields as they are defined on the corresponding Acumatica ERP form. |
LocalFile |
String |
The local file path including the file name of the file to be attached. |
FileName |
String |
The name of the file that you are going to attach with the extension. |
Result Set Columns
| Name | Type | Description |
|---|---|---|
Status |
String |
Specific message text describing the status or any errors or warning for the stored procedure. |
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 | Description |
|---|---|---|
TableName |
String |
The name of the table or view. |
FileName |
String |
The full file path and name of the schema to generate. Begin by choosing a parent directory (this parent directory should be set in the Location property). Complete the filepath by adding a directory corresponding to the schema used (REST), followed by a .rsd file with a name corresponding to the desired table name. For example : 'C:\Users\User\Desktop\Acumatica\REST\table.rsd' |
Result Set Columns
| Name | Type | Description |
|---|---|---|
Result |
String |
Returns Success or Failure. |
FileData |
String |
If the FileName input is empty. |
ExecuteAction
Perform an action on an Acumatica ERP form.
Execute an Action
To execute an Acumatica Action, you will need to specify the action that you are going to execute via the 'ActionName' input parameter, the entity type via the TopLevelEntity input parameter, the EntityRecord and optionally the Action parameters via the Parameters input, if you are executing a custom Action.
To specify the entity record, you may either submit the single record in JSON format, or you may create a temporary table containing group of recrods and then reference the temporary table in the EntityRecord input parameter.
Note
The custom parameters can only be submitted in the JSON format as in the example below.
EXEC ExecuteAction ActionName = 'Close', TopLevelEntity = 'Case', EntityRecord = '{"id": "e3f46a39-1a14-e911-816f-bc920a5e0ac8"}',
Parameters = '{
"custom": {
"FilterPreview": {
"Reason": {
"type" : "CustomStringField",
"value" : "Abandoned"
}
}
}
}'
Execute an Action submitting the record in the JSON format
To submit a record in the JSON format, you will need set the EntityRecord input parameter to the JSON object containing the record on which the action is going to be executed.
For example, via the below statement you can confirm the shipment for the shipment with number 003523.
EXEC ExecuteAction ActionName = 'ConfirmShipment', TopLevelEntity = 'Shipment',
EntityRecord = '{
"Type": {
"value": "Shipment"
},
"ShipmentNbr": {
"value": "003523"
}
}'
You should note, that only one entity record can be specified in the EntityRecord input parameter when using the JSON format.
Execute an Action submitting a Temporary Table of recrods
If using a temporary table, it must be defined and inserted within the same connection. Closing the connection will clear out any temporary tables in memory.
Start by inserting the related entities corresponding to the same entity type into a temporary table.
The following statements add three Shipment records into the Shipment#TEMP temporary table.
INSERT INTO Shipment#TEMP (Type, ShipmentNbr) VALUES ('Shipment', '003523')
INSERT INTO Shipment#TEMP (Type, ShipmentNbr) VALUES ('Shipment', '003524')
INSERT INTO Shipment#TEMP (Type, ShipmentNbr) VALUES ('Shipment', '003525')
Lastly, reference the temporary table via the EntityRecord input parameter, just as in the below example.
EXEC ExecuteAction ActionName = 'ConfirmShipment', TopLevelEntity = 'Shipment', EntityRecord = 'Shipment#TEMP'
If more than one entity record is provided, the connector will automatically split the records and execute the Action for each of them.
Input
| Name | Type | Description |
|---|---|---|
TopLevelEntity |
String |
The name of the entity type for which you are going to perform an action. |
ActionName |
String |
The name of the action that you are going to execute. |
EntityRecord |
String |
The entity record in the JSON format or the temporary table of entity records to which the action should be applied. |
Parameters |
String |
The parameters of the action in the JSON format. |
Result Set Columns
| Name | Type | Description |
|---|---|---|
Status |
String |
Specific message text describing the status or any errors or warning for the execute action. |
AffectedRecords |
String |
The number of affected records. |
GetAttachment
Obtain a file attached to a record
Input
| Name | Type | Description |
|---|---|---|
FileId |
String |
The internal identifier of the file in the system. |
DownloadTo |
String |
The absolute path where the file will be saved. |
Result Set Columns
| Name | Type | Description |
|---|---|---|
Status |
String |
Specific message text describing the status or any errors or warning for the stored procedure. |
FileData |
String |
The file data encoded as BASE64. Returns a value only if DownloadTo and FileStream inputs are empty. |
GetOAuthAccessToken
Gets the OAuth access token from Basecamp.
Input
| Name | Type | Description |
|---|---|---|
AuthMode |
String |
WEB or APP. The Basecamp authentication mode. Default is APP. The default value is APP. |
CallbackUrl |
String |
The URL the user will be redirected to after authorizing your application. |
Verifier |
String |
The verifier token returned by Basecamp. Required for only the Web AuthMode. |
State |
String |
This field indicates any state that may be useful to your application upon receipt of the response. Your application receives the same value it sent, as this parameter makes a round-trip to Acumatica authorization server and back. Uses include redirecting the user to the correct resource in your site, using nonces, and mitigating cross-site request forgery. |
Result Set Columns
| Name | Type | Description |
|---|---|---|
OAuthAccessToken |
String |
The OAuth token. |
OAuthRefreshToken |
String |
The OAuth refresh token. |
ExpiresIn |
String |
The remaining lifetime for the access token in seconds. |
GetOAuthAuthorizationURL
Gets the Acumatica authorization URL. Access the URL returned in the output in a Web browser.
Input
| Name | Type | Description |
|---|---|---|
CallbackUrl |
String |
The URL that Acumatica will return to after the user has authorized your app. |
State |
String |
This field indicates any state that may be useful to your application upon receipt of the response. Your application receives the same value it sent, as this parameter makes a round-trip to Acumatica authorization server and back. Uses include redirecting the user to the correct resource in your site, using nonces, and mitigating cross-site request forgery. |
Result Set Columns
| Name | Type | Description |
|---|---|---|
URL |
String |
The URL to be entered into a Web browser to obtain the verifier token and authorize the data provider with. |
RefreshOAuthAccessToken
Refreshes the OAuth access token used for authentication.
Input
| Name | Type | Description |
|---|---|---|
OAuthRefreshToken |
String |
The refresh token returned with the previous access token. |
Result Set Columns
| Name | Type | Description |
|---|---|---|
OAuthAccessToken |
String |
The authentication token returned from Acumatica. This can be used in subsequent calls to other operations for this particular service. |
OAuthRefreshToken |
String |
A token that may be used to obtain a new access token. |
ExpiresIn |
String |
The remaining lifetime on the access token. |
OData Data Model
The connector models the Acumatica OData API as relational views, supporting access through the ODataV3 and ODataV4 schemas. These schemas offer read-only access to views, and any changes to the remote data appear immediately in your queries. When you connect, the connector retrieves table definitions dynamically, calling Acumatica's web services to access the list of views and their metadata.
You can specify your schema preference in the Schema connection property. If you set the schema to OData, the driver uses the ODataV3 API to retrieve all available Generic Inquiries (GIs). If you set it to ODataV4, the driver uses the ODataV4 API to access Data Access Class (DAC) objects.
Views
The OData V3 schema exposes Generic Inquiries, which users create as custom queries or reports in Acumatica. These inquiries allow you to customize how data is aggregated and displayed. The Jitterbit Connector for Acumatica reads view and column metadata dynamically, ensuring compatibility with your customizations and new features in Acumatica.
Note
Generic Inquiries do not appear in OData by default, so you may need to enable them by selecting the "Expose via OData" checkbox in the Acumatica Generic Inquiries screen.
The OData V4 schema, on the other hand, focuses on exposing DAC objects, which represent core entities in Acumatica, like Orders, Customers, and other essential data structures. DAC objects may vary depending on your Acumatica instance, version, and applied customizations, making ODataV4 a suitable option if you want a deeper view of Acumatica's core data.
Stored Procedures
Stored Procedures act as function-like interfaces within Acumatica. Use them to perform tasks that extend beyond standard querying of views.
They provide flexibility for executing operations not directly tied to querying views, helping you meet specialized requirements.
Stored Procedures
Stored procedures are function-like interfaces that extend the functionality of the connector beyond simple SELECT/INSERT/UPDATE/DELETE operations with Acumatica.
Stored procedures accept a list of parameters, perform their intended function, and then return any relevant response data from Acumatica, along with an indication of whether the procedure succeeded or failed.
Jitterbit Connector for Acumatica Stored Procedures
| Name | Description |
|---|---|
GetOAuthAccessToken |
Gets the OAuth access token from Basecamp. |
GetOAuthAuthorizationURL |
Gets the Acumatica authorization URL. Access the URL returned in the output in a Web browser. |
RefreshOAuthAccessToken |
Refreshes the OAuth access token used for authentication. |
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 | Description |
|---|---|---|
TableName |
String |
The name of the table or view. |
FileName |
String |
The full file path and name of the schema to generate. Begin by choosing a parent directory (this parent directory should be set in the Location property). Complete the filepath by adding a directory corresponding to the schema used (REST), followed by a .rsd file with a name corresponding to the desired table name. For example : 'C:\Users\User\Desktop\Acumatica\REST\table.rsd' |
Result Set Columns
| Name | Type | Description |
|---|---|---|
Result |
String |
Returns Success or Failure. |
FileData |
String |
If the FileName input is empty. |
GetOAuthAccessToken
Gets the OAuth access token from Basecamp.
Input
| Name | Type | Description |
|---|---|---|
AuthMode |
String |
WEB or APP. The Basecamp authentication mode. Default is APP. The default value is APP. |
CallbackUrl |
String |
The URL the user will be redirected to after authorizing your application. |
Verifier |
String |
The verifier token returned by Basecamp. Required for only the Web AuthMode. |
State |
String |
This field indicates any state that may be useful to your application upon receipt of the response. Your application receives the same value it sent, as this parameter makes a round-trip to Acumatica authorization server and back. Uses include redirecting the user to the correct resource in your site, using nonces, and mitigating cross-site request forgery. |
Result Set Columns
| Name | Type | Description |
|---|---|---|
OAuthAccessToken |
String |
The OAuth token. |
OAuthRefreshToken |
String |
The OAuth refresh token. |
ExpiresIn |
String |
The remaining lifetime for the access token in seconds. |
GetOAuthAuthorizationURL
Gets the Acumatica authorization URL. Access the URL returned in the output in a Web browser.
Input
| Name | Type | Description |
|---|---|---|
CallbackUrl |
String |
The URL that Acumatica will return to after the user has authorized your app. |
State |
String |
This field indicates any state that may be useful to your application upon receipt of the response. Your application receives the same value it sent, as this parameter makes a round-trip to Acumatica authorization server and back. Uses include redirecting the user to the correct resource in your site, using nonces, and mitigating cross-site request forgery. |
Result Set Columns
| Name | Type | Description |
|---|---|---|
URL |
String |
The URL to be entered into a Web browser to obtain the verifier token and authorize the data provider with. |
RefreshOAuthAccessToken
Refreshes the OAuth access token used for authentication.
Input
| Name | Type | Description |
|---|---|---|
OAuthRefreshToken |
String |
The refresh token returned with the previous access token. |
Result Set Columns
| Name | Type | Description |
|---|---|---|
OAuthAccessToken |
String |
The authentication token returned from Acumatica. This can be used in subsequent calls to other operations for this particular service. |
OAuthRefreshToken |
String |
A token that may be used to obtain a new access token. |
ExpiresIn |
String |
The remaining lifetime on the access token. |
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 Acumatica:
- sys_catalogs: Lists the available databases.
- sys_schemas: Lists the available schemas.
- sys_tables: Lists the available tables and views.
- sys_tablecolumns: Describes the columns of the available tables and views.
- sys_procedures: Describes the available stored procedures.
- sys_procedureparameters: Describes stored procedure parameters.
- sys_keycolumns: Describes the primary and foreign keys.
- sys_indexes: Describes the available indexes.
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:
- 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 Events table:
SELECT ColumnName, DataTypeName FROM sys_tablecolumns WHERE TableName='Events'
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. |
IsReadOnly |
Boolean |
Whether the column is read-only. |
IsKey |
Boolean |
Indicates whether a field returned from sys_tablecolumns is the primary key of the table. |
ColumnType |
String |
The role or classification of the column in the schema. Possible values include SYSTEM, LINKEDCOLUMN, NAVIGATIONKEY, REFERENCECOLUMN, and NAVIGATIONPARENTCOLUMN. |
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 SendMail stored procedure:
SELECT * FROM sys_procedureparameters WHERE ProcedureName = 'SendMail' AND Direction = 1 OR Direction = 2
To include result set columns in addition to the parameters, set the IncludeResultColumns pseudo column to True:
SELECT * FROM sys_procedureparameters WHERE ProcedureName = 'SendMail' AND IncludeResultColumns='True'
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. |
DataType |
Int32 |
An integer indicating the data type. This value is determined at run time based on the environment. |
DataTypeName |
String |
The name of the data type. |
NumericPrecision |
Int32 |
The maximum precision for numeric data. The column length in characters for character and date-time data. |
Length |
Int32 |
The number of characters allowed for character data. The number of digits allowed for numeric 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. |
Values |
String |
The values you can set in this parameter are limited to those shown in this column. Possible values are comma-separated. |
SupportsStreams |
Boolean |
Whether the parameter represents a file that you can pass as either a file path or a stream. |
IsPath |
Boolean |
Whether the parameter is a target path for a schema creation operation. |
Default |
String |
The value used for this parameter when no value is specified. |
SpecificName |
String |
A label that, when multiple stored procedures have the same name, uniquely identifies each identically-named stored procedure. If there's only one procedure with a given name, its name is simply reflected here. |
IsProvided |
Boolean |
Whether the procedure is added/implemented by , as opposed to being a native Acumatica procedure. |
Pseudo-Columns
| Name | Type | Description |
|---|---|---|
IncludeResultColumns |
Boolean |
Whether the output should include columns from the result set in addition to parameters. Defaults to False. |
sys_keycolumns
Describes the primary and foreign keys.
The following query retrieves the primary key for the Events table:
SELECT * FROM sys_keycolumns WHERE IsKey='True' AND TableName='Events'
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.
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.
Discover 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.
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. |
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.
| Property | Description |
|---|---|
AuthScheme |
The scheme used for authentication. Accepted entries are Basic, OAuth, OAuthImplicit and OAuthPassword. |
URL |
The base URL of your Acumatica site. |
User |
Specifies the user ID of the authenticating Acumatica user account. |
Password |
Specifies the password of the authenticating user account. |
Company |
Your Acumatica Company. |
EndpointName |
The name of the endpoint in Acumatica WebService which you wish to access. You can find available endpoints in Web Service Endpoints form in Acumatica ERP. |
EndpointVersion |
The version of the endpoint. You can find available endpoints in Web Service Endpoints form in Acumatica ERP and their version under Endpoint Version. |
| Property | Description |
|---|---|
InitiateOAuth |
Specifies the process for obtaining or refreshing the OAuth access token, which maintains user access while an authenticated, authorized user is working. |
OAuthClientId |
Specifies the client ID (also known as the consumer key) assigned to your custom OAuth application. This ID is required to identify the application to the OAuth authorization server during authentication. |
OAuthClientSecret |
Specifies the client secret assigned to your custom OAuth application. This confidential value is used to authenticate the application to the OAuth authorization server. |
OAuthAccessToken |
Specifies the OAuth access token used to authenticate requests to the data source. This token is issued by the authorization server after a successful OAuth exchange. |
OAuthSettingsLocation |
Specifies the location of the settings file where OAuth values are saved. Storing OAuth settings in a central location avoids the need for users to enter OAuth connection properties manually each time they log in. It also enables credentials to be shared across connections or processes. |
CallbackURL |
Identifies the URL users return to after authenticating to Acumatica via OAuth. (Custom OAuth applications only.). |
OAuthVerifier |
Specifies a verifier code returned from the OAuthAuthorizationURL . Used when authenticating to OAuth on a headless server, where a browser can't be launched. Requires both OAuthSettingsLocation and OAuthVerifier to be set. |
OAuthRefreshToken |
Specifies the OAuth refresh token used to request a new access token after the original has expired. |
OAuthExpiresIn |
Specifies the duration in seconds, of an OAuth Access Token's lifetime. The token can be reissued to keep access alive as long as the user keeps working. |
OAuthTokenTimestamp |
Displays a Unix epoch timestamp in milliseconds that shows how long ago the current Access Token was created. |
| Property | Description |
|---|---|
SSLServerCert |
Specifies the certificate to be accepted from the server when connecting using TLS/SSL. |
| Property | Description |
|---|---|
Location |
Specifies the location of a directory containing schema files that define tables, views, and stored procedures. Depending on your service's requirements, this may be expressed as either an absolute path or a relative path. |
BrowsableSchemas |
Optional setting that restricts the schemas reported to a subset of all available schemas. For example, BrowsableSchemas=SchemaA, SchemaB, SchemaC . |
Tables |
Optional setting that restricts the tables reported to a subset of all available tables. For example, Tables=TableA, TableB, TableC . |
Views |
Optional setting that restricts the views reported to a subset of the available tables. For example, Views=ViewA, ViewB, ViewC . |
Schema |
Specifies which Acumatica API to use. |
| Property | Description |
|---|---|
GenerateSchemaFiles |
Indicates the user preference as to when schemas should be generated and saved. |
IncludeCustomFields |
Whether or not to retrieve custom fields that are added to Acumatica Screens. |
InquiryTables |
Provide a comma-separated list of general inquiry tables to expose them in the provider. |
MaxRows |
Specifies the maximum rows returned for queries without aggregation or GROUP BY. |
Other |
Specifies additional hidden properties for specific use cases. These are not required for typical provider functionality. Use a semicolon-separated list to define multiple properties. |
Pagesize |
The maximum number of records per page the provider returns when requesting data from Acumatica. |
PseudoColumns |
Specifies the pseudocolumns to expose as table columns. Use the format 'TableName=ColumnName;TableName=ColumnName'. The default is an empty string, which disables this property. |
Timeout |
Specifies the maximum time, in seconds, that the provider waits for a server response before throwing a timeout error. The default is 60 seconds. Set to 0 to disable the timeout. |
UserDefinedViews |
Specifies a filepath to a JSON configuration file defining custom views. The provider automatically detects and uses the views specified in this file. |
Authentication
This section provides a complete list of authentication properties you can configure.
| Property | Description |
|---|---|
AuthScheme |
The scheme used for authentication. Accepted entries are Basic, OAuth, OAuthImplicit and OAuthPassword. |
URL |
The base URL of your Acumatica site. |
User |
Specifies the user ID of the authenticating Acumatica user account. |
Password |
Specifies the password of the authenticating user account. |
Company |
Your Acumatica Company. |
EndpointName |
The name of the endpoint in Acumatica WebService which you wish to access. You can find available endpoints in Web Service Endpoints form in Acumatica ERP. |
EndpointVersion |
The version of the endpoint. You can find available endpoints in Web Service Endpoints form in Acumatica ERP and their version under Endpoint Version. |
AuthScheme
The scheme used for authentication. Accepted entries are Basic, OAuth, OAuthImplicit and OAuthPassword.
Possible Values
Basic, OAuth, OAuthImplicit, OAuthPassword
Data Type
string
Default Value
Basic
Remarks
- Basic: Set this to authenticate using the Basic authentication schema. You need to specify the User, Password and Company connection properties for this schema.
- OAuth: Set to this to perform OAuth authentication with CODE flow.
- OAuthImplicit: Set to this to perform OAuth authentication with IMPLICIT flow.
- OAuthPassword: Set to this to perform OAuth authentication with PASSWORD flow.
URL
The base URL of your Acumatica site.
Data Type
string
Default Value
""
Remarks
The base URL of your Acumatica site. For example: https://domain.acumatica.com/.
User
Specifies the user ID of the authenticating Acumatica user account.
Data Type
string
Default Value
""
Remarks
The authenticating server requires both User and Password to validate the user's identity.
Password
Specifies the password of the authenticating user account.
Data Type
string
Default Value
""
Remarks
The authenticating server requires both User and Password to validate the user's identity.
Company
Your Acumatica Company.
Data Type
string
Default Value
""
Remarks
This connection parameter is required when Schema is set to "OData".
EndpointName
The name of the endpoint in Acumatica WebService which you wish to access. You can find available endpoints in Web Service Endpoints form in Acumatica ERP.
Data Type
string
Default Value
Default
Remarks
The name of the endpoint. You can find available endpoints in Web Service Endpoints form (ScreenId SM207060) in Acumatica ERP. Under Endpoints properties, you will find the Endpoint Name and Endpoint Version.
EndpointVersion
The version of the endpoint. You can find available endpoints in Web Service Endpoints form in Acumatica ERP and their version under Endpoint Version.
Data Type
string
Default Value
24.200.001
Remarks
The version of the endpoint. You can find available endpoints in Web Service Endpoints form (ScreenId SM207060) in Acumatica ERP. Under Endpoints properties, you will find the Endpoint Name and Endpoint Version.
OAuth
This section provides a complete list of OAuth properties you can configure.
| Property | Description |
|---|---|
InitiateOAuth |
Specifies the process for obtaining or refreshing the OAuth access token, which maintains user access while an authenticated, authorized user is working. |
OAuthClientId |
Specifies the client ID (also known as the consumer key) assigned to your custom OAuth application. This ID is required to identify the application to the OAuth authorization server during authentication. |
OAuthClientSecret |
Specifies the client secret assigned to your custom OAuth application. This confidential value is used to authenticate the application to the OAuth authorization server. |
OAuthAccessToken |
Specifies the OAuth access token used to authenticate requests to the data source. This token is issued by the authorization server after a successful OAuth exchange. |
OAuthSettingsLocation |
Specifies the location of the settings file where OAuth values are saved. Storing OAuth settings in a central location avoids the need for users to enter OAuth connection properties manually each time they log in. It also enables credentials to be shared across connections or processes. |
CallbackURL |
Identifies the URL users return to after authenticating to Acumatica via OAuth. (Custom OAuth applications only.). |
OAuthVerifier |
Specifies a verifier code returned from the OAuthAuthorizationURL . Used when authenticating to OAuth on a headless server, where a browser can't be launched. Requires both OAuthSettingsLocation and OAuthVerifier to be set. |
OAuthRefreshToken |
Specifies the OAuth refresh token used to request a new access token after the original has expired. |
OAuthExpiresIn |
Specifies the duration in seconds, of an OAuth Access Token's lifetime. The token can be reissued to keep access alive as long as the user keeps working. |
OAuthTokenTimestamp |
Displays a Unix epoch timestamp in milliseconds that shows how long ago the current Access Token was created. |
InitiateOAuth
Specifies the process for obtaining or refreshing the OAuth access token, which maintains user access while an authenticated, authorized user is working.
Possible Values
OFF, REFRESH, GETANDREFRESH
Data Type
string
Default Value
OFF
Remarks
OAuth is an authorization framework that enables applications to obtain limited access to user accounts on an HTTP service. The OAuth flow defines the method to be used for logging in users, exchanging their credentials for an OAuth access token to be used for authentication, and providing limited access to applications.
Acumatica supports the following options for initiating OAuth access:
OFF: No automatic OAuth flow initiation. The OAuth flow is handled entirely by the user, who will take action to obtain their OAuthAccessToken. Note that with this setting the user must refresh the token manually and reconnect with an updated OAuthAccessToken property when the current token expires.GETANDREFRESH: The OAuth flow is handled entirely by the connector. If a token already exists, it is refreshed when necessary. If no token currently exists, it will be obtained by prompting the user to login.REFRESH: The user handles obtaining the OAuth Access Token and sets up the sequence for refreshing the OAuth Access Token. (The user is never prompted to log in to authenticate. After the user logs in, the connector handles the refresh of the OAuth Access Token.
OAuthClientId
Specifies the client ID (also known as the consumer key) assigned to your custom OAuth application. This ID is required to identify the application to the OAuth authorization server during authentication.
Data Type
string
Default Value
""
Remarks
This property is required when using a custom OAuth application, such as in web-based authentication flows, service-based authentication, or certificate-based flows that require application registration. It is also required if an embedded OAuth application is not available for the driver. When an embedded OAuth application is available, this value may already be provided by the connector and not require manual entry.
This value is generally used alongside other OAuth-related properties such as OAuthClientSecret and OAuthSettingsLocation when configuring an authenticated connection.
OAuthClientId is one of the key connection parameters that need to be set before users can authenticate via OAuth. You can typically find this value in your identity provider’s application registration settings. Look for a field labeled Client ID, Application ID, or Consumer Key.
While the client ID is not considered a confidential value like a client secret, it is still part of your application's identity and should be handled carefully. Avoid exposing it in public repositories or shared configuration files.
OAuthClientSecret
Specifies the client secret assigned to your custom OAuth application. This confidential value is used to authenticate the application to the OAuth authorization server.
Data Type
string
Default Value
""
Remarks
This property is required when using a custom OAuth application in any flow that requires secure client authentication, such as web-based OAuth, service-based connections, or certificate-based authorization flows. It is not required when using an embedded OAuth application.
The client secret is used during the token exchange step of the OAuth flow, when the driver requests an access token from the authorization server. If this value is missing or incorrect, authentication will fail, and the server may return an invalid_client or unauthorized_client error.
OAuthClientSecret is one of the key connection parameters that need to be set before users can authenticate via OAuth. You can obtain this value from your identity provider when registering the OAuth application. It may be referred to as the client secret, application secret, or consumer secret.
This value should be stored securely and never exposed in public repositories, scripts, or unsecured environments. Client secrets may also expire after a set period. Be sure to monitor expiration dates and rotate secrets as needed to maintain uninterrupted access.
OAuthAccessToken
Specifies the OAuth access token used to authenticate requests to the data source. This token is issued by the authorization server after a successful OAuth exchange.
Data Type
string
Default Value
""
Remarks
The OAuthAccessToken is a temporary credential that authorizes access to protected resources. It is typically returned by the identity provider after the user or client application completes an OAuth authentication flow. This property is most commonly used in automated workflows or custom OAuth implementations where you want to manage token handling outside of the driver.
The OAuth access token has a server-dependent timeout, limiting user access. This is set using the OAuthExpiresIn property. However, it can be reissued between requests to keep access alive as long as the user keeps working.
If InitiateOAuth is set to REFRESH, we recommend that you also set both OAuthExpiresIn and OAuthTokenTimestamp. The connector uses these properties to determine when the token expires so it can refresh most efficiently. If OAuthExpiresIn and OAuthTokenTimestamp are not specified, the connector refreshes the token immediately.
Access tokens should be treated as sensitive credentials and stored securely. Avoid exposing them in logs, scripts, or configuration files that are not access-controlled.
OAuthSettingsLocation
The location of the settings file where OAuth values are saved when InitiateOAuth is set to GETANDREFRESH or REFRESH. Alternatively, you can hold this location in memory by specifying a value starting with 'memory://'.
Data Type
string
Default Value
%APPDATA%\\CData\\Acumatica Data Provider\\OAuthSettings.txt
Remarks
When InitiateOAuth is set to GETANDREFRESH or REFRESH, the driver saves OAuth values to avoid requiring the user to manually enter OAuth connection properties and to allow the credentials to be shared across connections or processes.
Instead of specifying a file path, you can use memory storage. Memory locations are specified by using a value starting with 'memory://' followed by a unique identifier for that set of credentials (for example, memory://user1). The identifier can be anything you choose but should be unique to the user. Unlike file-based storage, where credentials persist across connections, memory storage loads the credentials into static memory, and the credentials are shared between connections using the same identifier for the life of the process. To persist credentials outside the current process, you must manually store the credentials prior to closing the connection. This enables you to set them in the connection when the process is started again. You can retrieve OAuth property values with a query to the sys_connection_props system table. If there are multiple connections using the same credentials, the properties are read from the previously closed connection.
The default location is "%APPDATA%\\CData\\Acumatica Data Provider\\OAuthSettings.txt" with %APPDATA% set to the user's configuration directory. The default values are
- Windows: "
register://%DSN" - Unix: "%AppData%..."
where DSN is the name of the current DSN used in the open connection.
The following table lists the value of %APPDATA% by OS:
| Platform | %APPDATA% |
|---|---|
Windows |
The value of the APPDATA environment variable |
Linux |
~/.config |
CallbackURL
Identifies the URL users return to after authenticating to Acumatica via OAuth. (Custom OAuth applications only.).
Data Type
string
Default Value
http://localhost:33333
Remarks
If you created a custom OAuth application, the OAuth authorization server redirects the user to this URL during the authentication process. This value must match the callback URL you specified when you Configured the custom OAuth application.
OAuthVerifier
Specifies a verifier code returned from the OAuthAuthorizationURL. Used when authenticating to OAuth on a headless server, where a browser can't be launched. Requires both OAuthSettingsLocation and OAuthVerifier to be set.
Data Type
string
Default Value
""
OAuthRefreshToken
Specifies the OAuth refresh token used to request a new access token after the original has expired.
Data Type
string
Default Value
""
Remarks
The refresh token is used to obtain a new access token when the current one expires. It enables seamless authentication for long-running or automated workflows without requiring the user to log in again. This property is especially important in headless, CI/CD, or server-based environments where interactive authentication is not possible.
The refresh token is typically obtained during the initial OAuth exchange by calling the GetOAuthAccessToken stored procedure. After that, it can be set using this property to enable automatic token refresh, or passed to the RefreshOAuthAccessToken stored procedure if you prefer to manage the refresh manually.
When InitiateOAuth is set to REFRESH, the driver uses this token to retrieve a new access token automatically. After the first refresh, the driver saves updated tokens in the location defined by OAuthSettingsLocation, and uses those values for subsequent connections.
The OAuthRefreshToken should be handled securely and stored in a trusted location. Like access tokens, refresh tokens can expire or be revoked depending on the identity provider’s policies.
OAuthExpiresIn
Specifies the duration in seconds, of an OAuth Access Token's lifetime. The token can be reissued to keep access alive as long as the user keeps working.
Data Type
string
Default Value
""
Remarks
The OAuth Access Token is assigned to an authenticated user, granting that user access to the network for a specified period of time. The access token is used in place of the user's login ID and password, which stay on the server.
An access token created by the server is only valid for a limited time. OAuthExpiresIn is the number of seconds the token is valid from when it was created. For example, a token generated at 2024-01-29 20:00:00 UTC that expires at 2024-01-29 21:00:00 UTC (an hour later) would have an OAuthExpiresIn value of 3600, no matter what the current time is.
To determine how long the user has before the Access Token will expire, use OAuthTokenTimestamp.
OAuthTokenTimestamp
Displays a Unix epoch timestamp in milliseconds that shows how long ago the current Access Token was created.
Data Type
string
Default Value
""
Remarks
The OAuth Access Token is assigned to an authenticated user, granting that user access to the network for a specified period of time. The access token is used in place of the user's login ID and password, which stay on the server.
An access token created by the server is only valid for a limited time. OAuthTokenTimestamp is the Unix timestamp when the server created the token. For example, OAuthTokenTimestamp=1706558400 indicates the OAuthAccessToken was generated by the server at 2024-01-29 20:00:00 UTC.
SSL
This section provides a complete list of SSL properties you can configure.
| Property | Description |
|---|---|
SSLServerCert |
Specifies the certificate to be accepted from the server when connecting using TLS/SSL. |
SSLServerCert
Specifies 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 |
Specifies the location of a directory containing schema files that define tables, views, and stored procedures. Depending on your service's requirements, this may be expressed as either an absolute path or a relative path. |
BrowsableSchemas |
Optional setting that restricts the schemas reported to a subset of all available schemas. For example, BrowsableSchemas=SchemaA, SchemaB, SchemaC . |
Tables |
Optional setting that restricts the tables reported to a subset of all available tables. For example, Tables=TableA, TableB, TableC . |
Views |
Optional setting that restricts the views reported to a subset of the available tables. For example, Views=ViewA, ViewB, ViewC . |
Schema |
Specifies which Acumatica API to use. |
Location
Specifies the location of a directory containing schema files that define tables, views, and stored procedures. Depending on your service's requirements, this may be expressed as either an absolute path or a relative path.
Data Type
string
Default Value
%APPDATA%\Acumatica Data Provider\Schema
Remarks
The Location property is only needed if you want to either customize definitions (for example, change a column name, ignore a column, etc.) or extend the data model with new tables, views, or stored procedures.
Note
Since this connector supports multiple schemas, custom schema files for Acumatica should be structured such that:
- Each schema should have its own folder, named for that schema.
- All schema folders should be contained in a parent folder.
Location should always be set to the parent folder, and not to an individual schema's folder.
If left unspecified, the default location is %APPDATA%\Acumatica Data Provider\Schema, where %APPDATA% is set to the user's configuration directory:
| Platform | %APPDATA% |
|---|---|
Windows |
The value of the APPDATA environment variable |
Mac |
~/Library/Application Support |
Linux |
~/.config |
BrowsableSchemas
Optional setting that restricts the schemas reported to a subset of all available schemas. For example, BrowsableSchemas=SchemaA,SchemaB,SchemaC.
Data Type
string
Default Value
""
Remarks
Listing all available database schemas can take extra time, thus degrading performance. Providing a list of schemas in the connection string saves time and improves performance.
Tables
Optional setting that restricts the tables reported to a subset of all available tables. For example, Tables=TableA,TableB,TableC.
Data Type
string
Default Value
""
Remarks
Listing all available tables from some databases can take extra time, thus degrading performance. Providing a list of tables in the connection string saves time and improves performance.
If there are lots of tables available and you already know which ones you want to work with, you can use this property to restrict your viewing to only those tables. To do this, 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
If you are connecting to a data source with multiple schemas or catalogs, you must specify each table you want to view by its fully qualified name. This avoids ambiguity between tables that may exist in multiple catalogs or schemas.
Views
Optional setting that restricts the views reported to a subset of the available tables. For example, Views=ViewA,ViewB,ViewC.
Data Type
string
Default Value
""
Remarks
Listing all available views from some databases can take extra time, thus degrading performance. Providing a list of views in the connection string saves time and improves performance.
If there are lots of views available and you already know which ones you want to work with, you can use this property to restrict your viewing to only those views. To do this, 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
If you are connecting to a data source with multiple schemas or catalogs, you must specify each view you want to examine by its fully qualified name. This avoids ambiguity between views that may exist in multiple catalogs or schemas.
Schema
Specifies which Acumatica API to use.
Possible Values
OData, ODataV4, REST
Data Type
string
Default Value
REST
Remarks
Specifies which Acumatica API to use. There are three options:
REST(default): Use the Contract-Based REST API.OData: Use the OData Version 3.0 API to dynamically retrieve all Generic Inquiries available through OData.ODataV4: Use the OData 4.0 API to query Data Access Class (DAC) objects.
Miscellaneous
This section provides a complete list of miscellaneous properties you can configure.
| Property | Description |
|---|---|
GenerateSchemaFiles |
Indicates the user preference as to when schemas should be generated and saved. |
IncludeCustomFields |
Whether or not to retrieve custom fields that are added to Acumatica Screens. |
InquiryTables |
Provide a comma-separated list of general inquiry tables to expose them in the provider. |
MaxRows |
Specifies the maximum rows returned for queries without aggregation or GROUP BY. |
Other |
Specifies additional hidden properties for specific use cases. These are not required for typical provider functionality. Use a semicolon-separated list to define multiple properties. |
Pagesize |
The maximum number of records per page the provider returns when requesting data from Acumatica. |
PseudoColumns |
Specifies the pseudocolumns to expose as table columns. Use the format 'TableName=ColumnName;TableName=ColumnName'. The default is an empty string, which disables this property. |
Timeout |
Specifies the maximum time, in seconds, that the provider waits for a server response before throwing a timeout error. The default is 60 seconds. Set to 0 to disable the timeout. |
UserDefinedViews |
Specifies a filepath to a JSON configuration file defining custom views. The provider automatically detects and uses the views specified in this file. |
GenerateSchemaFiles
Indicates the user preference as to when schemas should be generated and saved.
Possible Values
Never, OnUse, OnStart, OnCreate
Data Type
string
Default Value
Never
Remarks
This property outputs schemas to .rsd files in the path specified by Location.
Available settings are the following:
- Never: A schema file will never be generated.
- OnUse: A schema file will be generated the first time a table is referenced, provided the schema file for the table does not already exist.
- OnStart: A schema file will be generated at connection time for any tables that do not currently have a schema file.
- OnCreate: A schema file will be generated by when running a CREATE TABLE SQL query.
Note that if you want to regenerate a file, you will first need to delete it.
Generate Schemas with SQL
When you set GenerateSchemaFiles to OnUse, the connector generates schemas as you execute SELECT queries. Schemas are generated for each table referenced in the query.
When you set GenerateSchemaFiles to OnCreate, schemas are only generated when a CREATE TABLE query is executed.
Generate Schemas on Connection
Another way to use this property is to obtain schemas for every table in your database when you connect. To do so, set GenerateSchemaFiles to OnStart and connect.
IncludeCustomFields
Whether or not to retrieve custom fields that are added to Acumatica Screens.
Data Type
bool
Default Value
true
Remarks
Leave this set to true if you have custom fields added and have not extended the API to include custom fields in your entities. Set it to false if you don't want to retrieve custom fields.
Acumatica endpoints support a small amount of custom fields per request. Once a certain amount is reached, it is recommended to setup an extended endpoint and include the custom fields in it.
InquiryTables
Provide a comma-separated list of general inquiry tables to expose them in the provider.
Data Type
string
Default Value
""
Remarks
Inquiry tables in Contract 3 Acumatica API version 17.200.001 are: AccountByPeriodInquiry, AccountBySubaccountInquiry, AccountDetailsInquiry, AccountSummaryInquiry, InventoryAllocationInquiry, InventorySummaryInquiry, InvoicedItemsInquiry, SalesPricesInquiry,VendorPricesInquiry.
MaxRows
Specifies the maximum rows returned for queries without aggregation or GROUP BY.
Data Type
int
Default Value
-1
Remarks
This property sets an upper limit on the number of rows the connector returns for queries that do not include aggregation or GROUP BY clauses. This limit ensures that queries do not return excessively large result sets by default.
When a query includes a LIMIT clause, the value specified in the query takes precedence over the MaxRows setting. If MaxRows is set to "-1", no row limit is enforced unless a LIMIT clause is explicitly included in the query.
This property is useful for optimizing performance and preventing excessive resource consumption when executing queries that could otherwise return very large datasets.
Other
Specifies additional hidden properties for specific use cases. These are not required for typical provider functionality. Use a semicolon-separated list to define multiple properties.
Data Type
string
Default Value
""
Remarks
This property allows advanced users to configure hidden properties for specialized scenarios. These settings are not required for normal use cases but can address unique requirements or provide additional functionality. Multiple properties can be defined in a semicolon-separated list.
Note
It is strongly recommended to set these properties only when advised by the support team to address specific scenarios or issues.
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=True |
Converts date-time values to GMT, instead of the local time of the machine. The default value is False (use local time). |
RecordToFile=filename |
Records the underlying socket data transfer to the specified file. |
Pagesize
The maximum number of records per page the provider returns when requesting data from Acumatica.
Data Type
int
Default Value
1000
Remarks
When processing a query, instead of requesting all of the queried data at once from Acumatica, the connector can request the queried data in pieces called pages.
This connection property determines the maximum number of results that the connector requests per page.
Note that setting large page sizes may improve overall query execution time, but doing so causes the connector to use more memory when executing queries and risks triggering a timeout.
PseudoColumns
Specifies the pseudocolumns to expose as table columns. Use the format 'TableName=ColumnName;TableName=ColumnName'. The default is an empty string, which disables this property.
Data Type
string
Default Value
""
Remarks
This property allows you to define which pseudocolumns the connector exposes as table columns.
To specify individual pseudocolumns, use the following format: "Table1=Column1;Table1=Column2;Table2=Column3"
To include all pseudocolumns for all tables use: "*=*"
Timeout
Specifies the maximum time, in seconds, that the provider waits for a server response before throwing a timeout error. The default is 60 seconds. Set to 0 to disable the timeout.
Data Type
int
Default Value
60
Remarks
This property controls the maximum time, in seconds, that the connector waits for an operation to complete before canceling it. If the timeout period expires before the operation finishes, the connector cancels the operation and throws an exception.
The timeout applies to each individual communication with the server rather than the entire query or operation. For example, a query could continue running beyond the timeout value if each paging call completes within the timeout limit.
Setting this property to 0 disables the timeout, allowing operations to run indefinitely until they succeed or fail due to other conditions such as server-side timeouts, network interruptions, or resource limits on the server. Use this property cautiously to avoid long-running operations that could degrade performance or result in unresponsive behavior.
UserDefinedViews
Specifies a filepath to a JSON configuration file defining custom views. The provider automatically detects and uses the views specified in this file.
Data Type
string
Default Value
""
Remarks
This property allows you to define and manage custom views through a JSON-formatted configuration file called UserDefinedViews.json. These views are automatically recognized by the connector and enable you to execute custom SQL queries as if they were standard database views. The JSON file defines each view as a root element with a child element called "query", which contains the SQL query for the view. For example:
{
"MyView": {
"query": "SELECT * FROM Events WHERE MyColumn = 'value'"
},
"MyView2": {
"query": "SELECT * FROM MyTable WHERE Id IN (1,2,3)"
}
}
You can define multiple views in a single file and specify the filepath using this property. For example: UserDefinedViews=C:\Path\To\UserDefinedViews.json. When you use this property, only the specified views are seen by the connector.
Refer to User Defined Views for more information.