Dynamics GP Connection Details
Introduction
Connector Version
This documentation is based on version 23.0.8663 of the connector.
Get Started
Microsoft Dynamics GP Version Support
The connector leverages the Dynamics GP Web services APIs to access Microsoft Dynamics GP 2010, 2013, and 2015. Web services must be enabled for your instance.
Establish a Connection
Connect to Microsoft Dynamics GP
To connect set URL
to the Web services endpoint; for example, http://{servername}:{port}/Dynamics/GPService
. Additionally, set CompanyId
to the unique identifier of the company you are connecting to. You can obtain this value by querying the Company table and leaving the property empty.
Authenticate to Microsoft Dynamics GP
The Microsoft Dynamics GP data source supports the following authentication methods:
- Anonymous Authentication
- WS-Security (WSS) Authentication
- Basic Authentication
- NTLM User Authentication
- Digest
- Negotiate (Kerberos)
Anonymous Authentication
In some situations, you can connect to Microsoft Dynamics GP without setting any authentication connection properties. To do so, set the AuthScheme
to None
, and you are ready to connect.
WS-Security (WSS)
Set the User
and Password
to connect and set AuthScheme
to WSS
.
Note
WSS Authentication is the default authentication scheme.
Basic
Set the User
and Password
to connect and set AuthScheme
to Basic
.
Windows (NTLM)
Set the Windows User
and Password
to connect and set AuthScheme
to NTLM
.
Digest
Set the User
and Password
to connect and set AuthScheme
to Digest
.
Kerberos
See Using Kerberos for details on how to authenticate with Kerberos.
Fine Tuning Data Access
The connector returns data summaries by default to save performance. Set LookupIds
to true
to return details such as line items; however, note that entities must be retrieved one at a time.
Use Kerberos
This section shows how to use the connector to authenticate using Kerberos.
Kerberos
To authenticate to Microsoft Dynamics GP using Kerberos, set the following properties:
AuthScheme
: Set this toNEGOTIATE
.KerberosKDC
: Set this to the host name or IP Address of your Kerberos KDC machine.KerberosRealm
: Set this tothe realm of the Microsoft Dynamics GP Kerberos principal
. This will be the value after the '@' symbol (for instance, EXAMPLE.COM) of theprincipal value
(for instance, ServiceName/MyHost@EXAMPLE.COM).KerberosSPN
: Set this to the service and host of the Microsoft Dynamics GP Kerberos Principal. This is the value prior to the '@' symbol (for instance, ServiceName/MyHost) of the principal value (for instance, ServiceName/MyHost@EXAMPLE.COM).
Retrieve the Kerberos Ticket
You can use one of the following options to retrieve the required Kerberos ticket.
MIT Kerberos Credential Cache File
This option enables you to use the MIT Kerberos Ticket Manager or kinit command to get tickets. Note that you do not need to set the User
or Password
connection properties with this option.
- Ensure that you have an environment variable created called
KRB5CCNAME
. - Set the
KRB5CCNAME
environment variable to a path pointing to your credential cache file (for instance,C:\krb_cache\krb5cc_0
or/tmp/krb5cc_0
). This file is created when generating your ticket with MIT Kerberos Ticket Manager. - To obtain a ticket, open the MIT Kerberos Ticket Manager application, click
Get Ticket
, enter your principal name and password, then clickOK
. If successful, ticket information appears in Kerberos Ticket Manager and is stored in the credential cache file. - Now that you have created the credential cache file, the connector uses the cache file to obtain the Kerberos ticket to connect to Microsoft Dynamics GP.
As an alternative to setting the KRB5CCNAME
environment variable, you can directly set the file path using the KerberosTicketCache
property. When set, the connector uses the specified cache file to obtain the Kerberos ticket to connect to Microsoft Dynamics GP.
Keytab File
If the KRB5CCNAME environment variable has not been set
, you can retrieve a Kerberos ticket using a Keytab File. To do so, set the User
property to the desired username and set the KerberosKeytabFile
property to a file path pointing to the keytab file associated with the user.
User and Password
If both the KRB5CCNAME
environment variable and the KerberosKeytabFile
property have not been set, you can retrieve a ticket using a user and password combination. To do this, set the User
and Password
properties to the user/password combination that you use to authenticate with Microsoft Dynamics GP.
Cross-Realm
More complex Kerberos environments may require cross-realm authentication where multiple realms and KDC servers are used (e.g., where one realm/KDC is used for user authentication and another realm/KDC is used for obtaining the service ticket).
In such an environment, set the KerberosRealm
and KerberosKDC
properties to the values required for user authentication. Also set the KerberosServiceRealm
and KerberosServiceKDC
properties to the values required to obtain the service ticket.
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 Microsoft Dynamics GP connector.
User Defined Views
The connector allows you to define virtual tables, called user defined views, whose contents are decided by a pre-configured query. These views are useful when you cannot directly control queries being issued to the drivers. See User Defined Views for an overview of creating and configuring custom views.
SSL Configuration
Use SSL Configuration to adjust how connector handles TLS/SSL certificate negotiations. You can choose from various certificate formats; see the SSLServerCert
property under "Connection String Options" for more information.
Proxy
To configure the connector using private agent proxy settings, select the Use Proxy Settings
checkbox on the connection configuration screen.
Query Processing
The connector offloads as much of the SELECT statement processing as possible to Microsoft Dynamics GP and then processes the rest of the query in memory (client-side).
See Query Processing for more information.
User Defined Views
The Jitterbit Connector for Microsoft Dynamics GP allows you to define a virtual table whose contents are decided by a pre-configured query. These are called User Defined Views, which are useful in situations where you cannot directly control the query being issued to the driver, e.g. when using the driver from Jitterbit. The User Defined Views can be used to define predicates that are always applied. If you specify additional predicates in the query to the view, they are combined with the query already defined as part of the view.
There are two ways to create user defined views:
- Create a JSON-formatted configuration file defining the views you want.
- DDL statements.
Define Views Using a Configuration File
User Defined Views are defined in a JSON-formatted configuration file called UserDefinedViews.json
. The connector automatically detects the views specified in this file.
You can also have multiple view definitions and control them using the UserDefinedViews
connection property. When you use this property, only the specified views are seen by the connector.
This User Defined View configuration file is formatted as follows:
- Each root element defines the name of a view.
- Each root element contains a child element, called
query
, which contains the custom SQL query for the view.
For example:
{
"MyView": {
"query": "SELECT * FROM Customer WHERE MyColumn = 'value'"
},
"MyView2": {
"query": "SELECT * FROM MyTable WHERE Id IN (1,2,3)"
}
}
Use the UserDefinedViews
connection property to specify the location of your JSON configuration file. For example:
"UserDefinedViews", "C:\Users\yourusername\Desktop\tmp\UserDefinedViews.json"
Define Views Using DDL Statements
The connector is also capable of creating and altering the schema via DDL Statements such as CREATE LOCAL VIEW, ALTER LOCAL VIEW, and DROP LOCAL VIEW.
Create a View
To create a new view using DDL statements, provide the view name and query as follows:
CREATE LOCAL VIEW [MyViewName] AS SELECT * FROM Customers LIMIT 20;
If no JSON file exists, the above code creates one. The view is then created in the JSON configuration file and is now discoverable. The JSON file location is specified by the UserDefinedViews
connection property.
Alter a View
To alter an existing view, provide the name of an existing view alongside the new query you would like to use instead:
ALTER LOCAL VIEW [MyViewName] AS SELECT * FROM Customers WHERE TimeModified > '3/1/2020';
The view is then updated in the JSON configuration file.
Drop a View
To drop an existing view, provide the name of an existing schema alongside the new query you would like to use instead.
DROP LOCAL VIEW [MyViewName]
This removes the view from the JSON configuration file. It can no longer be queried.
Schema for User Defined Views
User Defined Views are exposed in the UserViews
schema by default. This is done to avoid the view's name clashing with an actual entity in the data model. You can change the name of the schema used for UserViews by setting the UserViewsSchemaName
property.
Work with User Defined Views
For example, a SQL statement with a User Defined View called UserViews.RCustomers
only lists customers in Raleigh:
SELECT * FROM Customers WHERE City = 'Raleigh';
An example of a query to the driver:
SELECT * FROM UserViews.RCustomers WHERE Status = 'Active';
Resulting in the effective query to the source:
SELECT * FROM Customers WHERE City = 'Raleigh' AND Status = 'Active';
That is a very simple example of a query to a User Defined View that is effectively a combination of the view query and the view definition. It is possible to compose these queries in much more complex patterns. All SQL operations are allowed in both queries and are combined when appropriate.
SSL Configuration
Customize the SSL Configuration
By default, the connector attempts to negotiate SSL/TLS by checking the server's certificate against the system's trusted certificate store.
To specify another certificate, see the SSLServerCert
property for the available formats to do so.
Data Model
The Jitterbit Connector for Microsoft Dynamics GP models Microsoft Dynamics GP entities in relational views, or read-only tables. The tables are determined automatically based on the metadata the connector retrieves when you connect. Any changes that you make to your Microsoft Dynamics GP account, such as creating a custom field or changing its data type, are reflected on reconnection.
Views shows some sample view definitions included in the Microsoft Dynamics GP development environment. The actual views available will depend on your account.
Executing Inserts
Some of the entities which are exposed as tables support insert operations. For example to insert a new Customer into the Customer table we execute the following query:
INSERT INTO Customer (Id, Name, Comment1, Comment2) VALUES ('TEST_CST', 'Name', 'Comment1', 'Comment2')
Executing Inserts using Temporary Tables
While inserting you may encounter columns which end with "Aggregate" keyword. These columns will accept only temporary table values. If using temporary tables, they must be defined and inserted within the same connection. Closing the connection will clear out any temporary tables in memory. For example while inserting a new SalesInvoice the sales lines need to be inserted as well. The sales lines are exposed in SalesInvoice table as the column LinesAggregate. First we have to find the child view that corresponds to the LinesAggregate column. In this case the view is SalesInvoiceLines. Using the view name for our temporary table and its columns as a reference to the sales lines attributes, we will first insert the sales lines to the temporary table. Follow the sql queries below:
INSERT INTO SalesInvoiceLines#TEMP (LinesItemId, LinesWarehouseId, LinesQuantity, LinesUnitPrice, LinesUnitPriceCurrency) VALUES ('100XLG', 'WAREHOUSE', '1', '30', 'USD')
INSERT INTO SalesInvoiceLines#TEMP (LinesItemId, LinesWarehouseId, LinesQuantity, LinesUnitPrice, LinesUnitPriceCurrency) VALUES ('M1700', 'WAREHOUSE', '1', '30', 'USD')
INSERT INTO SalesInvoice (BatchId, CustomerId, DocumentTypeKeyType, DocumentTypeId, LinesAggregate) VALUES ('CONTRACTS', 'PLAZAONE0001', 'Invoice', 'STDINV' , 'SalesInvoiceLines#TEMP')
First we add 2 sales lines into the temporary table with name "SalesInvoiceLines#TEMP". Then we are able to create a new SalesInvoice using the temporary table name as a value for the column LinesAggregate. Note: The columns LinesItemId, LinesWarehouseId, LinesQuantity, LinesUnitPrice, LinesUnitPriceCurrency in the example above have to correspond to real columns in the child table otherwise it will not work.
Below you can find other query examples with or without using temp tables.
INSERT INTO Customer (Id, Name) VALUES ('TEST_CST', 'Name')
INSERT INTO CustomerAddress (SalespersonId, SalesTerritoryId, Id, KeyCustomerId, Line1, Line2, City, State, CountryRegion, Fax, Phone1, Phone2, PostalCode) VALUES ('PAUL W.', 'TERRITORY 1', 'WAREHOUSE', 'TEST_CST', '11403 45 St. South', 'Billing Dept.', 'Chicago', 'IL', 'USA', '31255501010000', '42555501010000', '00000000000000', '98052-6399')
INSERT INTO Vendor (Id, Name, Comment1, Comment2) VALUES ('test11', 'Name', 'Comment1', 'Comment2')
INSERT INTO VendorAddress (SalespersonId, SalesTerritoryId, Id, KeyVendorId, Line1, Line2, City, State, CountryRegion, Fax, Phone1, Phone2, PostalCode) VALUES ('PAUL W.', 'TERRITORY 1', 'PRIMARY', 'test11', '11403 45 St. South', 'Billing Dept.', 'Chicago', 'IL', 'USA', '31255501010000', '42555501010000', '00000000000000', '98052-6399')
INSERT INTO PayablesCreditMemo (BatchId, Id, VendorId, PurchaseAmount, PurchaseAmountCurrency, VendorDocumentNumber) VALUES ('JAN-98', 'DM6502', 'CENTRALC0001', '100', 'USD', 'DOCUMENT 42')
INSERT INTO ApplicantApplications#TEMP (ApplicationsDateApplied, ApplicationsLastModifiedDate) VALUES ('2021-01-07T00:00:00+01:00','2021-01-07T00:00:00+01:00')
INSERT INTO Applicant (FirstName, LastName, ApplicationsAggregate) VALUES ('Test', 'Applicant', 'ApplicantApplications#TEMP')
INSERT INTO PurchaseOrderLines#TEMP (LinesQuantityOrdered, LinesVendorItemNumber, LinesWarehouseId) VALUES ('1', '100XLG', 'WAREHOUSE')
INSERT INTO PurchaseOrder (LinesAggregate, Id, VendorId) VALUES ('PurchaseOrderLines#TEMP', 'PO4056', 'ACETRAVE0001')
INSERT INTO SalesReturnLines#TEMP (LinesItemId, LinesWarehouseId, LinesQuantity, LinesUnitPrice, LinesUnitPriceCurrency) VALUES ('100XLG', 'WAREHOUSE', '1', '30', 'USD');
INSERT INTO SalesReturnLines#TEMP (LinesItemId, LinesWarehouseId, LinesQuantity, LinesUnitPrice, LinesUnitPriceCurrency) VALUES ('M1700', 'WAREHOUSE', '1', '30', 'USD');
INSERT INTO SalesReturn (BatchId, CustomerId, DocumentTypeKeyType, DocumentTypeId, LinesAggregate) VALUES ('SALES RETURNS', 'PLAZAONE0001', 'Return', 'RTN' , 'SalesReturnLines#TEMP');
Executing Delete
Some of the entities which are exposed as tables support delete operations. For example to delete a Customer from the Customer table we execute the following query:
DELETE FROM Customer WHERE Id='TEST_CST'
Executing Delete using multiple keys
Some delete operations require multiple keys in order for the query to be successful. For example to delete a CustomerAddress from the CustomerAddresses table requires both key columns the ID and the KeyCustomerId values to be set for ex:
DELETE FROM CustomerAddress WHERE Id='WAREHOUSE' AND KeyCustomerId='TEST2'
Below you can find other query examples with or without multiple keys.
DELETE FROM Applicant WHERE ApplicantId='2'
DELETE FROM SalesInvoice WHERE Id='STDINV2262'
DELETE FROM ApplicantApplication WHERE ApplicantApplicationKeyApplicantId='3' AND ApplicantApplicationKeySequenceId='1'
Executing Update
Some of the entities which are exposed as tables support update operations. For example to update a Customer from the Customer table we execute the following query:
UPDATE Customer SET Name='new test name',Comment1='new comment 1', Comment2='new comment 2' WHERE Id='TEST1'
Executing Update using multiple keys
Some update operations require multiple keys in order for the query to be successful. For example to update a CustomerAddress from the CustomerAddresses table requires both key columns the ID and the KeyCustomerId values to be set for ex:
UPDATE CustomerAddress SET Line1='new line 1', Line2='new line 2', City='new city', State='new state', Fax='111111111', Phone1='222222222', Phone2='3333333', PostalCode='235-325' WHERE KeyCustomerId='TEST1234' AND Id='WAREHOUSE'
UPDATE SalesInvoice SET CustomerId='AARONFIT0001', Date='2021-01-07T00:00:00+01:00' WHERE Id='STDINV2300' AND BatchId='CONTRACTS'
Note: When updating the tables SalesInvoice, SalesOrder, SalesQuote, SalesReturn, SalesBackorder, SalesFulfillmentOrder the Date column should be set for a successful query.
Executing Update using temporary tables
As explained in Executing Inserts using Temporary Tables
the temporary tables can also be used in update operations. Take a look at the query below which updates the quantity of the existing items in our invoice:
INSERT INTO SalesInvoiceLines#TEMP (LinesItemId, LinesWarehouseId, LinesQuantity, LinesUnitPrice, LinesUnitPriceCurrency) VALUES ('100XLG', 'WAREHOUSE', '2', '30', 'USD')
INSERT INTO SalesInvoiceLines#TEMP (LinesItemId, LinesWarehouseId, LinesQuantity, LinesUnitPrice, LinesUnitPriceCurrency) VALUES ('M1700', 'WAREHOUSE', '2', '30', 'USD')
UPDATE SalesInvoice SET Date='2021-01-07T00:00:00+01:00', LinesAggregate='SalesInvoiceLines#TEMP' WHERE Id='STDINV2300' AND BatchId='CONTRACTS'
Below you can find other query examples.
UPDATE SalesOrder SET CustomerId='AARONFIT0001', Date='2021-01-07T00:00:00+01:00' WHERE Id='ORDST2225' AND BatchId='SOP ORDERS'
INSERT INTO ApplicantApplications#TEMP (ApplicationsDateApplied, ApplicationsLastModifiedDate) VALUES ('2021-01-05T00:00:00+01:00','2021-01-07T00:00:00+01:00')
UPDATE Applicant SET FirstName='New Test Name', LastName='New Applicant Name', ApplicationsAggregate='ApplicantApplications#TEMP' WHERE ApplicantId='3'
UPDATE SalesQuote SET CustomerId='BAKERSEM0001', Date='2021-01-07T00:00:00+01:00' WHERE Id='QTEST1022' AND BatchId='SALES QUOTES'
UPDATE Vendor SET Name='new test name',Comment1='new comment 1', Comment2='new comment 2' WHERE Id='ACETRAVE0001'
UPDATE VendorAddress SET Line1='new line 1', Line2='new line 2', City='new city', State='new state', Fax='111111111', Phone1='222222222', Phone2='3333333', PostalCode='235-325' WHERE KeyVendorId='ACETRAVE0001' AND Id='PRIMARY'
Tables
The connector models the data in Microsoft Dynamics GP into a list of tables that can be queried using standard SQL statements.
Generally, querying Microsoft Dynamics GP tables is the same as querying a table in a relational database. Sometimes there are special cases, for example, including a certain column in the WHERE clause might be required to get data for certain columns in the table. This is typically needed for situations where a separate request must be made for each row to get certain columns. These types of situations are clearly documented at the top of the table page linked below.
Jitterbit Connector for Microsoft Dynamics GP Tables
Name | Description |
---|---|
Applicant | Return a list of: Applicant |
ApplicantEducation | Return a list of: ApplicantEducation |
ApplicantInterview | Return a list of: ApplicantInterview |
ApplicantReference | Return a list of: ApplicantReference |
ApplicantSkill | Return a list of: ApplicantSkill |
ApplicantTest | Return a list of: ApplicantTest |
ApplicantWorkHistory | Return a list of: ApplicantWorkHistory |
BackOfficeRoleAssignment | Return a list of: BackOfficeRoleAssignment |
BusinessObjectUserAssignment | Return a list of: BusinessObjectUserAssignment |
CashReceipt | Return a list of: CashReceipt |
Customer | Return a list of: Customer |
CustomerAddress | Return a list of: CustomerAddress |
Employee | Return a list of: Employee |
EmployeeAddress | Return a list of: EmployeeAddress |
EmployeePayCode | Return a list of: EmployeePayCode |
Fee | Return a list of: Fee |
GLFixedAllocationAccount | Return a list of: GLFixedAllocationAccount |
GLPostingAccount | Return a list of: GLPostingAccount |
GLTransaction | Return a list of: GLTransaction |
GLUnitAccount | Return a list of: GLUnitAccount |
GLVariableAllocationAccount | Return a list of: GLVariableAllocationAccount |
HRRequisition | Return a list of: HRRequisition |
InventoryAdjustment | Return a list of: InventoryAdjustment |
InventoryTransfer | Return a list of: InventoryTransfer |
InventoryVariance | Return a list of: InventoryVariance |
ItemCurrency | Return a list of: ItemCurrency |
ItemVendor | Return a list of: ItemVendor |
ItemWarehouse | Return a list of: ItemWarehouse |
PayablesCreditMemo | Return a list of: PayablesCreditMemo |
PayablesFinanceCharge | Return a list of: PayablesFinanceCharge |
PayablesInvoice | Return a list of: PayablesInvoice |
PayablesMiscellaneousCharge | Return a list of: PayablesMiscellaneousCharge |
PayablesReturn | Return a list of: PayablesReturn |
Policy | Return a list of: Policy |
Pricing | Return a list of: Pricing |
PurchaseInvoice | Return a list of: PurchaseInvoice |
PurchaseOrder | Return a list of: PurchaseOrder |
PurchaseReceipt | Return a list of: PurchaseReceipt |
ReceivablesCreditMemo | Return a list of: ReceivablesCreditMemo |
ReceivablesDebitMemo | Return a list of: ReceivablesDebitMemo |
ReceivablesFinanceCharge | Return a list of: ReceivablesFinanceCharge |
ReceivablesInvoice | Return a list of: ReceivablesInvoice |
ReceivablesReturn | Return a list of: ReceivablesReturn |
ReceivablesServiceRepair | Return a list of: ReceivablesServiceRepair |
ReceivablesWarranty | Return a list of: ReceivablesWarranty |
ReturnMaterialAuthorization | Return a list of: ReturnMaterialAuthorization |
SalesBackorder | Return a list of: SalesBackorder |
SalesFulfillmentOrder | Return a list of: SalesFulfillmentOrder |
SalesInvoice | Return a list of: SalesInvoice |
SalesOrder | Return a list of: SalesOrder |
SalesProcessHoldSetup | Return a list of: SalesProcessHoldSetup |
SalesQuote | Return a list of: SalesQuote |
SalesReturn | Return a list of: SalesReturn |
Service | Return a list of: Service |
ServiceCall | Return a list of: ServiceCall |
ServiceEquipment | Return a list of: ServiceEquipment |
ServiceQuote | Return a list of: ServiceQuote |
Skill | Return a list of: Skill |
SkillSet | Return a list of: SkillSet |
Vendor | Return a list of: Vendor |
VendorAddress | Return a list of: VendorAddress |
Warehouse | Return a list of: Warehouse |
Applicant
Return a list of: Applicant
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ExtensionsExtensionAggregate | String | False | |
AddressExtensionsExtensionAggregate | String | False | |
AddressCity | String | False | |
AddressLine1 | String | False | |
AddressLine2 | String | False | |
AddressLine3 | String | False | |
AddressPostalCode | String | False | |
AddressState | String | False | |
AddressCountryRegion | String | False | |
AddressFaxCountryCode | String | False | |
AddressFaxExtension | String | False | |
AddressFax | String | False | |
AddressPhone1CountryCode | String | False | |
AddressPhone1Extension | String | False | |
AddressPhone1 | String | False | |
AddressPhone2CountryCode | String | False | |
AddressPhone2Extension | String | False | |
AddressPhone2 | String | False | |
AddressPhone3CountryCode | String | False | |
AddressPhone3Extension | String | False | |
AddressPhone3 | String | False | |
AgeCode | String | False | |
ApplicantId [KEY] | Int | False | |
ApplicationColorColorCode | String | False | |
ApplicationColorColorName | String | False | |
ApplicationStatus | String | False | |
ApplicationsAggregate | String | False | |
CompanyCode | String | False | |
DateApplied | Datetime | False | |
DepartmentId | String | False | |
DivisionId | String | False | |
Ethnicity | String | False | |
FirstName | String | False | |
Gender | String | False | |
HRRequisistionId | String | False | |
InterviewsAggregate | String | False | |
IsDisabled | Bool | False | |
IsDisabledVeteran | Bool | False | |
IsOtherVeteran | Bool | False | |
IsReplyLetterSent | Bool | False | |
IsVeteran | Bool | False | |
IsVietnamEraVeteran | Bool | False | |
IsWillRelocate | Bool | False | |
LastModifiedBy | String | False | |
LastModifiedDate | Datetime | False | |
LastName | String | False | |
Location | String | False | |
MiddleName | String | False | |
PositionId | String | False | |
PreviousEmployersAggregate | String | False | |
ReferenceInformationSource | String | False | |
ReferenceInformationSourceDescription | String | False | |
ReferencesAggregate | String | False | |
RejectionInformationComment | String | False | |
RejectionInformationReason | String | False | |
SchoolsAggregate | String | False | |
SequenceId | Int | False | |
SkillsAggregate | String | False | |
TaxIdentifier | String | False | |
TestsAggregate | String | False |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
ApplicantEducation
Return a list of: ApplicantEducation
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ExtensionsExtensionAggregate | String | False | |
ApplicantEducationKeyApplicantId [KEY] | Int | False | |
ApplicantEducationKeySequenceId [KEY] | Int | False | |
Degree | String | False | |
DeleteOnUpdate | Bool | False | |
GPABase | String | False | |
GradePointAverage | String | False | |
LastModifiedBy | String | False | |
LastModifiedDate | Datetime | False | |
Major | String | False | |
Notes | String | False | |
School | String | False | |
YearGraduated | String | False |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
ApplicantInterview
Return a list of: ApplicantInterview
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ExtensionsExtensionAggregate | String | False | |
ApplicantInterviewKeyApplicantId [KEY] | Int | False | |
ApplicantInterviewKeyApplyDateId [KEY] | Datetime | False | |
ApplicantInterviewKeyInterviewTypeId [KEY] | String | False | |
CompanyCode | String | False | |
DeleteOnUpdate | Bool | False | |
DepartmentId | String | False | |
DivisionId | String | False | |
EffectiveDate | Datetime | False | |
InterviewItemsAggregate | String | False | |
InterviewTypeCode | Int | False | |
Notes | String | False | |
PositionId | String | False | |
ReviewRange | Int | False | |
ReviewRating | Decimal | False | |
TotalWeight | Int | False | |
WeightedScore | Int | False |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
ApplicantReference
Return a list of: ApplicantReference
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ExtensionsExtensionAggregate | String | False | |
AddressExtensionsExtensionAggregate | String | False | |
AddressCity | String | False | |
AddressLine1 | String | False | |
AddressLine2 | String | False | |
AddressLine3 | String | False | |
AddressPostalCode | String | False | |
AddressState | String | False | |
AddressCountryRegion | String | False | |
AddressFaxCountryCode | String | False | |
AddressFaxExtension | String | False | |
AddressFax | String | False | |
AddressPhone1CountryCode | String | False | |
AddressPhone1Extension | String | False | |
AddressPhone1 | String | False | |
AddressPhone2CountryCode | String | False | |
AddressPhone2Extension | String | False | |
AddressPhone2 | String | False | |
AddressPhone3CountryCode | String | False | |
AddressPhone3Extension | String | False | |
AddressPhone3 | String | False | |
ApplicantReferenceKeyApplicantSequenceKeyApplicantId [KEY] | Int | False | |
ApplicantReferenceKeyApplicantSequenceKeySequenceId [KEY] | Int | False | |
ApplicantReferenceId [KEY] | String | False | |
CompanyName | String | False | |
DeleteOnUpdate | Bool | False | |
LastModifiedBy | String | False | |
LastModifiedDate | Datetime | False | |
Notes | String | False | |
Relationship | String | False |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
ApplicantSkill
Return a list of: ApplicantSkill
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ExtensionsExtensionAggregate | String | False | |
ApplicantSkillKeyApplicantId [KEY] | Int | False | |
ApplicantSkillKeySkillId [KEY] | String | False | |
Comments | String | False | |
DeleteOnUpdate | Bool | False | |
Proficiency | Int | False | |
SkillNumber | Int | False |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
ApplicantTest
Return a list of: ApplicantTest
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ExtensionsExtensionAggregate | String | False | |
ApplicantTestKeyApplicantSequenceKeyApplicantId [KEY] | Int | False | |
ApplicantTestKeyApplicantSequenceKeySequenceId [KEY] | Int | False | |
ApplicantTestKeyTestId [KEY] | String | False | |
DeleteOnUpdate | Bool | False | |
LastModifiedBy | String | False | |
LastModifiedDate | Datetime | False | |
Notes | String | False | |
Score | String | False | |
TestDate | Datetime | False |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
ApplicantWorkHistory
Return a list of: ApplicantWorkHistory
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ExtensionsExtensionAggregate | String | False | |
ApplicantWorkHistoryKeyApplicantSequenceKeyApplicantId [KEY] | Int | False | |
ApplicantWorkHistoryKeyApplicantSequenceKeySequenceId [KEY] | Int | False | |
ApplicantWorkHistoryId [KEY] | String | False | |
CompensationPeriod | String | False | |
DeleteOnUpdate | Bool | False | |
EndDate | Datetime | False | |
LastModifiedBy | String | False | |
LastModifiedDate | Datetime | False | |
Notes | String | False | |
PositionId | String | False | |
StartDate | Datetime | False | |
Wage | Decimal | False | |
YearsOfExperience | Int | False |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
BackOfficeRoleAssignment
Return a list of: BackOfficeRoleAssignment
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ExtensionsExtensionAggregate | String | False | |
KeyRoleId [KEY] | String | False | |
KeyUserId [KEY] | String | False |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
BusinessObjectUserAssignment
Return a list of: BusinessObjectUserAssignment
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
BusinessObjectKey | String | False | |
BusinessObjectTypeId | String | False | |
User [KEY] | String | False |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
CashReceipt
Return a list of: CashReceipt
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ExtensionsExtensionAggregate | String | False | |
AmountCurrency | String | False | |
Amount | Decimal | False | |
AuditTrailCode | String | False | |
BankAccountId | String | False | |
BatchKeyCreatedDateTime | Datetime | False | |
BatchId | String | False | |
BatchKeySource | String | False | |
CheckCardNumber | String | False | |
CorporateAccountId | String | False | |
CurrencyKeyISOCode | String | False | |
CustomerId | String | False | |
Date | Datetime | False | |
Description | String | False | |
DistributionsAggregate | String | False | |
ExchangeDate | Datetime | False | |
ExchangeRate | Decimal | False | |
GeneralLedgerPostingDate | Datetime | False | |
IsVoided | Bool | False | |
Id [KEY] | String | False | |
ModifiedBy | String | False | |
ModifiedDate | Datetime | False | |
PaymentCardTypeId | String | False | |
PostedBy | String | False | |
PostedDate | Datetime | False | |
Type | String | False | |
VoidDate | Datetime | False |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
Customer
Return a list of: Customer
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ExtensionsExtensionAggregate | String | False | |
AccountsReceivableGLAccountId | String | False | |
AccountsReceivableGLAccountKeyIsEncrypted | Bool | False | |
AddressesAggregate | String | False | |
AllowRevaluation | Bool | False | |
BalanceType | String | False | |
BankAccountId | String | False | |
BankBranch | String | False | |
BankName | String | False | |
BillToAddressKeyCustomerId | String | False | |
BillToAddressId | String | False | |
CashGLAccountId | String | False | |
CashGLAccountKeyIsEncrypted | Bool | False | |
ClassId | String | False | |
Comment1 | String | False | |
Comment2 | String | False | |
CorporateAccountId | String | False | |
CostOfGoodsSoldGLAccountId | String | False | |
CostOfGoodsSoldGLAccountKeyIsEncrypted | Bool | False | |
CreatedDate | Datetime | False | |
CreditLimitItem | String | False | |
CreditLimitPeriod | Int | False | |
CreditLimitPeriodAmountCurrency | String | False | |
CreditLimitPeriodAmount | Decimal | False | |
CurrencyKeyISOCode | String | False | |
DefaultAddressKeyCustomerId | String | False | |
DefaultAddressId | String | False | |
DefaultCashAccountType | String | False | |
DiscountGracePeriod | Int | False | |
DueDateGracePeriod | Int | False | |
FinanceChargeItem | String | False | |
FinanceChargesGLAccountId | String | False | |
FinanceChargesGLAccountKeyIsEncrypted | Bool | False | |
HistoryOptionsKeepCalendarHistory | Bool | False | |
HistoryOptionsKeepDistributionHistory | Bool | False | |
HistoryOptionsKeepFiscalHistory | Bool | False | |
HistoryOptionsKeepTransactionHistory | Bool | False | |
IncludeInDemandPlanning | Bool | False | |
InventoryGLAccountId | String | False | |
InventoryGLAccountKeyIsEncrypted | Bool | False | |
IsActive | Bool | False | |
IsOnHold | Bool | False | |
Id [KEY] | String | False | |
LastModifiedDate | Datetime | False | |
MaximumWriteoffItem | String | False | |
MinimumPaymentItem | String | False | |
ModifiedDate | Datetime | False | |
Name | String | False | |
Notes | String | False | |
OrderFullfillmentShortageDefault | String | False | |
OverpaymentWriteoffGLAccountId | String | False | |
OverpaymentWriteoffGLAccountKeyIsEncrypted | Bool | False | |
PaymentCardAccountExpirationDate | Datetime | False | |
PaymentCardAccountKeyNumber | String | False | |
PaymentCardAccountKeyPaymentCardTypeId | String | False | |
PaymentTermsDiscountAvailableGLAccountId | String | False | |
PaymentTermsDiscountAvailableGLAccountKeyIsEncrypted | Bool | False | |
PaymentTermsDiscountTakenGLAccountId | String | False | |
PaymentTermsDiscountTakenGLAccountKeyIsEncrypted | Bool | False | |
PaymentTermsId | String | False | |
PostResultsTo | String | False | |
PriceLevelId | String | False | |
Priority | Int | False | |
RateTypeId | String | False | |
SalesGLAccountId | String | False | |
SalesGLAccountKeyIsEncrypted | Bool | False | |
SalesOrderReturnsGLAccountId | String | False | |
SalesOrderReturnsGLAccountKeyIsEncrypted | Bool | False | |
SendEmailStatements | Bool | False | |
ShipCompleteOnly | Bool | False | |
ShipToAddressKeyCustomerId | String | False | |
ShipToAddressId | String | False | |
Shortname | String | False | |
StatementCycle | String | False | |
StatementName | String | False | |
StatementRecipientsBCCAggregate | String | False | |
StatementRecipientsCCAggregate | String | False | |
StatementRecipientsToAggregate | String | False | |
StatementToAddressKeyCustomerId | String | False | |
StatementToAddressId | String | False | |
TaxExemptNumbersAggregate | String | False | |
TaxRegistrationNumber | String | False | |
TradeDiscountPercent | Decimal | False | |
UserDefined1 | String | False | |
UserDefined2 | String | False | |
UserLanguageId | Int | False | |
WriteoffGLAccountId | String | False | |
WriteoffGLAccountKeyIsEncrypted | Bool | False |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
CustomerAddress
Return a list of: CustomerAddress
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ExtensionsExtensionAggregate | String | False | |
City | String | False | |
Line1 | String | False | |
Line2 | String | False | |
Line3 | String | False | |
PostalCode | String | False | |
State | String | False | |
CountryRegion | String | False | |
FaxCountryCode | String | False | |
FaxExtension | String | False | |
Fax | String | False | |
Phone1CountryCode | String | False | |
Phone1Extension | String | False | |
Phone1 | String | False | |
Phone2CountryCode | String | False | |
Phone2Extension | String | False | |
Phone2 | String | False | |
Phone3CountryCode | String | False | |
Phone3Extension | String | False | |
Phone3 | String | False | |
CountryRegionCodeId | String | False | |
ContactPerson | String | False | |
Name | String | False | |
CreatedDate | Datetime | False | |
InternetAddressesAdditionalInformation | String | False | |
InternetAddressesEmailBccAddress | String | False | |
InternetAddressesEmailCcAddress | String | False | |
InternetAddressesEmailToAddress | String | False | |
InternetAddressesInternetField1 | String | False | |
InternetAddressesInternetField2 | String | False | |
InternetAddressesInternetField3 | String | False | |
InternetAddressesInternetField4 | String | False | |
InternetAddressesInternetField5 | String | False | |
InternetAddressesInternetField6 | String | False | |
InternetAddressesInternetField7 | String | False | |
InternetAddressesInternetField8 | String | False | |
InternetAddressesMessengerAddress | String | False | |
LastModifiedDate | Datetime | False | |
ModifiedDate | Datetime | False | |
ShippingMethodId | String | False | |
TaxScheduleId | String | False | |
UPSZone | String | False | |
UserDefined1 | String | False | |
UserDefined2 | String | False | |
DeleteOnUpdate | Bool | False | |
KeyCustomerId [KEY] | String | False | |
Id [KEY] | String | False | |
SalesTerritoryId | String | False | |
SalespersonId | String | False | |
WarehouseId | String | False |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
Employee
Return a list of: Employee
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ExtensionsExtensionAggregate | String | False | |
AddressesAggregate | String | False | |
BenefitExpiration | Datetime | False | |
BenefitStartDate | Datetime | False | |
BirthDate | Datetime | False | |
ClassId | String | False | |
CompanyAddressId | String | False | |
DayOfBirth | Int | False | |
DefaultAddressKeyEmployeeId | String | False | |
DefaultAddressId | String | False | |
DefaultCashAccountFromType | String | False | |
DepartmentId | String | False | |
DivisionId | String | False | |
DoesCalculateMinimumWageBalance | Bool | False | |
EmployeeInactivatedDate | Datetime | False | |
EmployeeId [KEY] | String | False | |
EmploymentStartDate | Datetime | False | |
EmploymentType | String | False | |
Ethnicity | String | False | |
FederalClass | String | False | |
GLAccountId | String | False | |
GLAccountKeyIsEncrypted | Bool | False | |
GenderCode | String | False | |
HRStatus | String | False | |
I9RenewDate | Datetime | False | |
IsActive | Bool | False | |
IsDisabled | Bool | False | |
IsDisabledVeteran | Bool | False | |
IsI9Verified | Bool | False | |
IsOtherVeteran | Bool | False | |
IsSmoker | Bool | False | |
IsUnionEmployee | Bool | False | |
IsUnitedStatesCitizen | Bool | False | |
IsVeteran | Bool | False | |
IsVietnamEraVeteran | Bool | False | |
LastWorkedDate | Datetime | False | |
MaritalStatus | String | False | |
MilitaryDischargeDate | Datetime | False | |
MinimumNetPayCurrency | String | False | |
MinimumNetPay | Decimal | False | |
ModifiedBy | String | False | |
ModifiedDate | Datetime | False | |
MonthOfBirth | String | False | |
NameAlternate | String | False | |
NameFamily | String | False | |
NameGiven | String | False | |
NameMiddle | String | False | |
NamePreferred | String | False | |
NameSuffix | String | False | |
PositionId | String | False | |
PrimaryPayCodeId | String | False | |
RateClass | String | False | |
ReasonEmployeeInactivated | String | False | |
ReviewLastDate | Datetime | False | |
ReviewNextDate | Datetime | False | |
SUTAStateId | String | False | |
SickTimeAccrualAmount | Decimal | False | |
SickTimeAccrualMethod | String | False | |
SickTimeDoesAutomaticallyAccrue | Bool | False | |
SickTimeHoursAvailable | Decimal | False | |
SickTimeHoursPerYear | Int | False | |
SickTimeWarnWhenHoursAvailableFallsBelowZero | Bool | False | |
SpouseName | String | False | |
SpouseTaxIdentifier | String | False | |
Status | String | False | |
SupervisorId | String | False | |
TaxIdentifier | String | False | |
UnionId | String | False | |
UserDefined1 | String | False | |
UserDefined2 | String | False | |
VacationAccrualAmount | Decimal | False | |
VacationAccrualMethod | String | False | |
VacationDoesAutomaticallyAccrue | Bool | False | |
VacationHoursAvailable | Decimal | False | |
VacationHoursPerYear | Int | False | |
VacationWarnWhenHoursAvailableFallsBelowZero | Bool | False | |
WorkHoursPerYear | Int | False | |
WorkersCompensationId | String | False |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
EmployeeAddress
Return a list of: EmployeeAddress
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ExtensionsExtensionAggregate | String | False | |
City | String | False | |
Line1 | String | False | |
Line2 | String | False | |
Line3 | String | False | |
PostalCode | String | False | |
State | String | False | |
CountryRegion | String | False | |
FaxCountryCode | String | False | |
FaxExtension | String | False | |
Fax | String | False | |
Phone1CountryCode | String | False | |
Phone1Extension | String | False | |
Phone1 | String | False | |
Phone2CountryCode | String | False | |
Phone2Extension | String | False | |
Phone2 | String | False | |
Phone3CountryCode | String | False | |
Phone3Extension | String | False | |
Phone3 | String | False | |
CountryRegionCodeId | String | False | |
County | String | False | |
DeleteOnUpdate | Bool | False | |
InternetAddressesAdditionalInformation | String | False | |
InternetAddressesEmailBccAddress | String | False | |
InternetAddressesEmailCcAddress | String | False | |
InternetAddressesEmailToAddress | String | False | |
InternetAddressesInternetField1 | String | False | |
InternetAddressesInternetField2 | String | False | |
InternetAddressesInternetField3 | String | False | |
InternetAddressesInternetField4 | String | False | |
InternetAddressesInternetField5 | String | False | |
InternetAddressesInternetField6 | String | False | |
InternetAddressesInternetField7 | String | False | |
InternetAddressesInternetField8 | String | False | |
InternetAddressesMessengerAddress | String | False | |
KeyEmployeeId [KEY] | String | False | |
Id [KEY] | String | False |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
EmployeePayCode
Return a list of: EmployeePayCode
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ExtensionsExtensionAggregate | String | False | |
ApplicableTaxesIsFederalTaxApplied | Bool | False | |
ApplicableTaxesIsFutaApplied | Bool | False | |
ApplicableTaxesIsLocalTaxApplied | Bool | False | |
ApplicableTaxesIsMedicareApplied | Bool | False | |
ApplicableTaxesIsSocialSecurityApplied | Bool | False | |
ApplicableTaxesIsStateTaxApplied | Bool | False | |
ApplicableTaxesIsSutaApplied | Bool | False | |
ApplicableTaxesSutaState | String | False | |
BasePayRecordId | String | False | |
BasedOnRate | Decimal | False | |
EmployeePayCodeKeyEmployeeId [KEY] | String | False | |
EmployeePayCodeKeyPayCodeId [KEY] | String | False | |
FlatTaxRatesFederal | Decimal | False | |
FlatTaxRatesState | Decimal | False | |
IsDataEntry | Bool | False | |
IsInactive | Bool | False | |
IsPrimaryPayRecord | Bool | False | |
IsReportAsWages | Bool | False | |
IsSickTimeAccrued | Bool | False | |
IsTaxable | Bool | False | |
IsVacationAccrued | Bool | False | |
MaxPayPerPeriod | Decimal | False | |
Notes | String | False | |
PayAdvance | Decimal | False | |
PayAdvanceTaken | Decimal | False | |
PayFactor | Decimal | False | |
PayPerPeriod | Decimal | False | |
PayPeriod | String | False | |
PayRate | Decimal | False | |
PayStepBasedOn | String | False | |
PayStepEffectiveDate | Datetime | False | |
PayStepPayStepId | String | False | |
PayStepStep | Int | False | |
PayStepStepFTE | Decimal | False | |
PayType | String | False | |
PayUnit | String | False | |
PayUnitPeriod | String | False | |
ShiftCode | String | False | |
TipType | String | False | |
W2BoxesLabelsW2BoxLabel1 | String | False | |
W2BoxesLabelsW2BoxLabel2 | String | False | |
W2BoxesLabelsW2BoxLabel3 | String | False | |
W2BoxesLabelsW2BoxLabel4 | String | False | |
W2BoxesLabelsW2BoxNumber1 | Int | False | |
W2BoxesLabelsW2BoxNumber2 | Int | False | |
W2BoxesLabelsW2BoxNumber3 | Int | False | |
W2BoxesLabelsW2BoxNumber4 | Int | False | |
WorkersComp | String | False |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
Fee
Return a list of: Fee
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ExtensionsExtensionAggregate | String | False | |
ABCCode | String | False | |
AllowBackOrder | Bool | False | |
AssemblyVarianceGLAccountId | String | False | |
AssemblyVarianceGLAccountKeyIsEncrypted | Bool | False | |
ClassId | String | False | |
CostofGoodsSoldGLAccountId | String | False | |
CostofGoodsSoldGLAccountKeyIsEncrypted | Bool | False | |
CreatedDate | Datetime | False | |
CurrencyDecimalPlaces | String | False | |
CurrentCostCurrency | String | False | |
CurrentCost | Decimal | False | |
DamagedGLAccountId | String | False | |
DamagedGLAccountKeyIsEncrypted | Bool | False | |
DefaultPriceLevelId | String | False | |
DefaultSellingUofM | String | False | |
DefaultWarehouseId | String | False | |
Description | String | False | |
DropShipGLAccountId | String | False | |
DropShipGLAccountKeyIsEncrypted | Bool | False | |
FunctionalCurrencyDecimalPlaces | String | False | |
GenericDescription | String | False | |
InServiceGLAccountId | String | False | |
InServiceGLAccountKeyIsEncrypted | Bool | False | |
InUseGLAccountId | String | False | |
InUseGLAccountKeyIsEncrypted | Bool | False | |
IncludeInDemandPlanning | Bool | False | |
InternetAddressesAdditionalInformation | String | False | |
InternetAddressesEmailBccAddress | String | False | |
InternetAddressesEmailCcAddress | String | False | |
InternetAddressesEmailToAddress | String | False | |
InternetAddressesInternetField1 | String | False | |
InternetAddressesInternetField2 | String | False | |
InternetAddressesInternetField3 | String | False | |
InternetAddressesInternetField4 | String | False | |
InternetAddressesInternetField5 | String | False | |
InternetAddressesInternetField6 | String | False | |
InternetAddressesInternetField7 | String | False | |
InternetAddressesInternetField8 | String | False | |
InternetAddressesMessengerAddress | String | False | |
InventoryGLAccountId | String | False | |
InventoryGLAccountKeyIsEncrypted | Bool | False | |
InventoryOffsetGLAccountId | String | False | |
InventoryOffsetGLAccountKeyIsEncrypted | Bool | False | |
InventoryReturnGLAccountId | String | False | |
InventoryReturnGLAccountKeyIsEncrypted | Bool | False | |
IsDiscontinued | Bool | False | |
KeepCalendarYearHistory | Bool | False | |
KeepDistributionHistory | Bool | False | |
KeepFiscalYearHistory | Bool | False | |
KeepTransactionHistory | Bool | False | |
Id [KEY] | String | False | |
LastModifiedDate | Datetime | False | |
MarkdownGLAccountId | String | False | |
MarkdownGLAccountKeyIsEncrypted | Bool | False | |
ModifiedDate | Datetime | False | |
PriceMethod | String | False | |
PurchasePriceVarianceGLAccountId | String | False | |
PurchasePriceVarianceGLAccountKeyIsEncrypted | Bool | False | |
PurchaseTaxBasis | String | False | |
PurchaseTaxScheduleId | String | False | |
PurchaseUofM | String | False | |
QuantityDecimalPlaces | String | False | |
SalesGLAccountId | String | False | |
SalesGLAccountKeyIsEncrypted | Bool | False | |
SalesReturnGLAccountId | String | False | |
SalesReturnGLAccountKeyIsEncrypted | Bool | False | |
SalesTaxBasis | String | False | |
SalesTaxScheduleId | String | False | |
ShippingWeight | Decimal | False | |
ShortDescription | String | False | |
StandardCostCurrency | String | False | |
StandardCost | Decimal | False | |
SubstituteItem1Id | String | False | |
SubstituteItem2Id | String | False | |
Type | String | False | |
UnrealizedPurchasePriceVarianceGLAccountId | String | False | |
UnrealizedPurchasePriceVarianceGLAccountKeyIsEncrypted | Bool | False | |
UofMScheduleId | String | False | |
UserCategoryList1 | String | False | |
UserCategoryList2 | String | False | |
UserCategoryList3 | String | False | |
UserCategoryList4 | String | False | |
UserCategoryList5 | String | False | |
UserCategoryList6 | String | False | |
VarianceGLAccountId | String | False | |
VarianceGLAccountKeyIsEncrypted | Bool | False | |
WarrantyDays | Short | False |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
GLFixedAllocationAccount
Return a list of: GLFixedAllocationAccount
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ExtensionsExtensionAggregate | String | False | |
Alias | String | False | |
CreatedDate | Datetime | False | |
Description | String | False | |
IsActive | Bool | False | |
Id [KEY] | String | False | |
KeyIsEncrypted [KEY] | Bool | False | |
ModifiedDate | Datetime | False | |
Type | String | False | |
PostInventoryIn | String | False | |
PostPayrollIn | String | False | |
PostPurchasingIn | String | False | |
PostSalesIn | String | False | |
DistributionsAggregate | String | False |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
GLPostingAccount
Return a list of: GLPostingAccount
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ExtensionsExtensionAggregate | String | False | |
Alias | String | False | |
CreatedDate | Datetime | False | |
Description | String | False | |
IsActive | Bool | False | |
Id [KEY] | String | False | |
KeyIsEncrypted [KEY] | Bool | False | |
ModifiedDate | Datetime | False | |
Type | String | False | |
PostInventoryIn | String | False | |
PostPayrollIn | String | False | |
PostPurchasingIn | String | False | |
PostSalesIn | String | False | |
AllowAccountEntry | Bool | False | |
CurrenciesAggregate | String | False | |
GLAccountCategoryId | String | False | |
IsRevalued | Bool | False | |
PostRevaluationResultsTo | String | False | |
PostingType | String | False | |
RevaluationMethod | String | False | |
TypicalBalance | String | False | |
UserDefined1 | String | False | |
UserDefined2 | String | False | |
UserDefined3 | String | False | |
UserDefined4 | String | False |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
GLTransaction
Return a list of: GLTransaction
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ExtensionsExtensionAggregate | String | False | |
AuditTrailCode | String | False | |
BatchKeyCreatedDateTime | Datetime | False | |
BatchId | String | False | |
BatchKeySource | String | False | |
CurrencyKeyISOCode | String | False | |
ExchangeDate | Datetime | False | |
ExchangeRate | Decimal | False | |
IntercompanyId | Int | False | |
IntercompanyOriginalJournalId | Int | False | |
IsVoided | Bool | False | |
KeyDate [KEY] | Datetime | False | |
KeyJournalId [KEY] | Int | False | |
LedgerType | String | False | |
LinesAggregate | String | False | |
ModifiedBy | String | False | |
ModifiedDate | Datetime | False | |
OriginatingDocumentAuditTrailCode | String | False | |
OriginatingDocumentPostedDate | Datetime | False | |
OriginatingDocumentSeries | String | False | |
PostedBy | String | False | |
Reference | String | False | |
SourceDocumentId | String | False | |
TransactionState | String | False |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
GLUnitAccount
Return a list of: GLUnitAccount
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ExtensionsExtensionAggregate | String | False | |
Alias | String | False | |
CreatedDate | Datetime | False | |
Description | String | False | |
IsActive | Bool | False | |
Id [KEY] | String | False | |
KeyIsEncrypted [KEY] | Bool | False | |
ModifiedDate | Datetime | False | |
Type | String | False | |
DecimalPlaces | String | False |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
GLVariableAllocationAccount
Return a list of: GLVariableAllocationAccount
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ExtensionsExtensionAggregate | String | False | |
Alias | String | False | |
CreatedDate | Datetime | False | |
Description | String | False | |
IsActive | Bool | False | |
Id [KEY] | String | False | |
KeyIsEncrypted [KEY] | Bool | False | |
ModifiedDate | Datetime | False | |
Type | String | False | |
PostInventoryIn | String | False | |
PostPayrollIn | String | False | |
PostPurchasingIn | String | False | |
PostSalesIn | String | False | |
BalanceForCalculation | String | False | |
DistributionsAggregate | String | False |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
HRRequisition
Return a list of: HRRequisition
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ExtensionsExtensionAggregate | String | False | |
AdvertisingListLine1 | String | False | |
AdvertisingListLine2 | String | False | |
AdvertisingListLine3 | String | False | |
AdvertisingListLine4 | String | False | |
AdvertisingListLine5 | String | False | |
ApplicantsApplied | Int | False | |
ApplicantsInterviewed | Int | False | |
CompanyCode | String | False | |
DepartmentId | String | False | |
DivisionId | String | False | |
InternalCloseDate | Datetime | False | |
InternalPostDate | Datetime | False | |
JobPostingType | String | False | |
LastModifiedBy | String | False | |
LastModifiedDate | Datetime | False | |
ManagerId | String | False | |
OpeningDate | Datetime | False | |
PositionId | String | False | |
PositionsAvailable | Int | False | |
PositionsFilled | Int | False | |
Recruiter | String | False | |
RequisitionCostsAdvertising | Decimal | False | |
RequisitionCostsLodging | Decimal | False | |
RequisitionCostsMovingExpenses | Decimal | False | |
RequisitionCostsOther | Decimal | False | |
RequisitionCostsRecruiterFees | Decimal | False | |
RequisitionCostsTravel | Decimal | False | |
RequisitionNumberId [KEY] | String | False | |
Status | String | False | |
SupervisorId | String | False |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
InventoryAdjustment
Return a list of: InventoryAdjustment
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ExtensionsExtensionAggregate | String | False | |
AuditTrailCode | String | False | |
BatchKeyCreatedDateTime | Datetime | False | |
BatchId | String | False | |
BatchKeySource | String | False | |
CreatedDate | Datetime | False | |
Date | Datetime | False | |
GLPostingDate | Datetime | False | |
Id [KEY] | String | False | |
ModifiedDate | Datetime | False | |
TransactionState | String | False | |
LinesAggregate | String | False |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
InventoryTransfer
Return a list of: InventoryTransfer
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ExtensionsExtensionAggregate | String | False | |
AuditTrailCode | String | False | |
BatchKeyCreatedDateTime | Datetime | False | |
BatchId | String | False | |
BatchKeySource | String | False | |
CreatedDate | Datetime | False | |
Date | Datetime | False | |
GLPostingDate | Datetime | False | |
Id [KEY] | String | False | |
ModifiedDate | Datetime | False | |
TransactionState | String | False | |
LinesAggregate | String | False |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
InventoryVariance
Return a list of: InventoryVariance
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ExtensionsExtensionAggregate | String | False | |
AuditTrailCode | String | False | |
BatchKeyCreatedDateTime | Datetime | False | |
BatchId | String | False | |
BatchKeySource | String | False | |
CreatedDate | Datetime | False | |
Date | Datetime | False | |
GLPostingDate | Datetime | False | |
Id [KEY] | String | False | |
ModifiedDate | Datetime | False | |
TransactionState | String | False | |
LinesAggregate | String | False |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
ItemCurrency
Return a list of: ItemCurrency
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ExtensionsExtensionAggregate | String | False | |
CurrencyDecimalPlaces | String | False | |
KeyCurrencyKeyISOCode [KEY] | String | False | |
KeyItemId [KEY] | String | False | |
ListPriceCurrency | String | False | |
ListPrice | Decimal | False |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
ItemVendor
Return a list of: ItemVendor
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ExtensionsExtensionAggregate | String | False | |
AverageLeadTime | Decimal | False | |
EconomicOrderQuantity | Decimal | False | |
FreeOnBoard | String | False | |
KeyItemId [KEY] | String | False | |
KeyVendorId [KEY] | String | False | |
LastCurrencyKeyISOCode | String | False | |
LastOriginatingCostCurrency | String | False | |
LastOriginatingCost | Decimal | False | |
MaximumOrderQuantity | Decimal | False | |
MinimumOrderQuantity | Decimal | False | |
NumberOfReceipts | Short | False | |
OrderMultipleQuantity | Decimal | False | |
PlanningLeadTime | Short | False | |
PurchasingUofM | String | False | |
RequisitionedQuantity | Decimal | False | |
VendorItemDescription | String | False | |
VendorItemNumber | String | False |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
ItemWarehouse
Return a list of: ItemWarehouse
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ExtensionsExtensionAggregate | String | False | |
Bin | String | False | |
BuyerId | String | False | |
KeyItemId [KEY] | String | False | |
KeyWarehouseId [KEY] | String | False | |
LandedCostGroupId | String | False | |
PlannerId | String | False | |
PlanningFixedOrderQuantity | Decimal | False | |
PlanningManufacturingLeadTime | Decimal | False | |
PlanningMaximumOrderQuantity | Decimal | False | |
PlanningMinimumOrderQuantity | Decimal | False | |
PlanningOrderMultipleQuantity | Decimal | False | |
PlanningOrderPointQuantity | Decimal | False | |
PlanningOrderPolicy | String | False | |
PlanningOrderUpToLevelQuantity | Decimal | False | |
PlanningPurchasingLeadTime | Decimal | False | |
PlanningReorderVarianceQuantity | Decimal | False | |
PlanningReplenishmentMethod | String | False | |
PlanningSafetyStockQuantity | Decimal | False | |
PlanningShrinkageFactor | Decimal | False | |
PlanningTimeFence | Short | False | |
PrimaryVendorId | String | False | |
RequisitionedQuantity | Decimal | False |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
PayablesCreditMemo
Return a list of: PayablesCreditMemo
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ExtensionsExtensionAggregate | String | False | |
AddressId | String | False | |
Amount1099Currency | String | False | |
Amount1099 | Decimal | False | |
AuditTrailCode | String | False | |
BatchKeyCreatedDateTime | Datetime | False | |
BatchId | String | False | |
BatchKeySource | String | False | |
ChargeAmountCurrency | String | False | |
ChargeAmount | Decimal | False | |
CurrencyKeyISOCode | String | False | |
Date | Datetime | False | |
Description | String | False | |
DistributionsAggregate | String | False | |
DocumentAmountCurrency | String | False | |
DocumentAmount | Decimal | False | |
ExchangeDate | Datetime | False | |
ExchangeRate | Decimal | False | |
FreightAmountCurrency | String | False | |
FreightAmount | Decimal | False | |
FreightTaxScheduleId | String | False | |
GeneralLedgerPostingDate | Datetime | False | |
HasIntercompanyDistributions | Bool | False | |
IsIntercompanyTransaction | Bool | False | |
IsVoided | Bool | False | |
Id [KEY] | String | False | |
MiscellaneousAmountCurrency | String | False | |
MiscellaneousAmount | Decimal | False | |
MiscellaneousTaxScheduleId | String | False | |
ModifiedBy | String | False | |
ModifiedDate | Datetime | False | |
PONumber | String | False | |
PostedBy | String | False | |
PostedDate | Datetime | False | |
PurchaseTaxScheduleId | String | False | |
PurchasesAmountCurrency | String | False | |
PurchasesAmount | Decimal | False | |
RemitToAddressId | String | False | |
ShippingMethodId | String | False | |
TaxAmountCurrency | String | False | |
TaxAmount | Decimal | False | |
TaxDate | Datetime | False | |
TaxScheduleId | String | False | |
TaxesAggregate | String | False | |
TradeDiscountAmountCurrency | String | False | |
TradeDiscountAmount | Decimal | False | |
TransactionState | String | False | |
Type | String | False | |
VendorDocumentNumber | String | False | |
VendorId | String | False | |
VendorName | String | False |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
PayablesFinanceCharge
Return a list of: PayablesFinanceCharge
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ExtensionsExtensionAggregate | String | False | |
AddressId | String | False | |
Amount1099Currency | String | False | |
Amount1099 | Decimal | False | |
AuditTrailCode | String | False | |
BatchKeyCreatedDateTime | Datetime | False | |
BatchId | String | False | |
BatchKeySource | String | False | |
ChargeAmountCurrency | String | False | |
ChargeAmount | Decimal | False | |
CurrencyKeyISOCode | String | False | |
Date | Datetime | False | |
Description | String | False | |
DistributionsAggregate | String | False | |
DocumentAmountCurrency | String | False | |
DocumentAmount | Decimal | False | |
ExchangeDate | Datetime | False | |
ExchangeRate | Decimal | False | |
FreightAmountCurrency | String | False | |
FreightAmount | Decimal | False | |
FreightTaxScheduleId | String | False | |
GeneralLedgerPostingDate | Datetime | False | |
HasIntercompanyDistributions | Bool | False | |
IsIntercompanyTransaction | Bool | False | |
IsVoided | Bool | False | |
Id [KEY] | String | False | |
MiscellaneousAmountCurrency | String | False | |
MiscellaneousAmount | Decimal | False | |
MiscellaneousTaxScheduleId | String | False | |
ModifiedBy | String | False | |
ModifiedDate | Datetime | False | |
PONumber | String | False | |
PostedBy | String | False | |
PostedDate | Datetime | False | |
PurchaseTaxScheduleId | String | False | |
PurchasesAmountCurrency | String | False | |
PurchasesAmount | Decimal | False | |
RemitToAddressId | String | False | |
ShippingMethodId | String | False | |
TaxAmountCurrency | String | False | |
TaxAmount | Decimal | False | |
TaxDate | Datetime | False | |
TaxScheduleId | String | False | |
TaxesAggregate | String | False | |
TradeDiscountAmountCurrency | String | False | |
TradeDiscountAmount | Decimal | False | |
TransactionState | String | False | |
Type | String | False | |
VendorDocumentNumber | String | False | |
VendorId | String | False | |
VendorName | String | False | |
PaymentCashAmountCurrency | String | False | |
PaymentCashAmount | Decimal | False | |
PaymentCashBankAccountId | String | False | |
PaymentCashDate | Datetime | False | |
PaymentCashNumber | String | False | |
PaymentCashDocumentId | String | False | |
PaymentCheckAmountCurrency | String | False | |
PaymentCheckAmount | Decimal | False | |
PaymentCheckBankAccountId | String | False | |
PaymentCheckCheckNumber | String | False | |
PaymentCheckDate | Datetime | False | |
PaymentCheckNumber | String | False | |
PaymentPaymentCardAmountCurrency | String | False | |
PaymentPaymentCardAmount | Decimal | False | |
PaymentPaymentCardDate | Datetime | False | |
PaymentPaymentCardNumber | String | False | |
PaymentPaymentCardReceiptNumber | String | False | |
PaymentPaymentCardTypeId | String | False | |
TermsDiscountItem | String | False | |
TermsDiscountAvailableAmountCurrency | String | False | |
TermsDiscountAvailableAmount | Decimal | False | |
TermsDiscountDate | Datetime | False | |
TermsDueDate | Datetime | False | |
TermsDiscountAmountAppliedTakenCurrency | String | False | |
TermsDiscountAmountAppliedTaken | Decimal | False | |
TermsDiscountTakenAmountCurrency | String | False | |
TermsDiscountTakenAmount | Decimal | False | |
TotalPaymentsCurrency | String | False | |
TotalPayments | Decimal | False | |
WriteoffAmountCurrency | String | False | |
WriteoffAmount | Decimal | False |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
PayablesInvoice
Return a list of: PayablesInvoice
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ExtensionsExtensionAggregate | String | False | |
AddressId | String | False | |
Amount1099Currency | String | False | |
Amount1099 | Decimal | False | |
AuditTrailCode | String | False | |
BatchKeyCreatedDateTime | Datetime | False | |
BatchId | String | False | |
BatchKeySource | String | False | |
ChargeAmountCurrency | String | False | |
ChargeAmount | Decimal | False | |
CurrencyKeyISOCode | String | False | |
Date | Datetime | False | |
Description | String | False | |
DistributionsAggregate | String | False | |
DocumentAmountCurrency | String | False | |
DocumentAmount | Decimal | False | |
ExchangeDate | Datetime | False | |
ExchangeRate | Decimal | False | |
FreightAmountCurrency | String | False | |
FreightAmount | Decimal | False | |
FreightTaxScheduleId | String | False | |
GeneralLedgerPostingDate | Datetime | False | |
HasIntercompanyDistributions | Bool | False | |
IsIntercompanyTransaction | Bool | False | |
IsVoided | Bool | False | |
Id [KEY] | String | False | |
MiscellaneousAmountCurrency | String | False | |
MiscellaneousAmount | Decimal | False | |
MiscellaneousTaxScheduleId | String | False | |
ModifiedBy | String | False | |
ModifiedDate | Datetime | False | |
PONumber | String | False | |
PostedBy | String | False | |
PostedDate | Datetime | False | |
PurchaseTaxScheduleId | String | False | |
PurchasesAmountCurrency | String | False | |
PurchasesAmount | Decimal | False | |
RemitToAddressId | String | False | |
ShippingMethodId | String | False | |
TaxAmountCurrency | String | False | |
TaxAmount | Decimal | False | |
TaxDate | Datetime | False | |
TaxScheduleId | String | False | |
TaxesAggregate | String | False | |
TradeDiscountAmountCurrency | String | False | |
TradeDiscountAmount | Decimal | False | |
TransactionState | String | False | |
Type | String | False | |
VendorDocumentNumber | String | False | |
VendorId | String | False | |
VendorName | String | False | |
PaymentCashAmountCurrency | String | False | |
PaymentCashAmount | Decimal | False | |
PaymentCashBankAccountId | String | False | |
PaymentCashDate | Datetime | False | |
PaymentCashNumber | String | False | |
PaymentCashDocumentId | String | False | |
PaymentCheckAmountCurrency | String | False | |
PaymentCheckAmount | Decimal | False | |
PaymentCheckBankAccountId | String | False | |
PaymentCheckCheckNumber | String | False | |
PaymentCheckDate | Datetime | False | |
PaymentCheckNumber | String | False | |
PaymentPaymentCardAmountCurrency | String | False | |
PaymentPaymentCardAmount | Decimal | False | |
PaymentPaymentCardDate | Datetime | False | |
PaymentPaymentCardNumber | String | False | |
PaymentPaymentCardReceiptNumber | String | False | |
PaymentPaymentCardTypeId | String | False | |
TermsDiscountItem | String | False | |
TermsDiscountAvailableAmountCurrency | String | False | |
TermsDiscountAvailableAmount | Decimal | False | |
TermsDiscountDate | Datetime | False | |
TermsDueDate | Datetime | False | |
TermsDiscountAmountAppliedTakenCurrency | String | False | |
TermsDiscountAmountAppliedTaken | Decimal | False | |
TermsDiscountTakenAmountCurrency | String | False | |
TermsDiscountTakenAmount | Decimal | False | |
TotalPaymentsCurrency | String | False | |
TotalPayments | Decimal | False | |
WriteoffAmountCurrency | String | False | |
WriteoffAmount | Decimal | False | |
PaymentTermsId | String | False |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
PayablesMiscellaneousCharge
Return a list of: PayablesMiscellaneousCharge
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ExtensionsExtensionAggregate | String | False | |
AddressId | String | False | |
Amount1099Currency | String | False | |
Amount1099 | Decimal | False | |
AuditTrailCode | String | False | |
BatchKeyCreatedDateTime | Datetime | False | |
BatchId | String | False | |
BatchKeySource | String | False | |
ChargeAmountCurrency | String | False | |
ChargeAmount | Decimal | False | |
CurrencyKeyISOCode | String | False | |
Date | Datetime | False | |
Description | String | False | |
DistributionsAggregate | String | False | |
DocumentAmountCurrency | String | False | |
DocumentAmount | Decimal | False | |
ExchangeDate | Datetime | False | |
ExchangeRate | Decimal | False | |
FreightAmountCurrency | String | False | |
FreightAmount | Decimal | False | |
FreightTaxScheduleId | String | False | |
GeneralLedgerPostingDate | Datetime | False | |
HasIntercompanyDistributions | Bool | False | |
IsIntercompanyTransaction | Bool | False | |
IsVoided | Bool | False | |
Id [KEY] | String | False | |
MiscellaneousAmountCurrency | String | False | |
MiscellaneousAmount | Decimal | False | |
MiscellaneousTaxScheduleId | String | False | |
ModifiedBy | String | False | |
ModifiedDate | Datetime | False | |
PONumber | String | False | |
PostedBy | String | False | |
PostedDate | Datetime | False | |
PurchaseTaxScheduleId | String | False | |
PurchasesAmountCurrency | String | False | |
PurchasesAmount | Decimal | False | |
RemitToAddressId | String | False | |
ShippingMethodId | String | False | |
TaxAmountCurrency | String | False | |
TaxAmount | Decimal | False | |
TaxDate | Datetime | False | |
TaxScheduleId | String | False | |
TaxesAggregate | String | False | |
TradeDiscountAmountCurrency | String | False | |
TradeDiscountAmount | Decimal | False | |
TransactionState | String | False | |
Type | String | False | |
VendorDocumentNumber | String | False | |
VendorId | String | False | |
VendorName | String | False | |
PaymentCashAmountCurrency | String | False | |
PaymentCashAmount | Decimal | False | |
PaymentCashBankAccountId | String | False | |
PaymentCashDate | Datetime | False | |
PaymentCashNumber | String | False | |
PaymentCashDocumentId | String | False | |
PaymentCheckAmountCurrency | String | False | |
PaymentCheckAmount | Decimal | False | |
PaymentCheckBankAccountId | String | False | |
PaymentCheckCheckNumber | String | False | |
PaymentCheckDate | Datetime | False | |
PaymentCheckNumber | String | False | |
PaymentPaymentCardAmountCurrency | String | False | |
PaymentPaymentCardAmount | Decimal | False | |
PaymentPaymentCardDate | Datetime | False | |
PaymentPaymentCardNumber | String | False | |
PaymentPaymentCardReceiptNumber | String | False | |
PaymentPaymentCardTypeId | String | False | |
TermsDiscountItem | String | False | |
TermsDiscountAvailableAmountCurrency | String | False | |
TermsDiscountAvailableAmount | Decimal | False | |
TermsDiscountDate | Datetime | False | |
TermsDueDate | Datetime | False | |
TermsDiscountAmountAppliedTakenCurrency | String | False | |
TermsDiscountAmountAppliedTaken | Decimal | False | |
TermsDiscountTakenAmountCurrency | String | False | |
TermsDiscountTakenAmount | Decimal | False | |
TotalPaymentsCurrency | String | False | |
TotalPayments | Decimal | False | |
WriteoffAmountCurrency | String | False | |
WriteoffAmount | Decimal | False | |
PaymentTermsId | String | False |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
PayablesReturn
Return a list of: PayablesReturn
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ExtensionsExtensionAggregate | String | False | |
AddressId | String | False | |
Amount1099Currency | String | False | |
Amount1099 | Decimal | False | |
AuditTrailCode | String | False | |
BatchKeyCreatedDateTime | Datetime | False | |
BatchId | String | False | |
BatchKeySource | String | False | |
ChargeAmountCurrency | String | False | |
ChargeAmount | Decimal | False | |
CurrencyKeyISOCode | String | False | |
Date | Datetime | False | |
Description | String | False | |
DistributionsAggregate | String | False | |
DocumentAmountCurrency | String | False | |
DocumentAmount | Decimal | False | |
ExchangeDate | Datetime | False | |
ExchangeRate | Decimal | False | |
FreightAmountCurrency | String | False | |
FreightAmount | Decimal | False | |
FreightTaxScheduleId | String | False | |
GeneralLedgerPostingDate | Datetime | False | |
HasIntercompanyDistributions | Bool | False | |
IsIntercompanyTransaction | Bool | False | |
IsVoided | Bool | False | |
Id [KEY] | String | False | |
MiscellaneousAmountCurrency | String | False | |
MiscellaneousAmount | Decimal | False | |
MiscellaneousTaxScheduleId | String | False | |
ModifiedBy | String | False | |
ModifiedDate | Datetime | False | |
PONumber | String | False | |
PostedBy | String | False | |
PostedDate | Datetime | False | |
PurchaseTaxScheduleId | String | False | |
PurchasesAmountCurrency | String | False | |
PurchasesAmount | Decimal | False | |
RemitToAddressId | String | False | |
ShippingMethodId | String | False | |
TaxAmountCurrency | String | False | |
TaxAmount | Decimal | False | |
TaxDate | Datetime | False | |
TaxScheduleId | String | False | |
TaxesAggregate | String | False | |
TradeDiscountAmountCurrency | String | False | |
TradeDiscountAmount | Decimal | False | |
TransactionState | String | False | |
Type | String | False | |
VendorDocumentNumber | String | False | |
VendorId | String | False | |
VendorName | String | False | |
DiscountReturnedAmountCurrency | String | False | |
DiscountReturnedAmount | Decimal | False | |
PaymentCashAmountCurrency | String | False | |
PaymentCashAmount | Decimal | False | |
PaymentCashBankAccountId | String | False | |
PaymentCashDate | Datetime | False | |
PaymentCashNumber | String | False | |
PaymentCashDocumentId | String | False | |
PaymentCheckAmountCurrency | String | False | |
PaymentCheckAmount | Decimal | False | |
PaymentCheckBankAccountId | String | False | |
PaymentCheckCheckNumber | String | False | |
PaymentCheckDate | Datetime | False | |
PaymentCheckNumber | String | False | |
PaymentPaymentCardAmountCurrency | String | False | |
PaymentPaymentCardAmount | Decimal | False | |
PaymentPaymentCardDate | Datetime | False | |
PaymentPaymentCardNumber | String | False | |
PaymentPaymentCardReceiptNumber | String | False | |
PaymentPaymentCardTypeId | String | False | |
TotalPaymentsCurrency | String | False | |
TotalPayments | Decimal | False | |
WriteoffAmountCurrency | String | False | |
WriteoffAmount | Decimal | False |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
Policy
Return a list of: Policy
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
BehaviorsAggregate | String | False | |
Id [KEY] | String | False | |
Name | String | False | |
RootBusinessObjectName | String | False |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
Pricing
Return a list of: Pricing
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ExtensionsExtensionAggregate | String | False | |
DetailsAggregate | String | False | |
KeyCurrencyKeyISOCode [KEY] | String | False | |
KeyItemId [KEY] | String | False | |
KeyPriceLevelId [KEY] | String | False | |
KeyUofM [KEY] | String | False | |
LastModifiedBy | String | False | |
LastModifiedDate | Datetime | False | |
RoundAmountCurrency | String | False | |
RoundAmount | Decimal | False | |
RoundOption | String | False | |
RoundPolicy | String | False | |
UofMSalesOption | String | False |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
PurchaseInvoice
Return a list of: PurchaseInvoice
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ExtensionsExtensionAggregate | String | False | |
Amount1099Currency | String | False | |
Amount1099 | Decimal | False | |
AuditTrailCode | String | False | |
BatchKeyCreatedDateTime | Datetime | False | |
BatchId | String | False | |
BatchKeySource | String | False | |
CreatedBy | String | False | |
CreatedDate | Datetime | False | |
CurrencyKeyISOCode | String | False | |
Date | Datetime | False | |
DistributionsAggregate | String | False | |
ExchangeDate | Datetime | False | |
ExchangeRate | Decimal | False | |
FreightAmountCurrency | String | False | |
FreightAmount | Decimal | False | |
FreightTaxAmountCurrency | String | False | |
FreightTaxAmount | Decimal | False | |
FreightTaxBasis | String | False | |
FreightTaxScheduleId | String | False | |
FreightTaxesAggregate | String | False | |
GeneralLedgerPostingDate | Datetime | False | |
Id [KEY] | String | False | |
LinesAggregate | String | False | |
MiscellaneousAmountCurrency | String | False | |
MiscellaneousAmount | Decimal | False | |
MiscellaneousTaxAmountCurrency | String | False | |
MiscellaneousTaxAmount | Decimal | False | |
MiscellaneousTaxBasis | String | False | |
MiscellaneousTaxScheduleId | String | False | |
MiscellaneousTaxesAggregate | String | False | |
ModifiedDate | Datetime | False | |
PaymentTermsId | String | False | |
PostedBy | String | False | |
PostedDate | Datetime | False | |
Reference | String | False | |
RemitToAddressId | String | False | |
SubtotalCurrency | String | False | |
Subtotal | Decimal | False | |
TaxAmountCurrency | String | False | |
TaxAmount | Decimal | False | |
TaxScheduleId | String | False | |
TaxesAggregate | String | False | |
TermsDiscountItem | String | False | |
TermsDiscountAvailableAmountCurrency | String | False | |
TermsDiscountAvailableAmount | Decimal | False | |
TermsDiscountDate | Datetime | False | |
TermsDueDate | Datetime | False | |
TradeDiscountAmountCurrency | String | False | |
TradeDiscountAmount | Decimal | False | |
TransactionState | String | False | |
VendorDocumentNumber | String | False | |
VendorId | String | False | |
VendorName | String | False | |
VoucherNumber | String | False |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
PurchaseOrder
Return a list of: PurchaseOrder
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ExtensionsExtensionAggregate | String | False | |
BackoutFreightTaxAmountCurrency | String | False | |
BackoutFreightTaxAmount | Decimal | False | |
BackoutMiscellaneousTaxAmountCurrency | String | False | |
BackoutMiscellaneousTaxAmount | Decimal | False | |
BackoutTaxAmountCurrency | String | False | |
BackoutTaxAmount | Decimal | False | |
BillToAddressId | String | False | |
BuyerId | String | False | |
CanceledSubtotalCurrency | String | False | |
CanceledSubtotal | Decimal | False | |
Comment | String | False | |
CommentId | String | False | |
ConfirmWith | String | False | |
ContractEndDate | Datetime | False | |
ContractNumber | String | False | |
CreatedBy | String | False | |
CreatedDate | Datetime | False | |
CurrencyKeyISOCode | String | False | |
CustomerId | String | False | |
Date | Datetime | False | |
DoesAllowSalesOrderCommitments | Bool | False | |
ExchangeDate | Datetime | False | |
ExchangeRate | Decimal | False | |
FreightAmountCurrency | String | False | |
FreightAmount | Decimal | False | |
FreightTaxAmountCurrency | String | False | |
FreightTaxAmount | Decimal | False | |
FreightTaxBasis | String | False | |
FreightTaxScheduleId | String | False | |
FreightTaxesAggregate | String | False | |
IsOnHold | Bool | False | |
Id [KEY] | String | False | |
LastEditDate | Datetime | False | |
LastPrintedDate | Datetime | False | |
LinesAggregate | String | False | |
MiscellaneousAmountCurrency | String | False | |
MiscellaneousAmount | Decimal | False | |
MiscellaneousTaxAmountCurrency | String | False | |
MiscellaneousTaxAmount | Decimal | False | |
MiscellaneousTaxBasis | String | False | |
MiscellaneousTaxScheduleId | String | False | |
MiscellaneousTaxesAggregate | String | False | |
ModifiedDate | Datetime | False | |
PaymentTermsId | String | False | |
PromisedDate | Datetime | False | |
PromisedShipDate | Datetime | False | |
PurchaseAddressExtensionsExtensionAggregate | String | False | |
PurchaseAddressCity | String | False | |
PurchaseAddressLine1 | String | False | |
PurchaseAddressLine2 | String | False | |
PurchaseAddressLine3 | String | False | |
PurchaseAddressPostalCode | String | False | |
PurchaseAddressState | String | False | |
PurchaseAddressCountryRegion | String | False | |
PurchaseAddressFaxCountryCode | String | False | |
PurchaseAddressFaxExtension | String | False | |
PurchaseAddressFax | String | False | |
PurchaseAddressPhone1CountryCode | String | False | |
PurchaseAddressPhone1Extension | String | False | |
PurchaseAddressPhone1 | String | False | |
PurchaseAddressPhone2CountryCode | String | False | |
PurchaseAddressPhone2Extension | String | False | |
PurchaseAddressPhone2 | String | False | |
PurchaseAddressPhone3CountryCode | String | False | |
PurchaseAddressPhone3Extension | String | False | |
PurchaseAddressPhone3 | String | False | |
PurchaseAddressCountryRegionCodeId | String | False | |
PurchaseAddressContactPerson | String | False | |
PurchaseAddressName | String | False | |
PurchaseAddressId | String | False | |
RemainingSubtotalCurrency | String | False | |
RemainingSubtotal | Decimal | False | |
RequestedDate | Datetime | False | |
RequisitionDate | Datetime | False | |
RevisionNumber | Int | False | |
ShipToAddressExtensionsExtensionAggregate | String | False | |
ShipToAddressCity | String | False | |
ShipToAddressLine1 | String | False | |
ShipToAddressLine2 | String | False | |
ShipToAddressLine3 | String | False | |
ShipToAddressPostalCode | String | False | |
ShipToAddressState | String | False | |
ShipToAddressCountryRegion | String | False | |
ShipToAddressFaxCountryCode | String | False | |
ShipToAddressFaxExtension | String | False | |
ShipToAddressFax | String | False | |
ShipToAddressPhone1CountryCode | String | False | |
ShipToAddressPhone1Extension | String | False | |
ShipToAddressPhone1 | String | False | |
ShipToAddressPhone2CountryCode | String | False | |
ShipToAddressPhone2Extension | String | False | |
ShipToAddressPhone2 | String | False | |
ShipToAddressPhone3CountryCode | String | False | |
ShipToAddressPhone3Extension | String | False | |
ShipToAddressPhone3 | String | False | |
ShipToAddressCountryRegionCodeId | String | False | |
ShipToAddressContactPerson | String | False | |
ShipToAddressName | String | False | |
ShipToAddressId | String | False | |
ShippingMethodId | String | False | |
Status | String | False | |
StatusGroup | String | False | |
SubtotalCurrency | String | False | |
Subtotal | Decimal | False | |
TaxAmountCurrency | String | False | |
TaxAmount | Decimal | False | |
TaxRegistrationNumber | String | False | |
TaxScheduleId | String | False | |
TaxesAggregate | String | False | |
TermsDiscountItem | String | False | |
TermsDiscountAvailableAmountCurrency | String | False | |
TermsDiscountAvailableAmount | Decimal | False | |
TermsDiscountDate | Datetime | False | |
TermsDueDate | Datetime | False | |
TimesPrinted | Int | False | |
TotalAmountCurrency | String | False | |
TotalAmount | Decimal | False | |
TradeDiscountAmountCurrency | String | False | |
TradeDiscountAmount | Decimal | False | |
TransactionState | String | False | |
Type | String | False | |
VendorId | String | False | |
VendorName | String | False | |
WorkflowPriority | String | False | |
WorkflowsAggregate | String | False |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
PurchaseReceipt
Return a list of: PurchaseReceipt
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ExtensionsExtensionAggregate | String | False | |
ActualShipDate | Datetime | False | |
AuditTrailCode | String | False | |
BatchKeyCreatedDateTime | Datetime | False | |
BatchId | String | False | |
BatchKeySource | String | False | |
CreatedBy | String | False | |
CreatedDate | Datetime | False | |
CurrencyKeyISOCode | String | False | |
Date | Datetime | False | |
DistributionsAggregate | String | False | |
ExchangeDate | Datetime | False | |
ExchangeRate | Decimal | False | |
GeneralLedgerPostingDate | Datetime | False | |
Id [KEY] | String | False | |
LinesAggregate | String | False | |
ModifiedDate | Datetime | False | |
PostedBy | String | False | |
PostedDate | Datetime | False | |
Reference | String | False | |
RemitToAddressId | String | False | |
SubtotalCurrency | String | False | |
Subtotal | Decimal | False | |
TotalLandedCostAmountCurrency | String | False | |
TotalLandedCostAmount | Decimal | False | |
TransactionState | String | False | |
UserDefinedAggregate | String | False | |
VendorDocumentNumber | String | False | |
VendorId | String | False | |
VendorName | String | False |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
ReceivablesCreditMemo
Return a list of: ReceivablesCreditMemo
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ExtensionsExtensionAggregate | String | False | |
AddressKeyCustomerId | String | False | |
AddressId | String | False | |
AuditTrailCode | String | False | |
BatchKeyCreatedDateTime | Datetime | False | |
BatchId | String | False | |
BatchKeySource | String | False | |
CorporateAccountId | String | False | |
CostAmountCurrency | String | False | |
CostAmount | Decimal | False | |
CurrencyKeyISOCode | String | False | |
CurrentDocumentAmountCurrency | String | False | |
CurrentDocumentAmount | Decimal | False | |
CustomerId | String | False | |
CustomerName | String | False | |
CustomerPONumber | String | False | |
Date | Datetime | False | |
Description | String | False | |
DistributionsAggregate | String | False | |
DocumentAmountCurrency | String | False | |
DocumentAmount | Decimal | False | |
ExchangeDate | Datetime | False | |
ExchangeRate | Decimal | False | |
FreightAmountCurrency | String | False | |
FreightAmount | Decimal | False | |
FreightTaxScheduleId | String | False | |
GeneralLedgerPostingDate | Datetime | False | |
InvoicePaidOffDate | Datetime | False | |
IsDeleted | Bool | False | |
IsDirectDebitDocument | Bool | False | |
IsElectronic | Bool | False | |
IsIntrastatDocument | Bool | False | |
IsVoided | Bool | False | |
Id [KEY] | String | False | |
MiscellaneousAmountCurrency | String | False | |
MiscellaneousAmount | Decimal | False | |
MiscellaneousTaxScheduleId | String | False | |
ModifiedBy | String | False | |
ModifiedDate | Datetime | False | |
PostedBy | String | False | |
PostedDate | Datetime | False | |
SalesAmountCurrency | String | False | |
SalesAmount | Decimal | False | |
SalesTaxScheduleId | String | False | |
SalesTerritoryId | String | False | |
SalespersonId | String | False | |
ShippingMethodId | String | False | |
TaxAmountCurrency | String | False | |
TaxAmount | Decimal | False | |
TaxScheduleId | String | False | |
TaxesAggregate | String | False | |
TradeDiscountAmountCurrency | String | False | |
TradeDiscountAmount | Decimal | False | |
TransactionState | String | False | |
Type | String | False | |
VoidDate | Datetime | False | |
DiscountReturnedCurrency | String | False | |
DiscountReturned | Decimal | False |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
ReceivablesDebitMemo
Return a list of: ReceivablesDebitMemo
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ExtensionsExtensionAggregate | String | False | |
AddressKeyCustomerId | String | False | |
AddressId | String | False | |
AuditTrailCode | String | False | |
BatchKeyCreatedDateTime | Datetime | False | |
BatchId | String | False | |
BatchKeySource | String | False | |
CorporateAccountId | String | False | |
CostAmountCurrency | String | False | |
CostAmount | Decimal | False | |
CurrencyKeyISOCode | String | False | |
CurrentDocumentAmountCurrency | String | False | |
CurrentDocumentAmount | Decimal | False | |
CustomerId | String | False | |
CustomerName | String | False | |
CustomerPONumber | String | False | |
Date | Datetime | False | |
Description | String | False | |
DistributionsAggregate | String | False | |
DocumentAmountCurrency | String | False | |
DocumentAmount | Decimal | False | |
ExchangeDate | Datetime | False | |
ExchangeRate | Decimal | False | |
FreightAmountCurrency | String | False | |
FreightAmount | Decimal | False | |
FreightTaxScheduleId | String | False | |
GeneralLedgerPostingDate | Datetime | False | |
InvoicePaidOffDate | Datetime | False | |
IsDeleted | Bool | False | |
IsDirectDebitDocument | Bool | False | |
IsElectronic | Bool | False | |
IsIntrastatDocument | Bool | False | |
IsVoided | Bool | False | |
Id [KEY] | String | False | |
MiscellaneousAmountCurrency | String | False | |
MiscellaneousAmount | Decimal | False | |
MiscellaneousTaxScheduleId | String | False | |
ModifiedBy | String | False | |
ModifiedDate | Datetime | False | |
PostedBy | String | False | |
PostedDate | Datetime | False | |
SalesAmountCurrency | String | False | |
SalesAmount | Decimal | False | |
SalesTaxScheduleId | String | False | |
SalesTerritoryId | String | False | |
SalespersonId | String | False | |
ShippingMethodId | String | False | |
TaxAmountCurrency | String | False | |
TaxAmount | Decimal | False | |
TaxScheduleId | String | False | |
TaxesAggregate | String | False | |
TradeDiscountAmountCurrency | String | False | |
TradeDiscountAmount | Decimal | False | |
TransactionState | String | False | |
Type | String | False | |
VoidDate | Datetime | False | |
GSTDiscountAmountCurrency | String | False | |
GSTDiscountAmount | Decimal | False | |
PaymentCashAmountCurrency | String | False | |
PaymentCashAmount | Decimal | False | |
PaymentCashBankAccountId | String | False | |
PaymentCashDate | Datetime | False | |
PaymentCashNumber | String | False | |
PaymentCheckAmountCurrency | String | False | |
PaymentCheckAmount | Decimal | False | |
PaymentCheckBankAccountId | String | False | |
PaymentCheckCheckNumber | String | False | |
PaymentCheckDate | Datetime | False | |
PaymentCheckNumber | String | False | |
PaymentPaymentCardAmountCurrency | String | False | |
PaymentPaymentCardAmount | Decimal | False | |
PaymentPaymentCardDate | Datetime | False | |
PaymentPaymentCardNumber | String | False | |
PaymentPaymentCardReceiptNumber | String | False | |
PaymentPaymentCardTypeId | String | False | |
PaymentPaymentCardBankAccountId | String | False | |
PaymentTermsId | String | False | |
TermsDiscountItem | String | False | |
TermsDiscountAvailableAmountCurrency | String | False | |
TermsDiscountAvailableAmount | Decimal | False | |
TermsDiscountDate | Datetime | False | |
TermsDueDate | Datetime | False | |
TermsDiscountAvailableTakenAmountCurrency | String | False | |
TermsDiscountAvailableTakenAmount | Decimal | False | |
TermsDiscountTakenAmountCurrency | String | False | |
TermsDiscountTakenAmount | Decimal | False | |
WriteoffAmountCurrency | String | False | |
WriteoffAmount | Decimal | False | |
CommissionAmountCurrency | String | False | |
CommissionAmount | Decimal | False | |
CommissionBasedOn | String | False | |
CommissionsAggregate | String | False |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
ReceivablesFinanceCharge
Return a list of: ReceivablesFinanceCharge
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ExtensionsExtensionAggregate | String | False | |
AddressKeyCustomerId | String | False | |
AddressId | String | False | |
AuditTrailCode | String | False | |
BatchKeyCreatedDateTime | Datetime | False | |
BatchId | String | False | |
BatchKeySource | String | False | |
CorporateAccountId | String | False | |
CostAmountCurrency | String | False | |
CostAmount | Decimal | False | |
CurrencyKeyISOCode | String | False | |
CurrentDocumentAmountCurrency | String | False | |
CurrentDocumentAmount | Decimal | False | |
CustomerId | String | False | |
CustomerName | String | False | |
CustomerPONumber | String | False | |
Date | Datetime | False | |
Description | String | False | |
DistributionsAggregate | String | False | |
DocumentAmountCurrency | String | False | |
DocumentAmount | Decimal | False | |
ExchangeDate | Datetime | False | |
ExchangeRate | Decimal | False | |
FreightAmountCurrency | String | False | |
FreightAmount | Decimal | False | |
FreightTaxScheduleId | String | False | |
GeneralLedgerPostingDate | Datetime | False | |
InvoicePaidOffDate | Datetime | False | |
IsDeleted | Bool | False | |
IsDirectDebitDocument | Bool | False | |
IsElectronic | Bool | False | |
IsIntrastatDocument | Bool | False | |
IsVoided | Bool | False | |
Id [KEY] | String | False | |
MiscellaneousAmountCurrency | String | False | |
MiscellaneousAmount | Decimal | False | |
MiscellaneousTaxScheduleId | String | False | |
ModifiedBy | String | False | |
ModifiedDate | Datetime | False | |
PostedBy | String | False | |
PostedDate | Datetime | False | |
SalesAmountCurrency | String | False | |
SalesAmount | Decimal | False | |
SalesTaxScheduleId | String | False | |
SalesTerritoryId | String | False | |
SalespersonId | String | False | |
ShippingMethodId | String | False | |
TaxAmountCurrency | String | False | |
TaxAmount | Decimal | False | |
TaxScheduleId | String | False | |
TaxesAggregate | String | False | |
TradeDiscountAmountCurrency | String | False | |
TradeDiscountAmount | Decimal | False | |
TransactionState | String | False | |
Type | String | False | |
VoidDate | Datetime | False | |
GSTDiscountAmountCurrency | String | False | |
GSTDiscountAmount | Decimal | False | |
PaymentCashAmountCurrency | String | False | |
PaymentCashAmount | Decimal | False | |
PaymentCashBankAccountId | String | False | |
PaymentCashDate | Datetime | False | |
PaymentCashNumber | String | False | |
PaymentCheckAmountCurrency | String | False | |
PaymentCheckAmount | Decimal | False | |
PaymentCheckBankAccountId | String | False | |
PaymentCheckCheckNumber | String | False | |
PaymentCheckDate | Datetime | False | |
PaymentCheckNumber | String | False | |
PaymentPaymentCardAmountCurrency | String | False | |
PaymentPaymentCardAmount | Decimal | False | |
PaymentPaymentCardDate | Datetime | False | |
PaymentPaymentCardNumber | String | False | |
PaymentPaymentCardReceiptNumber | String | False | |
PaymentPaymentCardTypeId | String | False | |
PaymentPaymentCardBankAccountId | String | False | |
PaymentTermsId | String | False | |
TermsDiscountItem | String | False | |
TermsDiscountAvailableAmountCurrency | String | False | |
TermsDiscountAvailableAmount | Decimal | False | |
TermsDiscountDate | Datetime | False | |
TermsDueDate | Datetime | False | |
TermsDiscountAvailableTakenAmountCurrency | String | False | |
TermsDiscountAvailableTakenAmount | Decimal | False | |
TermsDiscountTakenAmountCurrency | String | False | |
TermsDiscountTakenAmount | Decimal | False | |
WriteoffAmountCurrency | String | False | |
WriteoffAmount | Decimal | False |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
ReceivablesInvoice
Return a list of: ReceivablesInvoice
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ExtensionsExtensionAggregate | String | False | |
AddressKeyCustomerId | String | False | |
AddressId | String | False | |
AuditTrailCode | String | False | |
BatchKeyCreatedDateTime | Datetime | False | |
BatchId | String | False | |
BatchKeySource | String | False | |
CorporateAccountId | String | False | |
CostAmountCurrency | String | False | |
CostAmount | Decimal | False | |
CurrencyKeyISOCode | String | False | |
CurrentDocumentAmountCurrency | String | False | |
CurrentDocumentAmount | Decimal | False | |
CustomerId | String | False | |
CustomerName | String | False | |
CustomerPONumber | String | False | |
Date | Datetime | False | |
Description | String | False | |
DistributionsAggregate | String | False | |
DocumentAmountCurrency | String | False | |
DocumentAmount | Decimal | False | |
ExchangeDate | Datetime | False | |
ExchangeRate | Decimal | False | |
FreightAmountCurrency | String | False | |
FreightAmount | Decimal | False | |
FreightTaxScheduleId | String | False | |
GeneralLedgerPostingDate | Datetime | False | |
InvoicePaidOffDate | Datetime | False | |
IsDeleted | Bool | False | |
IsDirectDebitDocument | Bool | False | |
IsElectronic | Bool | False | |
IsIntrastatDocument | Bool | False | |
IsVoided | Bool | False | |
Id [KEY] | String | False | |
MiscellaneousAmountCurrency | String | False | |
MiscellaneousAmount | Decimal | False | |
MiscellaneousTaxScheduleId | String | False | |
ModifiedBy | String | False | |
ModifiedDate | Datetime | False | |
PostedBy | String | False | |
PostedDate | Datetime | False | |
SalesAmountCurrency | String | False | |
SalesAmount | Decimal | False | |
SalesTaxScheduleId | String | False | |
SalesTerritoryId | String | False | |
SalespersonId | String | False | |
ShippingMethodId | String | False | |
TaxAmountCurrency | String | False | |
TaxAmount | Decimal | False | |
TaxScheduleId | String | False | |
TaxesAggregate | String | False | |
TradeDiscountAmountCurrency | String | False | |
TradeDiscountAmount | Decimal | False | |
TransactionState | String | False | |
Type | String | False | |
VoidDate | Datetime | False | |
GSTDiscountAmountCurrency | String | False | |
GSTDiscountAmount | Decimal | False | |
PaymentCashAmountCurrency | String | False | |
PaymentCashAmount | Decimal | False | |
PaymentCashBankAccountId | String | False | |
PaymentCashDate | Datetime | False | |
PaymentCashNumber | String | False | |
PaymentCheckAmountCurrency | String | False | |
PaymentCheckAmount | Decimal | False | |
PaymentCheckBankAccountId | String | False | |
PaymentCheckCheckNumber | String | False | |
PaymentCheckDate | Datetime | False | |
PaymentCheckNumber | String | False | |
PaymentPaymentCardAmountCurrency | String | False | |
PaymentPaymentCardAmount | Decimal | False | |
PaymentPaymentCardDate | Datetime | False | |
PaymentPaymentCardNumber | String | False | |
PaymentPaymentCardReceiptNumber | String | False | |
PaymentPaymentCardTypeId | String | False | |
PaymentPaymentCardBankAccountId | String | False | |
PaymentTermsId | String | False | |
TermsDiscountItem | String | False | |
TermsDiscountAvailableAmountCurrency | String | False | |
TermsDiscountAvailableAmount | Decimal | False | |
TermsDiscountDate | Datetime | False | |
TermsDueDate | Datetime | False | |
TermsDiscountAvailableTakenAmountCurrency | String | False | |
TermsDiscountAvailableTakenAmount | Decimal | False | |
TermsDiscountTakenAmountCurrency | String | False | |
TermsDiscountTakenAmount | Decimal | False | |
WriteoffAmountCurrency | String | False | |
WriteoffAmount | Decimal | False | |
CommissionAmountCurrency | String | False | |
CommissionAmount | Decimal | False | |
CommissionBasedOn | String | False | |
CommissionsAggregate | String | False |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
ReceivablesReturn
Return a list of: ReceivablesReturn
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ExtensionsExtensionAggregate | String | False | |
AddressKeyCustomerId | String | False | |
AddressId | String | False | |
AuditTrailCode | String | False | |
BatchKeyCreatedDateTime | Datetime | False | |
BatchId | String | False | |
BatchKeySource | String | False | |
CorporateAccountId | String | False | |
CostAmountCurrency | String | False | |
CostAmount | Decimal | False | |
CurrencyKeyISOCode | String | False | |
CurrentDocumentAmountCurrency | String | False | |
CurrentDocumentAmount | Decimal | False | |
CustomerId | String | False | |
CustomerName | String | False | |
CustomerPONumber | String | False | |
Date | Datetime | False | |
Description | String | False | |
DistributionsAggregate | String | False | |
DocumentAmountCurrency | String | False | |
DocumentAmount | Decimal | False | |
ExchangeDate | Datetime | False | |
ExchangeRate | Decimal | False | |
FreightAmountCurrency | String | False | |
FreightAmount | Decimal | False | |
FreightTaxScheduleId | String | False | |
GeneralLedgerPostingDate | Datetime | False | |
InvoicePaidOffDate | Datetime | False | |
IsDeleted | Bool | False | |
IsDirectDebitDocument | Bool | False | |
IsElectronic | Bool | False | |
IsIntrastatDocument | Bool | False | |
IsVoided | Bool | False | |
Id [KEY] | String | False | |
MiscellaneousAmountCurrency | String | False | |
MiscellaneousAmount | Decimal | False | |
MiscellaneousTaxScheduleId | String | False | |
ModifiedBy | String | False | |
ModifiedDate | Datetime | False | |
PostedBy | String | False | |
PostedDate | Datetime | False | |
SalesAmountCurrency | String | False | |
SalesAmount | Decimal | False | |
SalesTaxScheduleId | String | False | |
SalesTerritoryId | String | False | |
SalespersonId | String | False | |
ShippingMethodId | String | False | |
TaxAmountCurrency | String | False | |
TaxAmount | Decimal | False | |
TaxScheduleId | String | False | |
TaxesAggregate | String | False | |
TradeDiscountAmountCurrency | String | False | |
TradeDiscountAmount | Decimal | False | |
TransactionState | String | False | |
Type | String | False | |
VoidDate | Datetime | False | |
DiscountReturnedCurrency | String | False | |
DiscountReturned | Decimal | False | |
CommissionAmountCurrency | String | False | |
CommissionAmount | Decimal | False | |
CommissionBasedOn | String | False | |
CommissionsAggregate | String | False | |
PaymentCashAmountCurrency | String | False | |
PaymentCashAmount | Decimal | False | |
PaymentCashBankAccountId | String | False | |
PaymentCashDate | Datetime | False | |
PaymentCashNumber | String | False | |
PaymentCheckAmountCurrency | String | False | |
PaymentCheckAmount | Decimal | False | |
PaymentCheckBankAccountId | String | False | |
PaymentCheckCheckNumber | String | False | |
PaymentCheckDate | Datetime | False | |
PaymentCheckNumber | String | False | |
PaymentPaymentCardAmountCurrency | String | False | |
PaymentPaymentCardAmount | Decimal | False | |
PaymentPaymentCardDate | Datetime | False | |
PaymentPaymentCardNumber | String | False | |
PaymentPaymentCardReceiptNumber | String | False | |
PaymentPaymentCardTypeId | String | False | |
PaymentPaymentCardBankAccountId | String | False |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
ReceivablesServiceRepair
Return a list of: ReceivablesServiceRepair
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ExtensionsExtensionAggregate | String | False | |
AddressKeyCustomerId | String | False | |
AddressId | String | False | |
AuditTrailCode | String | False | |
BatchKeyCreatedDateTime | Datetime | False | |
BatchId | String | False | |
BatchKeySource | String | False | |
CorporateAccountId | String | False | |
CostAmountCurrency | String | False | |
CostAmount | Decimal | False | |
CurrencyKeyISOCode | String | False | |
CurrentDocumentAmountCurrency | String | False | |
CurrentDocumentAmount | Decimal | False | |
CustomerId | String | False | |
CustomerName | String | False | |
CustomerPONumber | String | False | |
Date | Datetime | False | |
Description | String | False | |
DistributionsAggregate | String | False | |
DocumentAmountCurrency | String | False | |
DocumentAmount | Decimal | False | |
ExchangeDate | Datetime | False | |
ExchangeRate | Decimal | False | |
FreightAmountCurrency | String | False | |
FreightAmount | Decimal | False | |
FreightTaxScheduleId | String | False | |
GeneralLedgerPostingDate | Datetime | False | |
InvoicePaidOffDate | Datetime | False | |
IsDeleted | Bool | False | |
IsDirectDebitDocument | Bool | False | |
IsElectronic | Bool | False | |
IsIntrastatDocument | Bool | False | |
IsVoided | Bool | False | |
Id [KEY] | String | False | |
MiscellaneousAmountCurrency | String | False | |
MiscellaneousAmount | Decimal | False | |
MiscellaneousTaxScheduleId | String | False | |
ModifiedBy | String | False | |
ModifiedDate | Datetime | False | |
PostedBy | String | False | |
PostedDate | Datetime | False | |
SalesAmountCurrency | String | False | |
SalesAmount | Decimal | False | |
SalesTaxScheduleId | String | False | |
SalesTerritoryId | String | False | |
SalespersonId | String | False | |
ShippingMethodId | String | False | |
TaxAmountCurrency | String | False | |
TaxAmount | Decimal | False | |
TaxScheduleId | String | False | |
TaxesAggregate | String | False | |
TradeDiscountAmountCurrency | String | False | |
TradeDiscountAmount | Decimal | False | |
TransactionState | String | False | |
Type | String | False | |
VoidDate | Datetime | False | |
GSTDiscountAmountCurrency | String | False | |
GSTDiscountAmount | Decimal | False | |
PaymentCashAmountCurrency | String | False | |
PaymentCashAmount | Decimal | False | |
PaymentCashBankAccountId | String | False | |
PaymentCashDate | Datetime | False | |
PaymentCashNumber | String | False | |
PaymentCheckAmountCurrency | String | False | |
PaymentCheckAmount | Decimal | False | |
PaymentCheckBankAccountId | String | False | |
PaymentCheckCheckNumber | String | False | |
PaymentCheckDate | Datetime | False | |
PaymentCheckNumber | String | False | |
PaymentPaymentCardAmountCurrency | String | False | |
PaymentPaymentCardAmount | Decimal | False | |
PaymentPaymentCardDate | Datetime | False | |
PaymentPaymentCardNumber | String | False | |
PaymentPaymentCardReceiptNumber | String | False | |
PaymentPaymentCardTypeId | String | False | |
PaymentPaymentCardBankAccountId | String | False | |
PaymentTermsId | String | False | |
TermsDiscountItem | String | False | |
TermsDiscountAvailableAmountCurrency | String | False | |
TermsDiscountAvailableAmount | Decimal | False | |
TermsDiscountDate | Datetime | False | |
TermsDueDate | Datetime | False | |
TermsDiscountAvailableTakenAmountCurrency | String | False | |
TermsDiscountAvailableTakenAmount | Decimal | False | |
TermsDiscountTakenAmountCurrency | String | False | |
TermsDiscountTakenAmount | Decimal | False | |
WriteoffAmountCurrency | String | False | |
WriteoffAmount | Decimal | False | |
CommissionAmountCurrency | String | False | |
CommissionAmount | Decimal | False | |
CommissionBasedOn | String | False | |
CommissionsAggregate | String | False |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
ReceivablesWarranty
Return a list of: ReceivablesWarranty
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ExtensionsExtensionAggregate | String | False | |
AddressKeyCustomerId | String | False | |
AddressId | String | False | |
AuditTrailCode | String | False | |
BatchKeyCreatedDateTime | Datetime | False | |
BatchId | String | False | |
BatchKeySource | String | False | |
CorporateAccountId | String | False | |
CostAmountCurrency | String | False | |
CostAmount | Decimal | False | |
CurrencyKeyISOCode | String | False | |
CurrentDocumentAmountCurrency | String | False | |
CurrentDocumentAmount | Decimal | False | |
CustomerId | String | False | |
CustomerName | String | False | |
CustomerPONumber | String | False | |
Date | Datetime | False | |
Description | String | False | |
DistributionsAggregate | String | False | |
DocumentAmountCurrency | String | False | |
DocumentAmount | Decimal | False | |
ExchangeDate | Datetime | False | |
ExchangeRate | Decimal | False | |
FreightAmountCurrency | String | False | |
FreightAmount | Decimal | False | |
FreightTaxScheduleId | String | False | |
GeneralLedgerPostingDate | Datetime | False | |
InvoicePaidOffDate | Datetime | False | |
IsDeleted | Bool | False | |
IsDirectDebitDocument | Bool | False | |
IsElectronic | Bool | False | |
IsIntrastatDocument | Bool | False | |
IsVoided | Bool | False | |
Id [KEY] | String | False | |
MiscellaneousAmountCurrency | String | False | |
MiscellaneousAmount | Decimal | False | |
MiscellaneousTaxScheduleId | String | False | |
ModifiedBy | String | False | |
ModifiedDate | Datetime | False | |
PostedBy | String | False | |
PostedDate | Datetime | False | |
SalesAmountCurrency | String | False | |
SalesAmount | Decimal | False | |
SalesTaxScheduleId | String | False | |
SalesTerritoryId | String | False | |
SalespersonId | String | False | |
ShippingMethodId | String | False | |
TaxAmountCurrency | String | False | |
TaxAmount | Decimal | False | |
TaxScheduleId | String | False | |
TaxesAggregate | String | False | |
TradeDiscountAmountCurrency | String | False | |
TradeDiscountAmount | Decimal | False | |
TransactionState | String | False | |
Type | String | False | |
VoidDate | Datetime | False |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
ReturnMaterialAuthorization
Return a list of: ReturnMaterialAuthorization
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ExtensionsExtensionAggregate | String | False | |
BillToAddressId | String | False | |
BillToCustomerId | String | False | |
CurrencyKeyISOCode | String | False | |
CustomerId | String | False | |
CustomerName | String | False | |
CustomerPONumber | String | False | |
EntryDateTime | Datetime | False | |
EstimatedArrivalDateTime | Datetime | False | |
ExchangeDate | Datetime | False | |
ExchangeRate | Decimal | False | |
FrontOfficeIntegrationId | String | False | |
Id [KEY] | String | False | |
Note | String | False | |
OfficeId | String | False | |
RateTypeId | String | False | |
ShipToAddressId | String | False | |
TransactionState | String | False | |
UserDefined01 | String | False | |
UserDefined02 | String | False | |
UserDefined03 | String | False | |
UserDefined04 | String | False | |
UserDefined05 | String | False | |
AuditsAggregate | String | False | |
BillOfLading | String | False | |
ClosedDateTime | Datetime | False | |
CommitDateTime | Datetime | False | |
CreatedBy | String | False | |
IsFromServiceCall | Bool | False | |
IsReceived | Bool | False | |
LinesAggregate | String | False | |
OriginatingDocumentId | String | False | |
OriginatingDocumentType | String | False | |
ReasonCodeDescription | String | False | |
ReasonCodeId | String | False | |
ReturnDateTime | Datetime | False | |
ReturnStatus | String | False | |
ReturnStatusCodeId | String | False | |
ReturnToAddressExtensionsExtensionAggregate | String | False | |
ReturnToAddressCity | String | False | |
ReturnToAddressLine1 | String | False | |
ReturnToAddressLine2 | String | False | |
ReturnToAddressLine3 | String | False | |
ReturnToAddressPostalCode | String | False | |
ReturnToAddressState | String | False | |
ReturnToAddressCountryRegion | String | False | |
ReturnToAddressName | String | False | |
ReturnTypeId | String | False | |
ReturnWarehouseId | String | False | |
ShipToAddressExtensionsExtensionAggregate | String | False | |
ShipToAddressCity | String | False | |
ShipToAddressLine1 | String | False | |
ShipToAddressLine2 | String | False | |
ShipToAddressLine3 | String | False | |
ShipToAddressPostalCode | String | False | |
ShipToAddressState | String | False | |
ShipToAddressCountryRegion | String | False | |
ShipToAddressContactPerson | String | False | |
ShippingMethodId | String | False | |
Type | String | False |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
SalesBackorder
Return a list of: SalesBackorder
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ExtensionsExtensionAggregate | String | False | |
ActualShipDate | Datetime | False | |
AuditTrailCode | String | False | |
BackorderDate | Datetime | False | |
BatchKeyCreatedDateTime | Datetime | False | |
BatchId | String | False | |
BatchKeySource | String | False | |
BillToAddressKeyCustomerId | String | False | |
BillToAddressId | String | False | |
Comment | String | False | |
CommentId | String | False | |
CommissionAmountCurrency | String | False | |
CommissionAmount | Decimal | False | |
CommissionBasedOn | String | False | |
CommissionSaleAmountCurrency | String | False | |
CommissionSaleAmount | Decimal | False | |
CommissionsAggregate | String | False | |
CreatedBy | String | False | |
CreatedDate | Datetime | False | |
CurrencyKeyISOCode | String | False | |
CustomerId | String | False | |
CustomerName | String | False | |
CustomerPONumber | String | False | |
Date | Datetime | False | |
DiscountAmountCurrency | String | False | |
DiscountAmount | Decimal | False | |
DocumentTypeId | String | False | |
DocumentTypeKeyType | String | False | |
ExchangeDate | Datetime | False | |
ExchangeRate | Decimal | False | |
FreightAmountCurrency | String | False | |
FreightAmount | Decimal | False | |
FreightTaxAmountCurrency | String | False | |
FreightTaxAmount | Decimal | False | |
FreightTaxBasis | String | False | |
FreightTaxScheduleId | String | False | |
FreightTaxesAggregate | String | False | |
FrontOfficeIntegrationId | String | False | |
FulfillDate | Datetime | False | |
IntegrationId | String | False | |
IntegrationSource | Int | False | |
InvoiceDate | Datetime | False | |
IsIntrastatDocument | Bool | False | |
IsVoided | Bool | False | |
Id [KEY] | String | False | |
LastModifiedDate | Datetime | False | |
LineTotalAmountCurrency | String | False | |
LineTotalAmount | Decimal | False | |
MasterNumber | Int | False | |
MiscellaneousAmountCurrency | String | False | |
MiscellaneousAmount | Decimal | False | |
MiscellaneousTaxAmountCurrency | String | False | |
MiscellaneousTaxAmount | Decimal | False | |
MiscellaneousTaxBasis | String | False | |
MiscellaneousTaxScheduleId | String | False | |
MiscellaneousTaxesAggregate | String | False | |
ModifiedDate | Datetime | False | |
Note | String | False | |
OriginalSalesDocumentId | String | False | |
OriginalSalesDocumentType | String | False | |
PaymentTermsId | String | False | |
PriceLevelId | String | False | |
ProcessHoldsAggregate | String | False | |
QuoteDate | Datetime | False | |
Reference | String | False | |
RequestedShipDate | Datetime | False | |
ReturnDate | Datetime | False | |
SalesTerritoryId | String | False | |
SalespersonId | String | False | |
ShipCompleteOnly | Bool | False | |
ShipToAddressExtensionsExtensionAggregate | String | False | |
ShipToAddressCity | String | False | |
ShipToAddressLine1 | String | False | |
ShipToAddressLine2 | String | False | |
ShipToAddressLine3 | String | False | |
ShipToAddressPostalCode | String | False | |
ShipToAddressState | String | False | |
ShipToAddressCountryRegion | String | False | |
ShipToAddressFaxCountryCode | String | False | |
ShipToAddressFaxExtension | String | False | |
ShipToAddressFax | String | False | |
ShipToAddressPhone1CountryCode | String | False | |
ShipToAddressPhone1Extension | String | False | |
ShipToAddressPhone1 | String | False | |
ShipToAddressPhone2CountryCode | String | False | |
ShipToAddressPhone2Extension | String | False | |
ShipToAddressPhone2 | String | False | |
ShipToAddressPhone3CountryCode | String | False | |
ShipToAddressPhone3Extension | String | False | |
ShipToAddressPhone3 | String | False | |
ShipToAddressCountryRegionCodeId | String | False | |
ShipToAddressContactPerson | String | False | |
ShipToAddressName | String | False | |
ShipToAddressKeyCustomerId | String | False | |
ShipToAddressId | String | False | |
ShippingMethodId | String | False | |
TaxAmountCurrency | String | False | |
TaxAmount | Decimal | False | |
TaxExemptNumber1 | String | False | |
TaxExemptNumber2 | String | False | |
TaxRegistrationNumber | String | False | |
TaxScheduleId | String | False | |
TaxesAggregate | String | False | |
TotalAmountCurrency | String | False | |
TotalAmount | Decimal | False | |
TrackingNumbersAggregate | String | False | |
TradeDiscountItem | String | False | |
TransactionState | String | False | |
Type | String | False | |
UPSZone | String | False | |
UserDefinedDate01 | Datetime | False | |
UserDefinedDate02 | Datetime | False | |
UserDefinedList01 | String | False | |
UserDefinedList02 | String | False | |
UserDefinedList03 | String | False | |
UserDefinedText01 | String | False | |
UserDefinedText02 | String | False | |
UserDefinedText03 | String | False | |
UserDefinedText04 | String | False | |
UserDefinedText05 | String | False | |
WarehouseId | String | False | |
DepositAmountCurrency | String | False | |
DepositAmount | Decimal | False | |
LinesAggregate | String | False | |
PaymentAmountCurrency | String | False | |
PaymentAmount | Decimal | False | |
PaymentsAggregate | String | False |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
SalesFulfillmentOrder
Return a list of: SalesFulfillmentOrder
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ExtensionsExtensionAggregate | String | False | |
ActualShipDate | Datetime | False | |
AuditTrailCode | String | False | |
BackorderDate | Datetime | False | |
BatchKeyCreatedDateTime | Datetime | False | |
BatchId | String | False | |
BatchKeySource | String | False | |
BillToAddressKeyCustomerId | String | False | |
BillToAddressId | String | False | |
Comment | String | False | |
CommentId | String | False | |
CommissionAmountCurrency | String | False | |
CommissionAmount | Decimal | False | |
CommissionBasedOn | String | False | |
CommissionSaleAmountCurrency | String | False | |
CommissionSaleAmount | Decimal | False | |
CommissionsAggregate | String | False | |
CreatedBy | String | False | |
CreatedDate | Datetime | False | |
CurrencyKeyISOCode | String | False | |
CustomerId | String | False | |
CustomerName | String | False | |
CustomerPONumber | String | False | |
Date | Datetime | False | |
DiscountAmountCurrency | String | False | |
DiscountAmount | Decimal | False | |
DocumentTypeId | String | False | |
DocumentTypeKeyType | String | False | |
ExchangeDate | Datetime | False | |
ExchangeRate | Decimal | False | |
FreightAmountCurrency | String | False | |
FreightAmount | Decimal | False | |
FreightTaxAmountCurrency | String | False | |
FreightTaxAmount | Decimal | False | |
FreightTaxBasis | String | False | |
FreightTaxScheduleId | String | False | |
FreightTaxesAggregate | String | False | |
FrontOfficeIntegrationId | String | False | |
FulfillDate | Datetime | False | |
IntegrationId | String | False | |
IntegrationSource | Int | False | |
InvoiceDate | Datetime | False | |
IsIntrastatDocument | Bool | False | |
IsVoided | Bool | False | |
Id [KEY] | String | False | |
LastModifiedDate | Datetime | False | |
LineTotalAmountCurrency | String | False | |
LineTotalAmount | Decimal | False | |
MasterNumber | Int | False | |
MiscellaneousAmountCurrency | String | False | |
MiscellaneousAmount | Decimal | False | |
MiscellaneousTaxAmountCurrency | String | False | |
MiscellaneousTaxAmount | Decimal | False | |
MiscellaneousTaxBasis | String | False | |
MiscellaneousTaxScheduleId | String | False | |
MiscellaneousTaxesAggregate | String | False | |
ModifiedDate | Datetime | False | |
Note | String | False | |
OriginalSalesDocumentId | String | False | |
OriginalSalesDocumentType | String | False | |
PaymentTermsId | String | False | |
PriceLevelId | String | False | |
ProcessHoldsAggregate | String | False | |
QuoteDate | Datetime | False | |
Reference | String | False | |
RequestedShipDate | Datetime | False | |
ReturnDate | Datetime | False | |
SalesTerritoryId | String | False | |
SalespersonId | String | False | |
ShipCompleteOnly | Bool | False | |
ShipToAddressExtensionsExtensionAggregate | String | False | |
ShipToAddressCity | String | False | |
ShipToAddressLine1 | String | False | |
ShipToAddressLine2 | String | False | |
ShipToAddressLine3 | String | False | |
ShipToAddressPostalCode | String | False | |
ShipToAddressState | String | False | |
ShipToAddressCountryRegion | String | False | |
ShipToAddressFaxCountryCode | String | False | |
ShipToAddressFaxExtension | String | False | |
ShipToAddressFax | String | False | |
ShipToAddressPhone1CountryCode | String | False | |
ShipToAddressPhone1Extension | String | False | |
ShipToAddressPhone1 | String | False | |
ShipToAddressPhone2CountryCode | String | False | |
ShipToAddressPhone2Extension | String | False | |
ShipToAddressPhone2 | String | False | |
ShipToAddressPhone3CountryCode | String | False | |
ShipToAddressPhone3Extension | String | False | |
ShipToAddressPhone3 | String | False | |
ShipToAddressCountryRegionCodeId | String | False | |
ShipToAddressContactPerson | String | False | |
ShipToAddressName | String | False | |
ShipToAddressKeyCustomerId | String | False | |
ShipToAddressId | String | False | |
ShippingMethodId | String | False | |
TaxAmountCurrency | String | False | |
TaxAmount | Decimal | False | |
TaxExemptNumber1 | String | False | |
TaxExemptNumber2 | String | False | |
TaxRegistrationNumber | String | False | |
TaxScheduleId | String | False | |
TaxesAggregate | String | False | |
TotalAmountCurrency | String | False | |
TotalAmount | Decimal | False | |
TrackingNumbersAggregate | String | False | |
TradeDiscountItem | String | False | |
TransactionState | String | False | |
Type | String | False | |
UPSZone | String | False | |
UserDefinedDate01 | Datetime | False | |
UserDefinedDate02 | Datetime | False | |
UserDefinedList01 | String | False | |
UserDefinedList02 | String | False | |
UserDefinedList03 | String | False | |
UserDefinedText01 | String | False | |
UserDefinedText02 | String | False | |
UserDefinedText03 | String | False | |
UserDefinedText04 | String | False | |
UserDefinedText05 | String | False | |
WarehouseId | String | False | |
DepositAmountCurrency | String | False | |
DepositAmount | Decimal | False | |
DistributionsAggregate | String | False | |
GeneralLedgerPostingDate | Datetime | False | |
IsDirectDebit | Bool | False | |
LinesAggregate | String | False | |
PaymentAmountCurrency | String | False | |
PaymentAmount | Decimal | False | |
PaymentsAggregate | String | False | |
PostedBy | String | False | |
PostedDate | Datetime | False | |
ShippingProcessStatus | String | False | |
TermsDiscountItem | String | False | |
TermsDiscountAvailableAmountCurrency | String | False | |
TermsDiscountAvailableAmount | Decimal | False | |
TermsDiscountDate | Datetime | False | |
TermsDueDate | Datetime | False | |
TermsDiscountTakenAmountCurrency | String | False | |
TermsDiscountTakenAmount | Decimal | False | |
WorkflowPriority | String | False | |
WorkflowsAggregate | String | False |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
SalesInvoice
Return a list of: SalesInvoice
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ExtensionsExtensionAggregate | String | False | |
ActualShipDate | Datetime | False | |
AuditTrailCode | String | False | |
BackorderDate | Datetime | False | |
BatchKeyCreatedDateTime | Datetime | False | |
BatchId | String | False | |
BatchKeySource | String | False | |
BillToAddressKeyCustomerId | String | False | |
BillToAddressId | String | False | |
Comment | String | False | |
CommentId | String | False | |
CommissionAmountCurrency | String | False | |
CommissionAmount | Decimal | False | |
CommissionBasedOn | String | False | |
CommissionSaleAmountCurrency | String | False | |
CommissionSaleAmount | Decimal | False | |
CommissionsAggregate | String | False | |
CreatedBy | String | False | |
CreatedDate | Datetime | False | |
CurrencyKeyISOCode | String | False | |
CustomerId | String | False | |
CustomerName | String | False | |
CustomerPONumber | String | False | |
Date | Datetime | False | |
DiscountAmountCurrency | String | False | |
DiscountAmount | Decimal | False | |
DocumentTypeId | String | False | |
DocumentTypeKeyType | String | False | |
ExchangeDate | Datetime | False | |
ExchangeRate | Decimal | False | |
FreightAmountCurrency | String | False | |
FreightAmount | Decimal | False | |
FreightTaxAmountCurrency | String | False | |
FreightTaxAmount | Decimal | False | |
FreightTaxBasis | String | False | |
FreightTaxScheduleId | String | False | |
FreightTaxesAggregate | String | False | |
FrontOfficeIntegrationId | String | False | |
FulfillDate | Datetime | False | |
IntegrationId | String | False | |
IntegrationSource | Int | False | |
InvoiceDate | Datetime | False | |
IsIntrastatDocument | Bool | False | |
IsVoided | Bool | False | |
Id [KEY] | String | False | |
LastModifiedDate | Datetime | False | |
LineTotalAmountCurrency | String | False | |
LineTotalAmount | Decimal | False | |
MasterNumber | Int | False | |
MiscellaneousAmountCurrency | String | False | |
MiscellaneousAmount | Decimal | False | |
MiscellaneousTaxAmountCurrency | String | False | |
MiscellaneousTaxAmount | Decimal | False | |
MiscellaneousTaxBasis | String | False | |
MiscellaneousTaxScheduleId | String | False | |
MiscellaneousTaxesAggregate | String | False | |
ModifiedDate | Datetime | False | |
Note | String | False | |
OriginalSalesDocumentId | String | False | |
OriginalSalesDocumentType | String | False | |
PaymentTermsId | String | False | |
PriceLevelId | String | False | |
ProcessHoldsAggregate | String | False | |
QuoteDate | Datetime | False | |
Reference | String | False | |
RequestedShipDate | Datetime | False | |
ReturnDate | Datetime | False | |
SalesTerritoryId | String | False | |
SalespersonId | String | False | |
ShipCompleteOnly | Bool | False | |
ShipToAddressExtensionsExtensionAggregate | String | False | |
ShipToAddressCity | String | False | |
ShipToAddressLine1 | String | False | |
ShipToAddressLine2 | String | False | |
ShipToAddressLine3 | String | False | |
ShipToAddressPostalCode | String | False | |
ShipToAddressState | String | False | |
ShipToAddressCountryRegion | String | False | |
ShipToAddressFaxCountryCode | String | False | |
ShipToAddressFaxExtension | String | False | |
ShipToAddressFax | String | False | |
ShipToAddressPhone1CountryCode | String | False | |
ShipToAddressPhone1Extension | String | False | |
ShipToAddressPhone1 | String | False | |
ShipToAddressPhone2CountryCode | String | False | |
ShipToAddressPhone2Extension | String | False | |
ShipToAddressPhone2 | String | False | |
ShipToAddressPhone3CountryCode | String | False | |
ShipToAddressPhone3Extension | String | False | |
ShipToAddressPhone3 | String | False | |
ShipToAddressCountryRegionCodeId | String | False | |
ShipToAddressContactPerson | String | False | |
ShipToAddressName | String | False | |
ShipToAddressKeyCustomerId | String | False | |
ShipToAddressId | String | False | |
ShippingMethodId | String | False | |
TaxAmountCurrency | String | False | |
TaxAmount | Decimal | False | |
TaxExemptNumber1 | String | False | |
TaxExemptNumber2 | String | False | |
TaxRegistrationNumber | String | False | |
TaxScheduleId | String | False | |
TaxesAggregate | String | False | |
TotalAmountCurrency | String | False | |
TotalAmount | Decimal | False | |
TrackingNumbersAggregate | String | False | |
TradeDiscountItem | String | False | |
TransactionState | String | False | |
Type | String | False | |
UPSZone | String | False | |
UserDefinedDate01 | Datetime | False | |
UserDefinedDate02 | Datetime | False | |
UserDefinedList01 | String | False | |
UserDefinedList02 | String | False | |
UserDefinedList03 | String | False | |
UserDefinedText01 | String | False | |
UserDefinedText02 | String | False | |
UserDefinedText03 | String | False | |
UserDefinedText04 | String | False | |
UserDefinedText05 | String | False | |
WarehouseId | String | False | |
DepositAmountCurrency | String | False | |
DepositAmount | Decimal | False | |
DistributionsAggregate | String | False | |
GeneralLedgerPostingDate | Datetime | False | |
IsDirectDebit | Bool | False | |
LinesAggregate | String | False | |
PaymentAmountCurrency | String | False | |
PaymentAmount | Decimal | False | |
PaymentsAggregate | String | False | |
PostedBy | String | False | |
PostedDate | Datetime | False | |
TermsDiscountItem | String | False | |
TermsDiscountAvailableAmountCurrency | String | False | |
TermsDiscountAvailableAmount | Decimal | False | |
TermsDiscountDate | Datetime | False | |
TermsDueDate | Datetime | False | |
TermsDiscountTakenAmountCurrency | String | False | |
TermsDiscountTakenAmount | Decimal | False | |
WorkflowPriority | String | False | |
WorkflowsAggregate | String | False |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
SalesOrder
Return a list of: SalesOrder
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ExtensionsExtensionAggregate | String | False | |
ActualShipDate | Datetime | False | |
AuditTrailCode | String | False | |
BackorderDate | Datetime | False | |
BatchKeyCreatedDateTime | Datetime | False | |
BatchId | String | False | |
BatchKeySource | String | False | |
BillToAddressKeyCustomerId | String | False | |
BillToAddressId | String | False | |
Comment | String | False | |
CommentId | String | False | |
CommissionAmountCurrency | String | False | |
CommissionAmount | Decimal | False | |
CommissionBasedOn | String | False | |
CommissionSaleAmountCurrency | String | False | |
CommissionSaleAmount | Decimal | False | |
CommissionsAggregate | String | False | |
CreatedBy | String | False | |
CreatedDate | Datetime | False | |
CurrencyKeyISOCode | String | False | |
CustomerId | String | False | |
CustomerName | String | False | |
CustomerPONumber | String | False | |
Date | Datetime | False | |
DiscountAmountCurrency | String | False | |
DiscountAmount | Decimal | False | |
DocumentTypeId | String | False | |
DocumentTypeKeyType | String | False | |
ExchangeDate | Datetime | False | |
ExchangeRate | Decimal | False | |
FreightAmountCurrency | String | False | |
FreightAmount | Decimal | False | |
FreightTaxAmountCurrency | String | False | |
FreightTaxAmount | Decimal | False | |
FreightTaxBasis | String | False | |
FreightTaxScheduleId | String | False | |
FreightTaxesAggregate | String | False | |
FrontOfficeIntegrationId | String | False | |
FulfillDate | Datetime | False | |
IntegrationId | String | False | |
IntegrationSource | Int | False | |
InvoiceDate | Datetime | False | |
IsIntrastatDocument | Bool | False | |
IsVoided | Bool | False | |
Id [KEY] | String | False | |
LastModifiedDate | Datetime | False | |
LineTotalAmountCurrency | String | False | |
LineTotalAmount | Decimal | False | |
MasterNumber | Int | False | |
MiscellaneousAmountCurrency | String | False | |
MiscellaneousAmount | Decimal | False | |
MiscellaneousTaxAmountCurrency | String | False | |
MiscellaneousTaxAmount | Decimal | False | |
MiscellaneousTaxBasis | String | False | |
MiscellaneousTaxScheduleId | String | False | |
MiscellaneousTaxesAggregate | String | False | |
ModifiedDate | Datetime | False | |
Note | String | False | |
OriginalSalesDocumentId | String | False | |
OriginalSalesDocumentType | String | False | |
PaymentTermsId | String | False | |
PriceLevelId | String | False | |
ProcessHoldsAggregate | String | False | |
QuoteDate | Datetime | False | |
Reference | String | False | |
RequestedShipDate | Datetime | False | |
ReturnDate | Datetime | False | |
SalesTerritoryId | String | False | |
SalespersonId | String | False | |
ShipCompleteOnly | Bool | False | |
ShipToAddressExtensionsExtensionAggregate | String | False | |
ShipToAddressCity | String | False | |
ShipToAddressLine1 | String | False | |
ShipToAddressLine2 | String | False | |
ShipToAddressLine3 | String | False | |
ShipToAddressPostalCode | String | False | |
ShipToAddressState | String | False | |
ShipToAddressCountryRegion | String | False | |
ShipToAddressFaxCountryCode | String | False | |
ShipToAddressFaxExtension | String | False | |
ShipToAddressFax | String | False | |
ShipToAddressPhone1CountryCode | String | False | |
ShipToAddressPhone1Extension | String | False | |
ShipToAddressPhone1 | String | False | |
ShipToAddressPhone2CountryCode | String | False | |
ShipToAddressPhone2Extension | String | False | |
ShipToAddressPhone2 | String | False | |
ShipToAddressPhone3CountryCode | String | False | |
ShipToAddressPhone3Extension | String | False | |
ShipToAddressPhone3 | String | False | |
ShipToAddressCountryRegionCodeId | String | False | |
ShipToAddressContactPerson | String | False | |
ShipToAddressName | String | False | |
ShipToAddressKeyCustomerId | String | False | |
ShipToAddressId | String | False | |
ShippingMethodId | String | False | |
TaxAmountCurrency | String | False | |
TaxAmount | Decimal | False | |
TaxExemptNumber1 | String | False | |
TaxExemptNumber2 | String | False | |
TaxRegistrationNumber | String | False | |
TaxScheduleId | String | False | |
TaxesAggregate | String | False | |
TotalAmountCurrency | String | False | |
TotalAmount | Decimal | False | |
TrackingNumbersAggregate | String | False | |
TradeDiscountItem | String | False | |
TransactionState | String | False | |
Type | String | False | |
UPSZone | String | False | |
UserDefinedDate01 | Datetime | False | |
UserDefinedDate02 | Datetime | False | |
UserDefinedList01 | String | False | |
UserDefinedList02 | String | False | |
UserDefinedList03 | String | False | |
UserDefinedText01 | String | False | |
UserDefinedText02 | String | False | |
UserDefinedText03 | String | False | |
UserDefinedText04 | String | False | |
UserDefinedText05 | String | False | |
WarehouseId | String | False | |
DaysToIncrement | Int | False | |
DepositAmountCurrency | String | False | |
DepositAmount | Decimal | False | |
DocumentFrequency | String | False | |
IsRepeating | Bool | False | |
LinesAggregate | String | False | |
PaymentAmountCurrency | String | False | |
PaymentAmount | Decimal | False | |
PaymentsAggregate | String | False | |
ShippingProcessStatus | String | False | |
TimesToRepeat | Int | False | |
WorkflowPriority | String | False | |
WorkflowsAggregate | String | False |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
SalesProcessHoldSetup
Return a list of: SalesProcessHoldSetup
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ExtensionsExtensionAggregate | String | False | |
CreatedBy | String | False | |
CreatedDate | Datetime | False | |
Description | String | False | |
IsFulfillHold | Bool | False | |
IsPostHold | Bool | False | |
IsPrintHold | Bool | False | |
IsTransferHold | Bool | False | |
Id [KEY] | String | False | |
ModifiedDate | Datetime | False | |
Password | String | False |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
SalesQuote
Return a list of: SalesQuote
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ExtensionsExtensionAggregate | String | False | |
ActualShipDate | Datetime | False | |
AuditTrailCode | String | False | |
BackorderDate | Datetime | False | |
BatchKeyCreatedDateTime | Datetime | False | |
BatchId | String | False | |
BatchKeySource | String | False | |
BillToAddressKeyCustomerId | String | False | |
BillToAddressId | String | False | |
Comment | String | False | |
CommentId | String | False | |
CommissionAmountCurrency | String | False | |
CommissionAmount | Decimal | False | |
CommissionBasedOn | String | False | |
CommissionSaleAmountCurrency | String | False | |
CommissionSaleAmount | Decimal | False | |
CommissionsAggregate | String | False | |
CreatedBy | String | False | |
CreatedDate | Datetime | False | |
CurrencyKeyISOCode | String | False | |
CustomerId | String | False | |
CustomerName | String | False | |
CustomerPONumber | String | False | |
Date | Datetime | False | |
DiscountAmountCurrency | String | False | |
DiscountAmount | Decimal | False | |
DocumentTypeId | String | False | |
DocumentTypeKeyType | String | False | |
ExchangeDate | Datetime | False | |
ExchangeRate | Decimal | False | |
FreightAmountCurrency | String | False | |
FreightAmount | Decimal | False | |
FreightTaxAmountCurrency | String | False | |
FreightTaxAmount | Decimal | False | |
FreightTaxBasis | String | False | |
FreightTaxScheduleId | String | False | |
FreightTaxesAggregate | String | False | |
FrontOfficeIntegrationId | String | False | |
FulfillDate | Datetime | False | |
IntegrationId | String | False | |
IntegrationSource | Int | False | |
InvoiceDate | Datetime | False | |
IsIntrastatDocument | Bool | False | |
IsVoided | Bool | False | |
Id [KEY] | String | False | |
LastModifiedDate | Datetime | False | |
LineTotalAmountCurrency | String | False | |
LineTotalAmount | Decimal | False | |
MasterNumber | Int | False | |
MiscellaneousAmountCurrency | String | False | |
MiscellaneousAmount | Decimal | False | |
MiscellaneousTaxAmountCurrency | String | False | |
MiscellaneousTaxAmount | Decimal | False | |
MiscellaneousTaxBasis | String | False | |
MiscellaneousTaxScheduleId | String | False | |
MiscellaneousTaxesAggregate | String | False | |
ModifiedDate | Datetime | False | |
Note | String | False | |
OriginalSalesDocumentId | String | False | |
OriginalSalesDocumentType | String | False | |
PaymentTermsId | String | False | |
PriceLevelId | String | False | |
ProcessHoldsAggregate | String | False | |
QuoteDate | Datetime | False | |
Reference | String | False | |
RequestedShipDate | Datetime | False | |
ReturnDate | Datetime | False | |
SalesTerritoryId | String | False | |
SalespersonId | String | False | |
ShipCompleteOnly | Bool | False | |
ShipToAddressExtensionsExtensionAggregate | String | False | |
ShipToAddressCity | String | False | |
ShipToAddressLine1 | String | False | |
ShipToAddressLine2 | String | False | |
ShipToAddressLine3 | String | False | |
ShipToAddressPostalCode | String | False | |
ShipToAddressState | String | False | |
ShipToAddressCountryRegion | String | False | |
ShipToAddressFaxCountryCode | String | False | |
ShipToAddressFaxExtension | String | False | |
ShipToAddressFax | String | False | |
ShipToAddressPhone1CountryCode | String | False | |
ShipToAddressPhone1Extension | String | False | |
ShipToAddressPhone1 | String | False | |
ShipToAddressPhone2CountryCode | String | False | |
ShipToAddressPhone2Extension | String | False | |
ShipToAddressPhone2 | String | False | |
ShipToAddressPhone3CountryCode | String | False | |
ShipToAddressPhone3Extension | String | False | |
ShipToAddressPhone3 | String | False | |
ShipToAddressCountryRegionCodeId | String | False | |
ShipToAddressContactPerson | String | False | |
ShipToAddressName | String | False | |
ShipToAddressKeyCustomerId | String | False | |
ShipToAddressId | String | False | |
ShippingMethodId | String | False | |
TaxAmountCurrency | String | False | |
TaxAmount | Decimal | False | |
TaxExemptNumber1 | String | False | |
TaxExemptNumber2 | String | False | |
TaxRegistrationNumber | String | False | |
TaxScheduleId | String | False | |
TaxesAggregate | String | False | |
TotalAmountCurrency | String | False | |
TotalAmount | Decimal | False | |
TrackingNumbersAggregate | String | False | |
TradeDiscountItem | String | False | |
TransactionState | String | False | |
Type | String | False | |
UPSZone | String | False | |
UserDefinedDate01 | Datetime | False | |
UserDefinedDate02 | Datetime | False | |
UserDefinedList01 | String | False | |
UserDefinedList02 | String | False | |
UserDefinedList03 | String | False | |
UserDefinedText01 | String | False | |
UserDefinedText02 | String | False | |
UserDefinedText03 | String | False | |
UserDefinedText04 | String | False | |
UserDefinedText05 | String | False | |
WarehouseId | String | False | |
DaysToIncrement | Int | False | |
DocumentFrequency | String | False | |
ExpirationDate | Datetime | False | |
IsProspect | Bool | False | |
IsRepeating | Bool | False | |
LinesAggregate | String | False | |
TimesToRepeat | Int | False | |
WorkflowPriority | String | False | |
WorkflowsAggregate | String | False |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
SalesReturn
Return a list of: SalesReturn
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ExtensionsExtensionAggregate | String | False | |
ActualShipDate | Datetime | False | |
AuditTrailCode | String | False | |
BackorderDate | Datetime | False | |
BatchKeyCreatedDateTime | Datetime | False | |
BatchId | String | False | |
BatchKeySource | String | False | |
BillToAddressKeyCustomerId | String | False | |
BillToAddressId | String | False | |
Comment | String | False | |
CommentId | String | False | |
CommissionAmountCurrency | String | False | |
CommissionAmount | Decimal | False | |
CommissionBasedOn | String | False | |
CommissionSaleAmountCurrency | String | False | |
CommissionSaleAmount | Decimal | False | |
CommissionsAggregate | String | False | |
CreatedBy | String | False | |
CreatedDate | Datetime | False | |
CurrencyKeyISOCode | String | False | |
CustomerId | String | False | |
CustomerName | String | False | |
CustomerPONumber | String | False | |
Date | Datetime | False | |
DiscountAmountCurrency | String | False | |
DiscountAmount | Decimal | False | |
DocumentTypeId | String | False | |
DocumentTypeKeyType | String | False | |
ExchangeDate | Datetime | False | |
ExchangeRate | Decimal | False | |
FreightAmountCurrency | String | False | |
FreightAmount | Decimal | False | |
FreightTaxAmountCurrency | String | False | |
FreightTaxAmount | Decimal | False | |
FreightTaxBasis | String | False | |
FreightTaxScheduleId | String | False | |
FreightTaxesAggregate | String | False | |
FrontOfficeIntegrationId | String | False | |
FulfillDate | Datetime | False | |
IntegrationId | String | False | |
IntegrationSource | Int | False | |
InvoiceDate | Datetime | False | |
IsIntrastatDocument | Bool | False | |
IsVoided | Bool | False | |
Id [KEY] | String | False | |
LastModifiedDate | Datetime | False | |
LineTotalAmountCurrency | String | False | |
LineTotalAmount | Decimal | False | |
MasterNumber | Int | False | |
MiscellaneousAmountCurrency | String | False | |
MiscellaneousAmount | Decimal | False | |
MiscellaneousTaxAmountCurrency | String | False | |
MiscellaneousTaxAmount | Decimal | False | |
MiscellaneousTaxBasis | String | False | |
MiscellaneousTaxScheduleId | String | False | |
MiscellaneousTaxesAggregate | String | False | |
ModifiedDate | Datetime | False | |
Note | String | False | |
OriginalSalesDocumentId | String | False | |
OriginalSalesDocumentType | String | False | |
PaymentTermsId | String | False | |
PriceLevelId | String | False | |
ProcessHoldsAggregate | String | False | |
QuoteDate | Datetime | False | |
Reference | String | False | |
RequestedShipDate | Datetime | False | |
ReturnDate | Datetime | False | |
SalesTerritoryId | String | False | |
SalespersonId | String | False | |
ShipCompleteOnly | Bool | False | |
ShipToAddressExtensionsExtensionAggregate | String | False | |
ShipToAddressCity | String | False | |
ShipToAddressLine1 | String | False | |
ShipToAddressLine2 | String | False | |
ShipToAddressLine3 | String | False | |
ShipToAddressPostalCode | String | False | |
ShipToAddressState | String | False | |
ShipToAddressCountryRegion | String | False | |
ShipToAddressFaxCountryCode | String | False | |
ShipToAddressFaxExtension | String | False | |
ShipToAddressFax | String | False | |
ShipToAddressPhone1CountryCode | String | False | |
ShipToAddressPhone1Extension | String | False | |
ShipToAddressPhone1 | String | False | |
ShipToAddressPhone2CountryCode | String | False | |
ShipToAddressPhone2Extension | String | False | |
ShipToAddressPhone2 | String | False | |
ShipToAddressPhone3CountryCode | String | False | |
ShipToAddressPhone3Extension | String | False | |
ShipToAddressPhone3 | String | False | |
ShipToAddressCountryRegionCodeId | String | False | |
ShipToAddressContactPerson | String | False | |
ShipToAddressName | String | False | |
ShipToAddressKeyCustomerId | String | False | |
ShipToAddressId | String | False | |
ShippingMethodId | String | False | |
TaxAmountCurrency | String | False | |
TaxAmount | Decimal | False | |
TaxExemptNumber1 | String | False | |
TaxExemptNumber2 | String | False | |
TaxRegistrationNumber | String | False | |
TaxScheduleId | String | False | |
TaxesAggregate | String | False | |
TotalAmountCurrency | String | False | |
TotalAmount | Decimal | False | |
TrackingNumbersAggregate | String | False | |
TradeDiscountItem | String | False | |
TransactionState | String | False | |
Type | String | False | |
UPSZone | String | False | |
UserDefinedDate01 | Datetime | False | |
UserDefinedDate02 | Datetime | False | |
UserDefinedList01 | String | False | |
UserDefinedList02 | String | False | |
UserDefinedList03 | String | False | |
UserDefinedText01 | String | False | |
UserDefinedText02 | String | False | |
UserDefinedText03 | String | False | |
UserDefinedText04 | String | False | |
UserDefinedText05 | String | False | |
WarehouseId | String | False | |
DistributionsAggregate | String | False | |
GeneralLedgerPostingDate | Datetime | False | |
LinesAggregate | String | False | |
PaymentAmountCurrency | String | False | |
PaymentAmount | Decimal | False | |
PaymentsAggregate | String | False | |
PostedBy | String | False | |
PostedDate | Datetime | False | |
TermsDiscountReturnedAmountCurrency | String | False | |
TermsDiscountReturnedAmount | Decimal | False |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
Service
Return a list of: Service
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ExtensionsExtensionAggregate | String | False | |
ABCCode | String | False | |
AllowBackOrder | Bool | False | |
AssemblyVarianceGLAccountId | String | False | |
AssemblyVarianceGLAccountKeyIsEncrypted | Bool | False | |
ClassId | String | False | |
CostofGoodsSoldGLAccountId | String | False | |
CostofGoodsSoldGLAccountKeyIsEncrypted | Bool | False | |
CreatedDate | Datetime | False | |
CurrencyDecimalPlaces | String | False | |
CurrentCostCurrency | String | False | |
CurrentCost | Decimal | False | |
DamagedGLAccountId | String | False | |
DamagedGLAccountKeyIsEncrypted | Bool | False | |
DefaultPriceLevelId | String | False | |
DefaultSellingUofM | String | False | |
DefaultWarehouseId | String | False | |
Description | String | False | |
DropShipGLAccountId | String | False | |
DropShipGLAccountKeyIsEncrypted | Bool | False | |
FunctionalCurrencyDecimalPlaces | String | False | |
GenericDescription | String | False | |
InServiceGLAccountId | String | False | |
InServiceGLAccountKeyIsEncrypted | Bool | False | |
InUseGLAccountId | String | False | |
InUseGLAccountKeyIsEncrypted | Bool | False | |
IncludeInDemandPlanning | Bool | False | |
InternetAddressesAdditionalInformation | String | False | |
InternetAddressesEmailBccAddress | String | False | |
InternetAddressesEmailCcAddress | String | False | |
InternetAddressesEmailToAddress | String | False | |
InternetAddressesInternetField1 | String | False | |
InternetAddressesInternetField2 | String | False | |
InternetAddressesInternetField3 | String | False | |
InternetAddressesInternetField4 | String | False | |
InternetAddressesInternetField5 | String | False | |
InternetAddressesInternetField6 | String | False | |
InternetAddressesInternetField7 | String | False | |
InternetAddressesInternetField8 | String | False | |
InternetAddressesMessengerAddress | String | False | |
InventoryGLAccountId | String | False | |
InventoryGLAccountKeyIsEncrypted | Bool | False | |
InventoryOffsetGLAccountId | String | False | |
InventoryOffsetGLAccountKeyIsEncrypted | Bool | False | |
InventoryReturnGLAccountId | String | False | |
InventoryReturnGLAccountKeyIsEncrypted | Bool | False | |
IsDiscontinued | Bool | False | |
KeepCalendarYearHistory | Bool | False | |
KeepDistributionHistory | Bool | False | |
KeepFiscalYearHistory | Bool | False | |
KeepTransactionHistory | Bool | False | |
Id [KEY] | String | False | |
LastModifiedDate | Datetime | False | |
MarkdownGLAccountId | String | False | |
MarkdownGLAccountKeyIsEncrypted | Bool | False | |
ModifiedDate | Datetime | False | |
PriceMethod | String | False | |
PurchasePriceVarianceGLAccountId | String | False | |
PurchasePriceVarianceGLAccountKeyIsEncrypted | Bool | False | |
PurchaseTaxBasis | String | False | |
PurchaseTaxScheduleId | String | False | |
PurchaseUofM | String | False | |
QuantityDecimalPlaces | String | False | |
SalesGLAccountId | String | False | |
SalesGLAccountKeyIsEncrypted | Bool | False | |
SalesReturnGLAccountId | String | False | |
SalesReturnGLAccountKeyIsEncrypted | Bool | False | |
SalesTaxBasis | String | False | |
SalesTaxScheduleId | String | False | |
ShippingWeight | Decimal | False | |
ShortDescription | String | False | |
StandardCostCurrency | String | False | |
StandardCost | Decimal | False | |
SubstituteItem1Id | String | False | |
SubstituteItem2Id | String | False | |
Type | String | False | |
UnrealizedPurchasePriceVarianceGLAccountId | String | False | |
UnrealizedPurchasePriceVarianceGLAccountKeyIsEncrypted | Bool | False | |
UofMScheduleId | String | False | |
UserCategoryList1 | String | False | |
UserCategoryList2 | String | False | |
UserCategoryList3 | String | False | |
UserCategoryList4 | String | False | |
UserCategoryList5 | String | False | |
UserCategoryList6 | String | False | |
VarianceGLAccountId | String | False | |
VarianceGLAccountKeyIsEncrypted | Bool | False | |
WarrantyDays | Short | False |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
ServiceCall
Return a list of: ServiceCall
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ExtensionsExtensionAggregate | String | False | |
BillToAddressId | String | False | |
BillToCustomerId | String | False | |
CurrencyKeyISOCode | String | False | |
CustomerId | String | False | |
CustomerName | String | False | |
CustomerPONumber | String | False | |
EntryDateTime | Datetime | False | |
EstimatedArrivalDateTime | Datetime | False | |
ExchangeDate | Datetime | False | |
ExchangeRate | Decimal | False | |
FrontOfficeIntegrationId | String | False | |
Id [KEY] | String | False | |
Note | String | False | |
OfficeId | String | False | |
RateTypeId | String | False | |
ShipToAddressId | String | False | |
TransactionState | String | False | |
UserDefined01 | String | False | |
UserDefined02 | String | False | |
UserDefined03 | String | False | |
UserDefined04 | String | False | |
UserDefined05 | String | False | |
AuditsAggregate | String | False | |
CustomerReference | String | False | |
Description | String | False | |
DistributionsAggregate | String | False | |
DocumentTotalCurrency | String | False | |
DocumentTotal | Decimal | False | |
EstimatedTimeToRepair | Decimal | False | |
IsOnHold | Bool | False | |
LaborChargesExtensionsExtensionAggregate | String | False | |
LaborChargesBillablePercent | Decimal | False | |
LaborChargesTotalAmountCurrency | String | False | |
LaborChargesTotalAmount | Decimal | False | |
LaborChargesTotalCostCurrency | String | False | |
LaborChargesTotalCost | Decimal | False | |
MiscellaneousChargesExtensionsExtensionAggregate | String | False | |
MiscellaneousChargesBillablePercent | Decimal | False | |
MiscellaneousChargesTotalAmountCurrency | String | False | |
MiscellaneousChargesTotalAmount | Decimal | False | |
MiscellaneousChargesTotalCostCurrency | String | False | |
MiscellaneousChargesTotalCost | Decimal | False | |
PartsChargesExtensionsExtensionAggregate | String | False | |
PartsChargesBillablePercent | Decimal | False | |
PartsChargesTotalAmountCurrency | String | False | |
PartsChargesTotalAmount | Decimal | False | |
PartsChargesTotalCostCurrency | String | False | |
PartsChargesTotalCost | Decimal | False | |
PaymentTermsId | String | False | |
PreTaxDocumentAmountCurrency | String | False | |
PreTaxDocumentAmount | Decimal | False | |
PriceLevelId | String | False | |
Priority | Int | False | |
ResponseDateTime | Datetime | False | |
SalesPersonId | String | False | |
ServiceAreaId | String | False | |
ServiceContractId | String | False | |
ServiceContractLineSequenceNumber | Decimal | False | |
ServiceTypeId | String | False | |
ShipToAddressExtensionsExtensionAggregate | String | False | |
ShipToAddressCity | String | False | |
ShipToAddressLine1 | String | False | |
ShipToAddressLine2 | String | False | |
ShipToAddressLine3 | String | False | |
ShipToAddressPostalCode | String | False | |
ShipToAddressState | String | False | |
ShipToAddressCountryRegion | String | False | |
ShipToAddressContactPerson | String | False | |
ShipToAddressPhone1CountryCode | String | False | |
ShipToAddressPhone1Extension | String | False | |
ShipToAddressPhone1 | String | False | |
StatusCodeId | String | False | |
TaxAmountCurrency | String | False | |
TaxAmount | Decimal | False | |
TaxExemptNumber1 | String | False | |
TaxExemptNumber2 | String | False | |
TaxScheduleId | String | False | |
TechnicianId | String | False | |
TimeZoneId | String | False | |
AdditionalChargesAggregate | String | False | |
ArrivalDateTime | Datetime | False | |
CompletionDateTime | Datetime | False | |
DispatchDateTime | Datetime | False | |
EquipmentCodesAggregate | String | False | |
EscalationDateTime | Datetime | False | |
EscalationLevel | Int | False | |
ExpensesAggregate | String | False | |
InvoicedAmountCurrency | String | False | |
InvoicedAmount | Decimal | False | |
IsCallback | Bool | False | |
LaborAggregate | String | False | |
Meter1ExtensionsExtensionAggregate | String | False | |
Meter1CurrentReading | Int | False | |
Meter1Replaced | Bool | False | |
Meter1InternalUsage | Int | False | |
Meter2ExtensionsExtensionAggregate | String | False | |
Meter2CurrentReading | Int | False | |
Meter2Replaced | Bool | False | |
Meter2InternalUsage | Int | False | |
Meter3ExtensionsExtensionAggregate | String | False | |
Meter3CurrentReading | Int | False | |
Meter3Replaced | Bool | False | |
Meter3InternalUsage | Int | False | |
Meter4ExtensionsExtensionAggregate | String | False | |
Meter4CurrentReading | Int | False | |
Meter4Replaced | Bool | False | |
Meter4InternalUsage | Int | False | |
Meter5ExtensionsExtensionAggregate | String | False | |
Meter5CurrentReading | Int | False | |
Meter5Replaced | Bool | False | |
Meter5InternalUsage | Int | False | |
NotifyDateTime | Datetime | False | |
PartsAggregate | String | False | |
Type | String | False | |
WasNotified | Bool | False |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
ServiceEquipment
Return a list of: ServiceEquipment
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ExtensionsExtensionAggregate | String | False | |
AddressExtensionsExtensionAggregate | String | False | |
AddressCity | String | False | |
AddressLine1 | String | False | |
AddressLine2 | String | False | |
AddressLine3 | String | False | |
AddressPostalCode | String | False | |
AddressState | String | False | |
AddressContactPerson | String | False | |
AddressCountry | String | False | |
AddressId | String | False | |
AssetTag | String | False | |
CustomerId | String | False | |
InstallDate | Datetime | False | |
Id [KEY] | String | False | |
KeyItemId [KEY] | String | False | |
LastCalculatedDate | Datetime | False | |
LastPreventiveMaintenanceDate | Datetime | False | |
LastServiceDate | Datetime | False | |
Note | String | False | |
OfficeId | String | False | |
PreventiveMaintenanceDay | Int | False | |
PreventiveMaintenanceMonth | String | False | |
Quantity | Decimal | False | |
ReadingsAggregate | String | False | |
Reference | String | False | |
RegisterDate | Datetime | False | |
SellerWarrantyCodeExtensionsExtensionAggregate | String | False | |
SellerWarrantyCodeEndDate | Datetime | False | |
SellerWarrantyCodeId | String | False | |
SellerWarrantyCodeStartDate | Datetime | False | |
SerialNumber | String | False | |
ServiceAreaId | String | False | |
ShippedDate | Datetime | False | |
StatusId | String | False | |
TechnicianId | String | False | |
TimeZoneId | String | False | |
UserDefined01 | String | False | |
UserDefined02 | String | False | |
UserDefined03 | String | False | |
UserDefined04 | String | False | |
UserDefined05 | String | False | |
VendorId | String | False | |
VendorWarrantyCodeExtensionsExtensionAggregate | String | False | |
VendorWarrantyCodeEndDate | Datetime | False | |
VendorWarrantyCodeId | String | False | |
VendorWarrantyCodeStartDate | Datetime | False | |
Version | String | False |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
ServiceQuote
Return a list of: ServiceQuote
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ExtensionsExtensionAggregate | String | False | |
BillToAddressId | String | False | |
BillToCustomerId | String | False | |
CurrencyKeyISOCode | String | False | |
CustomerId | String | False | |
CustomerName | String | False | |
CustomerPONumber | String | False | |
EntryDateTime | Datetime | False | |
EstimatedArrivalDateTime | Datetime | False | |
ExchangeDate | Datetime | False | |
ExchangeRate | Decimal | False | |
FrontOfficeIntegrationId | String | False | |
Id [KEY] | String | False | |
Note | String | False | |
OfficeId | String | False | |
RateTypeId | String | False | |
ShipToAddressId | String | False | |
TransactionState | String | False | |
UserDefined01 | String | False | |
UserDefined02 | String | False | |
UserDefined03 | String | False | |
UserDefined04 | String | False | |
UserDefined05 | String | False | |
AuditsAggregate | String | False | |
CustomerReference | String | False | |
Description | String | False | |
DistributionsAggregate | String | False | |
DocumentTotalCurrency | String | False | |
DocumentTotal | Decimal | False | |
EstimatedTimeToRepair | Decimal | False | |
IsOnHold | Bool | False | |
LaborChargesExtensionsExtensionAggregate | String | False | |
LaborChargesBillablePercent | Decimal | False | |
LaborChargesTotalAmountCurrency | String | False | |
LaborChargesTotalAmount | Decimal | False | |
LaborChargesTotalCostCurrency | String | False | |
LaborChargesTotalCost | Decimal | False | |
MiscellaneousChargesExtensionsExtensionAggregate | String | False | |
MiscellaneousChargesBillablePercent | Decimal | False | |
MiscellaneousChargesTotalAmountCurrency | String | False | |
MiscellaneousChargesTotalAmount | Decimal | False | |
MiscellaneousChargesTotalCostCurrency | String | False | |
MiscellaneousChargesTotalCost | Decimal | False | |
PartsChargesExtensionsExtensionAggregate | String | False | |
PartsChargesBillablePercent | Decimal | False | |
PartsChargesTotalAmountCurrency | String | False | |
PartsChargesTotalAmount | Decimal | False | |
PartsChargesTotalCostCurrency | String | False | |
PartsChargesTotalCost | Decimal | False | |
PaymentTermsId | String | False | |
PreTaxDocumentAmountCurrency | String | False | |
PreTaxDocumentAmount | Decimal | False | |
PriceLevelId | String | False | |
Priority | Int | False | |
ResponseDateTime | Datetime | False | |
SalesPersonId | String | False | |
ServiceAreaId | String | False | |
ServiceContractId | String | False | |
ServiceContractLineSequenceNumber | Decimal | False | |
ServiceTypeId | String | False | |
ShipToAddressExtensionsExtensionAggregate | String | False | |
ShipToAddressCity | String | False | |
ShipToAddressLine1 | String | False | |
ShipToAddressLine2 | String | False | |
ShipToAddressLine3 | String | False | |
ShipToAddressPostalCode | String | False | |
ShipToAddressState | String | False | |
ShipToAddressCountryRegion | String | False | |
ShipToAddressContactPerson | String | False | |
ShipToAddressPhone1CountryCode | String | False | |
ShipToAddressPhone1Extension | String | False | |
ShipToAddressPhone1 | String | False | |
StatusCodeId | String | False | |
TaxAmountCurrency | String | False | |
TaxAmount | Decimal | False | |
TaxExemptNumber1 | String | False | |
TaxExemptNumber2 | String | False | |
TaxScheduleId | String | False | |
TechnicianId | String | False | |
TimeZoneId | String | False | |
AdditionalChargesAggregate | String | False | |
EquipmentCodesAggregate | String | False | |
ExpensesAggregate | String | False | |
LaborAggregate | String | False | |
PartsAggregate | String | False |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
Skill
Return a list of: Skill
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ExtensionsExtensionAggregate | String | False | |
CompensationExtensionsExtensionAggregate | String | False | |
CompensationCompensationAmount | Decimal | False | |
CompensationCompensationPeriod | String | False | |
DeleteOnUpdate | Bool | False | |
SkillId [KEY] | String | False |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
SkillSet
Return a list of: SkillSet
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ExtensionsExtensionAggregate | String | False | |
AvailableSkills | Int | False | |
SkillSetId [KEY] | String | False | |
SkillsAggregate | String | False |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
Vendor
Return a list of: Vendor
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ExtensionsExtensionAggregate | String | False | |
AccountsPayableGLAccountId | String | False | |
AccountsPayableGLAccountKeyIsEncrypted | Bool | False | |
AccruedPurchasesGLAccountId | String | False | |
AccruedPurchasesGLAccountKeyIsEncrypted | Bool | False | |
AddressesAggregate | String | False | |
AllowRevaluation | Bool | False | |
BankAccountId | String | False | |
CashGLAccountId | String | False | |
CashGLAccountKeyIsEncrypted | Bool | False | |
CheckName | String | False | |
ClassId | String | False | |
Comment1 | String | False | |
Comment2 | String | False | |
CreatedDate | Datetime | False | |
CreditLimitItem | String | False | |
CurrencyKeyISOCode | String | False | |
DefaultAddressId | String | False | |
DefaultAddressKeyVendorId | String | False | |
DefaultCashAccountType | String | False | |
DiscountGracePeriod | Int | False | |
DueDateGracePeriod | Int | False | |
FinanceChargesGLAccountId | String | False | |
FinanceChargesGLAccountKeyIsEncrypted | Bool | False | |
FreeOnBoard | String | False | |
FreightGLAccountId | String | False | |
FreightGLAccountKeyIsEncrypted | Bool | False | |
HistoryOptionsKeepCalendarHistory | Bool | False | |
HistoryOptionsKeepDistributionHistory | Bool | False | |
HistoryOptionsKeepFiscalHistory | Bool | False | |
HistoryOptionsKeepTransactionHistory | Bool | False | |
IsActive | Bool | False | |
IsOnHold | Bool | False | |
IsOneTime | Bool | False | |
Id [KEY] | String | False | |
Language | String | False | |
MaximumInvoiceItem | String | False | |
MaximumWriteoffItem | String | False | |
MinimumOrderAmountCurrency | String | False | |
MinimumOrderAmount | Decimal | False | |
MinimumPaymentItem | String | False | |
MiscellaneousGLAccountId | String | False | |
MiscellaneousGLAccountKeyIsEncrypted | Bool | False | |
ModifiedDate | Datetime | False | |
Name | String | False | |
Notes | String | False | |
PaymentPriority | String | False | |
PaymentTermsId | String | False | |
PostResultsTo | String | False | |
ProjectAccountingOptionsDefaultPurchaseOrderFormat | String | False | |
ProjectAccountingOptionsUnitCostCurrency | String | False | |
ProjectAccountingOptionsUnitCost | Decimal | False | |
ProjectAccountingOptionsUnitOfMeasure | String | False | |
ProjectAccountingOptionsUserDefined1 | String | False | |
ProjectAccountingOptionsUserDefined2 | String | False | |
PurchaseAddressId | String | False | |
PurchaseAddressKeyVendorId | String | False | |
PurchasePriceVarianceGLAccountId | String | False | |
PurchasePriceVarianceGLAccountKeyIsEncrypted | Bool | False | |
PurchasesGLAccountId | String | False | |
PurchasesGLAccountKeyIsEncrypted | Bool | False | |
RateTypeId | String | False | |
RemitToAddressId | String | False | |
RemitToAddressKeyVendorId | String | False | |
ShipFromAddressId | String | False | |
ShipFromAddressKeyVendorId | String | False | |
ShortName | String | False | |
Tax1099BoxNumber | Int | False | |
Tax1099Type | String | False | |
TaxGLAccountId | String | False | |
TaxGLAccountKeyIsEncrypted | Bool | False | |
TaxIdentificationNumber | String | False | |
TaxRegistrationNumber | String | False | |
TaxSchedule | String | False | |
TermsDiscountAvailableGLAccountId | String | False | |
TermsDiscountAvailableGLAccountKeyIsEncrypted | Bool | False | |
TermsDiscountTakenGLAccountId | String | False | |
TermsDiscountTakenGLAccountKeyIsEncrypted | Bool | False | |
TradeDiscountGLAccountId | String | False | |
TradeDiscountGLAccountKeyIsEncrypted | Bool | False | |
TradeDiscountPercent | Decimal | False | |
UserDefined1 | String | False | |
UserDefined2 | String | False | |
UserLanguageId | Int | False | |
VendorAccountNumber | String | False | |
WorkflowPriority | String | False | |
WorkflowsAggregate | String | False | |
WriteoffGLAccountId | String | False | |
WriteoffGLAccountKeyIsEncrypted | Bool | False |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
VendorAddress
Return a list of: VendorAddress
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ExtensionsExtensionAggregate | String | False | |
City | String | False | |
Line1 | String | False | |
Line2 | String | False | |
Line3 | String | False | |
PostalCode | String | False | |
State | String | False | |
CountryRegion | String | False | |
FaxCountryCode | String | False | |
FaxExtension | String | False | |
Fax | String | False | |
Phone1CountryCode | String | False | |
Phone1Extension | String | False | |
Phone1 | String | False | |
Phone2CountryCode | String | False | |
Phone2Extension | String | False | |
Phone2 | String | False | |
Phone3CountryCode | String | False | |
Phone3Extension | String | False | |
Phone3 | String | False | |
CountryRegionCodeId | String | False | |
ContactPerson | String | False | |
Name | String | False | |
CreatedDate | Datetime | False | |
InternetAddressesAdditionalInformation | String | False | |
InternetAddressesEmailBccAddress | String | False | |
InternetAddressesEmailCcAddress | String | False | |
InternetAddressesEmailToAddress | String | False | |
InternetAddressesInternetField1 | String | False | |
InternetAddressesInternetField2 | String | False | |
InternetAddressesInternetField3 | String | False | |
InternetAddressesInternetField4 | String | False | |
InternetAddressesInternetField5 | String | False | |
InternetAddressesInternetField6 | String | False | |
InternetAddressesInternetField7 | String | False | |
InternetAddressesInternetField8 | String | False | |
InternetAddressesMessengerAddress | String | False | |
LastModifiedDate | Datetime | False | |
ModifiedDate | Datetime | False | |
ShippingMethodId | String | False | |
TaxScheduleId | String | False | |
UPSZone | String | False | |
UserDefined1 | String | False | |
UserDefined2 | String | False | |
DeleteOnUpdate | Bool | False | |
Id [KEY] | String | False | |
KeyVendorId [KEY] | String | False |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
Warehouse
Return a list of: Warehouse
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ExtensionsExtensionAggregate | String | False | |
AddressExtensionsExtensionAggregate | String | False | |
AddressCity | String | False | |
AddressLine1 | String | False | |
AddressLine2 | String | False | |
AddressLine3 | String | False | |
AddressPostalCode | String | False | |
AddressState | String | False | |
AddressCountryRegion | String | False | |
AddressFaxCountryCode | String | False | |
AddressFaxExtension | String | False | |
AddressFax | String | False | |
AddressPhone1CountryCode | String | False | |
AddressPhone1Extension | String | False | |
AddressPhone1 | String | False | |
AddressPhone2CountryCode | String | False | |
AddressPhone2Extension | String | False | |
AddressPhone2 | String | False | |
AddressPhone3CountryCode | String | False | |
AddressPhone3Extension | String | False | |
AddressPhone3 | String | False | |
AddressCountryRegionCodeId | String | False | |
BinsAggregate | String | False | |
Description | String | False | |
IncludeInPlanning | Bool | False | |
Id [KEY] | String | False | |
PurchaseTaxScheduleId | String | False | |
SalesTaxScheduleId | String | False |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
Views
Views are composed of columns and pseudo columns. Views are similar to tables in the way that data is represented; however, views do not support updates. Entities that are represented as views are typically read-only entities. Often, a stored procedure is available to update the data if such functionality is applicable to the data source.
Queries can be executed against a view as if it were a normal table, and the data that comes back is similar in that regard.
Dynamic views, such as queries exposed as views, and views for looking up specific combinations of project_team work items are supported.
Jitterbit Connector for Microsoft Dynamics GP Views
Name | Description |
---|---|
ApplicantApplication | Return a list of: ApplicantApplication |
ApplicantApplications | Return a list of: ApplicantApplications |
ApplicantInterviewInterviewItems | Return a list of: ApplicantInterviewInterviewItems |
ApplicantInterviews | Return a list of: ApplicantInterviews |
ApplicantPreviousEmployers | Return a list of: ApplicantPreviousEmployers |
ApplicantReferences | Return a list of: ApplicantReferences |
ApplicantSchools | Return a list of: ApplicantSchools |
ApplicantSkills | Return a list of: ApplicantSkills |
ApplicantTests | Return a list of: ApplicantTests |
BackOfficeRole | Return a list of: BackOfficeRole |
Bank | Return a list of: Bank |
CashReceiptDistributions | Return a list of: CashReceiptDistributions |
ChangedCurrencyKey | Return a list of: ChangedCurrencyKey |
ChangedCustomerAddressKey | Return a list of: ChangedCustomerAddressKey |
ChangedCustomerKey | Return a list of: ChangedCustomerKey |
ChangedInternetAddressKey | Return a list of: ChangedInternetAddressKey |
ChangedItemKey | Return a list of: ChangedItemKey |
ChangedPriceLevelKey | Return a list of: ChangedPriceLevelKey |
ChangedPricingKey | Return a list of: ChangedPricingKey |
ChangedSalesInvoiceKey | Return a list of: ChangedSalesInvoiceKey |
ChangedSalesOrderKey | Return a list of: ChangedSalesOrderKey |
ChangedSalespersonKey | Return a list of: ChangedSalespersonKey |
ChangedUofMScheduleKey | Return a list of: ChangedUofMScheduleKey |
Company | Return a list of: Company |
CompanyAddress | Return a list of: CompanyAddress |
CountryRegionCode | Return a list of: CountryRegionCode |
Currency | Return a list of: Currency |
CurrencyAccess | Return a list of: CurrencyAccess |
CurrencyPostingAccount | Return a list of: CurrencyPostingAccount |
CustomerAddresses | Return a list of: CustomerAddresses |
CustomerReceivablesSummary | Return a list of: CustomerReceivablesSummary |
EmployeeAddresses | Return a list of: EmployeeAddresses |
GLAccount | Return a list of: GLAccount |
GLAccountCategory | Return a list of: GLAccountCategory |
GLAccountFormat | Return a list of: GLAccountFormat |
GLFixedAllocationAccountDistributions | Return a list of: GLFixedAllocationAccountDistributions |
GLPostingAccountCurrencies | Return a list of: GLPostingAccountCurrencies |
GLTransactionLines | Return a list of: GLTransactionLines |
GLVariableAllocationAccountDistributions | Return a list of: GLVariableAllocationAccountDistributions |
InventoriedItem | Return a list of: InventoriedItem |
InventoryAdjustmentLines | Return a list of: InventoryAdjustmentLines |
InventoryTransferLines | Return a list of: InventoryTransferLines |
InventoryVarianceLines | Return a list of: InventoryVarianceLines |
Item | Return a list of: Item |
ItemClass | Return a list of: ItemClass |
ManufacturingOrder | Return a list of: ManufacturingOrder |
ManufacturingOrderPickList | Return a list of: ManufacturingOrderPickList |
ManufacturingOrderRoute | Return a list of: ManufacturingOrderRoute |
MulticurrencySetup | Return a list of: MulticurrencySetup |
PayablesDocument | Return a list of: PayablesDocument |
PayablesDocumentDistributions | The DynamicsGP table PayablesDocumentDistributions. |
PayablesDocumentTaxes | The DynamicsGP table PayablesDocumentTaxes. |
PaymentCardType | Return a list of: PaymentCardType |
PaymentTerms | Return a list of: PaymentTerms |
PlannedOrder | Return a list of: PlannedOrder |
PlannedOrderItems | Return a list of: PlannedOrderItems |
PolicyBehaviors | Return a list of: PolicyBehaviors |
PriceLevel | Return a list of: PriceLevel |
PricingDetails | Return a list of: PricingDetails |
Project | Return a list of: Project |
ProjectAccounts | Return a list of: ProjectAccounts |
ProjectBillingCycles | Return a list of: ProjectBillingCycles |
ProjectBudget | Return a list of: ProjectBudget |
ProjectBudgets | Return a list of: ProjectBudgets |
ProjectChangeOrder | Return a list of: ProjectChangeOrder |
ProjectChangeOrderBudgets | Return a list of: ProjectChangeOrderBudgets |
ProjectChangeOrderFees | Return a list of: ProjectChangeOrderFees |
ProjectContract | Return a list of: ProjectContract |
ProjectContractAccounts | Return a list of: ProjectContractAccounts |
ProjectContractBillingCycles | Return a list of: ProjectContractBillingCycles |
ProjectEmployeeExpense | Return a list of: ProjectEmployeeExpense |
ProjectEmployeeExpenseDistributions | Return a list of: ProjectEmployeeExpenseDistributions |
ProjectEmployeeExpenseLines | Return a list of: ProjectEmployeeExpenseLines |
ProjectEquipmentList | Return a list of: ProjectEquipmentList |
ProjectFees | Return a list of: ProjectFees |
ProjectMiscellaneousLog | Return a list of: ProjectMiscellaneousLog |
ProjectMiscellaneousLogDistributions | Return a list of: ProjectMiscellaneousLogDistributions |
ProjectMiscellaneousLogLines | Return a list of: ProjectMiscellaneousLogLines |
ProjectTimesheet | Return a list of: ProjectTimesheet |
ProjectTimesheetDistributions | Return a list of: ProjectTimesheetDistributions |
ProjectTimesheetLines | Return a list of: ProjectTimesheetLines |
PurchaseInvoiceDistributions | Return a list of: PurchaseInvoiceDistributions |
PurchaseInvoiceFreightTaxes | Return a list of: PurchaseInvoiceFreightTaxes |
PurchaseInvoiceLines | Return a list of: PurchaseInvoiceLines |
PurchaseInvoiceMiscellaneousTaxes | Return a list of: PurchaseInvoiceMiscellaneousTaxes |
PurchaseInvoiceTaxes | Return a list of: PurchaseInvoiceTaxes |
PurchaseOrderFreightTaxes | Return a list of: PurchaseOrderFreightTaxes |
PurchaseOrderLines | Return a list of: PurchaseOrderLines |
PurchaseOrderMiscellaneousTaxes | Return a list of: PurchaseOrderMiscellaneousTaxes |
PurchaseOrderTaxes | Return a list of: PurchaseOrderTaxes |
PurchaseReceiptDistributions | Return a list of: PurchaseReceiptDistributions |
PurchaseReceiptLines | Return a list of: PurchaseReceiptLines |
PurchaseReceiptUserDefined | Return a list of: PurchaseReceiptUserDefined |
ReceivablesDebitMemoCommissions | Return a list of: ReceivablesDebitMemoCommissions |
ReceivablesDocument | Return a list of: ReceivablesDocument |
ReceivablesDocumentDistributions | The DynamicsGP table ReceivablesDocumentDistributions. |
ReceivablesDocumentTaxes | The DynamicsGP table ReceivablesDocumentTaxes. |
ReceivablesInvoiceCommissions | Return a list of: ReceivablesInvoiceCommissions |
ReceivablesReturnCommissions | Return a list of: ReceivablesReturnCommissions |
ReceivablesServiceRepairCommissions | Return a list of: ReceivablesServiceRepairCommissions |
ReturnMaterialAuthorizationAudits | Return a list of: ReturnMaterialAuthorizationAudits |
ReturnMaterialAuthorizationLines | Return a list of: ReturnMaterialAuthorizationLines |
SalesBackorderLines | Return a list of: SalesBackorderLines |
SalesBackorderPayments | Return a list of: SalesBackorderPayments |
SalesDocument | Return a list of: SalesDocument |
SalesDocumentCommissions | The DynamicsGP table SalesDocumentCommissions. |
SalesDocumentFreightTaxes | The DynamicsGP table SalesDocumentFreightTaxes. |
SalesDocumentMiscellaneousTaxes | The DynamicsGP table SalesDocumentMiscellaneousTaxes. |
SalesDocumentProcessHolds | The DynamicsGP table SalesDocumentProcessHolds. |
SalesDocumentTaxes | The DynamicsGP table SalesDocumentTaxes. |
SalesDocumentTrackingNumbers | The DynamicsGP table SalesDocumentTrackingNumbers. |
SalesFulfillmentOrderDistributions | Return a list of: SalesFulfillmentOrderDistributions |
SalesFulfillmentOrderLines | Return a list of: SalesFulfillmentOrderLines |
SalesFulfillmentOrderPayments | Return a list of: SalesFulfillmentOrderPayments |
SalesInvoiceDistributions | Return a list of: SalesInvoiceDistributions |
SalesInvoiceLines | Return a list of: SalesInvoiceLines |
SalesInvoicePayments | Return a list of: SalesInvoicePayments |
SalesOrderLines | Return a list of: SalesOrderLines |
SalesOrderPayments | Return a list of: SalesOrderPayments |
Salesperson | Return a list of: Salesperson |
SalespersonCommissions | Return a list of: SalespersonCommissions |
SalespersonSalesHistory | Return a list of: SalespersonSalesHistory |
SalesQuoteLines | Return a list of: SalesQuoteLines |
SalesReturnDistributions | Return a list of: SalesReturnDistributions |
SalesReturnLines | Return a list of: SalesReturnLines |
SalesReturnPayments | Return a list of: SalesReturnPayments |
SalesTerritory | Return a list of: SalesTerritory |
SalesTerritorySalesHistory | Return a list of: SalesTerritorySalesHistory |
ServiceCallAdditionalCharges | Return a list of: ServiceCallAdditionalCharges |
ServiceCallEquipmentCodes | Return a list of: ServiceCallEquipmentCodes |
ServiceCallExpenses | Return a list of: ServiceCallExpenses |
ServiceCallLabor | Return a list of: ServiceCallLabor |
ServiceCallParts | Return a list of: ServiceCallParts |
ServiceEquipmentReadings | Return a list of: ServiceEquipmentReadings |
ServiceQuoteAdditionalCharges | Return a list of: ServiceQuoteAdditionalCharges |
ServiceQuoteEquipmentCodes | Return a list of: ServiceQuoteEquipmentCodes |
ServiceQuoteExpenses | Return a list of: ServiceQuoteExpenses |
ServiceQuoteLabor | Return a list of: ServiceQuoteLabor |
ServiceQuoteParts | Return a list of: ServiceQuoteParts |
ShippingMethod | Return a list of: ShippingMethod |
SkillSetSkills | Return a list of: SkillSetSkills |
UofMSchedule | Return a list of: UofMSchedule |
UofMScheduleDetails | Return a list of: UofMScheduleDetails |
UserAssignableBusinessObject | Return a list of: UserAssignableBusinessObject |
VendorAddresses | Return a list of: VendorAddresses |
VendorManufacturingOrder | Return a list of: VendorManufacturingOrder |
VendorManufacturingOrderRoute | Return a list of: VendorManufacturingOrderRoute |
VendorPlannedOrder | Return a list of: VendorPlannedOrder |
WarehouseBins | Return a list of: WarehouseBins |
ApplicantApplication
Return a list of: ApplicantApplication
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
ApplicantApplicationKeyApplicantId [KEY] | Int | |
ApplicantApplicationKeySequenceId [KEY] | Int | |
ColorColorCode | String | |
ColorColorName | String | |
CompanyCode | String | |
DateApplied | Datetime | |
DeleteOnUpdate | Bool | |
DepartmentId | String | |
DivisionId | String | |
IsReplyLetterSent | Bool | |
IsWillRelocate | Bool | |
LastModifiedBy | String | |
LastModifiedDate | Datetime | |
Location | String | |
PositionId | String | |
ReferenceInformationSource | String | |
ReferenceInformationSourceDescription | String | |
RejectionInfomationComment | String | |
RejectionInfomationReason | String | |
RequisitionId | String | |
Status | String |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
ApplicantApplications
Return a list of: ApplicantApplications
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
AddressExtensionsExtensionAggregate | String | |
AddressCity | String | |
AddressLine1 | String | |
AddressLine2 | String | |
AddressLine3 | String | |
AddressPostalCode | String | |
AddressState | String | |
AddressCountryRegion | String | |
AddressFaxCountryCode | String | |
AddressFaxExtension | String | |
AddressFax | String | |
AddressPhone1CountryCode | String | |
AddressPhone1Extension | String | |
AddressPhone1 | String | |
AddressPhone2CountryCode | String | |
AddressPhone2Extension | String | |
AddressPhone2 | String | |
AddressPhone3CountryCode | String | |
AddressPhone3Extension | String | |
AddressPhone3 | String | |
AgeCode | String | |
ApplicantId | Int | |
ApplicationColorColorCode | String | |
ApplicationColorColorName | String | |
ApplicationStatus | String | |
ApplicationsExtensionsExtensionAggregate | String | |
ApplicationsApplicantApplicationKeyApplicantId [KEY] | Int | |
ApplicationsApplicantApplicationKeySequenceId [KEY] | Int | |
ApplicationsColorColorCode | String | |
ApplicationsColorColorName | String | |
ApplicationsCompanyCode | String | |
ApplicationsDateApplied | Datetime | |
ApplicationsDeleteOnUpdate | Bool | |
ApplicationsDepartmentId | String | |
ApplicationsDivisionId | String | |
ApplicationsIsReplyLetterSent | Bool | |
ApplicationsIsWillRelocate | Bool | |
ApplicationsLastModifiedBy | String | |
ApplicationsLastModifiedDate | Datetime | |
ApplicationsLocation | String | |
ApplicationsPositionId | String | |
ApplicationsReferenceInformationSource | String | |
ApplicationsReferenceInformationSourceDescription | String | |
ApplicationsRejectionInfomationComment | String | |
ApplicationsRejectionInfomationReason | String | |
ApplicationsRequisitionId | String | |
ApplicationsStatus | String | |
CompanyCode | String | |
DateApplied | Datetime | |
DepartmentId | String | |
DivisionId | String | |
Ethnicity | String | |
FirstName | String | |
Gender | String | |
HRRequisistionId | String | |
InterviewsAggregate | String | |
IsDisabled | Bool | |
IsDisabledVeteran | Bool | |
IsOtherVeteran | Bool | |
IsReplyLetterSent | Bool | |
IsVeteran | Bool | |
IsVietnamEraVeteran | Bool | |
IsWillRelocate | Bool | |
LastModifiedBy | String | |
LastModifiedDate | Datetime | |
LastName | String | |
Location | String | |
MiddleName | String | |
PositionId | String | |
PreviousEmployersAggregate | String | |
ReferenceInformationSource | String | |
ReferenceInformationSourceDescription | String | |
ReferencesAggregate | String | |
RejectionInformationComment | String | |
RejectionInformationReason | String | |
SchoolsAggregate | String | |
SequenceId | Int | |
SkillsAggregate | String | |
TaxIdentifier | String | |
TestsAggregate | String |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
ApplicantInterviewInterviewItems
Return a list of: ApplicantInterviewInterviewItems
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
ApplicantInterviewKeyApplicantId | Int | |
ApplicantInterviewKeyApplyDateId | Datetime | |
ApplicantInterviewKeyInterviewTypeId | String | |
CompanyCode | String | |
DeleteOnUpdate | Bool | |
DepartmentId | String | |
DivisionId | String | |
EffectiveDate | Datetime | |
InterviewItemsCategoryCode | Int | |
InterviewItemsCategoryName | String | |
InterviewItemsCategoryWeight | Int | |
InterviewItemsNotes | String | |
InterviewItemsScore | Int | |
InterviewItemsSequenceId [KEY] | Int | |
InterviewTypeCode | Int | |
Notes | String | |
PositionId | String | |
ReviewRange | Int | |
ReviewRating | Decimal | |
TotalWeight | Int | |
WeightedScore | Int |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
ApplicantInterviews
Return a list of: ApplicantInterviews
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
AddressExtensionsExtensionAggregate | String | |
AddressCity | String | |
AddressLine1 | String | |
AddressLine2 | String | |
AddressLine3 | String | |
AddressPostalCode | String | |
AddressState | String | |
AddressCountryRegion | String | |
AddressFaxCountryCode | String | |
AddressFaxExtension | String | |
AddressFax | String | |
AddressPhone1CountryCode | String | |
AddressPhone1Extension | String | |
AddressPhone1 | String | |
AddressPhone2CountryCode | String | |
AddressPhone2Extension | String | |
AddressPhone2 | String | |
AddressPhone3CountryCode | String | |
AddressPhone3Extension | String | |
AddressPhone3 | String | |
AgeCode | String | |
ApplicantId | Int | |
ApplicationColorColorCode | String | |
ApplicationColorColorName | String | |
ApplicationStatus | String | |
ApplicationsAggregate | String | |
CompanyCode | String | |
DateApplied | Datetime | |
DepartmentId | String | |
DivisionId | String | |
Ethnicity | String | |
FirstName | String | |
Gender | String | |
HRRequisistionId | String | |
InterviewsExtensionsExtensionAggregate | String | |
InterviewsApplicantInterviewKeyApplicantId [KEY] | Int | |
InterviewsApplicantInterviewKeyApplyDateId [KEY] | Datetime | |
InterviewsApplicantInterviewKeyInterviewTypeId [KEY] | String | |
InterviewsCompanyCode | String | |
InterviewsDeleteOnUpdate | Bool | |
InterviewsDepartmentId | String | |
InterviewsDivisionId | String | |
InterviewsEffectiveDate | Datetime | |
InterviewsInterviewItemsAggregate | String | |
InterviewsInterviewTypeCode | Int | |
InterviewsNotes | String | |
InterviewsPositionId | String | |
InterviewsReviewRange | Int | |
InterviewsReviewRating | Decimal | |
InterviewsTotalWeight | Int | |
InterviewsWeightedScore | Int | |
IsDisabled | Bool | |
IsDisabledVeteran | Bool | |
IsOtherVeteran | Bool | |
IsReplyLetterSent | Bool | |
IsVeteran | Bool | |
IsVietnamEraVeteran | Bool | |
IsWillRelocate | Bool | |
LastModifiedBy | String | |
LastModifiedDate | Datetime | |
LastName | String | |
Location | String | |
MiddleName | String | |
PositionId | String | |
PreviousEmployersAggregate | String | |
ReferenceInformationSource | String | |
ReferenceInformationSourceDescription | String | |
ReferencesAggregate | String | |
RejectionInformationComment | String | |
RejectionInformationReason | String | |
SchoolsAggregate | String | |
SequenceId | Int | |
SkillsAggregate | String | |
TaxIdentifier | String | |
TestsAggregate | String |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
ApplicantPreviousEmployers
Return a list of: ApplicantPreviousEmployers
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
AddressExtensionsExtensionAggregate | String | |
AddressCity | String | |
AddressLine1 | String | |
AddressLine2 | String | |
AddressLine3 | String | |
AddressPostalCode | String | |
AddressState | String | |
AddressCountryRegion | String | |
AddressFaxCountryCode | String | |
AddressFaxExtension | String | |
AddressFax | String | |
AddressPhone1CountryCode | String | |
AddressPhone1Extension | String | |
AddressPhone1 | String | |
AddressPhone2CountryCode | String | |
AddressPhone2Extension | String | |
AddressPhone2 | String | |
AddressPhone3CountryCode | String | |
AddressPhone3Extension | String | |
AddressPhone3 | String | |
AgeCode | String | |
ApplicantId | Int | |
ApplicationColorColorCode | String | |
ApplicationColorColorName | String | |
ApplicationStatus | String | |
ApplicationsAggregate | String | |
CompanyCode | String | |
DateApplied | Datetime | |
DepartmentId | String | |
DivisionId | String | |
Ethnicity | String | |
FirstName | String | |
Gender | String | |
HRRequisistionId | String | |
InterviewsAggregate | String | |
IsDisabled | Bool | |
IsDisabledVeteran | Bool | |
IsOtherVeteran | Bool | |
IsReplyLetterSent | Bool | |
IsVeteran | Bool | |
IsVietnamEraVeteran | Bool | |
IsWillRelocate | Bool | |
LastModifiedBy | String | |
LastModifiedDate | Datetime | |
LastName | String | |
Location | String | |
MiddleName | String | |
PositionId | String | |
PreviousEmployersExtensionsExtensionAggregate | String | |
PreviousEmployersApplicantWorkHistoryKeyApplicantSequenceKeyApplicantId [KEY] | Int | |
PreviousEmployersApplicantWorkHistoryKeyApplicantSequenceKeySequenceId [KEY] | Int | |
PreviousEmployersApplicantWorkHistoryId [KEY] | String | |
PreviousEmployersCompensationPeriod | String | |
PreviousEmployersDeleteOnUpdate | Bool | |
PreviousEmployersEndDate | Datetime | |
PreviousEmployersLastModifiedBy | String | |
PreviousEmployersLastModifiedDate | Datetime | |
PreviousEmployersNotes | String | |
PreviousEmployersPositionId | String | |
PreviousEmployersStartDate | Datetime | |
PreviousEmployersWage | Decimal | |
PreviousEmployersYearsOfExperience | Int | |
ReferenceInformationSource | String | |
ReferenceInformationSourceDescription | String | |
ReferencesAggregate | String | |
RejectionInformationComment | String | |
RejectionInformationReason | String | |
SchoolsAggregate | String | |
SequenceId | Int | |
SkillsAggregate | String | |
TaxIdentifier | String | |
TestsAggregate | String |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
ApplicantReferences
Return a list of: ApplicantReferences
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
AddressExtensionsExtensionAggregate | String | |
AddressCity | String | |
AddressLine1 | String | |
AddressLine2 | String | |
AddressLine3 | String | |
AddressPostalCode | String | |
AddressState | String | |
AddressCountryRegion | String | |
AddressFaxCountryCode | String | |
AddressFaxExtension | String | |
AddressFax | String | |
AddressPhone1CountryCode | String | |
AddressPhone1Extension | String | |
AddressPhone1 | String | |
AddressPhone2CountryCode | String | |
AddressPhone2Extension | String | |
AddressPhone2 | String | |
AddressPhone3CountryCode | String | |
AddressPhone3Extension | String | |
AddressPhone3 | String | |
AgeCode | String | |
ApplicantId | Int | |
ApplicationColorColorCode | String | |
ApplicationColorColorName | String | |
ApplicationStatus | String | |
ApplicationsAggregate | String | |
CompanyCode | String | |
DateApplied | Datetime | |
DepartmentId | String | |
DivisionId | String | |
Ethnicity | String | |
FirstName | String | |
Gender | String | |
HRRequisistionId | String | |
InterviewsAggregate | String | |
IsDisabled | Bool | |
IsDisabledVeteran | Bool | |
IsOtherVeteran | Bool | |
IsReplyLetterSent | Bool | |
IsVeteran | Bool | |
IsVietnamEraVeteran | Bool | |
IsWillRelocate | Bool | |
LastModifiedBy | String | |
LastModifiedDate | Datetime | |
LastName | String | |
Location | String | |
MiddleName | String | |
PositionId | String | |
PreviousEmployersAggregate | String | |
ReferenceInformationSource | String | |
ReferenceInformationSourceDescription | String | |
ReferencesExtensionsExtensionAggregate | String | |
ReferencesAddressExtensionsExtensionAggregate | String | |
ReferencesAddressCity | String | |
ReferencesAddressLine1 | String | |
ReferencesAddressLine2 | String | |
ReferencesAddressLine3 | String | |
ReferencesAddressPostalCode | String | |
ReferencesAddressState | String | |
ReferencesAddressCountryRegion | String | |
ReferencesAddressFaxCountryCode | String | |
ReferencesAddressFaxExtension | String | |
ReferencesAddressFax | String | |
ReferencesAddressPhone1CountryCode | String | |
ReferencesAddressPhone1Extension | String | |
ReferencesAddressPhone1 | String | |
ReferencesAddressPhone2CountryCode | String | |
ReferencesAddressPhone2Extension | String | |
ReferencesAddressPhone2 | String | |
ReferencesAddressPhone3CountryCode | String | |
ReferencesAddressPhone3Extension | String | |
ReferencesAddressPhone3 | String | |
ReferencesApplicantReferenceKeyApplicantSequenceKeyApplicantId [KEY] | Int | |
ReferencesApplicantReferenceKeyApplicantSequenceKeySequenceId [KEY] | Int | |
ReferencesApplicantReferenceId [KEY] | String | |
ReferencesCompanyName | String | |
ReferencesDeleteOnUpdate | Bool | |
ReferencesLastModifiedBy | String | |
ReferencesLastModifiedDate | Datetime | |
ReferencesNotes | String | |
ReferencesRelationship | String | |
RejectionInformationComment | String | |
RejectionInformationReason | String | |
SchoolsAggregate | String | |
SequenceId | Int | |
SkillsAggregate | String | |
TaxIdentifier | String | |
TestsAggregate | String |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
ApplicantSchools
Return a list of: ApplicantSchools
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
AddressExtensionsExtensionAggregate | String | |
AddressCity | String | |
AddressLine1 | String | |
AddressLine2 | String | |
AddressLine3 | String | |
AddressPostalCode | String | |
AddressState | String | |
AddressCountryRegion | String | |
AddressFaxCountryCode | String | |
AddressFaxExtension | String | |
AddressFax | String | |
AddressPhone1CountryCode | String | |
AddressPhone1Extension | String | |
AddressPhone1 | String | |
AddressPhone2CountryCode | String | |
AddressPhone2Extension | String | |
AddressPhone2 | String | |
AddressPhone3CountryCode | String | |
AddressPhone3Extension | String | |
AddressPhone3 | String | |
AgeCode | String | |
ApplicantId | Int | |
ApplicationColorColorCode | String | |
ApplicationColorColorName | String | |
ApplicationStatus | String | |
ApplicationsAggregate | String | |
CompanyCode | String | |
DateApplied | Datetime | |
DepartmentId | String | |
DivisionId | String | |
Ethnicity | String | |
FirstName | String | |
Gender | String | |
HRRequisistionId | String | |
InterviewsAggregate | String | |
IsDisabled | Bool | |
IsDisabledVeteran | Bool | |
IsOtherVeteran | Bool | |
IsReplyLetterSent | Bool | |
IsVeteran | Bool | |
IsVietnamEraVeteran | Bool | |
IsWillRelocate | Bool | |
LastModifiedBy | String | |
LastModifiedDate | Datetime | |
LastName | String | |
Location | String | |
MiddleName | String | |
PositionId | String | |
PreviousEmployersAggregate | String | |
ReferenceInformationSource | String | |
ReferenceInformationSourceDescription | String | |
ReferencesAggregate | String | |
RejectionInformationComment | String | |
RejectionInformationReason | String | |
SchoolsExtensionsExtensionAggregate | String | |
SchoolsApplicantEducationKeyApplicantId [KEY] | Int | |
SchoolsApplicantEducationKeySequenceId [KEY] | Int | |
SchoolsDegree | String | |
SchoolsDeleteOnUpdate | Bool | |
SchoolsGPABase | String | |
SchoolsGradePointAverage | String | |
SchoolsLastModifiedBy | String | |
SchoolsLastModifiedDate | Datetime | |
SchoolsMajor | String | |
SchoolsNotes | String | |
SchoolsSchool | String | |
SchoolsYearGraduated | String | |
SequenceId | Int | |
SkillsAggregate | String | |
TaxIdentifier | String | |
TestsAggregate | String |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
ApplicantSkills
Return a list of: ApplicantSkills
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
AddressExtensionsExtensionAggregate | String | |
AddressCity | String | |
AddressLine1 | String | |
AddressLine2 | String | |
AddressLine3 | String | |
AddressPostalCode | String | |
AddressState | String | |
AddressCountryRegion | String | |
AddressFaxCountryCode | String | |
AddressFaxExtension | String | |
AddressFax | String | |
AddressPhone1CountryCode | String | |
AddressPhone1Extension | String | |
AddressPhone1 | String | |
AddressPhone2CountryCode | String | |
AddressPhone2Extension | String | |
AddressPhone2 | String | |
AddressPhone3CountryCode | String | |
AddressPhone3Extension | String | |
AddressPhone3 | String | |
AgeCode | String | |
ApplicantId | Int | |
ApplicationColorColorCode | String | |
ApplicationColorColorName | String | |
ApplicationStatus | String | |
ApplicationsAggregate | String | |
CompanyCode | String | |
DateApplied | Datetime | |
DepartmentId | String | |
DivisionId | String | |
Ethnicity | String | |
FirstName | String | |
Gender | String | |
HRRequisistionId | String | |
InterviewsAggregate | String | |
IsDisabled | Bool | |
IsDisabledVeteran | Bool | |
IsOtherVeteran | Bool | |
IsReplyLetterSent | Bool | |
IsVeteran | Bool | |
IsVietnamEraVeteran | Bool | |
IsWillRelocate | Bool | |
LastModifiedBy | String | |
LastModifiedDate | Datetime | |
LastName | String | |
Location | String | |
MiddleName | String | |
PositionId | String | |
PreviousEmployersAggregate | String | |
ReferenceInformationSource | String | |
ReferenceInformationSourceDescription | String | |
ReferencesAggregate | String | |
RejectionInformationComment | String | |
RejectionInformationReason | String | |
SchoolsAggregate | String | |
SequenceId | Int | |
SkillsExtensionsExtensionAggregate | String | |
SkillsApplicantSkillKeyApplicantId [KEY] | Int | |
SkillsApplicantSkillKeySkillId [KEY] | String | |
SkillsComments | String | |
SkillsDeleteOnUpdate | Bool | |
SkillsProficiency | Int | |
SkillsSkillNumber | Int | |
TaxIdentifier | String | |
TestsAggregate | String |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
ApplicantTests
Return a list of: ApplicantTests
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
AddressExtensionsExtensionAggregate | String | |
AddressCity | String | |
AddressLine1 | String | |
AddressLine2 | String | |
AddressLine3 | String | |
AddressPostalCode | String | |
AddressState | String | |
AddressCountryRegion | String | |
AddressFaxCountryCode | String | |
AddressFaxExtension | String | |
AddressFax | String | |
AddressPhone1CountryCode | String | |
AddressPhone1Extension | String | |
AddressPhone1 | String | |
AddressPhone2CountryCode | String | |
AddressPhone2Extension | String | |
AddressPhone2 | String | |
AddressPhone3CountryCode | String | |
AddressPhone3Extension | String | |
AddressPhone3 | String | |
AgeCode | String | |
ApplicantId | Int | |
ApplicationColorColorCode | String | |
ApplicationColorColorName | String | |
ApplicationStatus | String | |
ApplicationsAggregate | String | |
CompanyCode | String | |
DateApplied | Datetime | |
DepartmentId | String | |
DivisionId | String | |
Ethnicity | String | |
FirstName | String | |
Gender | String | |
HRRequisistionId | String | |
InterviewsAggregate | String | |
IsDisabled | Bool | |
IsDisabledVeteran | Bool | |
IsOtherVeteran | Bool | |
IsReplyLetterSent | Bool | |
IsVeteran | Bool | |
IsVietnamEraVeteran | Bool | |
IsWillRelocate | Bool | |
LastModifiedBy | String | |
LastModifiedDate | Datetime | |
LastName | String | |
Location | String | |
MiddleName | String | |
PositionId | String | |
PreviousEmployersAggregate | String | |
ReferenceInformationSource | String | |
ReferenceInformationSourceDescription | String | |
ReferencesAggregate | String | |
RejectionInformationComment | String | |
RejectionInformationReason | String | |
SchoolsAggregate | String | |
SequenceId | Int | |
SkillsAggregate | String | |
TaxIdentifier | String | |
TestsExtensionsExtensionAggregate | String | |
TestsApplicantTestKeyApplicantSequenceKeyApplicantId [KEY] | Int | |
TestsApplicantTestKeyApplicantSequenceKeySequenceId [KEY] | Int | |
TestsApplicantTestKeyTestId [KEY] | String | |
TestsDeleteOnUpdate | Bool | |
TestsLastModifiedBy | String | |
TestsLastModifiedDate | Datetime | |
TestsNotes | String | |
TestsScore | String | |
TestsTestDate | Datetime |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
BackOfficeRole
Return a list of: BackOfficeRole
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
Description | String | |
Id [KEY] | String | |
Name | String |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
Bank
Return a list of: Bank
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
AddressExtensionsExtensionAggregate | String | |
AddressCity | String | |
AddressLine1 | String | |
AddressLine2 | String | |
AddressLine3 | String | |
AddressPostalCode | String | |
AddressState | String | |
AddressCountryRegion | String | |
AddressFaxCountryCode | String | |
AddressFaxExtension | String | |
AddressFax | String | |
AddressPhone1CountryCode | String | |
AddressPhone1Extension | String | |
AddressPhone1 | String | |
AddressPhone2CountryCode | String | |
AddressPhone2Extension | String | |
AddressPhone2 | String | |
AddressPhone3CountryCode | String | |
AddressPhone3Extension | String | |
AddressPhone3 | String | |
Branch | String | |
DirectDepositTransitNumber | String | |
Id [KEY] | String | |
Name | String | |
TransitNumber | String |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
CashReceiptDistributions
Return a list of: CashReceiptDistributions
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
AmountCurrency | String | |
Amount | Decimal | |
AuditTrailCode | String | |
BankAccountId | String | |
BatchKeyCreatedDateTime | Datetime | |
BatchId | String | |
BatchKeySource | String | |
CheckCardNumber | String | |
CorporateAccountId | String | |
CurrencyKeyISOCode | String | |
CustomerId | String | |
Date | Datetime | |
Description | String | |
DistributionsExtensionsExtensionAggregate | String | |
DistributionsDistributionTypeId | Int | |
DistributionsGLAccountId | String | |
DistributionsGLAccountKeyIsEncrypted | Bool | |
DistributionsReference | String | |
DistributionsKeyReceivablesDocumentId [KEY] | String | |
DistributionsKeySequenceNumber [KEY] | Int | |
ExchangeDate | Datetime | |
ExchangeRate | Decimal | |
GeneralLedgerPostingDate | Datetime | |
IsVoided | Bool | |
Id | String | |
ModifiedBy | String | |
ModifiedDate | Datetime | |
PaymentCardTypeId | String | |
PostedBy | String | |
PostedDate | Datetime | |
Type | String | |
VoidDate | Datetime |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
ChangedCurrencyKey
Return a list of: ChangedCurrencyKey
Columns
Name | Type | Description |
---|---|---|
Action [KEY] | String | |
LastModifiedBy [KEY] | String | |
LastModifiedDate [KEY] | Datetime | |
ISOCode [KEY] | String |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
ChangedCustomerAddressKey
Return a list of: ChangedCustomerAddressKey
Columns
Name | Type | Description |
---|---|---|
Action [KEY] | String | |
LastModifiedBy [KEY] | String | |
LastModifiedDate [KEY] | Datetime | |
CustomerId [KEY] | String | |
Id [KEY] | String |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
ChangedCustomerKey
Return a list of: ChangedCustomerKey
Columns
Name | Type | Description |
---|---|---|
Action [KEY] | String | |
LastModifiedBy [KEY] | String | |
LastModifiedDate [KEY] | Datetime | |
Id [KEY] | String |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
ChangedInternetAddressKey
Return a list of: ChangedInternetAddressKey
Columns
Name | Type | Description |
---|---|---|
Action [KEY] | String | |
LastModifiedBy [KEY] | String | |
LastModifiedDate [KEY] | Datetime | |
AddressId [KEY] | String | |
InternetAddressKey [KEY] | String | |
InternetAddressType [KEY] | String |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
ChangedItemKey
Return a list of: ChangedItemKey
Columns
Name | Type | Description |
---|---|---|
Action [KEY] | String | |
LastModifiedBy [KEY] | String | |
LastModifiedDate [KEY] | Datetime | |
Id [KEY] | String | |
ItemType [KEY] | String |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
ChangedPriceLevelKey
Return a list of: ChangedPriceLevelKey
Columns
Name | Type | Description |
---|---|---|
Action [KEY] | String | |
LastModifiedBy [KEY] | String | |
LastModifiedDate [KEY] | Datetime | |
Id [KEY] | String |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
ChangedPricingKey
Return a list of: ChangedPricingKey
Columns
Name | Type | Description |
---|---|---|
Action [KEY] | String | |
LastModifiedBy [KEY] | String | |
LastModifiedDate [KEY] | Datetime | |
CurrencyKeyISOCode [KEY] | String | |
ItemId [KEY] | String | |
PriceLevelId [KEY] | String | |
UofM [KEY] | String |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
ChangedSalesInvoiceKey
Return a list of: ChangedSalesInvoiceKey
Columns
Name | Type | Description |
---|---|---|
Action [KEY] | String | |
LastModifiedBy [KEY] | String | |
LastModifiedDate [KEY] | Datetime | |
SalesDocumentTypeId [KEY] | String | |
SalesDocumentTypeKeyType [KEY] | String |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
ChangedSalesOrderKey
Return a list of: ChangedSalesOrderKey
Columns
Name | Type | Description |
---|---|---|
Action [KEY] | String | |
LastModifiedBy [KEY] | String | |
LastModifiedDate [KEY] | Datetime | |
SalesDocumentTypeId [KEY] | String | |
SalesDocumentTypeKeyType [KEY] | String |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
ChangedSalespersonKey
Return a list of: ChangedSalespersonKey
Columns
Name | Type | Description |
---|---|---|
Action [KEY] | String | |
LastModifiedBy [KEY] | String | |
LastModifiedDate [KEY] | Datetime | |
Id [KEY] | String |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
ChangedUofMScheduleKey
Return a list of: ChangedUofMScheduleKey
Columns
Name | Type | Description |
---|---|---|
Action [KEY] | String | |
LastModifiedBy [KEY] | String | |
LastModifiedDate [KEY] | Datetime | |
Id [KEY] | String |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
Company
Return a list of: Company
Columns
Name | Type | Description |
---|---|---|
Id [KEY] | Int | |
ExtensionsExtensionAggregate | String | |
AccountSegmentSeparator | String | |
BusinessType | String | |
CreatedDate | Datetime | |
DUNSNumber | String | |
DefaultAddressExtensionsExtensionAggregate | String | |
DefaultAddressCity | String | |
DefaultAddressLine1 | String | |
DefaultAddressLine2 | String | |
DefaultAddressLine3 | String | |
DefaultAddressPostalCode | String | |
DefaultAddressState | String | |
DefaultAddressCountryRegion | String | |
DefaultAddressFaxCountryCode | String | |
DefaultAddressFaxExtension | String | |
DefaultAddressFax | String | |
DefaultAddressPhone1CountryCode | String | |
DefaultAddressPhone1Extension | String | |
DefaultAddressPhone1 | String | |
DefaultAddressPhone2CountryCode | String | |
DefaultAddressPhone2Extension | String | |
DefaultAddressPhone2 | String | |
DefaultAddressPhone3CountryCode | String | |
DefaultAddressPhone3Extension | String | |
DefaultAddressPhone3 | String | |
DefaultAddressCountryRegionCodeId | String | |
DefaultAddressContactPerson | String | |
DefaultAddressName | String | |
DefaultAddressCounty | String | |
DefaultAddressId | String | |
IsValueAddedTaxReturnEnabled | Bool | |
IsWorkflowEnabled | Bool | |
ModifiedBy | String | |
ModifiedDate | Datetime | |
Name | String | |
Options | String | |
PayablesProcessesTaxDetailId | String | |
PurchasesTaxScheduleId | String | |
ReceivablesProcessesTaxDetailId | String | |
SICNumber | String | |
SalesTaxScheduleId | String | |
TaxExempt1 | String | |
TaxExempt2 | String | |
TaxRegistration | String | |
UserDefined1 | String | |
UserDefined2 | String | |
Vets100Number | String | |
WithholdingVendorId | String | |
WitholdingFileOrReconciliationNumber | String | |
WitholdingTaxRate | Int |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
CompanyAddress
Return a list of: CompanyAddress
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
City | String | |
Line1 | String | |
Line2 | String | |
Line3 | String | |
PostalCode | String | |
State | String | |
CountryRegion | String | |
FaxCountryCode | String | |
FaxExtension | String | |
Fax | String | |
Phone1CountryCode | String | |
Phone1Extension | String | |
Phone1 | String | |
Phone2CountryCode | String | |
Phone2Extension | String | |
Phone2 | String | |
Phone3CountryCode | String | |
Phone3Extension | String | |
Phone3 | String | |
CountryRegionCodeId | String | |
ContactPerson | String | |
Name | String | |
County | String | |
InternetAddressesAdditionalInformation | String | |
InternetAddressesEmailBccAddress | String | |
InternetAddressesEmailCcAddress | String | |
InternetAddressesEmailToAddress | String | |
InternetAddressesInternetField1 | String | |
InternetAddressesInternetField2 | String | |
InternetAddressesInternetField3 | String | |
InternetAddressesInternetField4 | String | |
InternetAddressesInternetField5 | String | |
InternetAddressesInternetField6 | String | |
InternetAddressesInternetField7 | String | |
InternetAddressesInternetField8 | String | |
InternetAddressesMessengerAddress | String | |
Id [KEY] | String | |
ModifiedBy | String | |
ModifiedDate | Datetime |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
CountryRegionCode
Return a list of: CountryRegionCode
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
Description | String | |
IsEuropeanUnionMember | Bool | |
Id [KEY] | String |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
Currency
Return a list of: Currency
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
DecimalPlaces | String | |
DecimalSymbol | String | |
Description | String | |
Id | String | |
IncludeSpace | Bool | |
Index | Int | |
KeyISOCode [KEY] | String | |
LastModifiedBy | String | |
LastModifiedDate | Datetime | |
NegativeSymbol | String | |
NegativeSymbolCurrencySymbolLocation | String | |
NegativeSymbolLocation | String | |
SubunitText | String | |
Symbol | String | |
SymbolLocation | String | |
ThousandsSymbol | String | |
UnitSubunitConnectorText | String | |
UnitText | String |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
CurrencyAccess
Return a list of: CurrencyAccess
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
IsActive | Bool | |
KeyCurrencyKeyISOCode [KEY] | String |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
CurrencyPostingAccount
Return a list of: CurrencyPostingAccount
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
FinancialOffsetGLAccountId | String | |
FinancialOffsetGLAccountKeyIsEncrypted | Bool | |
KeyCurrencyKeyISOCode [KEY] | String | |
PurchasingOffsetGLAccountId | String | |
PurchasingOffsetGLAccountKeyIsEncrypted | Bool | |
RealizedGainGLAccountId | String | |
RealizedGainGLAccountKeyIsEncrypted | Bool | |
RealizedLossGLAccountId | String | |
RealizedLossGLAccountKeyIsEncrypted | Bool | |
RoundingDifferenceGLAccountId | String | |
RoundingDifferenceGLAccountKeyIsEncrypted | Bool | |
RoundingWriteOffGLAccountId | String | |
RoundingWriteOffGLAccountKeyIsEncrypted | Bool | |
SalesOffsetGLAccountId | String | |
SalesOffsetGLAccountKeyIsEncrypted | Bool | |
UnrealizedGainGLAccountId | String | |
UnrealizedGainGLAccountKeyIsEncrypted | Bool | |
UnrealizedLossGLAccountId | String | |
UnrealizedLossGLAccountKeyIsEncrypted | Bool |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
CustomerAddresses
Return a list of: CustomerAddresses
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
AccountsReceivableGLAccountId | String | |
AccountsReceivableGLAccountKeyIsEncrypted | Bool | |
AddressesExtensionsExtensionAggregate | String | |
AddressesCity | String | |
AddressesLine1 | String | |
AddressesLine2 | String | |
AddressesLine3 | String | |
AddressesPostalCode | String | |
AddressesState | String | |
AddressesCountryRegion | String | |
AddressesFaxCountryCode | String | |
AddressesFaxExtension | String | |
AddressesFax | String | |
AddressesPhone1CountryCode | String | |
AddressesPhone1Extension | String | |
AddressesPhone1 | String | |
AddressesPhone2CountryCode | String | |
AddressesPhone2Extension | String | |
AddressesPhone2 | String | |
AddressesPhone3CountryCode | String | |
AddressesPhone3Extension | String | |
AddressesPhone3 | String | |
AddressesCountryRegionCodeId | String | |
AddressesContactPerson | String | |
AddressesName | String | |
AddressesCreatedDate | Datetime | |
AddressesInternetAddressesAdditionalInformation | String | |
AddressesInternetAddressesEmailBccAddress | String | |
AddressesInternetAddressesEmailCcAddress | String | |
AddressesInternetAddressesEmailToAddress | String | |
AddressesInternetAddressesInternetField1 | String | |
AddressesInternetAddressesInternetField2 | String | |
AddressesInternetAddressesInternetField3 | String | |
AddressesInternetAddressesInternetField4 | String | |
AddressesInternetAddressesInternetField5 | String | |
AddressesInternetAddressesInternetField6 | String | |
AddressesInternetAddressesInternetField7 | String | |
AddressesInternetAddressesInternetField8 | String | |
AddressesInternetAddressesMessengerAddress | String | |
AddressesLastModifiedDate | Datetime | |
AddressesModifiedDate | Datetime | |
AddressesShippingMethodId | String | |
AddressesTaxScheduleId | String | |
AddressesUPSZone | String | |
AddressesUserDefined1 | String | |
AddressesUserDefined2 | String | |
AddressesDeleteOnUpdate | Bool | |
AddressesKeyCustomerId [KEY] | String | |
AddressesId [KEY] | String | |
AddressesSalesTerritoryId | String | |
AddressesSalespersonId | String | |
AddressesWarehouseId | String | |
AllowRevaluation | Bool | |
BalanceType | String | |
BankAccountId | String | |
BankBranch | String | |
BankName | String | |
BillToAddressKeyCustomerId | String | |
BillToAddressId | String | |
CashGLAccountId | String | |
CashGLAccountKeyIsEncrypted | Bool | |
ClassId | String | |
Comment1 | String | |
Comment2 | String | |
CorporateAccountId | String | |
CostOfGoodsSoldGLAccountId | String | |
CostOfGoodsSoldGLAccountKeyIsEncrypted | Bool | |
CreatedDate | Datetime | |
CreditLimitItem | String | |
CreditLimitPeriod | Int | |
CreditLimitPeriodAmountCurrency | String | |
CreditLimitPeriodAmount | Decimal | |
CurrencyKeyISOCode | String | |
DefaultAddressKeyCustomerId | String | |
DefaultAddressId | String | |
DefaultCashAccountType | String | |
DiscountGracePeriod | Int | |
DueDateGracePeriod | Int | |
FinanceChargeItem | String | |
FinanceChargesGLAccountId | String | |
FinanceChargesGLAccountKeyIsEncrypted | Bool | |
HistoryOptionsKeepCalendarHistory | Bool | |
HistoryOptionsKeepDistributionHistory | Bool | |
HistoryOptionsKeepFiscalHistory | Bool | |
HistoryOptionsKeepTransactionHistory | Bool | |
IncludeInDemandPlanning | Bool | |
InventoryGLAccountId | String | |
InventoryGLAccountKeyIsEncrypted | Bool | |
IsActive | Bool | |
IsOnHold | Bool | |
Id | String | |
LastModifiedDate | Datetime | |
MaximumWriteoffItem | String | |
MinimumPaymentItem | String | |
ModifiedDate | Datetime | |
Name | String | |
Notes | String | |
OrderFullfillmentShortageDefault | String | |
OverpaymentWriteoffGLAccountId | String | |
OverpaymentWriteoffGLAccountKeyIsEncrypted | Bool | |
PaymentCardAccountExpirationDate | Datetime | |
PaymentCardAccountKeyNumber | String | |
PaymentCardAccountKeyPaymentCardTypeId | String | |
PaymentTermsDiscountAvailableGLAccountId | String | |
PaymentTermsDiscountAvailableGLAccountKeyIsEncrypted | Bool | |
PaymentTermsDiscountTakenGLAccountId | String | |
PaymentTermsDiscountTakenGLAccountKeyIsEncrypted | Bool | |
PaymentTermsId | String | |
PostResultsTo | String | |
PriceLevelId | String | |
Priority | Int | |
RateTypeId | String | |
SalesGLAccountId | String | |
SalesGLAccountKeyIsEncrypted | Bool | |
SalesOrderReturnsGLAccountId | String | |
SalesOrderReturnsGLAccountKeyIsEncrypted | Bool | |
SendEmailStatements | Bool | |
ShipCompleteOnly | Bool | |
ShipToAddressKeyCustomerId | String | |
ShipToAddressId | String | |
Shortname | String | |
StatementCycle | String | |
StatementName | String | |
StatementRecipientsBCCAggregate | String | |
StatementRecipientsCCAggregate | String | |
StatementRecipientsToAggregate | String | |
StatementToAddressKeyCustomerId | String | |
StatementToAddressId | String | |
TaxExemptNumbersAggregate | String | |
TaxRegistrationNumber | String | |
TradeDiscountPercent | Decimal | |
UserDefined1 | String | |
UserDefined2 | String | |
UserLanguageId | Int | |
WriteoffGLAccountId | String | |
WriteoffGLAccountKeyIsEncrypted | Bool |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
CustomerReceivablesSummary
Return a list of: CustomerReceivablesSummary
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
AgingBalanceAmountCurrency | String | |
AgingBalanceAmount | Decimal | |
AgingLastAgedDate | Datetime | |
AgingPeriod1AmountCurrency | String | |
AgingPeriod1Amount | Decimal | |
AgingPeriod2AmountCurrency | String | |
AgingPeriod2Amount | Decimal | |
AgingPeriod3AmountCurrency | String | |
AgingPeriod3Amount | Decimal | |
AgingPeriod4AmountCurrency | String | |
AgingPeriod4Amount | Decimal | |
AgingPeriod5AmountCurrency | String | |
AgingPeriod5Amount | Decimal | |
AgingPeriod6AmountCurrency | String | |
AgingPeriod6Amount | Decimal | |
AgingPeriod7AmountCurrency | String | |
AgingPeriod7Amount | Decimal | |
Id [KEY] | String | |
LastPaymentAmountCurrency | String | |
LastPaymentAmount | Decimal | |
LastPaymentDate | Datetime | |
LastStatementAmountCurrency | String | |
LastStatementAmount | Decimal | |
LastStatementDate | Datetime | |
LastTransactionAmountCurrency | String | |
LastTransactionAmount | Decimal | |
LastTransactionDate | Datetime | |
LastYearAverageDaysToPay | Int | |
LastYearHighBalanceCurrency | String | |
LastYearHighBalance | Decimal | |
LastYearNumberOfInvoices | Int | |
LastYearTermsDiscountsTakenCurrency | String | |
LastYearTermsDiscountsTaken | Decimal | |
LastYearTotalCashReceivedCurrency | String | |
LastYearTotalCashReceived | Decimal | |
LastYearTotalCostCurrency | String | |
LastYearTotalCost | Decimal | |
LastYearTotalFinanceChargeCurrency | String | |
LastYearTotalFinanceCharge | Decimal | |
LastYearTotalReturnsCurrency | String | |
LastYearTotalReturns | Decimal | |
LastYearTotalSalesCurrency | String | |
LastYearTotalSales | Decimal | |
LastYearTotalWaivedFinanceChargeCurrency | String | |
LastYearTotalWaivedFinanceCharge | Decimal | |
LastYearTotalWriteoffAmountCurrency | String | |
LastYearTotalWriteoffAmount | Decimal | |
LifeToDateAverageDaysToPay | Int | |
LifeToDateHighBalanceCurrency | String | |
LifeToDateHighBalance | Decimal | |
LifeToDateNumberOfInvoices | Int | |
LifeToDateTermsDiscountsTakenCurrency | String | |
LifeToDateTermsDiscountsTaken | Decimal | |
LifeToDateTotalCashReceivedCurrency | String | |
LifeToDateTotalCashReceived | Decimal | |
LifeToDateTotalCostCurrency | String | |
LifeToDateTotalCost | Decimal | |
LifeToDateTotalFinanceChargeCurrency | String | |
LifeToDateTotalFinanceCharge | Decimal | |
LifeToDateTotalReturnsCurrency | String | |
LifeToDateTotalReturns | Decimal | |
LifeToDateTotalSalesCurrency | String | |
LifeToDateTotalSales | Decimal | |
LifeToDateTotalWaivedFinanceChargeCurrency | String | |
LifeToDateTotalWaivedFinanceCharge | Decimal | |
LifeToDateTotalWriteoffAmountCurrency | String | |
LifeToDateTotalWriteoffAmount | Decimal | |
OnOrderAmountCurrency | String | |
OnOrderAmount | Decimal | |
YearToDateAverageDaysToPay | Int | |
YearToDateHighBalanceCurrency | String | |
YearToDateHighBalance | Decimal | |
YearToDateNumberOfInvoices | Int | |
YearToDateTermsDiscountsTakenCurrency | String | |
YearToDateTermsDiscountsTaken | Decimal | |
YearToDateTotalCashReceivedCurrency | String | |
YearToDateTotalCashReceived | Decimal | |
YearToDateTotalCostCurrency | String | |
YearToDateTotalCost | Decimal | |
YearToDateTotalFinanceChargeCurrency | String | |
YearToDateTotalFinanceCharge | Decimal | |
YearToDateTotalReturnsCurrency | String | |
YearToDateTotalReturns | Decimal | |
YearToDateTotalSalesCurrency | String | |
YearToDateTotalSales | Decimal | |
YearToDateTotalWaivedFinanceChargeCurrency | String | |
YearToDateTotalWaivedFinanceCharge | Decimal | |
YearToDateTotalWriteoffAmountCurrency | String | |
YearToDateTotalWriteoffAmount | Decimal |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
EmployeeAddresses
Return a list of: EmployeeAddresses
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
AddressesExtensionsExtensionAggregate | String | |
AddressesCity | String | |
AddressesLine1 | String | |
AddressesLine2 | String | |
AddressesLine3 | String | |
AddressesPostalCode | String | |
AddressesState | String | |
AddressesCountryRegion | String | |
AddressesFaxCountryCode | String | |
AddressesFaxExtension | String | |
AddressesFax | String | |
AddressesPhone1CountryCode | String | |
AddressesPhone1Extension | String | |
AddressesPhone1 | String | |
AddressesPhone2CountryCode | String | |
AddressesPhone2Extension | String | |
AddressesPhone2 | String | |
AddressesPhone3CountryCode | String | |
AddressesPhone3Extension | String | |
AddressesPhone3 | String | |
AddressesCountryRegionCodeId | String | |
AddressesCounty | String | |
AddressesDeleteOnUpdate | Bool | |
AddressesInternetAddressesAdditionalInformation | String | |
AddressesInternetAddressesEmailBccAddress | String | |
AddressesInternetAddressesEmailCcAddress | String | |
AddressesInternetAddressesEmailToAddress | String | |
AddressesInternetAddressesInternetField1 | String | |
AddressesInternetAddressesInternetField2 | String | |
AddressesInternetAddressesInternetField3 | String | |
AddressesInternetAddressesInternetField4 | String | |
AddressesInternetAddressesInternetField5 | String | |
AddressesInternetAddressesInternetField6 | String | |
AddressesInternetAddressesInternetField7 | String | |
AddressesInternetAddressesInternetField8 | String | |
AddressesInternetAddressesMessengerAddress | String | |
AddressesKeyEmployeeId [KEY] | String | |
AddressesId [KEY] | String | |
BenefitExpiration | Datetime | |
BenefitStartDate | Datetime | |
BirthDate | Datetime | |
ClassId | String | |
CompanyAddressId | String | |
DayOfBirth | Int | |
DefaultAddressKeyEmployeeId | String | |
DefaultAddressId | String | |
DefaultCashAccountFromType | String | |
DepartmentId | String | |
DivisionId | String | |
DoesCalculateMinimumWageBalance | Bool | |
EmployeeInactivatedDate | Datetime | |
EmployeeId | String | |
EmploymentStartDate | Datetime | |
EmploymentType | String | |
Ethnicity | String | |
FederalClass | String | |
GLAccountId | String | |
GLAccountKeyIsEncrypted | Bool | |
GenderCode | String | |
HRStatus | String | |
I9RenewDate | Datetime | |
IsActive | Bool | |
IsDisabled | Bool | |
IsDisabledVeteran | Bool | |
IsI9Verified | Bool | |
IsOtherVeteran | Bool | |
IsSmoker | Bool | |
IsUnionEmployee | Bool | |
IsUnitedStatesCitizen | Bool | |
IsVeteran | Bool | |
IsVietnamEraVeteran | Bool | |
LastWorkedDate | Datetime | |
MaritalStatus | String | |
MilitaryDischargeDate | Datetime | |
MinimumNetPayCurrency | String | |
MinimumNetPay | Decimal | |
ModifiedBy | String | |
ModifiedDate | Datetime | |
MonthOfBirth | String | |
NameAlternate | String | |
NameFamily | String | |
NameGiven | String | |
NameMiddle | String | |
NamePreferred | String | |
NameSuffix | String | |
PositionId | String | |
PrimaryPayCodeId | String | |
RateClass | String | |
ReasonEmployeeInactivated | String | |
ReviewLastDate | Datetime | |
ReviewNextDate | Datetime | |
SUTAStateId | String | |
SickTimeAccrualAmount | Decimal | |
SickTimeAccrualMethod | String | |
SickTimeDoesAutomaticallyAccrue | Bool | |
SickTimeHoursAvailable | Decimal | |
SickTimeHoursPerYear | Int | |
SickTimeWarnWhenHoursAvailableFallsBelowZero | Bool | |
SpouseName | String | |
SpouseTaxIdentifier | String | |
Status | String | |
SupervisorId | String | |
TaxIdentifier | String | |
UnionId | String | |
UserDefined1 | String | |
UserDefined2 | String | |
VacationAccrualAmount | Decimal | |
VacationAccrualMethod | String | |
VacationDoesAutomaticallyAccrue | Bool | |
VacationHoursAvailable | Decimal | |
VacationHoursPerYear | Int | |
VacationWarnWhenHoursAvailableFallsBelowZero | Bool | |
WorkHoursPerYear | Int | |
WorkersCompensationId | String |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
GLAccount
Return a list of: GLAccount
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
Alias | String | |
CreatedDate | Datetime | |
Description | String | |
IsActive | Bool | |
Id [KEY] | String | |
KeyIsEncrypted [KEY] | Bool | |
ModifiedDate | Datetime | |
Type | String |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
GLAccountCategory
Return a list of: GLAccountCategory
Columns
Name | Type | Description |
---|---|---|
Id [KEY] | String |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
GLAccountFormat
Return a list of: GLAccountFormat
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
IsMainSegment | Bool | |
Id [KEY] | Int | |
MaximumSegmentLength | Int | |
SegmentLength | Int | |
SegmentName | String | |
UserDefinedSegment | Int |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
GLFixedAllocationAccountDistributions
Return a list of: GLFixedAllocationAccountDistributions
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
Alias | String | |
CreatedDate | Datetime | |
Description | String | |
IsActive | Bool | |
Id | String | |
KeyIsEncrypted | Bool | |
ModifiedDate | Datetime | |
Type | String | |
PostInventoryIn | String | |
PostPayrollIn | String | |
PostPurchasingIn | String | |
PostSalesIn | String | |
DistributionsExtensionsExtensionAggregate | String | |
DistributionsKeyAccountId [KEY] | String | |
DistributionsKeyAccountKeyIsEncrypted [KEY] | Bool | |
DistributionsKeyDistributionAccountId [KEY] | String | |
DistributionsKeyDistributionAccountKeyIsEncrypted [KEY] | Bool | |
DistributionsPercentage | Decimal |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
GLPostingAccountCurrencies
Return a list of: GLPostingAccountCurrencies
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
Alias | String | |
CreatedDate | Datetime | |
Description | String | |
IsActive | Bool | |
Id | String | |
KeyIsEncrypted | Bool | |
ModifiedDate | Datetime | |
Type | String | |
PostInventoryIn | String | |
PostPayrollIn | String | |
PostPurchasingIn | String | |
PostSalesIn | String | |
AllowAccountEntry | Bool | |
CurrenciesExtensionsExtensionAggregate | String | |
CurrenciesKeyAccountId [KEY] | String | |
CurrenciesKeyAccountKeyIsEncrypted [KEY] | Bool | |
CurrenciesKeyCurrencyKeyISOCode [KEY] | String | |
GLAccountCategoryId | String | |
IsRevalued | Bool | |
PostRevaluationResultsTo | String | |
PostingType | String | |
RevaluationMethod | String | |
TypicalBalance | String | |
UserDefined1 | String | |
UserDefined2 | String | |
UserDefined3 | String | |
UserDefined4 | String |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
GLTransactionLines
Return a list of: GLTransactionLines
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
AuditTrailCode | String | |
BatchKeyCreatedDateTime | Datetime | |
BatchId | String | |
BatchKeySource | String | |
CurrencyKeyISOCode | String | |
ExchangeDate | Datetime | |
ExchangeRate | Decimal | |
IntercompanyId | Int | |
IntercompanyOriginalJournalId | Int | |
IsVoided | Bool | |
KeyDate | Datetime | |
KeyJournalId | Int | |
LedgerType | String | |
LinesExtensionsExtensionAggregate | String | |
LinesDescription | String | |
LinesExchangeDate | Datetime | |
LinesExchangeRate | Decimal | |
LinesGLAccountId | String | |
LinesGLAccountKeyIsEncrypted | Bool | |
LinesIntercompanyId | Int | |
LinesKeySequenceNumber [KEY] | Int | |
LinesKeyTransactionKeyDate [KEY] | Datetime | |
LinesKeyTransactionKeyJournalId [KEY] | Int | |
LinesOriginatingDocumentControlId | String | |
LinesOriginatingDocumentDescription | String | |
LinesOriginatingDocumentId | String | |
LinesOriginatingDocumentMasterId | String | |
LinesOriginatingDocumentMasterName | String | |
LinesOriginatingDocumentSequenceNumber | Int | |
LinesOriginatingDocumentType | Int | |
LinesTaxAmountCurrency | String | |
LinesTaxAmount | Decimal | |
LinesTaxDetailId | String | |
LinesTaxGLAccountId | String | |
LinesTaxGLAccountKeyIsEncrypted | Bool | |
ModifiedBy | String | |
ModifiedDate | Datetime | |
OriginatingDocumentAuditTrailCode | String | |
OriginatingDocumentPostedDate | Datetime | |
OriginatingDocumentSeries | String | |
PostedBy | String | |
Reference | String | |
SourceDocumentId | String | |
TransactionState | String |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
GLVariableAllocationAccountDistributions
Return a list of: GLVariableAllocationAccountDistributions
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
Alias | String | |
CreatedDate | Datetime | |
Description | String | |
IsActive | Bool | |
Id | String | |
KeyIsEncrypted | Bool | |
ModifiedDate | Datetime | |
Type | String | |
PostInventoryIn | String | |
PostPayrollIn | String | |
PostPurchasingIn | String | |
PostSalesIn | String | |
BalanceForCalculation | String | |
DistributionsExtensionsExtensionAggregate | String | |
DistributionsBreakdownsAggregate | String | |
DistributionsKeyAccountId [KEY] | String | |
DistributionsKeyAccountKeyIsEncrypted [KEY] | Bool | |
DistributionsKeyDistributionAccountId [KEY] | String | |
DistributionsKeyDistributionAccountKeyIsEncrypted [KEY] | Bool |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
InventoriedItem
Return a list of: InventoriedItem
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
ABCCode | String | |
AllowBackOrder | Bool | |
AssemblyVarianceGLAccountId | String | |
AssemblyVarianceGLAccountKeyIsEncrypted | Bool | |
ClassId | String | |
CostofGoodsSoldGLAccountId | String | |
CostofGoodsSoldGLAccountKeyIsEncrypted | Bool | |
CreatedDate | Datetime | |
CurrencyDecimalPlaces | String | |
CurrentCostCurrency | String | |
CurrentCost | Decimal | |
DamagedGLAccountId | String | |
DamagedGLAccountKeyIsEncrypted | Bool | |
DefaultPriceLevelId | String | |
DefaultSellingUofM | String | |
DefaultWarehouseId | String | |
Description | String | |
DropShipGLAccountId | String | |
DropShipGLAccountKeyIsEncrypted | Bool | |
FunctionalCurrencyDecimalPlaces | String | |
GenericDescription | String | |
InServiceGLAccountId | String | |
InServiceGLAccountKeyIsEncrypted | Bool | |
InUseGLAccountId | String | |
InUseGLAccountKeyIsEncrypted | Bool | |
IncludeInDemandPlanning | Bool | |
InternetAddressesAdditionalInformation | String | |
InternetAddressesEmailBccAddress | String | |
InternetAddressesEmailCcAddress | String | |
InternetAddressesEmailToAddress | String | |
InternetAddressesInternetField1 | String | |
InternetAddressesInternetField2 | String | |
InternetAddressesInternetField3 | String | |
InternetAddressesInternetField4 | String | |
InternetAddressesInternetField5 | String | |
InternetAddressesInternetField6 | String | |
InternetAddressesInternetField7 | String | |
InternetAddressesInternetField8 | String | |
InternetAddressesMessengerAddress | String | |
InventoryGLAccountId | String | |
InventoryGLAccountKeyIsEncrypted | Bool | |
InventoryOffsetGLAccountId | String | |
InventoryOffsetGLAccountKeyIsEncrypted | Bool | |
InventoryReturnGLAccountId | String | |
InventoryReturnGLAccountKeyIsEncrypted | Bool | |
IsDiscontinued | Bool | |
KeepCalendarYearHistory | Bool | |
KeepDistributionHistory | Bool | |
KeepFiscalYearHistory | Bool | |
KeepTransactionHistory | Bool | |
Id [KEY] | String | |
LastModifiedDate | Datetime | |
MarkdownGLAccountId | String | |
MarkdownGLAccountKeyIsEncrypted | Bool | |
ModifiedDate | Datetime | |
PriceMethod | String | |
PurchasePriceVarianceGLAccountId | String | |
PurchasePriceVarianceGLAccountKeyIsEncrypted | Bool | |
PurchaseTaxBasis | String | |
PurchaseTaxScheduleId | String | |
PurchaseUofM | String | |
QuantityDecimalPlaces | String | |
SalesGLAccountId | String | |
SalesGLAccountKeyIsEncrypted | Bool | |
SalesReturnGLAccountId | String | |
SalesReturnGLAccountKeyIsEncrypted | Bool | |
SalesTaxBasis | String | |
SalesTaxScheduleId | String | |
ShippingWeight | Decimal | |
ShortDescription | String | |
StandardCostCurrency | String | |
StandardCost | Decimal | |
SubstituteItem1Id | String | |
SubstituteItem2Id | String | |
Type | String | |
UnrealizedPurchasePriceVarianceGLAccountId | String | |
UnrealizedPurchasePriceVarianceGLAccountKeyIsEncrypted | Bool | |
UofMScheduleId | String | |
UserCategoryList1 | String | |
UserCategoryList2 | String | |
UserCategoryList3 | String | |
UserCategoryList4 | String | |
UserCategoryList5 | String | |
UserCategoryList6 | String | |
VarianceGLAccountId | String | |
VarianceGLAccountKeyIsEncrypted | Bool | |
WarrantyDays | Short |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
InventoryAdjustmentLines
Return a list of: InventoryAdjustmentLines
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
AuditTrailCode | String | |
BatchKeyCreatedDateTime | Datetime | |
BatchId | String | |
BatchKeySource | String | |
CreatedDate | Datetime | |
Date | Datetime | |
GLPostingDate | Datetime | |
Id | String | |
ModifiedDate | Datetime | |
TransactionState | String | |
LinesExtensionsExtensionAggregate | String | |
LinesItemId | String | |
LinesKeyInventoryId [KEY] | String | |
LinesKeySequenceNumber [KEY] | Decimal | |
LinesQuantity | Decimal | |
LinesUnitCostCurrency | String | |
LinesUnitCost | Decimal | |
LinesBinsAggregate | String | |
LinesInventoryGLAccountId | String | |
LinesInventoryGLAccountIsEncrypted | Bool | |
LinesInventoryOffsetGLAccountId | String | |
LinesInventoryOffsetGLAccountIsEncrypted | Bool | |
LinesLotsAggregate | String | |
LinesSerialsAggregate | String | |
LinesUofM | String | |
LinesWarehouseId | String |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
InventoryTransferLines
Return a list of: InventoryTransferLines
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
AuditTrailCode | String | |
BatchKeyCreatedDateTime | Datetime | |
BatchId | String | |
BatchKeySource | String | |
CreatedDate | Datetime | |
Date | Datetime | |
GLPostingDate | Datetime | |
Id | String | |
ModifiedDate | Datetime | |
TransactionState | String | |
LinesExtensionsExtensionAggregate | String | |
LinesItemId | String | |
LinesKeyInventoryId [KEY] | String | |
LinesKeySequenceNumber [KEY] | Decimal | |
LinesQuantity | Decimal | |
LinesUnitCostCurrency | String | |
LinesUnitCost | Decimal | |
LinesBinsAggregate | String | |
LinesInventoryFromGLAccountId | String | |
LinesInventoryFromGLAccountIsEncrypted | Bool | |
LinesInventoryToGLAccountId | String | |
LinesInventoryToGLAccountIsEncrypted | Bool | |
LinesLotsAggregate | String | |
LinesQuantityTypeFrom | String | |
LinesQuantityTypeTo | String | |
LinesSerialsAggregate | String | |
LinesWarehouseFromId | String | |
LinesWarehouseToId | String |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
InventoryVarianceLines
Return a list of: InventoryVarianceLines
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
AuditTrailCode | String | |
BatchKeyCreatedDateTime | Datetime | |
BatchId | String | |
BatchKeySource | String | |
CreatedDate | Datetime | |
Date | Datetime | |
GLPostingDate | Datetime | |
Id | String | |
ModifiedDate | Datetime | |
TransactionState | String | |
LinesExtensionsExtensionAggregate | String | |
LinesItemId | String | |
LinesKeyInventoryId [KEY] | String | |
LinesKeySequenceNumber [KEY] | Decimal | |
LinesQuantity | Decimal | |
LinesUnitCostCurrency | String | |
LinesUnitCost | Decimal | |
LinesBinsAggregate | String | |
LinesInventoryGLAccountId | String | |
LinesInventoryGLAccountIsEncrypted | Bool | |
LinesInventoryOffsetGLAccountId | String | |
LinesInventoryOffsetGLAccountIsEncrypted | Bool | |
LinesLotsAggregate | String | |
LinesSerialsAggregate | String | |
LinesUofM | String | |
LinesWarehouseId | String |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
Item
Return a list of: Item
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
ABCCode | String | |
AllowBackOrder | Bool | |
AssemblyVarianceGLAccountId | String | |
AssemblyVarianceGLAccountKeyIsEncrypted | Bool | |
ClassId | String | |
CostofGoodsSoldGLAccountId | String | |
CostofGoodsSoldGLAccountKeyIsEncrypted | Bool | |
CreatedDate | Datetime | |
CurrencyDecimalPlaces | String | |
CurrentCostCurrency | String | |
CurrentCost | Decimal | |
DamagedGLAccountId | String | |
DamagedGLAccountKeyIsEncrypted | Bool | |
DefaultPriceLevelId | String | |
DefaultSellingUofM | String | |
DefaultWarehouseId | String | |
Description | String | |
DropShipGLAccountId | String | |
DropShipGLAccountKeyIsEncrypted | Bool | |
FunctionalCurrencyDecimalPlaces | String | |
GenericDescription | String | |
InServiceGLAccountId | String | |
InServiceGLAccountKeyIsEncrypted | Bool | |
InUseGLAccountId | String | |
InUseGLAccountKeyIsEncrypted | Bool | |
IncludeInDemandPlanning | Bool | |
InternetAddressesAdditionalInformation | String | |
InternetAddressesEmailBccAddress | String | |
InternetAddressesEmailCcAddress | String | |
InternetAddressesEmailToAddress | String | |
InternetAddressesInternetField1 | String | |
InternetAddressesInternetField2 | String | |
InternetAddressesInternetField3 | String | |
InternetAddressesInternetField4 | String | |
InternetAddressesInternetField5 | String | |
InternetAddressesInternetField6 | String | |
InternetAddressesInternetField7 | String | |
InternetAddressesInternetField8 | String | |
InternetAddressesMessengerAddress | String | |
InventoryGLAccountId | String | |
InventoryGLAccountKeyIsEncrypted | Bool | |
InventoryOffsetGLAccountId | String | |
InventoryOffsetGLAccountKeyIsEncrypted | Bool | |
InventoryReturnGLAccountId | String | |
InventoryReturnGLAccountKeyIsEncrypted | Bool | |
IsDiscontinued | Bool | |
KeepCalendarYearHistory | Bool | |
KeepDistributionHistory | Bool | |
KeepFiscalYearHistory | Bool | |
KeepTransactionHistory | Bool | |
Id [KEY] | String | |
LastModifiedDate | Datetime | |
MarkdownGLAccountId | String | |
MarkdownGLAccountKeyIsEncrypted | Bool | |
ModifiedDate | Datetime | |
PriceMethod | String | |
PurchasePriceVarianceGLAccountId | String | |
PurchasePriceVarianceGLAccountKeyIsEncrypted | Bool | |
PurchaseTaxBasis | String | |
PurchaseTaxScheduleId | String | |
PurchaseUofM | String | |
QuantityDecimalPlaces | String | |
SalesGLAccountId | String | |
SalesGLAccountKeyIsEncrypted | Bool | |
SalesReturnGLAccountId | String | |
SalesReturnGLAccountKeyIsEncrypted | Bool | |
SalesTaxBasis | String | |
SalesTaxScheduleId | String | |
ShippingWeight | Decimal | |
ShortDescription | String | |
StandardCostCurrency | String | |
StandardCost | Decimal | |
SubstituteItem1Id | String | |
SubstituteItem2Id | String | |
Type | String | |
UnrealizedPurchasePriceVarianceGLAccountId | String | |
UnrealizedPurchasePriceVarianceGLAccountKeyIsEncrypted | Bool | |
UofMScheduleId | String | |
UserCategoryList1 | String | |
UserCategoryList2 | String | |
UserCategoryList3 | String | |
UserCategoryList4 | String | |
UserCategoryList5 | String | |
UserCategoryList6 | String | |
VarianceGLAccountId | String | |
VarianceGLAccountKeyIsEncrypted | Bool | |
WarrantyDays | Short |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
ItemClass
Return a list of: ItemClass
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
Description | String | |
Id [KEY] | String | |
Type | String |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
ManufacturingOrder
Return a list of: ManufacturingOrder
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
ActualDemand | Decimal | |
BOMCategory | String | |
BOMRevisionLevel | String | |
ComponentCalculation | String | |
DateCompleted | Datetime | |
Description | String | |
DrawFromSite | String | |
EndDate | Datetime | |
EndingQty | Decimal | |
IsArchivedMO | Bool | |
IsQuickMO | Bool | |
ItemId | String | |
LastModifiedDate | Datetime | |
LotNumber | String | |
ManufacturingOrderDocumentId [KEY] | String | |
Notes | String | |
OrderStatus | String | |
OutSourced | String | |
PickNumber | String | |
PlanName | String | |
PostToSite | String | |
Priority | String | |
RoutingName | String | |
RoutingRevisionLevel | String | |
ScheduleMethod | String | |
SchedulingPreference | String | |
StartDate | Datetime | |
StartingQty | Decimal | |
PickListAggregate | String | |
RouteAggregate | String |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
ManufacturingOrderPickList
Return a list of: ManufacturingOrderPickList
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
ActualDemand | Decimal | |
BOMCategory | String | |
BOMRevisionLevel | String | |
ComponentCalculation | String | |
DateCompleted | Datetime | |
Description | String | |
DrawFromSite | String | |
EndDate | Datetime | |
EndingQty | Decimal | |
IsArchivedMO | Bool | |
IsQuickMO | Bool | |
ItemId | String | |
LastModifiedDate | Datetime | |
LotNumber | String | |
ManufacturingOrderDocumentId | String | |
Notes | String | |
OrderStatus | String | |
OutSourced | String | |
PickNumber | String | |
PlanName | String | |
PostToSite | String | |
Priority | String | |
RoutingName | String | |
RoutingRevisionLevel | String | |
ScheduleMethod | String | |
SchedulingPreference | String | |
StartDate | Datetime | |
StartingQty | Decimal | |
PickListActualConsumedQty | Decimal | |
PickListAllocatedBy | String | |
PickListAllocatedQty | Decimal | |
PickListAllowedQty | Decimal | |
PickListAlternateItemForId | String | |
PickListAlternateItemSequence | Int | |
PickListBOMCategory | String | |
PickListBOMName | String | |
PickListBOMSequence | Int | |
PickListBOMUserDef1 | String | |
PickListBOMUserDef2 | String | |
PickListBackFlushedQty | Decimal | |
PickListBaseUOMQty | Decimal | |
PickListCurrentConsumedQty | Decimal | |
PickListCurrentReturnToStockQty | Decimal | |
PickListCurrentScrappedQty | Decimal | |
PickListDateAllocated | Datetime | |
PickListDateRequired | Datetime | |
PickListDateResourcePlanIssued | Datetime | |
PickListExplodedQty | Decimal | |
PickListFixedQty | Decimal | |
PickListIsActualConsumedChecked | Bool | |
PickListIsAllocated | Bool | |
PickListIsAlternateItem | Bool | |
PickListIsBOMApproved | Bool | |
PickListIsBOMSingleLot | Bool | |
PickListIsBackFlushed | Bool | |
PickListIsBackOrdered | Bool | |
PickListIsFloorStock | Bool | |
PickListIsIssued | Bool | |
PickListIsOptionedItem | Bool | |
PickListIsPhantomItem | Bool | |
PickListIsResourcePlanCalculated | Bool | |
PickListIsSubAssemblyItem | Bool | |
PickListIssuedBy | String | |
PickListIssuedQty | Decimal | |
PickListItemId | String | |
PickListLastModifiedDate | Datetime | |
PickListLeadTimeOffset | Decimal | |
PickListLinkToSequence | Int | |
PickListLocation | String | |
PickListMRPAmountCurrency | String | |
PickListMRPAmount | Decimal | |
PickListMRPAmount2Currency | String | |
PickListMRPAmount2 | Decimal | |
PickListManufacturingNote | String | |
PickListManufacturingOrderDocumentId | String | |
PickListMarkdownAmtCurrency | String | |
PickListMarkdownAmt | Decimal | |
PickListNonInventoryCreditIndex | Int | |
PickListNonInventoryItemDescription | String | |
PickListOffsetFrom | Decimal | |
PickListOrderStatus | String | |
PickListPOLineLineSequenceNumber | Int | |
PickListPOLinePurchaseTransactionId | String | |
PickListParentPartNumberId | String | |
PickListPositionNumber | Int | |
PickListPositionNumber2 | Int | |
PickListPromotion | String | |
PickListRefillCostCurrency | String | |
PickListRefillCost | Decimal | |
PickListReturnToStockQty | Decimal | |
PickListRoutingName | String | |
PickListRoutingSequence | String | |
PickListScrappedQty | Decimal | |
PickListSequence [KEY] | Int | |
PickListSubAssemblyItemForId | String | |
PickListSubAssemblyItemSequence | Int | |
PickListSuggestedQty | Decimal | |
PickListUnitCostCurrency | String | |
PickListUnitCost | Decimal | |
PickListUofM | String | |
PickListVendorId | String | |
PickListVendorName | String | |
PickListWorkCenter | String | |
RouteAggregate | String |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
ManufacturingOrderRoute
Return a list of: ManufacturingOrderRoute
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
ActualDemand | Decimal | |
BOMCategory | String | |
BOMRevisionLevel | String | |
ComponentCalculation | String | |
DateCompleted | Datetime | |
Description | String | |
DrawFromSite | String | |
EndDate | Datetime | |
EndingQty | Decimal | |
IsArchivedMO | Bool | |
IsQuickMO | Bool | |
ItemId | String | |
LastModifiedDate | Datetime | |
LotNumber | String | |
ManufacturingOrderDocumentId | String | |
Notes | String | |
OrderStatus | String | |
OutSourced | String | |
PickNumber | String | |
PlanName | String | |
PostToSite | String | |
Priority | String | |
RoutingName | String | |
RoutingRevisionLevel | String | |
ScheduleMethod | String | |
SchedulingPreference | String | |
StartDate | Datetime | |
StartingQty | Decimal | |
PickListAggregate | String | |
RouteActualFinishDate | Datetime | |
RouteActualStartDate | Datetime | |
RouteClosedBy | String | |
RouteCycleTime | Decimal | |
RouteDateClosed | Datetime | |
RouteDateCreated | Datetime | |
RouteDrawingNumber | String | |
RouteIsAutoBackFlushLabor | Bool | |
RouteIsAutoBackFlushMachine | Bool | |
RouteIsCapacityRequirementsPlanned | Bool | |
RouteIsDone | Bool | |
RouteIsLastSequenceofTheDay | Bool | |
RouteIsMultiEmployeeOperation | Bool | |
RouteIsPhantomItem | Bool | |
RouteIsQualityAssuranceNeeded | Bool | |
RouteLaborCode1 | String | |
RouteLaborCode2 | String | |
RouteLaborTime | Decimal | |
RouteLastModifiedDate | Datetime | |
RouteMRPAmountCurrency | String | |
RouteMRPAmount | Decimal | |
RouteMachineId | String | |
RouteMachineTime | Decimal | |
RouteManufacturingNote | String | |
RouteManufacturingOrderDocumentId | String | |
RouteMoveTime | Decimal | |
RouteNextRouteNumber | String | |
RouteNotes | String | |
RouteNumberOfCrews | Int | |
RouteNumberOfEmployees | Int | |
RouteNumberOfMachines | Int | |
RouteOperationCode | String | |
RoutePOOffsetDays | Int | |
RoutePercentageComplete | Int | |
RoutePieces | Decimal | |
RouteQuantity | Decimal | |
RouteQueueTime | Decimal | |
RouteRejects | Decimal | |
RouteRouteMachineID | String | |
RouteRoutePartNumber | String | |
RouteRouteSeqDescription | String | |
RouteRouteSequenceNum [KEY] | Int | |
RouteRouteSequenceType | String | |
RouteRouteWorkCenter | String | |
RouteRunTime | Decimal | |
RouteScheduledFinishDate | Datetime | |
RouteScheduledStartDate | Datetime | |
RouteServiceItemDateReleased | Datetime | |
RouteServiceItemManufacturingOrderDocumentId | String | |
RouteServiceItemQtyToOrder | Decimal | |
RouteServiceItemRequiredDate | Datetime | |
RouteServiceItemRouteSequenceNum | Int | |
RouteServiceItemServiceItemId | String | |
RouteServiceItemSuggestedQty | Decimal | |
RouteSetupTime | Decimal | |
RouteUserDef1 | String | |
RouteUserDef2 | String | |
RouteVendorId | String | |
RouteVendorName | String | |
RouteWIPOutputPerMOStartQty | Decimal | |
RouteWaitHours | Int | |
RouteWorkCenter | String |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
MulticurrencySetup
Return a list of: MulticurrencySetup
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
AllowModifyRates | Bool | |
AllowNewRates | Bool | |
AllowOverrideExchangeRates | Bool | |
AllowOverrideRateVariance | Bool | |
AllowOverrideReportingRate | Bool | |
AverageExchangeRateCalculationMethodDisplay | String | |
DefaultFinancialRateTypeId | String | |
DefaultPurchasingRateTypeId | String | |
DefaultSalesRateTypeId | String | |
KeepGeneralLedgerAccountHistory | Bool | |
KeyCurrencyKeyISOCode [KEY] | String | |
LastFinancialRevaluationDate | Datetime | |
LastPurchasingRevaluationDate | Datetime | |
LastSalesRevaluationDate | Datetime | |
LastSummaryRemovalDate | Datetime | |
LastTransactionRemovalDate | Datetime | |
ReportingCurrencyExchangeRate | Decimal | |
ReportingCurrencyKeyISOCode | String | |
ReportingCurrencyRateCalculationMethod | String |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
PayablesDocument
Return a list of: PayablesDocument
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
AddressId | String | |
Amount1099Currency | String | |
Amount1099 | Decimal | |
AuditTrailCode | String | |
BatchKeyCreatedDateTime | Datetime | |
BatchId | String | |
BatchKeySource | String | |
ChargeAmountCurrency | String | |
ChargeAmount | Decimal | |
CurrencyKeyISOCode | String | |
Date | Datetime | |
Description | String | |
DistributionsAggregate | String | |
DocumentAmountCurrency | String | |
DocumentAmount | Decimal | |
ExchangeDate | Datetime | |
ExchangeRate | Decimal | |
FreightAmountCurrency | String | |
FreightAmount | Decimal | |
FreightTaxScheduleId | String | |
GeneralLedgerPostingDate | Datetime | |
HasIntercompanyDistributions | Bool | |
IsIntercompanyTransaction | Bool | |
IsVoided | Bool | |
Id [KEY] | String | |
MiscellaneousAmountCurrency | String | |
MiscellaneousAmount | Decimal | |
MiscellaneousTaxScheduleId | String | |
ModifiedBy | String | |
ModifiedDate | Datetime | |
PONumber | String | |
PostedBy | String | |
PostedDate | Datetime | |
PurchaseTaxScheduleId | String | |
PurchasesAmountCurrency | String | |
PurchasesAmount | Decimal | |
RemitToAddressId | String | |
ShippingMethodId | String | |
TaxAmountCurrency | String | |
TaxAmount | Decimal | |
TaxDate | Datetime | |
TaxScheduleId | String | |
TaxesAggregate | String | |
TradeDiscountAmountCurrency | String | |
TradeDiscountAmount | Decimal | |
TransactionState | String | |
Type | String | |
VendorDocumentNumber | String | |
VendorId | String | |
VendorName | String |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
PayablesDocumentDistributions
The DynamicsGP table PayablesDocumentDistributions.
Columns
Name | Type | Description |
---|---|---|
DistributionsKeySequenceNumber [KEY] | Int32 | The DistributionsKeySequenceNumber column for the table PayablesDocumentDistributions. |
DistributionsKeyPayablesDocumentId [KEY] | String | The DistributionsKeyPayablesDocumentId column for the table PayablesDocumentDistributions. |
AddressId | String | The AddressId column for the table PayablesDocumentDistributions. |
Amount1099Currency | String | The Amount1099Currency column for the table PayablesDocumentDistributions. |
Amount1099 | Decimal | The Amount1099 column for the table PayablesDocumentDistributions. |
AuditTrailCode | String | The AuditTrailCode column for the table PayablesDocumentDistributions. |
BatchKeyCreatedDateTime | Datetime | The BatchKeyCreatedDateTime column for the table PayablesDocumentDistributions. |
BatchId | String | The BatchId column for the table PayablesDocumentDistributions. |
BatchKeySource | String | The BatchKeySource column for the table PayablesDocumentDistributions. |
ChargeAmountCurrency | String | The ChargeAmountCurrency column for the table PayablesDocumentDistributions. |
ChargeAmount | Decimal | The ChargeAmount column for the table PayablesDocumentDistributions. |
CurrencyKeyISOCode | String | The CurrencyKeyISOCode column for the table PayablesDocumentDistributions. |
Date | Datetime | The Date column for the table PayablesDocumentDistributions. |
Description | String | The Description column for the table PayablesDocumentDistributions. |
DistributionsIsPosted | Boolean | The DistributionsIsPosted column for the table PayablesDocumentDistributions. |
DistributionsPostingDate | Datetime | The DistributionsPostingDate column for the table PayablesDocumentDistributions. |
DistributionsDistributionTypeId | Int32 | The DistributionsDistributionTypeId column for the table PayablesDocumentDistributions. |
DistributionsGLAccountId | String | The DistributionsGLAccountId column for the table PayablesDocumentDistributions. |
DistributionsGLAccountKeyIsEncrypted | Boolean | The DistributionsGLAccountKeyIsEncrypted column for the table PayablesDocumentDistributions. |
DistributionsReference | String | The DistributionsReference column for the table PayablesDocumentDistributions. |
DistributionsExtensionsExtensionAggregate | String | The DistributionsExtensionsExtensionAggregate column for the table PayablesDocumentDistributions. |
DocumentAmountCurrency | String | The DocumentAmountCurrency column for the table PayablesDocumentDistributions. |
DocumentAmount | Decimal | The DocumentAmount column for the table PayablesDocumentDistributions. |
ExchangeDate | Datetime | The ExchangeDate column for the table PayablesDocumentDistributions. |
ExchangeRate | Decimal | The ExchangeRate column for the table PayablesDocumentDistributions. |
FreightAmountCurrency | String | The FreightAmountCurrency column for the table PayablesDocumentDistributions. |
FreightAmount | Decimal | The FreightAmount column for the table PayablesDocumentDistributions. |
FreightTaxScheduleId | String | The FreightTaxScheduleId column for the table PayablesDocumentDistributions. |
GeneralLedgerPostingDate | Datetime | The GeneralLedgerPostingDate column for the table PayablesDocumentDistributions. |
HasIntercompanyDistributions | Boolean | The HasIntercompanyDistributions column for the table PayablesDocumentDistributions. |
IsIntercompanyTransaction | Boolean | The IsIntercompanyTransaction column for the table PayablesDocumentDistributions. |
IsVoided | Boolean | The IsVoided column for the table PayablesDocumentDistributions. |
Id | String | The ID column for the table PayablesDocumentDistributions. |
MiscellaneousAmountCurrency | String | The MiscellaneousAmountCurrency column for the table PayablesDocumentDistributions. |
MiscellaneousAmount | Decimal | The MiscellaneousAmount column for the table PayablesDocumentDistributions. |
MiscellaneousTaxScheduleId | String | The MiscellaneousTaxScheduleId column for the table PayablesDocumentDistributions. |
ModifiedBy | String | The ModifiedBy column for the table PayablesDocumentDistributions. |
ModifiedDate | Datetime | The ModifiedDate column for the table PayablesDocumentDistributions. |
PONumber | String | The PONumber column for the table PayablesDocumentDistributions. |
PostedBy | String | The PostedBy column for the table PayablesDocumentDistributions. |
PostedDate | Datetime | The PostedDate column for the table PayablesDocumentDistributions. |
PurchaseTaxScheduleId | String | The PurchaseTaxScheduleId column for the table PayablesDocumentDistributions. |
PurchasesAmountCurrency | String | The PurchasesAmountCurrency column for the table PayablesDocumentDistributions. |
PurchasesAmount | Decimal | The PurchasesAmount column for the table PayablesDocumentDistributions. |
RemitToAddressId | String | The RemitToAddressId column for the table PayablesDocumentDistributions. |
ShippingMethodId | String | The ShippingMethodId column for the table PayablesDocumentDistributions. |
TaxAmountCurrency | String | The TaxAmountCurrency column for the table PayablesDocumentDistributions. |
TaxAmount | Decimal | The TaxAmount column for the table PayablesDocumentDistributions. |
TaxDate | Datetime | The TaxDate column for the table PayablesDocumentDistributions. |
TaxScheduleId | String | The TaxScheduleId column for the table PayablesDocumentDistributions. |
TaxesPayablesTaxAggregate | String | The TaxesPayablesTaxAggregate column for the table PayablesDocumentDistributions. |
TradeDiscountAmountCurrency | String | The TradeDiscountAmountCurrency column for the table PayablesDocumentDistributions. |
TradeDiscountAmount | Decimal | The TradeDiscountAmount column for the table PayablesDocumentDistributions. |
TransactionState | String | The TransactionState column for the table PayablesDocumentDistributions. |
Type | String | The Type column for the table PayablesDocumentDistributions. |
VendorDocumentNumber | String | The VendorDocumentNumber column for the table PayablesDocumentDistributions. |
VendorId | String | The VendorId column for the table PayablesDocumentDistributions. |
VendorName | String | The VendorName column for the table PayablesDocumentDistributions. |
ExtensionsExtensionAggregate | String | The ExtensionsExtensionAggregate column for the table PayablesDocumentDistributions. |
PayablesDocumentTaxes
The DynamicsGP table PayablesDocumentTaxes.
Columns
Name | Type | Description |
---|---|---|
TaxesKeyTaxDetailId [KEY] | String | The TaxesKeyTaxDetailId column for the table PayablesDocumentTaxes. |
TaxesKeyPayablesDocumentId [KEY] | String | The TaxesKeyPayablesDocumentId column for the table PayablesDocumentTaxes. |
AddressId | String | The AddressId column for the table PayablesDocumentTaxes. |
Amount1099Currency | String | The Amount1099Currency column for the table PayablesDocumentTaxes. |
Amount1099 | Decimal | The Amount1099 column for the table PayablesDocumentTaxes. |
AuditTrailCode | String | The AuditTrailCode column for the table PayablesDocumentTaxes. |
BatchKeyCreatedDateTime | Datetime | The BatchKeyCreatedDateTime column for the table PayablesDocumentTaxes. |
BatchId | String | The BatchId column for the table PayablesDocumentTaxes. |
BatchKeySource | String | The BatchKeySource column for the table PayablesDocumentTaxes. |
ChargeAmountCurrency | String | The ChargeAmountCurrency column for the table PayablesDocumentTaxes. |
ChargeAmount | Decimal | The ChargeAmount column for the table PayablesDocumentTaxes. |
CurrencyKeyISOCode | String | The CurrencyKeyISOCode column for the table PayablesDocumentTaxes. |
Date | Datetime | The Date column for the table PayablesDocumentTaxes. |
Description | String | The Description column for the table PayablesDocumentTaxes. |
DistributionsPayablesDistributionAggregate | String | The DistributionsPayablesDistributionAggregate column for the table PayablesDocumentTaxes. |
DocumentAmountCurrency | String | The DocumentAmountCurrency column for the table PayablesDocumentTaxes. |
DocumentAmount | Decimal | The DocumentAmount column for the table PayablesDocumentTaxes. |
ExchangeDate | Datetime | The ExchangeDate column for the table PayablesDocumentTaxes. |
ExchangeRate | Decimal | The ExchangeRate column for the table PayablesDocumentTaxes. |
FreightAmountCurrency | String | The FreightAmountCurrency column for the table PayablesDocumentTaxes. |
FreightAmount | Decimal | The FreightAmount column for the table PayablesDocumentTaxes. |
FreightTaxScheduleId | String | The FreightTaxScheduleId column for the table PayablesDocumentTaxes. |
GeneralLedgerPostingDate | Datetime | The GeneralLedgerPostingDate column for the table PayablesDocumentTaxes. |
HasIntercompanyDistributions | Boolean | The HasIntercompanyDistributions column for the table PayablesDocumentTaxes. |
IsIntercompanyTransaction | Boolean | The IsIntercompanyTransaction column for the table PayablesDocumentTaxes. |
IsVoided | Boolean | The IsVoided column for the table PayablesDocumentTaxes. |
Id | String | The ID column for the table PayablesDocumentTaxes. |
MiscellaneousAmountCurrency | String | The MiscellaneousAmountCurrency column for the table PayablesDocumentTaxes. |
MiscellaneousAmount | Decimal | The MiscellaneousAmount column for the table PayablesDocumentTaxes. |
MiscellaneousTaxScheduleId | String | The MiscellaneousTaxScheduleId column for the table PayablesDocumentTaxes. |
ModifiedBy | String | The ModifiedBy column for the table PayablesDocumentTaxes. |
ModifiedDate | Datetime | The ModifiedDate column for the table PayablesDocumentTaxes. |
PONumber | String | The PONumber column for the table PayablesDocumentTaxes. |
PostedBy | String | The PostedBy column for the table PayablesDocumentTaxes. |
PostedDate | Datetime | The PostedDate column for the table PayablesDocumentTaxes. |
PurchaseTaxScheduleId | String | The PurchaseTaxScheduleId column for the table PayablesDocumentTaxes. |
PurchasesAmountCurrency | String | The PurchasesAmountCurrency column for the table PayablesDocumentTaxes. |
PurchasesAmount | Decimal | The PurchasesAmount column for the table PayablesDocumentTaxes. |
RemitToAddressId | String | The RemitToAddressId column for the table PayablesDocumentTaxes. |
ShippingMethodId | String | The ShippingMethodId column for the table PayablesDocumentTaxes. |
TaxAmountCurrency | String | The TaxAmountCurrency column for the table PayablesDocumentTaxes. |
TaxAmount | Decimal | The TaxAmount column for the table PayablesDocumentTaxes. |
TaxDate | Datetime | The TaxDate column for the table PayablesDocumentTaxes. |
TaxScheduleId | String | The TaxScheduleId column for the table PayablesDocumentTaxes. |
TaxesFreightTaxAmountCurrency | String | The TaxesFreightTaxAmountCurrency column for the table PayablesDocumentTaxes. |
TaxesFreightTaxAmount | Decimal | The TaxesFreightTaxAmount column for the table PayablesDocumentTaxes. |
TaxesGLAccountId | String | The TaxesGLAccountId column for the table PayablesDocumentTaxes. |
TaxesGLAccountKeyIsEncrypted | Boolean | The TaxesGLAccountKeyIsEncrypted column for the table PayablesDocumentTaxes. |
TaxesIsPosted | Boolean | The TaxesIsPosted column for the table PayablesDocumentTaxes. |
TaxesMiscellaneousTaxAmountCurrency | String | The TaxesMiscellaneousTaxAmountCurrency column for the table PayablesDocumentTaxes. |
TaxesMiscellaneousTaxAmount | Decimal | The TaxesMiscellaneousTaxAmount column for the table PayablesDocumentTaxes. |
TaxesPurchasesTaxAmountCurrency | String | The TaxesPurchasesTaxAmountCurrency column for the table PayablesDocumentTaxes. |
TaxesPurchasesTaxAmount | Decimal | The TaxesPurchasesTaxAmount column for the table PayablesDocumentTaxes. |
TaxesIsBackoutTax | Boolean | The TaxesIsBackoutTax column for the table PayablesDocumentTaxes. |
TaxesTaxAmountCurrency | String | The TaxesTaxAmountCurrency column for the table PayablesDocumentTaxes. |
TaxesTaxAmount | Decimal | The TaxesTaxAmount column for the table PayablesDocumentTaxes. |
TaxesTaxableAmountCurrency | String | The TaxesTaxableAmountCurrency column for the table PayablesDocumentTaxes. |
TaxesTaxableAmount | Decimal | The TaxesTaxableAmount column for the table PayablesDocumentTaxes. |
TaxesTotalAmountCurrency | String | The TaxesTotalAmountCurrency column for the table PayablesDocumentTaxes. |
TaxesTotalAmount | Decimal | The TaxesTotalAmount column for the table PayablesDocumentTaxes. |
TaxesExtensionsExtensionAggregate | String | The TaxesExtensionsExtensionAggregate column for the table PayablesDocumentTaxes. |
TradeDiscountAmountCurrency | String | The TradeDiscountAmountCurrency column for the table PayablesDocumentTaxes. |
TradeDiscountAmount | Decimal | The TradeDiscountAmount column for the table PayablesDocumentTaxes. |
TransactionState | String | The TransactionState column for the table PayablesDocumentTaxes. |
Type | String | The Type column for the table PayablesDocumentTaxes. |
VendorDocumentNumber | String | The VendorDocumentNumber column for the table PayablesDocumentTaxes. |
VendorId | String | The VendorId column for the table PayablesDocumentTaxes. |
VendorName | String | The VendorName column for the table PayablesDocumentTaxes. |
ExtensionsExtensionAggregate | String | The ExtensionsExtensionAggregate column for the table PayablesDocumentTaxes. |
PaymentCardType
Return a list of: PaymentCardType
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
AcceptedFromCustomers | Bool | |
CompanyCardBankAccountId | String | |
CreatedDate | Datetime | |
CustomerCardBankAccountId | String | |
GLAccountId | String | |
GLAccountKeyIsEncrypted | Bool | |
Id [KEY] | String | |
ModifiedBy | String | |
ModifiedDate | Datetime | |
PayableCardType | String | |
ReceivableCardType | String | |
UsedByCompany | Bool | |
VendorId | String |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
PaymentTerms
Return a list of: PaymentTerms
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
CreatedDate | Datetime | |
DaysDiscountAvailable | Int | |
DaysUntilDue | Int | |
DiscountCalculationItem | String | |
DiscountDateBasedOn | String | |
DueDateBasedOn | String | |
IsDiscountCalculatedOnFreight | Bool | |
IsDiscountCalculatedOnMiscellaneous | Bool | |
IsDiscountCalculatedOnSalePurchase | Bool | |
IsDiscountCalculatedOnTax | Bool | |
IsDiscountCalculatedOnTradeDiscount | Bool | |
Id [KEY] | String | |
ModifiedBy | String | |
ModifiedDate | Datetime | |
UseGracePeriods | Bool | |
UseValueAddedTax | Bool |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
PlannedOrder
Return a list of: PlannedOrder
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
DueDate | Datetime | |
IsCRPScheduled | Bool | |
ItemId | String | |
ItemsAggregate | String | |
LLC | Int | |
LocationId | String | |
PlannedOrderId [KEY] | String | |
QuantityToOrder | Decimal | |
ReleaseDate | Datetime | |
Replenishment | String | |
RunNumber | Int | |
Transferred | Bool | |
UnitOfMeasure | String | |
VendorId | String |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
PlannedOrderItems
Return a list of: PlannedOrderItems
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
DueDate | Datetime | |
IsCRPScheduled | Bool | |
ItemId | String | |
ItemsAllocatedByOpenMO | Decimal | |
ItemsAllocatedByReleasedMO | Decimal | |
ItemsCanceled | Bool | |
ItemsConsumedByOpenMO | Decimal | |
ItemsConsumedByReleasedMO | Decimal | |
ItemsDueDate | Datetime | |
ItemsExceptionsHasException1 | Bool | |
ItemsExceptionsHasException10 | Bool | |
ItemsExceptionsHasException11 | Bool | |
ItemsExceptionsHasException12 | Bool | |
ItemsExceptionsHasException13 | Bool | |
ItemsExceptionsHasException14 | Bool | |
ItemsExceptionsHasException15 | Bool | |
ItemsExceptionsHasException16 | Bool | |
ItemsExceptionsHasException17 | Bool | |
ItemsExceptionsHasException18 | Bool | |
ItemsExceptionsHasException19 | Bool | |
ItemsExceptionsHasException2 | Bool | |
ItemsExceptionsHasException20 | Bool | |
ItemsExceptionsHasException3 | Bool | |
ItemsExceptionsHasException4 | Bool | |
ItemsExceptionsHasException5 | Bool | |
ItemsExceptionsHasException6 | Bool | |
ItemsExceptionsHasException7 | Bool | |
ItemsExceptionsHasException8 | Bool | |
ItemsExceptionsHasException9 | Bool | |
ItemsItemId | String | |
ItemsLocationId | String | |
ItemsMRPParentType | String | |
ItemsMRPType | String | |
ItemsMoveIn | Bool | |
ItemsMoveOut | Bool | |
ItemsOriginalDueDate | Datetime | |
ItemsPhantomParent | String | |
ItemsPlannedOrderId | String | |
ItemsRequiredByOpenMO | Decimal | |
ItemsRequiredByReleasedMO | Decimal | |
ItemsSequenceNumber [KEY] | Int | |
ItemsStatus | String | |
ItemsStatusDescription | String | |
LLC | Int | |
LocationId | String | |
PlannedOrderId | String | |
QuantityToOrder | Decimal | |
ReleaseDate | Datetime | |
Replenishment | String | |
RunNumber | Int | |
Transferred | Bool | |
UnitOfMeasure | String | |
VendorId | String |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
PolicyBehaviors
Return a list of: PolicyBehaviors
Columns
Name | Type | Description |
---|---|---|
BehaviorsDescription | String | |
BehaviorsInternal | Bool | |
BehaviorsId [KEY] | String | |
BehaviorsKeyPolicyId [KEY] | String | |
BehaviorsName | String | |
BehaviorsOptionsAggregate | String | |
BehaviorsSelectedOptionDescription | String | |
BehaviorsSelectedOptionKeyBehaviorId | String | |
BehaviorsSelectedOptionKeyBehaviorKeyPolicyId | String | |
BehaviorsSelectedOptionId | Int | |
BehaviorsSelectedOptionName | String | |
BehaviorsSelectedOptionParametersAggregate | String | |
Id | String | |
Name | String | |
RootBusinessObjectName | String |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
PriceLevel
Return a list of: PriceLevel
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
CreatedDate | Datetime | |
Description | String | |
Id [KEY] | String | |
LastModifiedBy | String | |
LastModifiedDate | Datetime | |
ModifiedDate | Datetime |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
PricingDetails
Return a list of: PricingDetails
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
DetailsExtensionsExtensionAggregate | String | |
DetailsKeyPricingKeyCurrencyKeyISOCode [KEY] | String | |
DetailsKeyPricingKeyItemId [KEY] | String | |
DetailsKeyPricingKeyPriceLevelId [KEY] | String | |
DetailsKeyPricingKeyUofM [KEY] | String | |
DetailsKeyToQuantity [KEY] | Decimal | |
DetailsLastModifiedDate | Datetime | |
DetailsLastModifiedyBy | String | |
DetailsUofMPriceItem | String | |
KeyCurrencyKeyISOCode | String | |
KeyItemId | String | |
KeyPriceLevelId | String | |
KeyUofM | String | |
LastModifiedBy | String | |
LastModifiedDate | Datetime | |
RoundAmountCurrency | String | |
RoundAmount | Decimal | |
RoundOption | String | |
RoundPolicy | String | |
UofMSalesOption | String |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
Project
Return a list of: Project
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
AccountAmountCurrency | String | |
AccountAmount | Decimal | |
AccountingMethod | String | |
AccountsAggregate | String | |
ActualAccruedRevenueAmountCurrency | String | |
ActualAccruedRevenueAmount | Decimal | |
ActualBillingAmountCurrency | String | |
ActualBillingAmount | Decimal | |
ActualBillingsInExcessOfEarningsAmountCurrency | String | |
ActualBillingsInExcessOfEarningsAmount | Decimal | |
ActualDiscountAmountCurrency | String | |
ActualDiscountAmount | Decimal | |
ActualEarningsInExcessOfBillingsAmountCurrency | String | |
ActualEarningsInExcessOfBillingsAmount | Decimal | |
ActualOverheadAmountCurrency | String | |
ActualOverheadAmount | Decimal | |
ActualProfitAmountCurrency | String | |
ActualProfitAmount | Decimal | |
ActualQuantity | Decimal | |
ActualRecognizedRevenueAmountCurrency | String | |
ActualRecognizedRevenueAmount | Decimal | |
ActualRetainageAmountCurrency | String | |
ActualRetainageAmount | Decimal | |
ActualSalesTaxAmountCurrency | String | |
ActualSalesTaxAmount | Decimal | |
ActualTaxAmountCurrency | String | |
ActualTaxAmount | Decimal | |
ActualTotalCostCurrency | String | |
ActualTotalCost | Decimal | |
ActualBeginDate | Datetime | |
ActualEndDate | Datetime | |
BaselineBeginDate | Datetime | |
BaselineBillableAmountCurrency | String | |
BaselineBillableAmount | Decimal | |
BaselineEndDate | Datetime | |
BaselineOverheadCostCurrency | String | |
BaselineOverheadCost | Decimal | |
BaselineProfitAmountCurrency | String | |
BaselineProfitAmount | Decimal | |
BaselineQuantity | Decimal | |
BaselineTaxAmountCurrency | String | |
BaselineTaxAmount | Decimal | |
BaselineTotalCostCurrency | String | |
BaselineTotalCost | Decimal | |
BillToAddressId | String | |
BilledAccruedRevenueCurrency | String | |
BilledAccruedRevenue | Decimal | |
BilledCostCurrency | String | |
BilledCost | Decimal | |
BilledQuantity | Decimal | |
BillingCyclesAggregate | String | |
BillingNotReceivableCurrency | String | |
BillingNotReceivable | Decimal | |
BillingType | String | |
BudgetsAggregate | String | |
BusinessManagerId | String | |
CloseToBillings | Bool | |
CloseToProjectCosts | Bool | |
CommissionBasedOn | String | |
CommissionPercent | Decimal | |
ContactPerson | String | |
CostCompletedPercent | Decimal | |
CurrencyKeyISOCode | String | |
CustomerId | String | |
CustomerPONumber | String | |
DefaultBillingFormat | String | |
DepartmentId | String | |
DiscountPercent | Decimal | |
DoesAcceptEquipmentRateTableReplacement | Bool | |
DoesAcceptLaborRateTableReplacement | Bool | |
DoesCombineForRevenueRecognition | Bool | |
EquipmentListAggregate | String | |
EquipmentRateTableId | String | |
EstimatorId | String | |
FeesAggregate | String | |
ForecastBeginDate | Datetime | |
ForecastBillableAmountCurrency | String | |
ForecastBillableAmount | Decimal | |
ForecastEndDate | Datetime | |
ForecastOverheadCostCurrency | String | |
ForecastOverheadCost | Decimal | |
ForecastProfitAmountCurrency | String | |
ForecastProfitAmount | Decimal | |
ForecastQuantity | Decimal | |
ForecastTaxAmountCurrency | String | |
ForecastTaxAmount | Decimal | |
ForecastTotalCostCurrency | String | |
ForecastTotalCost | Decimal | |
Id [KEY] | String | |
LaborRateTableId | String | |
LaborRateTableType | String | |
Name | String | |
POCommittedCostsCurrency | String | |
POCommittedCosts | Decimal | |
POCommittedQuantity | Decimal | |
PostedAccruedRevenueAmountCurrency | String | |
PostedAccruedRevenueAmount | Decimal | |
PostedBillingAmountCurrency | String | |
PostedBillingAmount | Decimal | |
PostedBillingsInExcessOfEarningsAmountCurrency | String | |
PostedBillingsInExcessOfEarningsAmount | Decimal | |
PostedDiscountAmountCurrency | String | |
PostedDiscountAmount | Decimal | |
PostedEarningsInExcessOfBillingsAmountCurrency | String | |
PostedEarningsInExcessOfBillingsAmount | Decimal | |
PostedOverheadAmountCurrency | String | |
PostedOverheadAmount | Decimal | |
PostedProfitAmountCurrency | String | |
PostedProfitAmount | Decimal | |
PostedQuantity | Decimal | |
PostedRecognizedRevenueAmountCurrency | String | |
PostedRecognizedRevenueAmount | Decimal | |
PostedRetainageAmountCurrency | String | |
PostedRetainageAmount | Decimal | |
PostedSalesTaxAmountCurrency | String | |
PostedSalesTaxAmount | Decimal | |
PostedTaxAmountCurrency | String | |
PostedTaxAmount | Decimal | |
PostedTotalCostCurrency | String | |
PostedTotalCost | Decimal | |
PostedEarningsAmountCurrency | String | |
PostedEarningsAmount | Decimal | |
PostedPOCostsCurrency | String | |
PostedPOCosts | Decimal | |
PostedPOQuantity | Decimal | |
PostedBilledRetentionAmountCurrency | String | |
PostedBilledRetentionAmount | Decimal | |
PostedCostOfEarningsAmountCurrency | String | |
PostedCostOfEarningsAmount | Decimal | |
PostedLossAmountCurrency | String | |
PostedLossAmount | Decimal | |
PostedProjectFeeAmountCurrency | String | |
PostedProjectFeeAmount | Decimal | |
PostedReceiptsAmountCurrency | String | |
PostedReceiptsAmount | Decimal | |
PostedRetainerFeeAmountCurrency | String | |
PostedRetainerFeeAmount | Decimal | |
PostedRetentionAmountCurrency | String | |
PostedRetentionAmount | Decimal | |
PostedServiceFeeAmountCurrency | String | |
PostedServiceFeeAmount | Decimal | |
PostedWriteoffAmountCurrency | String | |
PostedWriteoffAmount | Decimal | |
ProjectAmountCurrency | String | |
ProjectAmount | Decimal | |
ProjectClassId | String | |
ProjectContractId | String | |
ProjectContractId | String | |
ProjectFeeAmountCurrency | String | |
ProjectFeeAmount | Decimal | |
ProjectId | String | |
ProjectManagerId | String | |
QuantityCompletedPercent | Decimal | |
RestrictToCustomerList | Bool | |
RetainerAmountCurrency | String | |
RetainerAmount | Decimal | |
RetentionFeeAmountCurrency | String | |
RetentionFeeAmount | Decimal | |
RetentionPercent | Decimal | |
SUTAState | String | |
SalesTerritoryId | String | |
SalespersonId | String | |
ServiceFeeAmountCurrency | String | |
ServiceFeeAmount | Decimal | |
Status | String | |
TransactionalCurrencyCodeKeyISOCode | String | |
Type | String | |
UnpostedAccruedRevenueAmountCurrency | String | |
UnpostedAccruedRevenueAmount | Decimal | |
UnpostedBillingAmountCurrency | String | |
UnpostedBillingAmount | Decimal | |
UnpostedBillingsInExcessOfEarningsAmountCurrency | String | |
UnpostedBillingsInExcessOfEarningsAmount | Decimal | |
UnpostedDiscountAmountCurrency | String | |
UnpostedDiscountAmount | Decimal | |
UnpostedEarningsInExcessOfBillingsAmountCurrency | String | |
UnpostedEarningsInExcessOfBillingsAmount | Decimal | |
UnpostedOverheadAmountCurrency | String | |
UnpostedOverheadAmount | Decimal | |
UnpostedProfitAmountCurrency | String | |
UnpostedProfitAmount | Decimal | |
UnpostedQuantity | Decimal | |
UnpostedRecognizedRevenueAmountCurrency | String | |
UnpostedRecognizedRevenueAmount | Decimal | |
UnpostedRetainageAmountCurrency | String | |
UnpostedRetainageAmount | Decimal | |
UnpostedSalesTaxAmountCurrency | String | |
UnpostedSalesTaxAmount | Decimal | |
UnpostedTaxAmountCurrency | String | |
UnpostedTaxAmount | Decimal | |
UnpostedTotalCostCurrency | String | |
UnpostedTotalCost | Decimal | |
UnpostedLossAmountCurrency | String | |
UnpostedLossAmount | Decimal | |
UnpostedBilledRetentionAmountCurrency | String | |
UnpostedBilledRetentionAmount | Decimal | |
UnpostedCostOfEarningsAmountCurrency | String | |
UnpostedCostOfEarningsAmount | Decimal | |
UnpostedEarningsAmountCurrency | String | |
UnpostedEarningsAmount | Decimal | |
UnpostedPOCostsCurrency | String | |
UnpostedPOCosts | Decimal | |
UnpostedPOQuantity | Decimal | |
UnpostedProjectFeeAmountCurrency | String | |
UnpostedProjectFeeAmount | Decimal | |
UnpostedReceiptsAmountCurrency | String | |
UnpostedReceiptsAmount | Decimal | |
UnpostedRetainerFeeAmountCurrency | String | |
UnpostedRetainerFeeAmount | Decimal | |
UnpostedRetentionAmountCurrency | String | |
UnpostedRetentionAmount | Decimal | |
UnpostedServiceFeeAmountCurrency | String | |
UnpostedServiceFeeAmount | Decimal | |
UserDefinedText1 | String | |
UserDefinedText2 | String | |
WorkersCompensationId | String | |
WriteUpDownAmountCurrency | String | |
WriteUpDownAmount | Decimal |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
ProjectAccounts
Return a list of: ProjectAccounts
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
AccountAmountCurrency | String | |
AccountAmount | Decimal | |
AccountingMethod | String | |
AccountsExtensionsExtensionAggregate | String | |
AccountsGLAccountId | String | |
AccountsGLAccountKeyIsEncrypted | Bool | |
AccountsKeyCostTransaction [KEY] | String | |
AccountsKeyDistributionTypeId [KEY] | Int | |
AccountsKeyProjectId [KEY] | String | |
AccountsKeySourceFile [KEY] | String | |
ActualAccruedRevenueAmountCurrency | String | |
ActualAccruedRevenueAmount | Decimal | |
ActualBillingAmountCurrency | String | |
ActualBillingAmount | Decimal | |
ActualBillingsInExcessOfEarningsAmountCurrency | String | |
ActualBillingsInExcessOfEarningsAmount | Decimal | |
ActualDiscountAmountCurrency | String | |
ActualDiscountAmount | Decimal | |
ActualEarningsInExcessOfBillingsAmountCurrency | String | |
ActualEarningsInExcessOfBillingsAmount | Decimal | |
ActualOverheadAmountCurrency | String | |
ActualOverheadAmount | Decimal | |
ActualProfitAmountCurrency | String | |
ActualProfitAmount | Decimal | |
ActualQuantity | Decimal | |
ActualRecognizedRevenueAmountCurrency | String | |
ActualRecognizedRevenueAmount | Decimal | |
ActualRetainageAmountCurrency | String | |
ActualRetainageAmount | Decimal | |
ActualSalesTaxAmountCurrency | String | |
ActualSalesTaxAmount | Decimal | |
ActualTaxAmountCurrency | String | |
ActualTaxAmount | Decimal | |
ActualTotalCostCurrency | String | |
ActualTotalCost | Decimal | |
ActualBeginDate | Datetime | |
ActualEndDate | Datetime | |
BaselineBeginDate | Datetime | |
BaselineBillableAmountCurrency | String | |
BaselineBillableAmount | Decimal | |
BaselineEndDate | Datetime | |
BaselineOverheadCostCurrency | String | |
BaselineOverheadCost | Decimal | |
BaselineProfitAmountCurrency | String | |
BaselineProfitAmount | Decimal | |
BaselineQuantity | Decimal | |
BaselineTaxAmountCurrency | String | |
BaselineTaxAmount | Decimal | |
BaselineTotalCostCurrency | String | |
BaselineTotalCost | Decimal | |
BillToAddressId | String | |
BilledAccruedRevenueCurrency | String | |
BilledAccruedRevenue | Decimal | |
BilledCostCurrency | String | |
BilledCost | Decimal | |
BilledQuantity | Decimal | |
BillingCyclesAggregate | String | |
BillingNotReceivableCurrency | String | |
BillingNotReceivable | Decimal | |
BillingType | String | |
BudgetsAggregate | String | |
BusinessManagerId | String | |
CloseToBillings | Bool | |
CloseToProjectCosts | Bool | |
CommissionBasedOn | String | |
CommissionPercent | Decimal | |
ContactPerson | String | |
CostCompletedPercent | Decimal | |
CurrencyKeyISOCode | String | |
CustomerId | String | |
CustomerPONumber | String | |
DefaultBillingFormat | String | |
DepartmentId | String | |
DiscountPercent | Decimal | |
DoesAcceptEquipmentRateTableReplacement | Bool | |
DoesAcceptLaborRateTableReplacement | Bool | |
DoesCombineForRevenueRecognition | Bool | |
EquipmentListAggregate | String | |
EquipmentRateTableId | String | |
EstimatorId | String | |
FeesAggregate | String | |
ForecastBeginDate | Datetime | |
ForecastBillableAmountCurrency | String | |
ForecastBillableAmount | Decimal | |
ForecastEndDate | Datetime | |
ForecastOverheadCostCurrency | String | |
ForecastOverheadCost | Decimal | |
ForecastProfitAmountCurrency | String | |
ForecastProfitAmount | Decimal | |
ForecastQuantity | Decimal | |
ForecastTaxAmountCurrency | String | |
ForecastTaxAmount | Decimal | |
ForecastTotalCostCurrency | String | |
ForecastTotalCost | Decimal | |
Id | String | |
LaborRateTableId | String | |
LaborRateTableType | String | |
Name | String | |
POCommittedCostsCurrency | String | |
POCommittedCosts | Decimal | |
POCommittedQuantity | Decimal | |
PostedAccruedRevenueAmountCurrency | String | |
PostedAccruedRevenueAmount | Decimal | |
PostedBillingAmountCurrency | String | |
PostedBillingAmount | Decimal | |
PostedBillingsInExcessOfEarningsAmountCurrency | String | |
PostedBillingsInExcessOfEarningsAmount | Decimal | |
PostedDiscountAmountCurrency | String | |
PostedDiscountAmount | Decimal | |
PostedEarningsInExcessOfBillingsAmountCurrency | String | |
PostedEarningsInExcessOfBillingsAmount | Decimal | |
PostedOverheadAmountCurrency | String | |
PostedOverheadAmount | Decimal | |
PostedProfitAmountCurrency | String | |
PostedProfitAmount | Decimal | |
PostedQuantity | Decimal | |
PostedRecognizedRevenueAmountCurrency | String | |
PostedRecognizedRevenueAmount | Decimal | |
PostedRetainageAmountCurrency | String | |
PostedRetainageAmount | Decimal | |
PostedSalesTaxAmountCurrency | String | |
PostedSalesTaxAmount | Decimal | |
PostedTaxAmountCurrency | String | |
PostedTaxAmount | Decimal | |
PostedTotalCostCurrency | String | |
PostedTotalCost | Decimal | |
PostedEarningsAmountCurrency | String | |
PostedEarningsAmount | Decimal | |
PostedPOCostsCurrency | String | |
PostedPOCosts | Decimal | |
PostedPOQuantity | Decimal | |
PostedBilledRetentionAmountCurrency | String | |
PostedBilledRetentionAmount | Decimal | |
PostedCostOfEarningsAmountCurrency | String | |
PostedCostOfEarningsAmount | Decimal | |
PostedLossAmountCurrency | String | |
PostedLossAmount | Decimal | |
PostedProjectFeeAmountCurrency | String | |
PostedProjectFeeAmount | Decimal | |
PostedReceiptsAmountCurrency | String | |
PostedReceiptsAmount | Decimal | |
PostedRetainerFeeAmountCurrency | String | |
PostedRetainerFeeAmount | Decimal | |
PostedRetentionAmountCurrency | String | |
PostedRetentionAmount | Decimal | |
PostedServiceFeeAmountCurrency | String | |
PostedServiceFeeAmount | Decimal | |
PostedWriteoffAmountCurrency | String | |
PostedWriteoffAmount | Decimal | |
ProjectAmountCurrency | String | |
ProjectAmount | Decimal | |
ProjectClassId | String | |
ProjectContractId | String | |
ProjectContractId | String | |
ProjectFeeAmountCurrency | String | |
ProjectFeeAmount | Decimal | |
ProjectId | String | |
ProjectManagerId | String | |
QuantityCompletedPercent | Decimal | |
RestrictToCustomerList | Bool | |
RetainerAmountCurrency | String | |
RetainerAmount | Decimal | |
RetentionFeeAmountCurrency | String | |
RetentionFeeAmount | Decimal | |
RetentionPercent | Decimal | |
SUTAState | String | |
SalesTerritoryId | String | |
SalespersonId | String | |
ServiceFeeAmountCurrency | String | |
ServiceFeeAmount | Decimal | |
Status | String | |
TransactionalCurrencyCodeKeyISOCode | String | |
Type | String | |
UnpostedAccruedRevenueAmountCurrency | String | |
UnpostedAccruedRevenueAmount | Decimal | |
UnpostedBillingAmountCurrency | String | |
UnpostedBillingAmount | Decimal | |
UnpostedBillingsInExcessOfEarningsAmountCurrency | String | |
UnpostedBillingsInExcessOfEarningsAmount | Decimal | |
UnpostedDiscountAmountCurrency | String | |
UnpostedDiscountAmount | Decimal | |
UnpostedEarningsInExcessOfBillingsAmountCurrency | String | |
UnpostedEarningsInExcessOfBillingsAmount | Decimal | |
UnpostedOverheadAmountCurrency | String | |
UnpostedOverheadAmount | Decimal | |
UnpostedProfitAmountCurrency | String | |
UnpostedProfitAmount | Decimal | |
UnpostedQuantity | Decimal | |
UnpostedRecognizedRevenueAmountCurrency | String | |
UnpostedRecognizedRevenueAmount | Decimal | |
UnpostedRetainageAmountCurrency | String | |
UnpostedRetainageAmount | Decimal | |
UnpostedSalesTaxAmountCurrency | String | |
UnpostedSalesTaxAmount | Decimal | |
UnpostedTaxAmountCurrency | String | |
UnpostedTaxAmount | Decimal | |
UnpostedTotalCostCurrency | String | |
UnpostedTotalCost | Decimal | |
UnpostedLossAmountCurrency | String | |
UnpostedLossAmount | Decimal | |
UnpostedBilledRetentionAmountCurrency | String | |
UnpostedBilledRetentionAmount | Decimal | |
UnpostedCostOfEarningsAmountCurrency | String | |
UnpostedCostOfEarningsAmount | Decimal | |
UnpostedEarningsAmountCurrency | String | |
UnpostedEarningsAmount | Decimal | |
UnpostedPOCostsCurrency | String | |
UnpostedPOCosts | Decimal | |
UnpostedPOQuantity | Decimal | |
UnpostedProjectFeeAmountCurrency | String | |
UnpostedProjectFeeAmount | Decimal | |
UnpostedReceiptsAmountCurrency | String | |
UnpostedReceiptsAmount | Decimal | |
UnpostedRetainerFeeAmountCurrency | String | |
UnpostedRetainerFeeAmount | Decimal | |
UnpostedRetentionAmountCurrency | String | |
UnpostedRetentionAmount | Decimal | |
UnpostedServiceFeeAmountCurrency | String | |
UnpostedServiceFeeAmount | Decimal | |
UserDefinedText1 | String | |
UserDefinedText2 | String | |
WorkersCompensationId | String | |
WriteUpDownAmountCurrency | String | |
WriteUpDownAmount | Decimal |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
ProjectBillingCycles
Return a list of: ProjectBillingCycles
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
AccountAmountCurrency | String | |
AccountAmount | Decimal | |
AccountingMethod | String | |
AccountsAggregate | String | |
ActualAccruedRevenueAmountCurrency | String | |
ActualAccruedRevenueAmount | Decimal | |
ActualBillingAmountCurrency | String | |
ActualBillingAmount | Decimal | |
ActualBillingsInExcessOfEarningsAmountCurrency | String | |
ActualBillingsInExcessOfEarningsAmount | Decimal | |
ActualDiscountAmountCurrency | String | |
ActualDiscountAmount | Decimal | |
ActualEarningsInExcessOfBillingsAmountCurrency | String | |
ActualEarningsInExcessOfBillingsAmount | Decimal | |
ActualOverheadAmountCurrency | String | |
ActualOverheadAmount | Decimal | |
ActualProfitAmountCurrency | String | |
ActualProfitAmount | Decimal | |
ActualQuantity | Decimal | |
ActualRecognizedRevenueAmountCurrency | String | |
ActualRecognizedRevenueAmount | Decimal | |
ActualRetainageAmountCurrency | String | |
ActualRetainageAmount | Decimal | |
ActualSalesTaxAmountCurrency | String | |
ActualSalesTaxAmount | Decimal | |
ActualTaxAmountCurrency | String | |
ActualTaxAmount | Decimal | |
ActualTotalCostCurrency | String | |
ActualTotalCost | Decimal | |
ActualBeginDate | Datetime | |
ActualEndDate | Datetime | |
BaselineBeginDate | Datetime | |
BaselineBillableAmountCurrency | String | |
BaselineBillableAmount | Decimal | |
BaselineEndDate | Datetime | |
BaselineOverheadCostCurrency | String | |
BaselineOverheadCost | Decimal | |
BaselineProfitAmountCurrency | String | |
BaselineProfitAmount | Decimal | |
BaselineQuantity | Decimal | |
BaselineTaxAmountCurrency | String | |
BaselineTaxAmount | Decimal | |
BaselineTotalCostCurrency | String | |
BaselineTotalCost | Decimal | |
BillToAddressId | String | |
BilledAccruedRevenueCurrency | String | |
BilledAccruedRevenue | Decimal | |
BilledCostCurrency | String | |
BilledCost | Decimal | |
BilledQuantity | Decimal | |
BillingCyclesExtensionsExtensionAggregate | String | |
BillingCyclesBillingFormat | String | |
BillingCyclesId [KEY] | String | |
BillingCyclesKeyProjectId [KEY] | String | |
BillingNotReceivableCurrency | String | |
BillingNotReceivable | Decimal | |
BillingType | String | |
BudgetsAggregate | String | |
BusinessManagerId | String | |
CloseToBillings | Bool | |
CloseToProjectCosts | Bool | |
CommissionBasedOn | String | |
CommissionPercent | Decimal | |
ContactPerson | String | |
CostCompletedPercent | Decimal | |
CurrencyKeyISOCode | String | |
CustomerId | String | |
CustomerPONumber | String | |
DefaultBillingFormat | String | |
DepartmentId | String | |
DiscountPercent | Decimal | |
DoesAcceptEquipmentRateTableReplacement | Bool | |
DoesAcceptLaborRateTableReplacement | Bool | |
DoesCombineForRevenueRecognition | Bool | |
EquipmentListAggregate | String | |
EquipmentRateTableId | String | |
EstimatorId | String | |
FeesAggregate | String | |
ForecastBeginDate | Datetime | |
ForecastBillableAmountCurrency | String | |
ForecastBillableAmount | Decimal | |
ForecastEndDate | Datetime | |
ForecastOverheadCostCurrency | String | |
ForecastOverheadCost | Decimal | |
ForecastProfitAmountCurrency | String | |
ForecastProfitAmount | Decimal | |
ForecastQuantity | Decimal | |
ForecastTaxAmountCurrency | String | |
ForecastTaxAmount | Decimal | |
ForecastTotalCostCurrency | String | |
ForecastTotalCost | Decimal | |
Id | String | |
LaborRateTableId | String | |
LaborRateTableType | String | |
Name | String | |
POCommittedCostsCurrency | String | |
POCommittedCosts | Decimal | |
POCommittedQuantity | Decimal | |
PostedAccruedRevenueAmountCurrency | String | |
PostedAccruedRevenueAmount | Decimal | |
PostedBillingAmountCurrency | String | |
PostedBillingAmount | Decimal | |
PostedBillingsInExcessOfEarningsAmountCurrency | String | |
PostedBillingsInExcessOfEarningsAmount | Decimal | |
PostedDiscountAmountCurrency | String | |
PostedDiscountAmount | Decimal | |
PostedEarningsInExcessOfBillingsAmountCurrency | String | |
PostedEarningsInExcessOfBillingsAmount | Decimal | |
PostedOverheadAmountCurrency | String | |
PostedOverheadAmount | Decimal | |
PostedProfitAmountCurrency | String | |
PostedProfitAmount | Decimal | |
PostedQuantity | Decimal | |
PostedRecognizedRevenueAmountCurrency | String | |
PostedRecognizedRevenueAmount | Decimal | |
PostedRetainageAmountCurrency | String | |
PostedRetainageAmount | Decimal | |
PostedSalesTaxAmountCurrency | String | |
PostedSalesTaxAmount | Decimal | |
PostedTaxAmountCurrency | String | |
PostedTaxAmount | Decimal | |
PostedTotalCostCurrency | String | |
PostedTotalCost | Decimal | |
PostedEarningsAmountCurrency | String | |
PostedEarningsAmount | Decimal | |
PostedPOCostsCurrency | String | |
PostedPOCosts | Decimal | |
PostedPOQuantity | Decimal | |
PostedBilledRetentionAmountCurrency | String | |
PostedBilledRetentionAmount | Decimal | |
PostedCostOfEarningsAmountCurrency | String | |
PostedCostOfEarningsAmount | Decimal | |
PostedLossAmountCurrency | String | |
PostedLossAmount | Decimal | |
PostedProjectFeeAmountCurrency | String | |
PostedProjectFeeAmount | Decimal | |
PostedReceiptsAmountCurrency | String | |
PostedReceiptsAmount | Decimal | |
PostedRetainerFeeAmountCurrency | String | |
PostedRetainerFeeAmount | Decimal | |
PostedRetentionAmountCurrency | String | |
PostedRetentionAmount | Decimal | |
PostedServiceFeeAmountCurrency | String | |
PostedServiceFeeAmount | Decimal | |
PostedWriteoffAmountCurrency | String | |
PostedWriteoffAmount | Decimal | |
ProjectAmountCurrency | String | |
ProjectAmount | Decimal | |
ProjectClassId | String | |
ProjectContractId | String | |
ProjectContractId | String | |
ProjectFeeAmountCurrency | String | |
ProjectFeeAmount | Decimal | |
ProjectId | String | |
ProjectManagerId | String | |
QuantityCompletedPercent | Decimal | |
RestrictToCustomerList | Bool | |
RetainerAmountCurrency | String | |
RetainerAmount | Decimal | |
RetentionFeeAmountCurrency | String | |
RetentionFeeAmount | Decimal | |
RetentionPercent | Decimal | |
SUTAState | String | |
SalesTerritoryId | String | |
SalespersonId | String | |
ServiceFeeAmountCurrency | String | |
ServiceFeeAmount | Decimal | |
Status | String | |
TransactionalCurrencyCodeKeyISOCode | String | |
Type | String | |
UnpostedAccruedRevenueAmountCurrency | String | |
UnpostedAccruedRevenueAmount | Decimal | |
UnpostedBillingAmountCurrency | String | |
UnpostedBillingAmount | Decimal | |
UnpostedBillingsInExcessOfEarningsAmountCurrency | String | |
UnpostedBillingsInExcessOfEarningsAmount | Decimal | |
UnpostedDiscountAmountCurrency | String | |
UnpostedDiscountAmount | Decimal | |
UnpostedEarningsInExcessOfBillingsAmountCurrency | String | |
UnpostedEarningsInExcessOfBillingsAmount | Decimal | |
UnpostedOverheadAmountCurrency | String | |
UnpostedOverheadAmount | Decimal | |
UnpostedProfitAmountCurrency | String | |
UnpostedProfitAmount | Decimal | |
UnpostedQuantity | Decimal | |
UnpostedRecognizedRevenueAmountCurrency | String | |
UnpostedRecognizedRevenueAmount | Decimal | |
UnpostedRetainageAmountCurrency | String | |
UnpostedRetainageAmount | Decimal | |
UnpostedSalesTaxAmountCurrency | String | |
UnpostedSalesTaxAmount | Decimal | |
UnpostedTaxAmountCurrency | String | |
UnpostedTaxAmount | Decimal | |
UnpostedTotalCostCurrency | String | |
UnpostedTotalCost | Decimal | |
UnpostedLossAmountCurrency | String | |
UnpostedLossAmount | Decimal | |
UnpostedBilledRetentionAmountCurrency | String | |
UnpostedBilledRetentionAmount | Decimal | |
UnpostedCostOfEarningsAmountCurrency | String | |
UnpostedCostOfEarningsAmount | Decimal | |
UnpostedEarningsAmountCurrency | String | |
UnpostedEarningsAmount | Decimal | |
UnpostedPOCostsCurrency | String | |
UnpostedPOCosts | Decimal | |
UnpostedPOQuantity | Decimal | |
UnpostedProjectFeeAmountCurrency | String | |
UnpostedProjectFeeAmount | Decimal | |
UnpostedReceiptsAmountCurrency | String | |
UnpostedReceiptsAmount | Decimal | |
UnpostedRetainerFeeAmountCurrency | String | |
UnpostedRetainerFeeAmount | Decimal | |
UnpostedRetentionAmountCurrency | String | |
UnpostedRetentionAmount | Decimal | |
UnpostedServiceFeeAmountCurrency | String | |
UnpostedServiceFeeAmount | Decimal | |
UserDefinedText1 | String | |
UserDefinedText2 | String | |
WorkersCompensationId | String | |
WriteUpDownAmountCurrency | String | |
WriteUpDownAmount | Decimal |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
ProjectBudget
Return a list of: ProjectBudget
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
ActualBeginDate | Datetime | |
ActualCostOfEarningsAmountCurrency | String | |
ActualCostOfEarningsAmount | Decimal | |
ActualEndDate | Datetime | |
ActualLossAmountCurrency | String | |
ActualLossAmount | Decimal | |
ActualReceiptsAmountCurrency | String | |
ActualReceiptsAmount | Decimal | |
ActualWriteoffAmountCurrency | String | |
ActualWriteoffAmount | Decimal | |
BaselineBeginDate | Datetime | |
BaselineBillableAmountCurrency | String | |
BaselineBillableAmount | Decimal | |
BaselineEndDate | Datetime | |
BaselineOverheadCostCurrency | String | |
BaselineOverheadCost | Decimal | |
BaselineProfitAmountCurrency | String | |
BaselineProfitAmount | Decimal | |
BaselineQuantity | Decimal | |
BaselineTaxAmountCurrency | String | |
BaselineTaxAmount | Decimal | |
BaselineTotalCostCurrency | String | |
BaselineTotalCost | Decimal | |
BaselineNetProfitAmountCurrency | String | |
BaselineNetProfitAmount | Decimal | |
BaselineOverheadPercent | Decimal | |
BaselineProfitPercent | Decimal | |
BaselinePurchaseTaxBasis | String | |
BaselinePurchaseTaxScheduleId | String | |
BaselineSalesTaxBasis | String | |
BaselineSalesTaxScheduleId | String | |
BaselineUnitCostCurrency | String | |
BaselineUnitCost | Decimal | |
BilledAccruedRevenueCurrency | String | |
BilledAccruedRevenue | Decimal | |
BilledCostCurrency | String | |
BilledCost | Decimal | |
BilledQuantity | Decimal | |
BillingType | String | |
CostCompletedPercent | Decimal | |
CostOfEarningsAmountCurrency | String | |
CostOfEarningsAmount | Decimal | |
DoesAcceptEquipmentRateTableReplacement | Bool | |
DoesAcceptLaborRateTableReplacement | Bool | |
EarningsAmountCurrency | String | |
EarningsAmount | Decimal | |
EquipmentRateTableId | String | |
ForecastBeginDate | Datetime | |
ForecastBillableAmountCurrency | String | |
ForecastBillableAmount | Decimal | |
ForecastEndDate | Datetime | |
ForecastOverheadCostCurrency | String | |
ForecastOverheadCost | Decimal | |
ForecastProfitAmountCurrency | String | |
ForecastProfitAmount | Decimal | |
ForecastQuantity | Decimal | |
ForecastTaxAmountCurrency | String | |
ForecastTaxAmount | Decimal | |
ForecastTotalCostCurrency | String | |
ForecastTotalCost | Decimal | |
ForecastNetProfitAmountCurrency | String | |
ForecastNetProfitAmount | Decimal | |
ForecastOverheadPercent | Decimal | |
ForecastProfitPercent | Decimal | |
ForecastPurchaseTaxBasis | String | |
ForecastPurchaseTaxScheduleId | String | |
ForecastSalesTaxBasis | String | |
ForecastSalesTaxScheduleId | String | |
ForecastUnitCostCurrency | String | |
ForecastUnitCost | Decimal | |
IsInventoryItem | Bool | |
KeyCostCategoryId [KEY] | String | |
KeyProjectId [KEY] | String | |
KeyTransactionUsage [KEY] | Int | |
LaborRateTableId | String | |
LaborRateTableType | String | |
LineSequenceNumber | Int | |
OverheadRateMethod | String | |
POCommittedCostsCurrency | String | |
POCommittedCosts | Decimal | |
POCommittedQuantity | Decimal | |
PayCodeHourlyId | String | |
PayCodeSalaryId | String | |
PostedAccruedRevenueAmountCurrency | String | |
PostedAccruedRevenueAmount | Decimal | |
PostedBillingAmountCurrency | String | |
PostedBillingAmount | Decimal | |
PostedBillingsInExcessOfEarningsAmountCurrency | String | |
PostedBillingsInExcessOfEarningsAmount | Decimal | |
PostedDiscountAmountCurrency | String | |
PostedDiscountAmount | Decimal | |
PostedEarningsInExcessOfBillingsAmountCurrency | String | |
PostedEarningsInExcessOfBillingsAmount | Decimal | |
PostedOverheadAmountCurrency | String | |
PostedOverheadAmount | Decimal | |
PostedProfitAmountCurrency | String | |
PostedProfitAmount | Decimal | |
PostedQuantity | Decimal | |
PostedRecognizedRevenueAmountCurrency | String | |
PostedRecognizedRevenueAmount | Decimal | |
PostedRetainageAmountCurrency | String | |
PostedRetainageAmount | Decimal | |
PostedSalesTaxAmountCurrency | String | |
PostedSalesTaxAmount | Decimal | |
PostedTaxAmountCurrency | String | |
PostedTaxAmount | Decimal | |
PostedTotalCostCurrency | String | |
PostedTotalCost | Decimal | |
PostedEarningsAmountCurrency | String | |
PostedEarningsAmount | Decimal | |
PostedPOCostsCurrency | String | |
PostedPOCosts | Decimal | |
PostedPOQuantity | Decimal | |
PostedBillableAmountCurrency | String | |
PostedBillableAmount | Decimal | |
PostedCommittedCostCurrency | String | |
PostedCommittedCost | Decimal | |
PostedCommittedQuantity | Decimal | |
PostedCommittedTaxAmountCurrency | String | |
PostedCommittedTaxAmount | Decimal | |
PostedTaxPaidAmountCurrency | String | |
PostedTaxPaidAmount | Decimal | |
ProfitType | String | |
ProjectAmountCurrency | String | |
ProjectAmount | Decimal | |
QuantityCompletedPercent | Decimal | |
ReceiptsAmountCurrency | String | |
ReceiptsAmount | Decimal | |
Status | String | |
TaxPaidAmountCurrency | String | |
TaxPaidAmount | Decimal | |
TransactionalCurrencyCodeISOCode | String | |
UncommittedPOCostsCurrency | String | |
UncommittedPOCosts | Decimal | |
UncommittedPOQuantity | Decimal | |
UnpostedAccruedRevenueAmountCurrency | String | |
UnpostedAccruedRevenueAmount | Decimal | |
UnpostedBillingAmountCurrency | String | |
UnpostedBillingAmount | Decimal | |
UnpostedBillingsInExcessOfEarningsAmountCurrency | String | |
UnpostedBillingsInExcessOfEarningsAmount | Decimal | |
UnpostedDiscountAmountCurrency | String | |
UnpostedDiscountAmount | Decimal | |
UnpostedEarningsInExcessOfBillingsAmountCurrency | String | |
UnpostedEarningsInExcessOfBillingsAmount | Decimal | |
UnpostedOverheadAmountCurrency | String | |
UnpostedOverheadAmount | Decimal | |
UnpostedProfitAmountCurrency | String | |
UnpostedProfitAmount | Decimal | |
UnpostedQuantity | Decimal | |
UnpostedRecognizedRevenueAmountCurrency | String | |
UnpostedRecognizedRevenueAmount | Decimal | |
UnpostedRetainageAmountCurrency | String | |
UnpostedRetainageAmount | Decimal | |
UnpostedSalesTaxAmountCurrency | String | |
UnpostedSalesTaxAmount | Decimal | |
UnpostedTaxAmountCurrency | String | |
UnpostedTaxAmount | Decimal | |
UnpostedTotalCostCurrency | String | |
UnpostedTotalCost | Decimal | |
UnpostedLossAmountCurrency | String | |
UnpostedLossAmount | Decimal | |
UnpostedBeginDate | Datetime | |
UnpostedBillableAmountCurrency | String | |
UnpostedBillableAmount | Decimal | |
UnpostedCommittedCostCurrency | String | |
UnpostedCommittedCost | Decimal | |
UnpostedCommittedQuantity | Decimal | |
UnpostedCommittedTaxAmountCurrency | String | |
UnpostedCommittedTaxAmount | Decimal | |
UnpostedEndDate | Datetime | |
UofM | String | |
UofMScheduleId | String | |
WriteUpDownAmountCurrency | String | |
WriteUpDownAmount | Decimal | |
WriteoffAmountCurrency | String | |
WriteoffAmount | Decimal | |
WriteoffTaxAmountCurrency | String | |
WriteoffTaxAmount | Decimal |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
ProjectBudgets
Return a list of: ProjectBudgets
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
AccountAmountCurrency | String | |
AccountAmount | Decimal | |
AccountingMethod | String | |
AccountsAggregate | String | |
ActualAccruedRevenueAmountCurrency | String | |
ActualAccruedRevenueAmount | Decimal | |
ActualBillingAmountCurrency | String | |
ActualBillingAmount | Decimal | |
ActualBillingsInExcessOfEarningsAmountCurrency | String | |
ActualBillingsInExcessOfEarningsAmount | Decimal | |
ActualDiscountAmountCurrency | String | |
ActualDiscountAmount | Decimal | |
ActualEarningsInExcessOfBillingsAmountCurrency | String | |
ActualEarningsInExcessOfBillingsAmount | Decimal | |
ActualOverheadAmountCurrency | String | |
ActualOverheadAmount | Decimal | |
ActualProfitAmountCurrency | String | |
ActualProfitAmount | Decimal | |
ActualQuantity | Decimal | |
ActualRecognizedRevenueAmountCurrency | String | |
ActualRecognizedRevenueAmount | Decimal | |
ActualRetainageAmountCurrency | String | |
ActualRetainageAmount | Decimal | |
ActualSalesTaxAmountCurrency | String | |
ActualSalesTaxAmount | Decimal | |
ActualTaxAmountCurrency | String | |
ActualTaxAmount | Decimal | |
ActualTotalCostCurrency | String | |
ActualTotalCost | Decimal | |
ActualBeginDate | Datetime | |
ActualEndDate | Datetime | |
BaselineBeginDate | Datetime | |
BaselineBillableAmountCurrency | String | |
BaselineBillableAmount | Decimal | |
BaselineEndDate | Datetime | |
BaselineOverheadCostCurrency | String | |
BaselineOverheadCost | Decimal | |
BaselineProfitAmountCurrency | String | |
BaselineProfitAmount | Decimal | |
BaselineQuantity | Decimal | |
BaselineTaxAmountCurrency | String | |
BaselineTaxAmount | Decimal | |
BaselineTotalCostCurrency | String | |
BaselineTotalCost | Decimal | |
BillToAddressId | String | |
BilledAccruedRevenueCurrency | String | |
BilledAccruedRevenue | Decimal | |
BilledCostCurrency | String | |
BilledCost | Decimal | |
BilledQuantity | Decimal | |
BillingCyclesAggregate | String | |
BillingNotReceivableCurrency | String | |
BillingNotReceivable | Decimal | |
BillingType | String | |
BudgetsExtensionsExtensionAggregate | String | |
BudgetsActualBeginDate | Datetime | |
BudgetsActualCostOfEarningsAmountCurrency | String | |
BudgetsActualCostOfEarningsAmount | Decimal | |
BudgetsActualEndDate | Datetime | |
BudgetsActualLossAmountCurrency | String | |
BudgetsActualLossAmount | Decimal | |
BudgetsActualReceiptsAmountCurrency | String | |
BudgetsActualReceiptsAmount | Decimal | |
BudgetsActualWriteoffAmountCurrency | String | |
BudgetsActualWriteoffAmount | Decimal | |
BudgetsBaselineBeginDate | Datetime | |
BudgetsBaselineBillableAmountCurrency | String | |
BudgetsBaselineBillableAmount | Decimal | |
BudgetsBaselineEndDate | Datetime | |
BudgetsBaselineOverheadCostCurrency | String | |
BudgetsBaselineOverheadCost | Decimal | |
BudgetsBaselineProfitAmountCurrency | String | |
BudgetsBaselineProfitAmount | Decimal | |
BudgetsBaselineQuantity | Decimal | |
BudgetsBaselineTaxAmountCurrency | String | |
BudgetsBaselineTaxAmount | Decimal | |
BudgetsBaselineTotalCostCurrency | String | |
BudgetsBaselineTotalCost | Decimal | |
BudgetsBaselineNetProfitAmountCurrency | String | |
BudgetsBaselineNetProfitAmount | Decimal | |
BudgetsBaselineOverheadPercent | Decimal | |
BudgetsBaselineProfitPercent | Decimal | |
BudgetsBaselinePurchaseTaxBasis | String | |
BudgetsBaselinePurchaseTaxScheduleId | String | |
BudgetsBaselineSalesTaxBasis | String | |
BudgetsBaselineSalesTaxScheduleId | String | |
BudgetsBaselineUnitCostCurrency | String | |
BudgetsBaselineUnitCost | Decimal | |
BudgetsBilledAccruedRevenueCurrency | String | |
BudgetsBilledAccruedRevenue | Decimal | |
BudgetsBilledCostCurrency | String | |
BudgetsBilledCost | Decimal | |
BudgetsBilledQuantity | Decimal | |
BudgetsBillingType | String | |
BudgetsCostCompletedPercent | Decimal | |
BudgetsCostOfEarningsAmountCurrency | String | |
BudgetsCostOfEarningsAmount | Decimal | |
BudgetsDoesAcceptEquipmentRateTableReplacement | Bool | |
BudgetsDoesAcceptLaborRateTableReplacement | Bool | |
BudgetsEarningsAmountCurrency | String | |
BudgetsEarningsAmount | Decimal | |
BudgetsEquipmentRateTableId | String | |
BudgetsForecastBeginDate | Datetime | |
BudgetsForecastBillableAmountCurrency | String | |
BudgetsForecastBillableAmount | Decimal | |
BudgetsForecastEndDate | Datetime | |
BudgetsForecastOverheadCostCurrency | String | |
BudgetsForecastOverheadCost | Decimal | |
BudgetsForecastProfitAmountCurrency | String | |
BudgetsForecastProfitAmount | Decimal | |
BudgetsForecastQuantity | Decimal | |
BudgetsForecastTaxAmountCurrency | String | |
BudgetsForecastTaxAmount | Decimal | |
BudgetsForecastTotalCostCurrency | String | |
BudgetsForecastTotalCost | Decimal | |
BudgetsForecastNetProfitAmountCurrency | String | |
BudgetsForecastNetProfitAmount | Decimal | |
BudgetsForecastOverheadPercent | Decimal | |
BudgetsForecastProfitPercent | Decimal | |
BudgetsForecastPurchaseTaxBasis | String | |
BudgetsForecastPurchaseTaxScheduleId | String | |
BudgetsForecastSalesTaxBasis | String | |
BudgetsForecastSalesTaxScheduleId | String | |
BudgetsForecastUnitCostCurrency | String | |
BudgetsForecastUnitCost | Decimal | |
BudgetsIsInventoryItem | Bool | |
BudgetsKeyCostCategoryId [KEY] | String | |
BudgetsKeyProjectId [KEY] | String | |
BudgetsKeyTransactionUsage [KEY] | Int | |
BudgetsLaborRateTableId | String | |
BudgetsLaborRateTableType | String | |
BudgetsLineSequenceNumber | Int | |
BudgetsOverheadRateMethod | String | |
BudgetsPOCommittedCostsCurrency | String | |
BudgetsPOCommittedCosts | Decimal | |
BudgetsPOCommittedQuantity | Decimal | |
BudgetsPayCodeHourlyId | String | |
BudgetsPayCodeSalaryId | String | |
BudgetsPostedAccruedRevenueAmountCurrency | String | |
BudgetsPostedAccruedRevenueAmount | Decimal | |
BudgetsPostedBillingAmountCurrency | String | |
BudgetsPostedBillingAmount | Decimal | |
BudgetsPostedBillingsInExcessOfEarningsAmountCurrency | String | |
BudgetsPostedBillingsInExcessOfEarningsAmount | Decimal | |
BudgetsPostedDiscountAmountCurrency | String | |
BudgetsPostedDiscountAmount | Decimal | |
BudgetsPostedEarningsInExcessOfBillingsAmountCurrency | String | |
BudgetsPostedEarningsInExcessOfBillingsAmount | Decimal | |
BudgetsPostedOverheadAmountCurrency | String | |
BudgetsPostedOverheadAmount | Decimal | |
BudgetsPostedProfitAmountCurrency | String | |
BudgetsPostedProfitAmount | Decimal | |
BudgetsPostedQuantity | Decimal | |
BudgetsPostedRecognizedRevenueAmountCurrency | String | |
BudgetsPostedRecognizedRevenueAmount | Decimal | |
BudgetsPostedRetainageAmountCurrency | String | |
BudgetsPostedRetainageAmount | Decimal | |
BudgetsPostedSalesTaxAmountCurrency | String | |
BudgetsPostedSalesTaxAmount | Decimal | |
BudgetsPostedTaxAmountCurrency | String | |
BudgetsPostedTaxAmount | Decimal | |
BudgetsPostedTotalCostCurrency | String | |
BudgetsPostedTotalCost | Decimal | |
BudgetsPostedEarningsAmountCurrency | String | |
BudgetsPostedEarningsAmount | Decimal | |
BudgetsPostedPOCostsCurrency | String | |
BudgetsPostedPOCosts | Decimal | |
BudgetsPostedPOQuantity | Decimal | |
BudgetsPostedBillableAmountCurrency | String | |
BudgetsPostedBillableAmount | Decimal | |
BudgetsPostedCommittedCostCurrency | String | |
BudgetsPostedCommittedCost | Decimal | |
BudgetsPostedCommittedQuantity | Decimal | |
BudgetsPostedCommittedTaxAmountCurrency | String | |
BudgetsPostedCommittedTaxAmount | Decimal | |
BudgetsPostedTaxPaidAmountCurrency | String | |
BudgetsPostedTaxPaidAmount | Decimal | |
BudgetsProfitType | String | |
BudgetsProjectAmountCurrency | String | |
BudgetsProjectAmount | Decimal | |
BudgetsQuantityCompletedPercent | Decimal | |
BudgetsReceiptsAmountCurrency | String | |
BudgetsReceiptsAmount | Decimal | |
BudgetsStatus | String | |
BudgetsTaxPaidAmountCurrency | String | |
BudgetsTaxPaidAmount | Decimal | |
BudgetsTransactionalCurrencyCodeISOCode | String | |
BudgetsUncommittedPOCostsCurrency | String | |
BudgetsUncommittedPOCosts | Decimal | |
BudgetsUncommittedPOQuantity | Decimal | |
BudgetsUnpostedAccruedRevenueAmountCurrency | String | |
BudgetsUnpostedAccruedRevenueAmount | Decimal | |
BudgetsUnpostedBillingAmountCurrency | String | |
BudgetsUnpostedBillingAmount | Decimal | |
BudgetsUnpostedBillingsInExcessOfEarningsAmountCurrency | String | |
BudgetsUnpostedBillingsInExcessOfEarningsAmount | Decimal | |
BudgetsUnpostedDiscountAmountCurrency | String | |
BudgetsUnpostedDiscountAmount | Decimal | |
BudgetsUnpostedEarningsInExcessOfBillingsAmountCurrency | String | |
BudgetsUnpostedEarningsInExcessOfBillingsAmount | Decimal | |
BudgetsUnpostedOverheadAmountCurrency | String | |
BudgetsUnpostedOverheadAmount | Decimal | |
BudgetsUnpostedProfitAmountCurrency | String | |
BudgetsUnpostedProfitAmount | Decimal | |
BudgetsUnpostedQuantity | Decimal | |
BudgetsUnpostedRecognizedRevenueAmountCurrency | String | |
BudgetsUnpostedRecognizedRevenueAmount | Decimal | |
BudgetsUnpostedRetainageAmountCurrency | String | |
BudgetsUnpostedRetainageAmount | Decimal | |
BudgetsUnpostedSalesTaxAmountCurrency | String | |
BudgetsUnpostedSalesTaxAmount | Decimal | |
BudgetsUnpostedTaxAmountCurrency | String | |
BudgetsUnpostedTaxAmount | Decimal | |
BudgetsUnpostedTotalCostCurrency | String | |
BudgetsUnpostedTotalCost | Decimal | |
BudgetsUnpostedLossAmountCurrency | String | |
BudgetsUnpostedLossAmount | Decimal | |
BudgetsUnpostedBeginDate | Datetime | |
BudgetsUnpostedBillableAmountCurrency | String | |
BudgetsUnpostedBillableAmount | Decimal | |
BudgetsUnpostedCommittedCostCurrency | String | |
BudgetsUnpostedCommittedCost | Decimal | |
BudgetsUnpostedCommittedQuantity | Decimal | |
BudgetsUnpostedCommittedTaxAmountCurrency | String | |
BudgetsUnpostedCommittedTaxAmount | Decimal | |
BudgetsUnpostedEndDate | Datetime | |
BudgetsUofM | String | |
BudgetsUofMScheduleId | String | |
BudgetsWriteUpDownAmountCurrency | String | |
BudgetsWriteUpDownAmount | Decimal | |
BudgetsWriteoffAmountCurrency | String | |
BudgetsWriteoffAmount | Decimal | |
BudgetsWriteoffTaxAmountCurrency | String | |
BudgetsWriteoffTaxAmount | Decimal | |
BusinessManagerId | String | |
CloseToBillings | Bool | |
CloseToProjectCosts | Bool | |
CommissionBasedOn | String | |
CommissionPercent | Decimal | |
ContactPerson | String | |
CostCompletedPercent | Decimal | |
CurrencyKeyISOCode | String | |
CustomerId | String | |
CustomerPONumber | String | |
DefaultBillingFormat | String | |
DepartmentId | String | |
DiscountPercent | Decimal | |
DoesAcceptEquipmentRateTableReplacement | Bool | |
DoesAcceptLaborRateTableReplacement | Bool | |
DoesCombineForRevenueRecognition | Bool | |
EquipmentListAggregate | String | |
EquipmentRateTableId | String | |
EstimatorId | String | |
FeesAggregate | String | |
ForecastBeginDate | Datetime | |
ForecastBillableAmountCurrency | String | |
ForecastBillableAmount | Decimal | |
ForecastEndDate | Datetime | |
ForecastOverheadCostCurrency | String | |
ForecastOverheadCost | Decimal | |
ForecastProfitAmountCurrency | String | |
ForecastProfitAmount | Decimal | |
ForecastQuantity | Decimal | |
ForecastTaxAmountCurrency | String | |
ForecastTaxAmount | Decimal | |
ForecastTotalCostCurrency | String | |
ForecastTotalCost | Decimal | |
Id | String | |
LaborRateTableId | String | |
LaborRateTableType | String | |
Name | String | |
POCommittedCostsCurrency | String | |
POCommittedCosts | Decimal | |
POCommittedQuantity | Decimal | |
PostedAccruedRevenueAmountCurrency | String | |
PostedAccruedRevenueAmount | Decimal | |
PostedBillingAmountCurrency | String | |
PostedBillingAmount | Decimal | |
PostedBillingsInExcessOfEarningsAmountCurrency | String | |
PostedBillingsInExcessOfEarningsAmount | Decimal | |
PostedDiscountAmountCurrency | String | |
PostedDiscountAmount | Decimal | |
PostedEarningsInExcessOfBillingsAmountCurrency | String | |
PostedEarningsInExcessOfBillingsAmount | Decimal | |
PostedOverheadAmountCurrency | String | |
PostedOverheadAmount | Decimal | |
PostedProfitAmountCurrency | String | |
PostedProfitAmount | Decimal | |
PostedQuantity | Decimal | |
PostedRecognizedRevenueAmountCurrency | String | |
PostedRecognizedRevenueAmount | Decimal | |
PostedRetainageAmountCurrency | String | |
PostedRetainageAmount | Decimal | |
PostedSalesTaxAmountCurrency | String | |
PostedSalesTaxAmount | Decimal | |
PostedTaxAmountCurrency | String | |
PostedTaxAmount | Decimal | |
PostedTotalCostCurrency | String | |
PostedTotalCost | Decimal | |
PostedEarningsAmountCurrency | String | |
PostedEarningsAmount | Decimal | |
PostedPOCostsCurrency | String | |
PostedPOCosts | Decimal | |
PostedPOQuantity | Decimal | |
PostedBilledRetentionAmountCurrency | String | |
PostedBilledRetentionAmount | Decimal | |
PostedCostOfEarningsAmountCurrency | String | |
PostedCostOfEarningsAmount | Decimal | |
PostedLossAmountCurrency | String | |
PostedLossAmount | Decimal | |
PostedProjectFeeAmountCurrency | String | |
PostedProjectFeeAmount | Decimal | |
PostedReceiptsAmountCurrency | String | |
PostedReceiptsAmount | Decimal | |
PostedRetainerFeeAmountCurrency | String | |
PostedRetainerFeeAmount | Decimal | |
PostedRetentionAmountCurrency | String | |
PostedRetentionAmount | Decimal | |
PostedServiceFeeAmountCurrency | String | |
PostedServiceFeeAmount | Decimal | |
PostedWriteoffAmountCurrency | String | |
PostedWriteoffAmount | Decimal | |
ProjectAmountCurrency | String | |
ProjectAmount | Decimal | |
ProjectClassId | String | |
ProjectContractId | String | |
ProjectContractId | String | |
ProjectFeeAmountCurrency | String | |
ProjectFeeAmount | Decimal | |
ProjectId | String | |
ProjectManagerId | String | |
QuantityCompletedPercent | Decimal | |
RestrictToCustomerList | Bool | |
RetainerAmountCurrency | String | |
RetainerAmount | Decimal | |
RetentionFeeAmountCurrency | String | |
RetentionFeeAmount | Decimal | |
RetentionPercent | Decimal | |
SUTAState | String | |
SalesTerritoryId | String | |
SalespersonId | String | |
ServiceFeeAmountCurrency | String | |
ServiceFeeAmount | Decimal | |
Status | String | |
TransactionalCurrencyCodeKeyISOCode | String | |
Type | String | |
UnpostedAccruedRevenueAmountCurrency | String | |
UnpostedAccruedRevenueAmount | Decimal | |
UnpostedBillingAmountCurrency | String | |
UnpostedBillingAmount | Decimal | |
UnpostedBillingsInExcessOfEarningsAmountCurrency | String | |
UnpostedBillingsInExcessOfEarningsAmount | Decimal | |
UnpostedDiscountAmountCurrency | String | |
UnpostedDiscountAmount | Decimal | |
UnpostedEarningsInExcessOfBillingsAmountCurrency | String | |
UnpostedEarningsInExcessOfBillingsAmount | Decimal | |
UnpostedOverheadAmountCurrency | String | |
UnpostedOverheadAmount | Decimal | |
UnpostedProfitAmountCurrency | String | |
UnpostedProfitAmount | Decimal | |
UnpostedQuantity | Decimal | |
UnpostedRecognizedRevenueAmountCurrency | String | |
UnpostedRecognizedRevenueAmount | Decimal | |
UnpostedRetainageAmountCurrency | String | |
UnpostedRetainageAmount | Decimal | |
UnpostedSalesTaxAmountCurrency | String | |
UnpostedSalesTaxAmount | Decimal | |
UnpostedTaxAmountCurrency | String | |
UnpostedTaxAmount | Decimal | |
UnpostedTotalCostCurrency | String | |
UnpostedTotalCost | Decimal | |
UnpostedLossAmountCurrency | String | |
UnpostedLossAmount | Decimal | |
UnpostedBilledRetentionAmountCurrency | String | |
UnpostedBilledRetentionAmount | Decimal | |
UnpostedCostOfEarningsAmountCurrency | String | |
UnpostedCostOfEarningsAmount | Decimal | |
UnpostedEarningsAmountCurrency | String | |
UnpostedEarningsAmount | Decimal | |
UnpostedPOCostsCurrency | String | |
UnpostedPOCosts | Decimal | |
UnpostedPOQuantity | Decimal | |
UnpostedProjectFeeAmountCurrency | String | |
UnpostedProjectFeeAmount | Decimal | |
UnpostedReceiptsAmountCurrency | String | |
UnpostedReceiptsAmount | Decimal | |
UnpostedRetainerFeeAmountCurrency | String | |
UnpostedRetainerFeeAmount | Decimal | |
UnpostedRetentionAmountCurrency | String | |
UnpostedRetentionAmount | Decimal | |
UnpostedServiceFeeAmountCurrency | String | |
UnpostedServiceFeeAmount | Decimal | |
UserDefinedText1 | String | |
UserDefinedText2 | String | |
WorkersCompensationId | String | |
WriteUpDownAmountCurrency | String | |
WriteUpDownAmount | Decimal |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
ProjectChangeOrder
Return a list of: ProjectChangeOrder
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
ApprovalDate | Datetime | |
ApprovedBy | String | |
ApproverPosition | String | |
BudgetsAggregate | String | |
ContractBeginDate | Datetime | |
ContractEndDate | Datetime | |
CustomerChangeOrderNumber | String | |
CustomerId | String | |
Date | Datetime | |
Description | String | |
DocumentStatus | String | |
EstimatedBy | String | |
FeesAggregate | String | |
Id [KEY] | String | |
KeyProjectContractId [KEY] | String | |
LastProcessedDate | Datetime | |
ModifiedBy | String | |
PreviousContractBeginDate | Datetime | |
PreviousContractEndDate | Datetime | |
PreviousProjectAmountCurrency | String | |
PreviousProjectAmount | Decimal | |
ProjectAmountCurrency | String | |
ProjectAmount | Decimal | |
ReasonForRevision | String | |
RequestedBy | String | |
RevisedBudgetTotalAmountCurrency | String | |
RevisedBudgetTotalAmount | Decimal | |
RevisedBy | String | |
RevisedFeeTotalAmountCurrency | String | |
RevisedFeeTotalAmount | Decimal | |
RevisedProjectAmountCurrency | String | |
RevisedProjectAmount | Decimal | |
RevisersPosition | String | |
SequenceNumber | Int | |
Status | String | |
TotalBillingCurrency | String | |
TotalBilling | Decimal | |
TotalChangeOrderAmountCurrency | String | |
TotalChangeOrderAmount | Decimal | |
TotalCostCurrency | String | |
TotalCost | Decimal | |
TotalQuantity | Decimal | |
TrackChangesToType | String | |
Type | String | |
VarianceProjectAmountCurrency | String | |
VarianceProjectAmount | Decimal | |
VarianceTotalBillingCurrency | String | |
VarianceTotalBilling | Decimal | |
VarianceTotalCostCurrency | String | |
VarianceTotalCost | Decimal | |
VarianceTotalQuantity | Decimal |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
ProjectChangeOrderBudgets
Return a list of: ProjectChangeOrderBudgets
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
ApprovalDate | Datetime | |
ApprovedBy | String | |
ApproverPosition | String | |
BudgetsExtensionsExtensionAggregate | String | |
BudgetsActualReceiptAmountCurrency | String | |
BudgetsActualReceiptAmount | Decimal | |
BudgetsActualWriteoffAmountCurrency | String | |
BudgetsActualWriteoffAmount | Decimal | |
BudgetsActualWriteoffTaxAmountCurrency | String | |
BudgetsActualWriteoffTaxAmount | Decimal | |
BudgetsApprovalDate | Datetime | |
BudgetsBaselineOverheadCostCurrency | String | |
BudgetsBaselineOverheadCost | Decimal | |
BudgetsBaselineProfitAmountCurrency | String | |
BudgetsBaselineProfitAmount | Decimal | |
BudgetsBaselineQuantity | Decimal | |
BudgetsBaselineUnitCostCurrency | String | |
BudgetsBaselineUnitCost | Decimal | |
BudgetsBillingType | String | |
BudgetsContractBeginDate | Datetime | |
BudgetsContractEndDate | Datetime | |
BudgetsCostCategoryId | String | |
BudgetsFinalQuoteAmountCurrency | String | |
BudgetsFinalQuoteAmount | Decimal | |
BudgetsInitialQuoteAmountCurrency | String | |
BudgetsInitialQuoteAmount | Decimal | |
BudgetsIsClosed | Bool | |
BudgetsKeyLineSequenceNumber [KEY] | Int | |
BudgetsKeyProjectChangeOrderId [KEY] | String | |
BudgetsKeyProjectChangeOrderKeyProjectContractId [KEY] | String | |
BudgetsLineItemSequenceNumber | Int | |
BudgetsOriginalBudgetAmountCurrency | String | |
BudgetsOriginalBudgetAmount | Decimal | |
BudgetsOriginalProjectAmountCurrency | String | |
BudgetsOriginalProjectAmount | Decimal | |
BudgetsOverheadPercent | Decimal | |
BudgetsPayCodeHourlyId | String | |
BudgetsPayCodeSalaryId | String | |
BudgetsPostedAccruedRevenueAmountCurrency | String | |
BudgetsPostedAccruedRevenueAmount | Decimal | |
BudgetsPostedBillingAmountCurrency | String | |
BudgetsPostedBillingAmount | Decimal | |
BudgetsPostedBillingsInExcessOfEarningsAmountCurrency | String | |
BudgetsPostedBillingsInExcessOfEarningsAmount | Decimal | |
BudgetsPostedDiscountAmountCurrency | String | |
BudgetsPostedDiscountAmount | Decimal | |
BudgetsPostedEarningsInExcessOfBillingsAmountCurrency | String | |
BudgetsPostedEarningsInExcessOfBillingsAmount | Decimal | |
BudgetsPostedOverheadAmountCurrency | String | |
BudgetsPostedOverheadAmount | Decimal | |
BudgetsPostedProfitAmountCurrency | String | |
BudgetsPostedProfitAmount | Decimal | |
BudgetsPostedQuantity | Decimal | |
BudgetsPostedRecognizedRevenueAmountCurrency | String | |
BudgetsPostedRecognizedRevenueAmount | Decimal | |
BudgetsPostedRetainageAmountCurrency | String | |
BudgetsPostedRetainageAmount | Decimal | |
BudgetsPostedSalesTaxAmountCurrency | String | |
BudgetsPostedSalesTaxAmount | Decimal | |
BudgetsPostedTaxAmountCurrency | String | |
BudgetsPostedTaxAmount | Decimal | |
BudgetsPostedTotalCostCurrency | String | |
BudgetsPostedTotalCost | Decimal | |
BudgetsPostedTaxPaidAmountCurrency | String | |
BudgetsPostedTaxPaidAmount | Decimal | |
BudgetsPreviousBaselineOverheadCostCurrency | String | |
BudgetsPreviousBaselineOverheadCost | Decimal | |
BudgetsPreviousBaselineProfitAmountCurrency | String | |
BudgetsPreviousBaselineProfitAmount | Decimal | |
BudgetsPreviousBaselineQuantity | Decimal | |
BudgetsPreviousBaselineUnitCostCurrency | String | |
BudgetsPreviousBaselineUnitCost | Decimal | |
BudgetsPreviousContractBeginDate | Datetime | |
BudgetsPreviousContractEndDate | Datetime | |
BudgetsPreviousOverheadPercent | Decimal | |
BudgetsPreviousPayCodeHourlyId | String | |
BudgetsPreviousPayCodeSalaryId | String | |
BudgetsPreviousProfitAmountCurrency | String | |
BudgetsPreviousProfitAmount | Decimal | |
BudgetsPreviousProfitPercent | Decimal | |
BudgetsPreviousProjectAmountCurrency | String | |
BudgetsPreviousProjectAmount | Decimal | |
BudgetsPreviousPurchaseTaxBasis | String | |
BudgetsPreviousQuantity | Decimal | |
BudgetsPreviousSalesTaxBasis | String | |
BudgetsPreviousSalesTaxScheduleId | String | |
BudgetsPreviousTaxScheduleId | String | |
BudgetsPreviousTotalBillingAmountCurrency | String | |
BudgetsPreviousTotalBillingAmount | Decimal | |
BudgetsPreviousTotalCostCurrency | String | |
BudgetsPreviousTotalCost | Decimal | |
BudgetsPreviousTotalOverheadAmountCurrency | String | |
BudgetsPreviousTotalOverheadAmount | Decimal | |
BudgetsPreviousTotalProfitAmountCurrency | String | |
BudgetsPreviousTotalProfitAmount | Decimal | |
BudgetsPreviousUnitCostCurrency | String | |
BudgetsPreviousUnitCost | Decimal | |
BudgetsProfitAmountCurrency | String | |
BudgetsProfitAmount | Decimal | |
BudgetsProfitPercent | Decimal | |
BudgetsProfitType | String | |
BudgetsProjectAmountCurrency | String | |
BudgetsProjectAmount | Decimal | |
BudgetsProjectId | String | |
BudgetsPurchaseTaxBasis | String | |
BudgetsPurchaseTaxScheduleId | String | |
BudgetsQuantity | Decimal | |
BudgetsQuoteApprovedBy | String | |
BudgetsQuotePreparedBy | String | |
BudgetsRevisedBudgetTotalAmountCurrency | String | |
BudgetsRevisedBudgetTotalAmount | Decimal | |
BudgetsRevisedProjectTotalAmountCurrency | String | |
BudgetsRevisedProjectTotalAmount | Decimal | |
BudgetsSalesTaxBasis | String | |
BudgetsSalesTaxScheduleId | String | |
BudgetsSequenceNumber | Int | |
BudgetsTotalBillingAmountCurrency | String | |
BudgetsTotalBillingAmount | Decimal | |
BudgetsTotalCostCurrency | String | |
BudgetsTotalCost | Decimal | |
BudgetsTotalOverheadAmountCurrency | String | |
BudgetsTotalOverheadAmount | Decimal | |
BudgetsTotalProfitAmountCurrency | String | |
BudgetsTotalProfitAmount | Decimal | |
BudgetsUnitCostCurrency | String | |
BudgetsUnitCost | Decimal | |
BudgetsUofM | String | |
BudgetsUofMScheduleId | String | |
BudgetsVarianceMarkupPercent | Decimal | |
BudgetsVarianceOverheadAmountCurrency | String | |
BudgetsVarianceOverheadAmount | Decimal | |
BudgetsVarianceOverheadPercent | Decimal | |
BudgetsVarianceProfitAmountCurrency | String | |
BudgetsVarianceProfitAmount | Decimal | |
BudgetsVarianceProjectAmountCurrency | String | |
BudgetsVarianceProjectAmount | Decimal | |
BudgetsVarianceQuantity | Decimal | |
BudgetsVarianceTotalBillingAmountCurrency | String | |
BudgetsVarianceTotalBillingAmount | Decimal | |
BudgetsVarianceTotalCostCurrency | String | |
BudgetsVarianceTotalCost | Decimal | |
BudgetsVarianceTotalProfitAmountCurrency | String | |
BudgetsVarianceTotalProfitAmount | Decimal | |
BudgetsVarianceUnitCostCurrency | String | |
BudgetsVarianceUnitCost | Decimal | |
ContractBeginDate | Datetime | |
ContractEndDate | Datetime | |
CustomerChangeOrderNumber | String | |
CustomerId | String | |
Date | Datetime | |
Description | String | |
DocumentStatus | String | |
EstimatedBy | String | |
FeesAggregate | String | |
Id | String | |
KeyProjectContractId | String | |
LastProcessedDate | Datetime | |
ModifiedBy | String | |
PreviousContractBeginDate | Datetime | |
PreviousContractEndDate | Datetime | |
PreviousProjectAmountCurrency | String | |
PreviousProjectAmount | Decimal | |
ProjectAmountCurrency | String | |
ProjectAmount | Decimal | |
ReasonForRevision | String | |
RequestedBy | String | |
RevisedBudgetTotalAmountCurrency | String | |
RevisedBudgetTotalAmount | Decimal | |
RevisedBy | String | |
RevisedFeeTotalAmountCurrency | String | |
RevisedFeeTotalAmount | Decimal | |
RevisedProjectAmountCurrency | String | |
RevisedProjectAmount | Decimal | |
RevisersPosition | String | |
SequenceNumber | Int | |
Status | String | |
TotalBillingCurrency | String | |
TotalBilling | Decimal | |
TotalChangeOrderAmountCurrency | String | |
TotalChangeOrderAmount | Decimal | |
TotalCostCurrency | String | |
TotalCost | Decimal | |
TotalQuantity | Decimal | |
TrackChangesToType | String | |
Type | String | |
VarianceProjectAmountCurrency | String | |
VarianceProjectAmount | Decimal | |
VarianceTotalBillingCurrency | String | |
VarianceTotalBilling | Decimal | |
VarianceTotalCostCurrency | String | |
VarianceTotalCost | Decimal | |
VarianceTotalQuantity | Decimal |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
ProjectChangeOrderFees
Return a list of: ProjectChangeOrderFees
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
ApprovalDate | Datetime | |
ApprovedBy | String | |
ApproverPosition | String | |
BudgetsAggregate | String | |
ContractBeginDate | Datetime | |
ContractEndDate | Datetime | |
CustomerChangeOrderNumber | String | |
CustomerId | String | |
Date | Datetime | |
Description | String | |
DocumentStatus | String | |
EstimatedBy | String | |
FeesExtensionsExtensionAggregate | String | |
FeesContractBeginDate | Datetime | |
FeesContractEndDate | Datetime | |
FeesKeyProjectChangeOrderId [KEY] | String | |
FeesKeyProjectChangeOrderKeyProjectContractId [KEY] | String | |
FeesKeyProjectId [KEY] | String | |
FeesLinesAggregate | String | |
FeesPostedProjectFeeAmountCurrency | String | |
FeesPostedProjectFeeAmount | Decimal | |
FeesPostedRetainerFeeAmountCurrency | String | |
FeesPostedRetainerFeeAmount | Decimal | |
FeesPostedRetentionFeeAmountCurrency | String | |
FeesPostedRetentionFeeAmount | Decimal | |
FeesPostedServiceFeeAmountCurrency | String | |
FeesPostedServiceFeeAmount | Decimal | |
FeesSequenceNumber | Int | |
FeesTotalProjectFeeAmountCurrency | String | |
FeesTotalProjectFeeAmount | Decimal | |
FeesTotalRetainerFeeAmountCurrency | String | |
FeesTotalRetainerFeeAmount | Decimal | |
FeesTotalRetentionFeeAmountCurrency | String | |
FeesTotalRetentionFeeAmount | Decimal | |
FeesTotalServiceFeeAmountCurrency | String | |
FeesTotalServiceFeeAmount | Decimal | |
FeesVarianceFeeAmountCurrency | String | |
FeesVarianceFeeAmount | Decimal | |
FeesVarianceProjectFeeAmountCurrency | String | |
FeesVarianceProjectFeeAmount | Decimal | |
FeesVarianceRetainerFeeAmountCurrency | String | |
FeesVarianceRetainerFeeAmount | Decimal | |
FeesVarianceRetentionFeeAmountCurrency | String | |
FeesVarianceRetentionFeeAmount | Decimal | |
FeesVarianceServiceFeeAmountCurrency | String | |
FeesVarianceServiceFeeAmount | Decimal | |
Id | String | |
KeyProjectContractId | String | |
LastProcessedDate | Datetime | |
ModifiedBy | String | |
PreviousContractBeginDate | Datetime | |
PreviousContractEndDate | Datetime | |
PreviousProjectAmountCurrency | String | |
PreviousProjectAmount | Decimal | |
ProjectAmountCurrency | String | |
ProjectAmount | Decimal | |
ReasonForRevision | String | |
RequestedBy | String | |
RevisedBudgetTotalAmountCurrency | String | |
RevisedBudgetTotalAmount | Decimal | |
RevisedBy | String | |
RevisedFeeTotalAmountCurrency | String | |
RevisedFeeTotalAmount | Decimal | |
RevisedProjectAmountCurrency | String | |
RevisedProjectAmount | Decimal | |
RevisersPosition | String | |
SequenceNumber | Int | |
Status | String | |
TotalBillingCurrency | String | |
TotalBilling | Decimal | |
TotalChangeOrderAmountCurrency | String | |
TotalChangeOrderAmount | Decimal | |
TotalCostCurrency | String | |
TotalCost | Decimal | |
TotalQuantity | Decimal | |
TrackChangesToType | String | |
Type | String | |
VarianceProjectAmountCurrency | String | |
VarianceProjectAmount | Decimal | |
VarianceTotalBillingCurrency | String | |
VarianceTotalBilling | Decimal | |
VarianceTotalCostCurrency | String | |
VarianceTotalCost | Decimal | |
VarianceTotalQuantity | Decimal |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
ProjectContract
Return a list of: ProjectContract
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
AccountingMethod | String | |
AccountsAggregate | String | |
ActualAccruedRevenueAmountCurrency | String | |
ActualAccruedRevenueAmount | Decimal | |
ActualBillingAmountCurrency | String | |
ActualBillingAmount | Decimal | |
ActualBillingsInExcessOfEarningsAmountCurrency | String | |
ActualBillingsInExcessOfEarningsAmount | Decimal | |
ActualDiscountAmountCurrency | String | |
ActualDiscountAmount | Decimal | |
ActualEarningsInExcessOfBillingsAmountCurrency | String | |
ActualEarningsInExcessOfBillingsAmount | Decimal | |
ActualOverheadAmountCurrency | String | |
ActualOverheadAmount | Decimal | |
ActualProfitAmountCurrency | String | |
ActualProfitAmount | Decimal | |
ActualQuantity | Decimal | |
ActualRecognizedRevenueAmountCurrency | String | |
ActualRecognizedRevenueAmount | Decimal | |
ActualRetainageAmountCurrency | String | |
ActualRetainageAmount | Decimal | |
ActualSalesTaxAmountCurrency | String | |
ActualSalesTaxAmount | Decimal | |
ActualTaxAmountCurrency | String | |
ActualTaxAmount | Decimal | |
ActualTotalCostCurrency | String | |
ActualTotalCost | Decimal | |
ActualBeginDate | Datetime | |
ActualBilledRetentionAmountCurrency | String | |
ActualBilledRetentionAmount | Decimal | |
ActualCommittedPOCostCurrency | String | |
ActualCommittedPOCost | Decimal | |
ActualCommittedPOQuantity | Decimal | |
ActualCommittedPOTaxAmountCurrency | String | |
ActualCommittedPOTaxAmount | Decimal | |
ActualCostOfEarningsAmountCurrency | String | |
ActualCostOfEarningsAmount | Decimal | |
ActualEarningsAmountCurrency | String | |
ActualEarningsAmount | Decimal | |
ActualEndDate | Datetime | |
ActualLossAmountCurrency | String | |
ActualLossAmount | Decimal | |
ActualPOCostsCurrency | String | |
ActualPOCosts | Decimal | |
ActualPOQuantity | Decimal | |
ActualProjectFeeAmountCurrency | String | |
ActualProjectFeeAmount | Decimal | |
ActualReceiptsAmountCurrency | String | |
ActualReceiptsAmount | Decimal | |
ActualRetainerFeeAmountCurrency | String | |
ActualRetainerFeeAmount | Decimal | |
ActualRetentionAmountCurrency | String | |
ActualRetentionAmount | Decimal | |
ActualServiceFeeAmountCurrency | String | |
ActualServiceFeeAmount | Decimal | |
AddressId | String | |
BaselineBeginDate | Datetime | |
BaselineBillableAmountCurrency | String | |
BaselineBillableAmount | Decimal | |
BaselineEndDate | Datetime | |
BaselineOverheadCostCurrency | String | |
BaselineOverheadCost | Decimal | |
BaselineProfitAmountCurrency | String | |
BaselineProfitAmount | Decimal | |
BaselineQuantity | Decimal | |
BaselineTaxAmountCurrency | String | |
BaselineTaxAmount | Decimal | |
BaselineTotalCostCurrency | String | |
BaselineTotalCost | Decimal | |
BillToAddressId | String | |
BilledAccruedRevenueCurrency | String | |
BilledAccruedRevenue | Decimal | |
BilledCostCurrency | String | |
BilledCost | Decimal | |
BilledQuantity | Decimal | |
BillingCyclesAggregate | String | |
BusinessManagerId | String | |
ClassId | String | |
CloseToBillings | String | |
CloseToProjectCosts | String | |
CommissionBasedOn | String | |
CommissionPercent | Decimal | |
ContactPerson | String | |
ContractManagerId | String | |
CostCompletedPercent | Decimal | |
CurrencyKeyISOCode | String | |
CustomerId | String | |
CustomerPONumber | String | |
DefaultBillingFormat | String | |
DiscountPercent | Decimal | |
DoesCombineForRevenueRecognition | Bool | |
ForecastBeginDate | Datetime | |
ForecastBillableAmountCurrency | String | |
ForecastBillableAmount | Decimal | |
ForecastEndDate | Datetime | |
ForecastOverheadCostCurrency | String | |
ForecastOverheadCost | Decimal | |
ForecastProfitAmountCurrency | String | |
ForecastProfitAmount | Decimal | |
ForecastQuantity | Decimal | |
ForecastTaxAmountCurrency | String | |
ForecastTaxAmount | Decimal | |
ForecastTotalCostCurrency | String | |
ForecastTotalCost | Decimal | |
Id [KEY] | String | |
Name | String | |
POCommittedCostsCurrency | String | |
POCommittedCosts | Decimal | |
POCommittedQuantity | Decimal | |
ProjectAmountCurrency | String | |
ProjectAmount | Decimal | |
ProjectContractId | String | |
ProjectFeeAmountCurrency | String | |
ProjectFeeAmount | Decimal | |
ProjectType | String | |
QuantityCompletedPercent | Decimal | |
RestrictToCustomerList | Bool | |
RetainerAmountCurrency | String | |
RetainerAmount | Decimal | |
RetentionFeeAmountCurrency | String | |
RetentionFeeAmount | Decimal | |
SalesTerritoryId | String | |
SalespersonId | String | |
ServiceFeeAmountCurrency | String | |
ServiceFeeAmount | Decimal | |
Status | String | |
TransactionalCurrencyKeyISOCode | String | |
UnpostedAccruedRevenueAmountCurrency | String | |
UnpostedAccruedRevenueAmount | Decimal | |
UnpostedBillingAmountCurrency | String | |
UnpostedBillingAmount | Decimal | |
UnpostedBillingsInExcessOfEarningsAmountCurrency | String | |
UnpostedBillingsInExcessOfEarningsAmount | Decimal | |
UnpostedDiscountAmountCurrency | String | |
UnpostedDiscountAmount | Decimal | |
UnpostedEarningsInExcessOfBillingsAmountCurrency | String | |
UnpostedEarningsInExcessOfBillingsAmount | Decimal | |
UnpostedOverheadAmountCurrency | String | |
UnpostedOverheadAmount | Decimal | |
UnpostedProfitAmountCurrency | String | |
UnpostedProfitAmount | Decimal | |
UnpostedQuantity | Decimal | |
UnpostedRecognizedRevenueAmountCurrency | String | |
UnpostedRecognizedRevenueAmount | Decimal | |
UnpostedRetainageAmountCurrency | String | |
UnpostedRetainageAmount | Decimal | |
UnpostedSalesTaxAmountCurrency | String | |
UnpostedSalesTaxAmount | Decimal | |
UnpostedTaxAmountCurrency | String | |
UnpostedTaxAmount | Decimal | |
UnpostedTotalCostCurrency | String | |
UnpostedTotalCost | Decimal | |
UnpostedLossAmountCurrency | String | |
UnpostedLossAmount | Decimal | |
UnpostedBilledRetentionAmountCurrency | String | |
UnpostedBilledRetentionAmount | Decimal | |
UnpostedCostOfEarningsAmountCurrency | String | |
UnpostedCostOfEarningsAmount | Decimal | |
UnpostedEarningsAmountCurrency | String | |
UnpostedEarningsAmount | Decimal | |
UnpostedPOCostsCurrency | String | |
UnpostedPOCosts | Decimal | |
UnpostedPOQuantity | Decimal | |
UnpostedProjectFeeAmountCurrency | String | |
UnpostedProjectFeeAmount | Decimal | |
UnpostedReceiptsAmountCurrency | String | |
UnpostedReceiptsAmount | Decimal | |
UnpostedRetainerFeeAmountCurrency | String | |
UnpostedRetainerFeeAmount | Decimal | |
UnpostedRetentionAmountCurrency | String | |
UnpostedRetentionAmount | Decimal | |
UnpostedServiceFeeAmountCurrency | String | |
UnpostedServiceFeeAmount | Decimal | |
UserDefined1 | String | |
UserDefined2 | String | |
WriteUpDownAmountCurrency | String | |
WriteUpDownAmount | Decimal |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
ProjectContractAccounts
Return a list of: ProjectContractAccounts
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
AccountingMethod | String | |
AccountsExtensionsExtensionAggregate | String | |
AccountsGLAccountId | String | |
AccountsGLAccountKeyIsEncrypted | Bool | |
AccountsKeyCostTransaction [KEY] | String | |
AccountsKeyDistributionTypeId [KEY] | Int | |
AccountsKeyProjectContractId [KEY] | String | |
AccountsKeySourceFile [KEY] | String | |
ActualAccruedRevenueAmountCurrency | String | |
ActualAccruedRevenueAmount | Decimal | |
ActualBillingAmountCurrency | String | |
ActualBillingAmount | Decimal | |
ActualBillingsInExcessOfEarningsAmountCurrency | String | |
ActualBillingsInExcessOfEarningsAmount | Decimal | |
ActualDiscountAmountCurrency | String | |
ActualDiscountAmount | Decimal | |
ActualEarningsInExcessOfBillingsAmountCurrency | String | |
ActualEarningsInExcessOfBillingsAmount | Decimal | |
ActualOverheadAmountCurrency | String | |
ActualOverheadAmount | Decimal | |
ActualProfitAmountCurrency | String | |
ActualProfitAmount | Decimal | |
ActualQuantity | Decimal | |
ActualRecognizedRevenueAmountCurrency | String | |
ActualRecognizedRevenueAmount | Decimal | |
ActualRetainageAmountCurrency | String | |
ActualRetainageAmount | Decimal | |
ActualSalesTaxAmountCurrency | String | |
ActualSalesTaxAmount | Decimal | |
ActualTaxAmountCurrency | String | |
ActualTaxAmount | Decimal | |
ActualTotalCostCurrency | String | |
ActualTotalCost | Decimal | |
ActualBeginDate | Datetime | |
ActualBilledRetentionAmountCurrency | String | |
ActualBilledRetentionAmount | Decimal | |
ActualCommittedPOCostCurrency | String | |
ActualCommittedPOCost | Decimal | |
ActualCommittedPOQuantity | Decimal | |
ActualCommittedPOTaxAmountCurrency | String | |
ActualCommittedPOTaxAmount | Decimal | |
ActualCostOfEarningsAmountCurrency | String | |
ActualCostOfEarningsAmount | Decimal | |
ActualEarningsAmountCurrency | String | |
ActualEarningsAmount | Decimal | |
ActualEndDate | Datetime | |
ActualLossAmountCurrency | String | |
ActualLossAmount | Decimal | |
ActualPOCostsCurrency | String | |
ActualPOCosts | Decimal | |
ActualPOQuantity | Decimal | |
ActualProjectFeeAmountCurrency | String | |
ActualProjectFeeAmount | Decimal | |
ActualReceiptsAmountCurrency | String | |
ActualReceiptsAmount | Decimal | |
ActualRetainerFeeAmountCurrency | String | |
ActualRetainerFeeAmount | Decimal | |
ActualRetentionAmountCurrency | String | |
ActualRetentionAmount | Decimal | |
ActualServiceFeeAmountCurrency | String | |
ActualServiceFeeAmount | Decimal | |
AddressId | String | |
BaselineBeginDate | Datetime | |
BaselineBillableAmountCurrency | String | |
BaselineBillableAmount | Decimal | |
BaselineEndDate | Datetime | |
BaselineOverheadCostCurrency | String | |
BaselineOverheadCost | Decimal | |
BaselineProfitAmountCurrency | String | |
BaselineProfitAmount | Decimal | |
BaselineQuantity | Decimal | |
BaselineTaxAmountCurrency | String | |
BaselineTaxAmount | Decimal | |
BaselineTotalCostCurrency | String | |
BaselineTotalCost | Decimal | |
BillToAddressId | String | |
BilledAccruedRevenueCurrency | String | |
BilledAccruedRevenue | Decimal | |
BilledCostCurrency | String | |
BilledCost | Decimal | |
BilledQuantity | Decimal | |
BillingCyclesAggregate | String | |
BusinessManagerId | String | |
ClassId | String | |
CloseToBillings | String | |
CloseToProjectCosts | String | |
CommissionBasedOn | String | |
CommissionPercent | Decimal | |
ContactPerson | String | |
ContractManagerId | String | |
CostCompletedPercent | Decimal | |
CurrencyKeyISOCode | String | |
CustomerId | String | |
CustomerPONumber | String | |
DefaultBillingFormat | String | |
DiscountPercent | Decimal | |
DoesCombineForRevenueRecognition | Bool | |
ForecastBeginDate | Datetime | |
ForecastBillableAmountCurrency | String | |
ForecastBillableAmount | Decimal | |
ForecastEndDate | Datetime | |
ForecastOverheadCostCurrency | String | |
ForecastOverheadCost | Decimal | |
ForecastProfitAmountCurrency | String | |
ForecastProfitAmount | Decimal | |
ForecastQuantity | Decimal | |
ForecastTaxAmountCurrency | String | |
ForecastTaxAmount | Decimal | |
ForecastTotalCostCurrency | String | |
ForecastTotalCost | Decimal | |
Id | String | |
Name | String | |
POCommittedCostsCurrency | String | |
POCommittedCosts | Decimal | |
POCommittedQuantity | Decimal | |
ProjectAmountCurrency | String | |
ProjectAmount | Decimal | |
ProjectContractId | String | |
ProjectFeeAmountCurrency | String | |
ProjectFeeAmount | Decimal | |
ProjectType | String | |
QuantityCompletedPercent | Decimal | |
RestrictToCustomerList | Bool | |
RetainerAmountCurrency | String | |
RetainerAmount | Decimal | |
RetentionFeeAmountCurrency | String | |
RetentionFeeAmount | Decimal | |
SalesTerritoryId | String | |
SalespersonId | String | |
ServiceFeeAmountCurrency | String | |
ServiceFeeAmount | Decimal | |
Status | String | |
TransactionalCurrencyKeyISOCode | String | |
UnpostedAccruedRevenueAmountCurrency | String | |
UnpostedAccruedRevenueAmount | Decimal | |
UnpostedBillingAmountCurrency | String | |
UnpostedBillingAmount | Decimal | |
UnpostedBillingsInExcessOfEarningsAmountCurrency | String | |
UnpostedBillingsInExcessOfEarningsAmount | Decimal | |
UnpostedDiscountAmountCurrency | String | |
UnpostedDiscountAmount | Decimal | |
UnpostedEarningsInExcessOfBillingsAmountCurrency | String | |
UnpostedEarningsInExcessOfBillingsAmount | Decimal | |
UnpostedOverheadAmountCurrency | String | |
UnpostedOverheadAmount | Decimal | |
UnpostedProfitAmountCurrency | String | |
UnpostedProfitAmount | Decimal | |
UnpostedQuantity | Decimal | |
UnpostedRecognizedRevenueAmountCurrency | String | |
UnpostedRecognizedRevenueAmount | Decimal | |
UnpostedRetainageAmountCurrency | String | |
UnpostedRetainageAmount | Decimal | |
UnpostedSalesTaxAmountCurrency | String | |
UnpostedSalesTaxAmount | Decimal | |
UnpostedTaxAmountCurrency | String | |
UnpostedTaxAmount | Decimal | |
UnpostedTotalCostCurrency | String | |
UnpostedTotalCost | Decimal | |
UnpostedLossAmountCurrency | String | |
UnpostedLossAmount | Decimal | |
UnpostedBilledRetentionAmountCurrency | String | |
UnpostedBilledRetentionAmount | Decimal | |
UnpostedCostOfEarningsAmountCurrency | String | |
UnpostedCostOfEarningsAmount | Decimal | |
UnpostedEarningsAmountCurrency | String | |
UnpostedEarningsAmount | Decimal | |
UnpostedPOCostsCurrency | String | |
UnpostedPOCosts | Decimal | |
UnpostedPOQuantity | Decimal | |
UnpostedProjectFeeAmountCurrency | String | |
UnpostedProjectFeeAmount | Decimal | |
UnpostedReceiptsAmountCurrency | String | |
UnpostedReceiptsAmount | Decimal | |
UnpostedRetainerFeeAmountCurrency | String | |
UnpostedRetainerFeeAmount | Decimal | |
UnpostedRetentionAmountCurrency | String | |
UnpostedRetentionAmount | Decimal | |
UnpostedServiceFeeAmountCurrency | String | |
UnpostedServiceFeeAmount | Decimal | |
UserDefined1 | String | |
UserDefined2 | String | |
WriteUpDownAmountCurrency | String | |
WriteUpDownAmount | Decimal |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
ProjectContractBillingCycles
Return a list of: ProjectContractBillingCycles
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
AccountingMethod | String | |
AccountsAggregate | String | |
ActualAccruedRevenueAmountCurrency | String | |
ActualAccruedRevenueAmount | Decimal | |
ActualBillingAmountCurrency | String | |
ActualBillingAmount | Decimal | |
ActualBillingsInExcessOfEarningsAmountCurrency | String | |
ActualBillingsInExcessOfEarningsAmount | Decimal | |
ActualDiscountAmountCurrency | String | |
ActualDiscountAmount | Decimal | |
ActualEarningsInExcessOfBillingsAmountCurrency | String | |
ActualEarningsInExcessOfBillingsAmount | Decimal | |
ActualOverheadAmountCurrency | String | |
ActualOverheadAmount | Decimal | |
ActualProfitAmountCurrency | String | |
ActualProfitAmount | Decimal | |
ActualQuantity | Decimal | |
ActualRecognizedRevenueAmountCurrency | String | |
ActualRecognizedRevenueAmount | Decimal | |
ActualRetainageAmountCurrency | String | |
ActualRetainageAmount | Decimal | |
ActualSalesTaxAmountCurrency | String | |
ActualSalesTaxAmount | Decimal | |
ActualTaxAmountCurrency | String | |
ActualTaxAmount | Decimal | |
ActualTotalCostCurrency | String | |
ActualTotalCost | Decimal | |
ActualBeginDate | Datetime | |
ActualBilledRetentionAmountCurrency | String | |
ActualBilledRetentionAmount | Decimal | |
ActualCommittedPOCostCurrency | String | |
ActualCommittedPOCost | Decimal | |
ActualCommittedPOQuantity | Decimal | |
ActualCommittedPOTaxAmountCurrency | String | |
ActualCommittedPOTaxAmount | Decimal | |
ActualCostOfEarningsAmountCurrency | String | |
ActualCostOfEarningsAmount | Decimal | |
ActualEarningsAmountCurrency | String | |
ActualEarningsAmount | Decimal | |
ActualEndDate | Datetime | |
ActualLossAmountCurrency | String | |
ActualLossAmount | Decimal | |
ActualPOCostsCurrency | String | |
ActualPOCosts | Decimal | |
ActualPOQuantity | Decimal | |
ActualProjectFeeAmountCurrency | String | |
ActualProjectFeeAmount | Decimal | |
ActualReceiptsAmountCurrency | String | |
ActualReceiptsAmount | Decimal | |
ActualRetainerFeeAmountCurrency | String | |
ActualRetainerFeeAmount | Decimal | |
ActualRetentionAmountCurrency | String | |
ActualRetentionAmount | Decimal | |
ActualServiceFeeAmountCurrency | String | |
ActualServiceFeeAmount | Decimal | |
AddressId | String | |
BaselineBeginDate | Datetime | |
BaselineBillableAmountCurrency | String | |
BaselineBillableAmount | Decimal | |
BaselineEndDate | Datetime | |
BaselineOverheadCostCurrency | String | |
BaselineOverheadCost | Decimal | |
BaselineProfitAmountCurrency | String | |
BaselineProfitAmount | Decimal | |
BaselineQuantity | Decimal | |
BaselineTaxAmountCurrency | String | |
BaselineTaxAmount | Decimal | |
BaselineTotalCostCurrency | String | |
BaselineTotalCost | Decimal | |
BillToAddressId | String | |
BilledAccruedRevenueCurrency | String | |
BilledAccruedRevenue | Decimal | |
BilledCostCurrency | String | |
BilledCost | Decimal | |
BilledQuantity | Decimal | |
BillingCyclesExtensionsExtensionAggregate | String | |
BillingCyclesBillingFormat | String | |
BillingCyclesId [KEY] | String | |
BillingCyclesKeyProjectContractId [KEY] | String | |
BusinessManagerId | String | |
ClassId | String | |
CloseToBillings | String | |
CloseToProjectCosts | String | |
CommissionBasedOn | String | |
CommissionPercent | Decimal | |
ContactPerson | String | |
ContractManagerId | String | |
CostCompletedPercent | Decimal | |
CurrencyKeyISOCode | String | |
CustomerId | String | |
CustomerPONumber | String | |
DefaultBillingFormat | String | |
DiscountPercent | Decimal | |
DoesCombineForRevenueRecognition | Bool | |
ForecastBeginDate | Datetime | |
ForecastBillableAmountCurrency | String | |
ForecastBillableAmount | Decimal | |
ForecastEndDate | Datetime | |
ForecastOverheadCostCurrency | String | |
ForecastOverheadCost | Decimal | |
ForecastProfitAmountCurrency | String | |
ForecastProfitAmount | Decimal | |
ForecastQuantity | Decimal | |
ForecastTaxAmountCurrency | String | |
ForecastTaxAmount | Decimal | |
ForecastTotalCostCurrency | String | |
ForecastTotalCost | Decimal | |
Id | String | |
Name | String | |
POCommittedCostsCurrency | String | |
POCommittedCosts | Decimal | |
POCommittedQuantity | Decimal | |
ProjectAmountCurrency | String | |
ProjectAmount | Decimal | |
ProjectContractId | String | |
ProjectFeeAmountCurrency | String | |
ProjectFeeAmount | Decimal | |
ProjectType | String | |
QuantityCompletedPercent | Decimal | |
RestrictToCustomerList | Bool | |
RetainerAmountCurrency | String | |
RetainerAmount | Decimal | |
RetentionFeeAmountCurrency | String | |
RetentionFeeAmount | Decimal | |
SalesTerritoryId | String | |
SalespersonId | String | |
ServiceFeeAmountCurrency | String | |
ServiceFeeAmount | Decimal | |
Status | String | |
TransactionalCurrencyKeyISOCode | String | |
UnpostedAccruedRevenueAmountCurrency | String | |
UnpostedAccruedRevenueAmount | Decimal | |
UnpostedBillingAmountCurrency | String | |
UnpostedBillingAmount | Decimal | |
UnpostedBillingsInExcessOfEarningsAmountCurrency | String | |
UnpostedBillingsInExcessOfEarningsAmount | Decimal | |
UnpostedDiscountAmountCurrency | String | |
UnpostedDiscountAmount | Decimal | |
UnpostedEarningsInExcessOfBillingsAmountCurrency | String | |
UnpostedEarningsInExcessOfBillingsAmount | Decimal | |
UnpostedOverheadAmountCurrency | String | |
UnpostedOverheadAmount | Decimal | |
UnpostedProfitAmountCurrency | String | |
UnpostedProfitAmount | Decimal | |
UnpostedQuantity | Decimal | |
UnpostedRecognizedRevenueAmountCurrency | String | |
UnpostedRecognizedRevenueAmount | Decimal | |
UnpostedRetainageAmountCurrency | String | |
UnpostedRetainageAmount | Decimal | |
UnpostedSalesTaxAmountCurrency | String | |
UnpostedSalesTaxAmount | Decimal | |
UnpostedTaxAmountCurrency | String | |
UnpostedTaxAmount | Decimal | |
UnpostedTotalCostCurrency | String | |
UnpostedTotalCost | Decimal | |
UnpostedLossAmountCurrency | String | |
UnpostedLossAmount | Decimal | |
UnpostedBilledRetentionAmountCurrency | String | |
UnpostedBilledRetentionAmount | Decimal | |
UnpostedCostOfEarningsAmountCurrency | String | |
UnpostedCostOfEarningsAmount | Decimal | |
UnpostedEarningsAmountCurrency | String | |
UnpostedEarningsAmount | Decimal | |
UnpostedPOCostsCurrency | String | |
UnpostedPOCosts | Decimal | |
UnpostedPOQuantity | Decimal | |
UnpostedProjectFeeAmountCurrency | String | |
UnpostedProjectFeeAmount | Decimal | |
UnpostedReceiptsAmountCurrency | String | |
UnpostedReceiptsAmount | Decimal | |
UnpostedRetainerFeeAmountCurrency | String | |
UnpostedRetainerFeeAmount | Decimal | |
UnpostedRetentionAmountCurrency | String | |
UnpostedRetentionAmount | Decimal | |
UnpostedServiceFeeAmountCurrency | String | |
UnpostedServiceFeeAmount | Decimal | |
UserDefined1 | String | |
UserDefined2 | String | |
WriteUpDownAmountCurrency | String | |
WriteUpDownAmount | Decimal |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
ProjectEmployeeExpense
Return a list of: ProjectEmployeeExpense
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
AuditTrailCode | String | |
BatchKeyCreatedDateTime | Datetime | |
BatchId | String | |
BatchKeySource | String | |
Comment | String | |
CreatedBy | String | |
CreatedDate | Datetime | |
CurrencyKeyISOCode | String | |
Date | Datetime | |
ExchangeDate | Datetime | |
ExchangeRate | Decimal | |
GeneralLedgerPostingDate | Datetime | |
OriginalDocumentId | String | |
PostedBy | String | |
PostedDate | Datetime | |
ReferenceDocumentNumber | String | |
ReportSuffix | String | |
TotalAccruedRevenueCurrency | String | |
TotalAccruedRevenue | Decimal | |
TotalCostCurrency | String | |
TotalCost | Decimal | |
TotalQuantity | Decimal | |
TransactionState | String | |
TransactionType | String | |
UserDefined1 | String | |
UserDefined2 | String | |
UserId | String | |
AddressId | String | |
Amount1099Currency | String | |
Amount1099 | Decimal | |
ChargeAmountCurrency | String | |
ChargeAmount | Decimal | |
DistributionsAggregate | String | |
DocumentAmountCurrency | String | |
DocumentAmount | Decimal | |
DoesPostToPayablesManagement | Bool | |
EmployeeId | String | |
EndDate | Datetime | |
ExtendedCostCurrency | String | |
ExtendedCost | Decimal | |
FreightAmountCurrency | String | |
FreightAmount | Decimal | |
FreightTaxAmountCurrency | String | |
FreightTaxAmount | Decimal | |
FreightTaxBasis | String | |
FreightTaxScheduleId | String | |
IsTaxInvoiceReceived | Bool | |
IsTaxInvoiceRequired | Bool | |
Id [KEY] | String | |
LinesAggregate | String | |
MiscellaneousAmountCurrency | String | |
MiscellaneousAmount | Decimal | |
MiscellaneousTaxAmountCurrency | String | |
MiscellaneousTaxAmount | Decimal | |
MiscellaneousTaxBasis | String | |
MiscellaneousTaxScheduleId | String | |
PaymentCashAmountCurrency | String | |
PaymentCashAmount | Decimal | |
PaymentCashBankAccountId | String | |
PaymentCashDate | Datetime | |
PaymentCashNumber | String | |
PaymentCashDocumentNumber | String | |
PaymentCheckAmountCurrency | String | |
PaymentCheckAmount | Decimal | |
PaymentCheckBankAccountId | String | |
PaymentCheckCheckNumber | String | |
PaymentCheckDate | Datetime | |
PaymentCheckNumber | String | |
PaymentPaymentCardAmountCurrency | String | |
PaymentPaymentCardAmount | Decimal | |
PaymentPaymentCardDate | Datetime | |
PaymentPaymentCardNumber | String | |
PaymentPaymentCardReceiptNumber | String | |
PaymentPaymentCardTypeId | String | |
PaymentTermsId | String | |
PersonalDataKeeperEmployeeId | String | |
ReimbursableAmountCurrency | String | |
ReimbursableAmount | Decimal | |
ReimbursableTaxCurrency | String | |
ReimbursableTax | Decimal | |
ShippingMethodId | String | |
StartDate | Datetime | |
TaxAmountCurrency | String | |
TaxAmount | Decimal | |
TaxDate | Datetime | |
TaxScheduleId | String | |
TradeDiscountAmountCurrency | String | |
TradeDiscountAmount | Decimal | |
Unapplied1099AmountCurrency | String | |
Unapplied1099Amount | Decimal |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
ProjectEmployeeExpenseDistributions
Return a list of: ProjectEmployeeExpenseDistributions
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
AuditTrailCode | String | |
BatchKeyCreatedDateTime | Datetime | |
BatchId | String | |
BatchKeySource | String | |
Comment | String | |
CreatedBy | String | |
CreatedDate | Datetime | |
CurrencyKeyISOCode | String | |
Date | Datetime | |
ExchangeDate | Datetime | |
ExchangeRate | Decimal | |
GeneralLedgerPostingDate | Datetime | |
OriginalDocumentId | String | |
PostedBy | String | |
PostedDate | Datetime | |
ReferenceDocumentNumber | String | |
ReportSuffix | String | |
TotalAccruedRevenueCurrency | String | |
TotalAccruedRevenue | Decimal | |
TotalCostCurrency | String | |
TotalCost | Decimal | |
TotalQuantity | Decimal | |
TransactionState | String | |
TransactionType | String | |
UserDefined1 | String | |
UserDefined2 | String | |
UserId | String | |
AddressId | String | |
Amount1099Currency | String | |
Amount1099 | Decimal | |
ChargeAmountCurrency | String | |
ChargeAmount | Decimal | |
DistributionsExtensionsExtensionAggregate | String | |
DistributionsAuditTrailCode | String | |
DistributionsCreditAmountCurrency | String | |
DistributionsCreditAmount | Decimal | |
DistributionsDebitAmountCurrency | String | |
DistributionsDebitAmount | Decimal | |
DistributionsDistributionTypeId | Int | |
DistributionsGLAccountId | String | |
DistributionsGLAccountKeyIsEncrypted | Bool | |
DistributionsReference | String | |
DistributionsKeyControlType [KEY] | Int | |
DistributionsKeyProjectEmployeeExpenseId [KEY] | String | |
DistributionsKeySequenceNumber [KEY] | Int | |
DocumentAmountCurrency | String | |
DocumentAmount | Decimal | |
DoesPostToPayablesManagement | Bool | |
EmployeeId | String | |
EndDate | Datetime | |
ExtendedCostCurrency | String | |
ExtendedCost | Decimal | |
FreightAmountCurrency | String | |
FreightAmount | Decimal | |
FreightTaxAmountCurrency | String | |
FreightTaxAmount | Decimal | |
FreightTaxBasis | String | |
FreightTaxScheduleId | String | |
IsTaxInvoiceReceived | Bool | |
IsTaxInvoiceRequired | Bool | |
Id | String | |
LinesAggregate | String | |
MiscellaneousAmountCurrency | String | |
MiscellaneousAmount | Decimal | |
MiscellaneousTaxAmountCurrency | String | |
MiscellaneousTaxAmount | Decimal | |
MiscellaneousTaxBasis | String | |
MiscellaneousTaxScheduleId | String | |
PaymentCashAmountCurrency | String | |
PaymentCashAmount | Decimal | |
PaymentCashBankAccountId | String | |
PaymentCashDate | Datetime | |
PaymentCashNumber | String | |
PaymentCashDocumentNumber | String | |
PaymentCheckAmountCurrency | String | |
PaymentCheckAmount | Decimal | |
PaymentCheckBankAccountId | String | |
PaymentCheckCheckNumber | String | |
PaymentCheckDate | Datetime | |
PaymentCheckNumber | String | |
PaymentPaymentCardAmountCurrency | String | |
PaymentPaymentCardAmount | Decimal | |
PaymentPaymentCardDate | Datetime | |
PaymentPaymentCardNumber | String | |
PaymentPaymentCardReceiptNumber | String | |
PaymentPaymentCardTypeId | String | |
PaymentTermsId | String | |
PersonalDataKeeperEmployeeId | String | |
ReimbursableAmountCurrency | String | |
ReimbursableAmount | Decimal | |
ReimbursableTaxCurrency | String | |
ReimbursableTax | Decimal | |
ShippingMethodId | String | |
StartDate | Datetime | |
TaxAmountCurrency | String | |
TaxAmount | Decimal | |
TaxDate | Datetime | |
TaxScheduleId | String | |
TradeDiscountAmountCurrency | String | |
TradeDiscountAmount | Decimal | |
Unapplied1099AmountCurrency | String | |
Unapplied1099Amount | Decimal |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
ProjectEmployeeExpenseLines
Return a list of: ProjectEmployeeExpenseLines
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
AuditTrailCode | String | |
BatchKeyCreatedDateTime | Datetime | |
BatchId | String | |
BatchKeySource | String | |
Comment | String | |
CreatedBy | String | |
CreatedDate | Datetime | |
CurrencyKeyISOCode | String | |
Date | Datetime | |
ExchangeDate | Datetime | |
ExchangeRate | Decimal | |
GeneralLedgerPostingDate | Datetime | |
OriginalDocumentId | String | |
PostedBy | String | |
PostedDate | Datetime | |
ReferenceDocumentNumber | String | |
ReportSuffix | String | |
TotalAccruedRevenueCurrency | String | |
TotalAccruedRevenue | Decimal | |
TotalCostCurrency | String | |
TotalCost | Decimal | |
TotalQuantity | Decimal | |
TransactionState | String | |
TransactionType | String | |
UserDefined1 | String | |
UserDefined2 | String | |
UserId | String | |
AddressId | String | |
Amount1099Currency | String | |
Amount1099 | Decimal | |
ChargeAmountCurrency | String | |
ChargeAmount | Decimal | |
DistributionsAggregate | String | |
DocumentAmountCurrency | String | |
DocumentAmount | Decimal | |
DoesPostToPayablesManagement | Bool | |
EmployeeId | String | |
EndDate | Datetime | |
ExtendedCostCurrency | String | |
ExtendedCost | Decimal | |
FreightAmountCurrency | String | |
FreightAmount | Decimal | |
FreightTaxAmountCurrency | String | |
FreightTaxAmount | Decimal | |
FreightTaxBasis | String | |
FreightTaxScheduleId | String | |
IsTaxInvoiceReceived | Bool | |
IsTaxInvoiceRequired | Bool | |
Id | String | |
LinesExtensionsExtensionAggregate | String | |
LinesAccruedRevenueCurrency | String | |
LinesAccruedRevenue | Decimal | |
LinesContraGLAccountId | String | |
LinesContraGLAccountKeyIsEncrypted | Bool | |
LinesCostCategoryId | String | |
LinesCostOfGoodsSoldGLAccountId | String | |
LinesCostOfGoodsSoldGLAccountKeyIsEncrypted | Bool | |
LinesDate | Datetime | |
LinesExtendedCostCurrency | String | |
LinesExtendedCost | Decimal | |
LinesMarkupPercent | Decimal | |
LinesOriginalDocumentSequenceNumber | Int | |
LinesOverheadAmountCurrency | String | |
LinesOverheadAmount | Decimal | |
LinesOverheadGLAccountId | String | |
LinesOverheadGLAccountKeyIsEncrypted | Bool | |
LinesOverheadPercent | Decimal | |
LinesProfitAmountCurrency | String | |
LinesProfitAmount | Decimal | |
LinesProfitType | String | |
LinesProjectContractId | String | |
LinesProjectId | String | |
LinesQuantity | Decimal | |
LinesReferenceDocumentSequenceNumber | Int | |
LinesRoundAmountCurrency | String | |
LinesRoundAmount | Decimal | |
LinesRoundingGLAccountId | String | |
LinesRoundingGLAccountKeyIsEncrypted | Bool | |
LinesTotalCostCurrency | String | |
LinesTotalCost | Decimal | |
LinesTotalOverheadAmountCurrency | String | |
LinesTotalOverheadAmount | Decimal | |
LinesTotalProfitAmountCurrency | String | |
LinesTotalProfitAmount | Decimal | |
LinesUnbilledAccountReceivableGLAccountId | String | |
LinesUnbilledAccountReceivableGLAccountKeyIsEncrypted | Bool | |
LinesUnbilledProjectRevenueGLAccountId | String | |
LinesUnbilledProjectRevenueGLAccountKeyIsEncrypted | Bool | |
LinesUnitCostCurrency | String | |
LinesUnitCost | Decimal | |
LinesUofM | String | |
LinesWorkInProgressGLAccountId | String | |
LinesWorkInProgressGLAccountKeyIsEncrypted | Bool | |
LinesBackoutTaxAmountCurrency | String | |
LinesBackoutTaxAmount | Decimal | |
LinesBillingAmountCurrency | String | |
LinesBillingAmount | Decimal | |
LinesBillingProfitAmountCurrency | String | |
LinesBillingProfitAmount | Decimal | |
LinesBillingProfitPercent | Decimal | |
LinesBillingQuantity | Decimal | |
LinesBillingRateCurrency | String | |
LinesBillingRate | Decimal | |
LinesBillingStatus | String | |
LinesBillingTaxAmountCurrency | String | |
LinesBillingTaxAmount | Decimal | |
LinesBillingType | String | |
LinesDescription | String | |
LinesExpenseType | String | |
LinesKeyProjectEmployeeExpenseId [KEY] | String | |
LinesKeySequenceNumber [KEY] | Int | |
LinesPaymentMethodType | String | |
LinesReimbursableAmountCurrency | String | |
LinesReimbursableAmount | Decimal | |
LinesTaxAmountCurrency | String | |
LinesTaxAmount | Decimal | |
LinesTaxBasis | String | |
LinesTaxScheduleId | String | |
LinesTaxesAggregate | String | |
MiscellaneousAmountCurrency | String | |
MiscellaneousAmount | Decimal | |
MiscellaneousTaxAmountCurrency | String | |
MiscellaneousTaxAmount | Decimal | |
MiscellaneousTaxBasis | String | |
MiscellaneousTaxScheduleId | String | |
PaymentCashAmountCurrency | String | |
PaymentCashAmount | Decimal | |
PaymentCashBankAccountId | String | |
PaymentCashDate | Datetime | |
PaymentCashNumber | String | |
PaymentCashDocumentNumber | String | |
PaymentCheckAmountCurrency | String | |
PaymentCheckAmount | Decimal | |
PaymentCheckBankAccountId | String | |
PaymentCheckCheckNumber | String | |
PaymentCheckDate | Datetime | |
PaymentCheckNumber | String | |
PaymentPaymentCardAmountCurrency | String | |
PaymentPaymentCardAmount | Decimal | |
PaymentPaymentCardDate | Datetime | |
PaymentPaymentCardNumber | String | |
PaymentPaymentCardReceiptNumber | String | |
PaymentPaymentCardTypeId | String | |
PaymentTermsId | String | |
PersonalDataKeeperEmployeeId | String | |
ReimbursableAmountCurrency | String | |
ReimbursableAmount | Decimal | |
ReimbursableTaxCurrency | String | |
ReimbursableTax | Decimal | |
ShippingMethodId | String | |
StartDate | Datetime | |
TaxAmountCurrency | String | |
TaxAmount | Decimal | |
TaxDate | Datetime | |
TaxScheduleId | String | |
TradeDiscountAmountCurrency | String | |
TradeDiscountAmount | Decimal | |
Unapplied1099AmountCurrency | String | |
Unapplied1099Amount | Decimal |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
ProjectEquipmentList
Return a list of: ProjectEquipmentList
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
AccountAmountCurrency | String | |
AccountAmount | Decimal | |
AccountingMethod | String | |
AccountsAggregate | String | |
ActualAccruedRevenueAmountCurrency | String | |
ActualAccruedRevenueAmount | Decimal | |
ActualBillingAmountCurrency | String | |
ActualBillingAmount | Decimal | |
ActualBillingsInExcessOfEarningsAmountCurrency | String | |
ActualBillingsInExcessOfEarningsAmount | Decimal | |
ActualDiscountAmountCurrency | String | |
ActualDiscountAmount | Decimal | |
ActualEarningsInExcessOfBillingsAmountCurrency | String | |
ActualEarningsInExcessOfBillingsAmount | Decimal | |
ActualOverheadAmountCurrency | String | |
ActualOverheadAmount | Decimal | |
ActualProfitAmountCurrency | String | |
ActualProfitAmount | Decimal | |
ActualQuantity | Decimal | |
ActualRecognizedRevenueAmountCurrency | String | |
ActualRecognizedRevenueAmount | Decimal | |
ActualRetainageAmountCurrency | String | |
ActualRetainageAmount | Decimal | |
ActualSalesTaxAmountCurrency | String | |
ActualSalesTaxAmount | Decimal | |
ActualTaxAmountCurrency | String | |
ActualTaxAmount | Decimal | |
ActualTotalCostCurrency | String | |
ActualTotalCost | Decimal | |
ActualBeginDate | Datetime | |
ActualEndDate | Datetime | |
BaselineBeginDate | Datetime | |
BaselineBillableAmountCurrency | String | |
BaselineBillableAmount | Decimal | |
BaselineEndDate | Datetime | |
BaselineOverheadCostCurrency | String | |
BaselineOverheadCost | Decimal | |
BaselineProfitAmountCurrency | String | |
BaselineProfitAmount | Decimal | |
BaselineQuantity | Decimal | |
BaselineTaxAmountCurrency | String | |
BaselineTaxAmount | Decimal | |
BaselineTotalCostCurrency | String | |
BaselineTotalCost | Decimal | |
BillToAddressId | String | |
BilledAccruedRevenueCurrency | String | |
BilledAccruedRevenue | Decimal | |
BilledCostCurrency | String | |
BilledCost | Decimal | |
BilledQuantity | Decimal | |
BillingCyclesAggregate | String | |
BillingNotReceivableCurrency | String | |
BillingNotReceivable | Decimal | |
BillingType | String | |
BudgetsAggregate | String | |
BusinessManagerId | String | |
CloseToBillings | Bool | |
CloseToProjectCosts | Bool | |
CommissionBasedOn | String | |
CommissionPercent | Decimal | |
ContactPerson | String | |
CostCompletedPercent | Decimal | |
CurrencyKeyISOCode | String | |
CustomerId | String | |
CustomerPONumber | String | |
DefaultBillingFormat | String | |
DepartmentId | String | |
DiscountPercent | Decimal | |
DoesAcceptEquipmentRateTableReplacement | Bool | |
DoesAcceptLaborRateTableReplacement | Bool | |
DoesCombineForRevenueRecognition | Bool | |
EquipmentListExtensionsExtensionAggregate | String | |
EquipmentListKeyProjectEquipmentId [KEY] | String | |
EquipmentListKeyProjectId [KEY] | String | |
EquipmentRateTableId | String | |
EstimatorId | String | |
FeesAggregate | String | |
ForecastBeginDate | Datetime | |
ForecastBillableAmountCurrency | String | |
ForecastBillableAmount | Decimal | |
ForecastEndDate | Datetime | |
ForecastOverheadCostCurrency | String | |
ForecastOverheadCost | Decimal | |
ForecastProfitAmountCurrency | String | |
ForecastProfitAmount | Decimal | |
ForecastQuantity | Decimal | |
ForecastTaxAmountCurrency | String | |
ForecastTaxAmount | Decimal | |
ForecastTotalCostCurrency | String | |
ForecastTotalCost | Decimal | |
Id | String | |
LaborRateTableId | String | |
LaborRateTableType | String | |
Name | String | |
POCommittedCostsCurrency | String | |
POCommittedCosts | Decimal | |
POCommittedQuantity | Decimal | |
PostedAccruedRevenueAmountCurrency | String | |
PostedAccruedRevenueAmount | Decimal | |
PostedBillingAmountCurrency | String | |
PostedBillingAmount | Decimal | |
PostedBillingsInExcessOfEarningsAmountCurrency | String | |
PostedBillingsInExcessOfEarningsAmount | Decimal | |
PostedDiscountAmountCurrency | String | |
PostedDiscountAmount | Decimal | |
PostedEarningsInExcessOfBillingsAmountCurrency | String | |
PostedEarningsInExcessOfBillingsAmount | Decimal | |
PostedOverheadAmountCurrency | String | |
PostedOverheadAmount | Decimal | |
PostedProfitAmountCurrency | String | |
PostedProfitAmount | Decimal | |
PostedQuantity | Decimal | |
PostedRecognizedRevenueAmountCurrency | String | |
PostedRecognizedRevenueAmount | Decimal | |
PostedRetainageAmountCurrency | String | |
PostedRetainageAmount | Decimal | |
PostedSalesTaxAmountCurrency | String | |
PostedSalesTaxAmount | Decimal | |
PostedTaxAmountCurrency | String | |
PostedTaxAmount | Decimal | |
PostedTotalCostCurrency | String | |
PostedTotalCost | Decimal | |
PostedEarningsAmountCurrency | String | |
PostedEarningsAmount | Decimal | |
PostedPOCostsCurrency | String | |
PostedPOCosts | Decimal | |
PostedPOQuantity | Decimal | |
PostedBilledRetentionAmountCurrency | String | |
PostedBilledRetentionAmount | Decimal | |
PostedCostOfEarningsAmountCurrency | String | |
PostedCostOfEarningsAmount | Decimal | |
PostedLossAmountCurrency | String | |
PostedLossAmount | Decimal | |
PostedProjectFeeAmountCurrency | String | |
PostedProjectFeeAmount | Decimal | |
PostedReceiptsAmountCurrency | String | |
PostedReceiptsAmount | Decimal | |
PostedRetainerFeeAmountCurrency | String | |
PostedRetainerFeeAmount | Decimal | |
PostedRetentionAmountCurrency | String | |
PostedRetentionAmount | Decimal | |
PostedServiceFeeAmountCurrency | String | |
PostedServiceFeeAmount | Decimal | |
PostedWriteoffAmountCurrency | String | |
PostedWriteoffAmount | Decimal | |
ProjectAmountCurrency | String | |
ProjectAmount | Decimal | |
ProjectClassId | String | |
ProjectContractId | String | |
ProjectContractId | String | |
ProjectFeeAmountCurrency | String | |
ProjectFeeAmount | Decimal | |
ProjectId | String | |
ProjectManagerId | String | |
QuantityCompletedPercent | Decimal | |
RestrictToCustomerList | Bool | |
RetainerAmountCurrency | String | |
RetainerAmount | Decimal | |
RetentionFeeAmountCurrency | String | |
RetentionFeeAmount | Decimal | |
RetentionPercent | Decimal | |
SUTAState | String | |
SalesTerritoryId | String | |
SalespersonId | String | |
ServiceFeeAmountCurrency | String | |
ServiceFeeAmount | Decimal | |
Status | String | |
TransactionalCurrencyCodeKeyISOCode | String | |
Type | String | |
UnpostedAccruedRevenueAmountCurrency | String | |
UnpostedAccruedRevenueAmount | Decimal | |
UnpostedBillingAmountCurrency | String | |
UnpostedBillingAmount | Decimal | |
UnpostedBillingsInExcessOfEarningsAmountCurrency | String | |
UnpostedBillingsInExcessOfEarningsAmount | Decimal | |
UnpostedDiscountAmountCurrency | String | |
UnpostedDiscountAmount | Decimal | |
UnpostedEarningsInExcessOfBillingsAmountCurrency | String | |
UnpostedEarningsInExcessOfBillingsAmount | Decimal | |
UnpostedOverheadAmountCurrency | String | |
UnpostedOverheadAmount | Decimal | |
UnpostedProfitAmountCurrency | String | |
UnpostedProfitAmount | Decimal | |
UnpostedQuantity | Decimal | |
UnpostedRecognizedRevenueAmountCurrency | String | |
UnpostedRecognizedRevenueAmount | Decimal | |
UnpostedRetainageAmountCurrency | String | |
UnpostedRetainageAmount | Decimal | |
UnpostedSalesTaxAmountCurrency | String | |
UnpostedSalesTaxAmount | Decimal | |
UnpostedTaxAmountCurrency | String | |
UnpostedTaxAmount | Decimal | |
UnpostedTotalCostCurrency | String | |
UnpostedTotalCost | Decimal | |
UnpostedLossAmountCurrency | String | |
UnpostedLossAmount | Decimal | |
UnpostedBilledRetentionAmountCurrency | String | |
UnpostedBilledRetentionAmount | Decimal | |
UnpostedCostOfEarningsAmountCurrency | String | |
UnpostedCostOfEarningsAmount | Decimal | |
UnpostedEarningsAmountCurrency | String | |
UnpostedEarningsAmount | Decimal | |
UnpostedPOCostsCurrency | String | |
UnpostedPOCosts | Decimal | |
UnpostedPOQuantity | Decimal | |
UnpostedProjectFeeAmountCurrency | String | |
UnpostedProjectFeeAmount | Decimal | |
UnpostedReceiptsAmountCurrency | String | |
UnpostedReceiptsAmount | Decimal | |
UnpostedRetainerFeeAmountCurrency | String | |
UnpostedRetainerFeeAmount | Decimal | |
UnpostedRetentionAmountCurrency | String | |
UnpostedRetentionAmount | Decimal | |
UnpostedServiceFeeAmountCurrency | String | |
UnpostedServiceFeeAmount | Decimal | |
UserDefinedText1 | String | |
UserDefinedText2 | String | |
WorkersCompensationId | String | |
WriteUpDownAmountCurrency | String | |
WriteUpDownAmount | Decimal |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
ProjectFees
Return a list of: ProjectFees
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
AccountAmountCurrency | String | |
AccountAmount | Decimal | |
AccountingMethod | String | |
AccountsAggregate | String | |
ActualAccruedRevenueAmountCurrency | String | |
ActualAccruedRevenueAmount | Decimal | |
ActualBillingAmountCurrency | String | |
ActualBillingAmount | Decimal | |
ActualBillingsInExcessOfEarningsAmountCurrency | String | |
ActualBillingsInExcessOfEarningsAmount | Decimal | |
ActualDiscountAmountCurrency | String | |
ActualDiscountAmount | Decimal | |
ActualEarningsInExcessOfBillingsAmountCurrency | String | |
ActualEarningsInExcessOfBillingsAmount | Decimal | |
ActualOverheadAmountCurrency | String | |
ActualOverheadAmount | Decimal | |
ActualProfitAmountCurrency | String | |
ActualProfitAmount | Decimal | |
ActualQuantity | Decimal | |
ActualRecognizedRevenueAmountCurrency | String | |
ActualRecognizedRevenueAmount | Decimal | |
ActualRetainageAmountCurrency | String | |
ActualRetainageAmount | Decimal | |
ActualSalesTaxAmountCurrency | String | |
ActualSalesTaxAmount | Decimal | |
ActualTaxAmountCurrency | String | |
ActualTaxAmount | Decimal | |
ActualTotalCostCurrency | String | |
ActualTotalCost | Decimal | |
ActualBeginDate | Datetime | |
ActualEndDate | Datetime | |
BaselineBeginDate | Datetime | |
BaselineBillableAmountCurrency | String | |
BaselineBillableAmount | Decimal | |
BaselineEndDate | Datetime | |
BaselineOverheadCostCurrency | String | |
BaselineOverheadCost | Decimal | |
BaselineProfitAmountCurrency | String | |
BaselineProfitAmount | Decimal | |
BaselineQuantity | Decimal | |
BaselineTaxAmountCurrency | String | |
BaselineTaxAmount | Decimal | |
BaselineTotalCostCurrency | String | |
BaselineTotalCost | Decimal | |
BillToAddressId | String | |
BilledAccruedRevenueCurrency | String | |
BilledAccruedRevenue | Decimal | |
BilledCostCurrency | String | |
BilledCost | Decimal | |
BilledQuantity | Decimal | |
BillingCyclesAggregate | String | |
BillingNotReceivableCurrency | String | |
BillingNotReceivable | Decimal | |
BillingType | String | |
BudgetsAggregate | String | |
BusinessManagerId | String | |
CloseToBillings | Bool | |
CloseToProjectCosts | Bool | |
CommissionBasedOn | String | |
CommissionPercent | Decimal | |
ContactPerson | String | |
CostCompletedPercent | Decimal | |
CurrencyKeyISOCode | String | |
CustomerId | String | |
CustomerPONumber | String | |
DefaultBillingFormat | String | |
DepartmentId | String | |
DiscountPercent | Decimal | |
DoesAcceptEquipmentRateTableReplacement | Bool | |
DoesAcceptLaborRateTableReplacement | Bool | |
DoesCombineForRevenueRecognition | Bool | |
EquipmentListAggregate | String | |
EquipmentRateTableId | String | |
EstimatorId | String | |
FeesExtensionsExtensionAggregate | String | |
FeesAmountCurrency | String | |
FeesAmount | Decimal | |
FeesContractBeginDate | Datetime | |
FeesContractEndDate | Datetime | |
FeesCostPercent | Decimal | |
FeesEndDate | Datetime | |
FeesFrequency | String | |
FeesKeyLineSequenceNumber [KEY] | Int | |
FeesKeyProjectFeeId [KEY] | String | |
FeesKeyProjectId [KEY] | String | |
FeesName | String | |
FeesRenew | Bool | |
FeesRenewDate | Datetime | |
FeesRenewDay | Int | |
FeesRenewMonth | Int | |
FeesRetentionPercent | Decimal | |
FeesRevenuePercent | Decimal | |
FeesSalesTaxBasis | String | |
FeesSalesTaxScheduleId | String | |
FeesSchedulesAggregate | String | |
FeesServiceFeeAmountCurrency | String | |
FeesServiceFeeAmount | Decimal | |
FeesStartDate | Datetime | |
FeesTotalAmountCurrency | String | |
FeesTotalAmount | Decimal | |
FeesType | String | |
FeesUserDefined1 | String | |
FeesUserDefined2 | String | |
ForecastBeginDate | Datetime | |
ForecastBillableAmountCurrency | String | |
ForecastBillableAmount | Decimal | |
ForecastEndDate | Datetime | |
ForecastOverheadCostCurrency | String | |
ForecastOverheadCost | Decimal | |
ForecastProfitAmountCurrency | String | |
ForecastProfitAmount | Decimal | |
ForecastQuantity | Decimal | |
ForecastTaxAmountCurrency | String | |
ForecastTaxAmount | Decimal | |
ForecastTotalCostCurrency | String | |
ForecastTotalCost | Decimal | |
Id | String | |
LaborRateTableId | String | |
LaborRateTableType | String | |
Name | String | |
POCommittedCostsCurrency | String | |
POCommittedCosts | Decimal | |
POCommittedQuantity | Decimal | |
PostedAccruedRevenueAmountCurrency | String | |
PostedAccruedRevenueAmount | Decimal | |
PostedBillingAmountCurrency | String | |
PostedBillingAmount | Decimal | |
PostedBillingsInExcessOfEarningsAmountCurrency | String | |
PostedBillingsInExcessOfEarningsAmount | Decimal | |
PostedDiscountAmountCurrency | String | |
PostedDiscountAmount | Decimal | |
PostedEarningsInExcessOfBillingsAmountCurrency | String | |
PostedEarningsInExcessOfBillingsAmount | Decimal | |
PostedOverheadAmountCurrency | String | |
PostedOverheadAmount | Decimal | |
PostedProfitAmountCurrency | String | |
PostedProfitAmount | Decimal | |
PostedQuantity | Decimal | |
PostedRecognizedRevenueAmountCurrency | String | |
PostedRecognizedRevenueAmount | Decimal | |
PostedRetainageAmountCurrency | String | |
PostedRetainageAmount | Decimal | |
PostedSalesTaxAmountCurrency | String | |
PostedSalesTaxAmount | Decimal | |
PostedTaxAmountCurrency | String | |
PostedTaxAmount | Decimal | |
PostedTotalCostCurrency | String | |
PostedTotalCost | Decimal | |
PostedEarningsAmountCurrency | String | |
PostedEarningsAmount | Decimal | |
PostedPOCostsCurrency | String | |
PostedPOCosts | Decimal | |
PostedPOQuantity | Decimal | |
PostedBilledRetentionAmountCurrency | String | |
PostedBilledRetentionAmount | Decimal | |
PostedCostOfEarningsAmountCurrency | String | |
PostedCostOfEarningsAmount | Decimal | |
PostedLossAmountCurrency | String | |
PostedLossAmount | Decimal | |
PostedProjectFeeAmountCurrency | String | |
PostedProjectFeeAmount | Decimal | |
PostedReceiptsAmountCurrency | String | |
PostedReceiptsAmount | Decimal | |
PostedRetainerFeeAmountCurrency | String | |
PostedRetainerFeeAmount | Decimal | |
PostedRetentionAmountCurrency | String | |
PostedRetentionAmount | Decimal | |
PostedServiceFeeAmountCurrency | String | |
PostedServiceFeeAmount | Decimal | |
PostedWriteoffAmountCurrency | String | |
PostedWriteoffAmount | Decimal | |
ProjectAmountCurrency | String | |
ProjectAmount | Decimal | |
ProjectClassId | String | |
ProjectContractId | String | |
ProjectContractId | String | |
ProjectFeeAmountCurrency | String | |
ProjectFeeAmount | Decimal | |
ProjectId | String | |
ProjectManagerId | String | |
QuantityCompletedPercent | Decimal | |
RestrictToCustomerList | Bool | |
RetainerAmountCurrency | String | |
RetainerAmount | Decimal | |
RetentionFeeAmountCurrency | String | |
RetentionFeeAmount | Decimal | |
RetentionPercent | Decimal | |
SUTAState | String | |
SalesTerritoryId | String | |
SalespersonId | String | |
ServiceFeeAmountCurrency | String | |
ServiceFeeAmount | Decimal | |
Status | String | |
TransactionalCurrencyCodeKeyISOCode | String | |
Type | String | |
UnpostedAccruedRevenueAmountCurrency | String | |
UnpostedAccruedRevenueAmount | Decimal | |
UnpostedBillingAmountCurrency | String | |
UnpostedBillingAmount | Decimal | |
UnpostedBillingsInExcessOfEarningsAmountCurrency | String | |
UnpostedBillingsInExcessOfEarningsAmount | Decimal | |
UnpostedDiscountAmountCurrency | String | |
UnpostedDiscountAmount | Decimal | |
UnpostedEarningsInExcessOfBillingsAmountCurrency | String | |
UnpostedEarningsInExcessOfBillingsAmount | Decimal | |
UnpostedOverheadAmountCurrency | String | |
UnpostedOverheadAmount | Decimal | |
UnpostedProfitAmountCurrency | String | |
UnpostedProfitAmount | Decimal | |
UnpostedQuantity | Decimal | |
UnpostedRecognizedRevenueAmountCurrency | String | |
UnpostedRecognizedRevenueAmount | Decimal | |
UnpostedRetainageAmountCurrency | String | |
UnpostedRetainageAmount | Decimal | |
UnpostedSalesTaxAmountCurrency | String | |
UnpostedSalesTaxAmount | Decimal | |
UnpostedTaxAmountCurrency | String | |
UnpostedTaxAmount | Decimal | |
UnpostedTotalCostCurrency | String | |
UnpostedTotalCost | Decimal | |
UnpostedLossAmountCurrency | String | |
UnpostedLossAmount | Decimal | |
UnpostedBilledRetentionAmountCurrency | String | |
UnpostedBilledRetentionAmount | Decimal | |
UnpostedCostOfEarningsAmountCurrency | String | |
UnpostedCostOfEarningsAmount | Decimal | |
UnpostedEarningsAmountCurrency | String | |
UnpostedEarningsAmount | Decimal | |
UnpostedPOCostsCurrency | String | |
UnpostedPOCosts | Decimal | |
UnpostedPOQuantity | Decimal | |
UnpostedProjectFeeAmountCurrency | String | |
UnpostedProjectFeeAmount | Decimal | |
UnpostedReceiptsAmountCurrency | String | |
UnpostedReceiptsAmount | Decimal | |
UnpostedRetainerFeeAmountCurrency | String | |
UnpostedRetainerFeeAmount | Decimal | |
UnpostedRetentionAmountCurrency | String | |
UnpostedRetentionAmount | Decimal | |
UnpostedServiceFeeAmountCurrency | String | |
UnpostedServiceFeeAmount | Decimal | |
UserDefinedText1 | String | |
UserDefinedText2 | String | |
WorkersCompensationId | String | |
WriteUpDownAmountCurrency | String | |
WriteUpDownAmount | Decimal |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
ProjectMiscellaneousLog
Return a list of: ProjectMiscellaneousLog
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
AuditTrailCode | String | |
BatchKeyCreatedDateTime | Datetime | |
BatchId | String | |
BatchKeySource | String | |
Comment | String | |
CreatedBy | String | |
CreatedDate | Datetime | |
CurrencyKeyISOCode | String | |
Date | Datetime | |
ExchangeDate | Datetime | |
ExchangeRate | Decimal | |
GeneralLedgerPostingDate | Datetime | |
OriginalDocumentId | String | |
PostedBy | String | |
PostedDate | Datetime | |
ReferenceDocumentNumber | String | |
ReportSuffix | String | |
TotalAccruedRevenueCurrency | String | |
TotalAccruedRevenue | Decimal | |
TotalCostCurrency | String | |
TotalCost | Decimal | |
TotalQuantity | Decimal | |
TransactionState | String | |
TransactionType | String | |
UserDefined1 | String | |
UserDefined2 | String | |
UserId | String | |
DistributionsAggregate | String | |
Id [KEY] | String | |
LinesAggregate | String | |
MiscellaneousId | String | |
PeriodEndDate | Datetime | |
ReportingDate | Datetime | |
ReportingPeriod | Int |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
ProjectMiscellaneousLogDistributions
Return a list of: ProjectMiscellaneousLogDistributions
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
AuditTrailCode | String | |
BatchKeyCreatedDateTime | Datetime | |
BatchId | String | |
BatchKeySource | String | |
Comment | String | |
CreatedBy | String | |
CreatedDate | Datetime | |
CurrencyKeyISOCode | String | |
Date | Datetime | |
ExchangeDate | Datetime | |
ExchangeRate | Decimal | |
GeneralLedgerPostingDate | Datetime | |
OriginalDocumentId | String | |
PostedBy | String | |
PostedDate | Datetime | |
ReferenceDocumentNumber | String | |
ReportSuffix | String | |
TotalAccruedRevenueCurrency | String | |
TotalAccruedRevenue | Decimal | |
TotalCostCurrency | String | |
TotalCost | Decimal | |
TotalQuantity | Decimal | |
TransactionState | String | |
TransactionType | String | |
UserDefined1 | String | |
UserDefined2 | String | |
UserId | String | |
DistributionsExtensionsExtensionAggregate | String | |
DistributionsAuditTrailCode | String | |
DistributionsCreditAmountCurrency | String | |
DistributionsCreditAmount | Decimal | |
DistributionsDebitAmountCurrency | String | |
DistributionsDebitAmount | Decimal | |
DistributionsDistributionTypeId | Int | |
DistributionsGLAccountId | String | |
DistributionsGLAccountKeyIsEncrypted | Bool | |
DistributionsReference | String | |
DistributionsKeyControlType [KEY] | Int | |
DistributionsKeyProjectMiscellaneousLogId [KEY] | String | |
DistributionsKeySequenceNumber [KEY] | Int | |
DistributionsUserId | String | |
Id | String | |
LinesAggregate | String | |
MiscellaneousId | String | |
PeriodEndDate | Datetime | |
ReportingDate | Datetime | |
ReportingPeriod | Int |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
ProjectMiscellaneousLogLines
Return a list of: ProjectMiscellaneousLogLines
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
AuditTrailCode | String | |
BatchKeyCreatedDateTime | Datetime | |
BatchId | String | |
BatchKeySource | String | |
Comment | String | |
CreatedBy | String | |
CreatedDate | Datetime | |
CurrencyKeyISOCode | String | |
Date | Datetime | |
ExchangeDate | Datetime | |
ExchangeRate | Decimal | |
GeneralLedgerPostingDate | Datetime | |
OriginalDocumentId | String | |
PostedBy | String | |
PostedDate | Datetime | |
ReferenceDocumentNumber | String | |
ReportSuffix | String | |
TotalAccruedRevenueCurrency | String | |
TotalAccruedRevenue | Decimal | |
TotalCostCurrency | String | |
TotalCost | Decimal | |
TotalQuantity | Decimal | |
TransactionState | String | |
TransactionType | String | |
UserDefined1 | String | |
UserDefined2 | String | |
UserId | String | |
DistributionsAggregate | String | |
Id | String | |
LinesExtensionsExtensionAggregate | String | |
LinesAccruedRevenueCurrency | String | |
LinesAccruedRevenue | Decimal | |
LinesContraGLAccountId | String | |
LinesContraGLAccountKeyIsEncrypted | Bool | |
LinesCostCategoryId | String | |
LinesCostOfGoodsSoldGLAccountId | String | |
LinesCostOfGoodsSoldGLAccountKeyIsEncrypted | Bool | |
LinesDate | Datetime | |
LinesExtendedCostCurrency | String | |
LinesExtendedCost | Decimal | |
LinesMarkupPercent | Decimal | |
LinesOriginalDocumentSequenceNumber | Int | |
LinesOverheadAmountCurrency | String | |
LinesOverheadAmount | Decimal | |
LinesOverheadGLAccountId | String | |
LinesOverheadGLAccountKeyIsEncrypted | Bool | |
LinesOverheadPercent | Decimal | |
LinesProfitAmountCurrency | String | |
LinesProfitAmount | Decimal | |
LinesProfitType | String | |
LinesProjectContractId | String | |
LinesProjectId | String | |
LinesQuantity | Decimal | |
LinesReferenceDocumentSequenceNumber | Int | |
LinesRoundAmountCurrency | String | |
LinesRoundAmount | Decimal | |
LinesRoundingGLAccountId | String | |
LinesRoundingGLAccountKeyIsEncrypted | Bool | |
LinesTotalCostCurrency | String | |
LinesTotalCost | Decimal | |
LinesTotalOverheadAmountCurrency | String | |
LinesTotalOverheadAmount | Decimal | |
LinesTotalProfitAmountCurrency | String | |
LinesTotalProfitAmount | Decimal | |
LinesUnbilledAccountReceivableGLAccountId | String | |
LinesUnbilledAccountReceivableGLAccountKeyIsEncrypted | Bool | |
LinesUnbilledProjectRevenueGLAccountId | String | |
LinesUnbilledProjectRevenueGLAccountKeyIsEncrypted | Bool | |
LinesUnitCostCurrency | String | |
LinesUnitCost | Decimal | |
LinesUofM | String | |
LinesWorkInProgressGLAccountId | String | |
LinesWorkInProgressGLAccountKeyIsEncrypted | Bool | |
LinesBillingAmountCurrency | String | |
LinesBillingAmount | Decimal | |
LinesBillingProfitAmountCurrency | String | |
LinesBillingProfitAmount | Decimal | |
LinesBillingProfitPercent | Decimal | |
LinesBillingQuantity | Decimal | |
LinesBillingRateCurrency | String | |
LinesBillingRate | Decimal | |
LinesBillingStatus | String | |
LinesBillingTaxAmountCurrency | String | |
LinesBillingTaxAmount | Decimal | |
LinesBillingType | String | |
LinesBillingDiscountAmountCurrency | String | |
LinesBillingDiscountAmount | Decimal | |
LinesKeyProjectMiscellaneousLogId [KEY] | String | |
LinesKeySequenceNumber [KEY] | Int | |
LinesProjectChangeOrderId | String | |
LinesProjectChangeOrderKeyProjectContractId | String | |
MiscellaneousId | String | |
PeriodEndDate | Datetime | |
ReportingDate | Datetime | |
ReportingPeriod | Int |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
ProjectTimesheet
Return a list of: ProjectTimesheet
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
AuditTrailCode | String | |
BatchKeyCreatedDateTime | Datetime | |
BatchId | String | |
BatchKeySource | String | |
Comment | String | |
CreatedBy | String | |
CreatedDate | Datetime | |
CurrencyKeyISOCode | String | |
Date | Datetime | |
ExchangeDate | Datetime | |
ExchangeRate | Decimal | |
GeneralLedgerPostingDate | Datetime | |
OriginalDocumentId | String | |
PostedBy | String | |
PostedDate | Datetime | |
ReferenceDocumentNumber | String | |
ReportSuffix | String | |
TotalAccruedRevenueCurrency | String | |
TotalAccruedRevenue | Decimal | |
TotalCostCurrency | String | |
TotalCost | Decimal | |
TotalQuantity | Decimal | |
TransactionState | String | |
TransactionType | String | |
UserDefined1 | String | |
UserDefined2 | String | |
UserId | String | |
DistributionsAggregate | String | |
EmployeeId | String | |
Id [KEY] | String | |
LinesAggregate | String | |
PeriodEndDate | Datetime | |
PersonalDataKeeperProxyId | String | |
PersonalDataKeeperTimesheetNumber | String | |
ReportingDate | Datetime | |
ReportingPeriod | Int |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
ProjectTimesheetDistributions
Return a list of: ProjectTimesheetDistributions
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
AuditTrailCode | String | |
BatchKeyCreatedDateTime | Datetime | |
BatchId | String | |
BatchKeySource | String | |
Comment | String | |
CreatedBy | String | |
CreatedDate | Datetime | |
CurrencyKeyISOCode | String | |
Date | Datetime | |
ExchangeDate | Datetime | |
ExchangeRate | Decimal | |
GeneralLedgerPostingDate | Datetime | |
OriginalDocumentId | String | |
PostedBy | String | |
PostedDate | Datetime | |
ReferenceDocumentNumber | String | |
ReportSuffix | String | |
TotalAccruedRevenueCurrency | String | |
TotalAccruedRevenue | Decimal | |
TotalCostCurrency | String | |
TotalCost | Decimal | |
TotalQuantity | Decimal | |
TransactionState | String | |
TransactionType | String | |
UserDefined1 | String | |
UserDefined2 | String | |
UserId | String | |
DistributionsExtensionsExtensionAggregate | String | |
DistributionsAuditTrailCode | String | |
DistributionsCreditAmountCurrency | String | |
DistributionsCreditAmount | Decimal | |
DistributionsDebitAmountCurrency | String | |
DistributionsDebitAmount | Decimal | |
DistributionsDistributionTypeId | Int | |
DistributionsGLAccountId | String | |
DistributionsGLAccountKeyIsEncrypted | Bool | |
DistributionsReference | String | |
DistributionsKeyControlType [KEY] | Int | |
DistributionsKeyProjectTimesheetId [KEY] | String | |
DistributionsKeySequenceNumber [KEY] | Int | |
EmployeeId | String | |
Id | String | |
LinesAggregate | String | |
PeriodEndDate | Datetime | |
PersonalDataKeeperProxyId | String | |
PersonalDataKeeperTimesheetNumber | String | |
ReportingDate | Datetime | |
ReportingPeriod | Int |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
ProjectTimesheetLines
Return a list of: ProjectTimesheetLines
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
AuditTrailCode | String | |
BatchKeyCreatedDateTime | Datetime | |
BatchId | String | |
BatchKeySource | String | |
Comment | String | |
CreatedBy | String | |
CreatedDate | Datetime | |
CurrencyKeyISOCode | String | |
Date | Datetime | |
ExchangeDate | Datetime | |
ExchangeRate | Decimal | |
GeneralLedgerPostingDate | Datetime | |
OriginalDocumentId | String | |
PostedBy | String | |
PostedDate | Datetime | |
ReferenceDocumentNumber | String | |
ReportSuffix | String | |
TotalAccruedRevenueCurrency | String | |
TotalAccruedRevenue | Decimal | |
TotalCostCurrency | String | |
TotalCost | Decimal | |
TotalQuantity | Decimal | |
TransactionState | String | |
TransactionType | String | |
UserDefined1 | String | |
UserDefined2 | String | |
UserId | String | |
DistributionsAggregate | String | |
EmployeeId | String | |
Id | String | |
LinesExtensionsExtensionAggregate | String | |
LinesAccruedRevenueCurrency | String | |
LinesAccruedRevenue | Decimal | |
LinesContraGLAccountId | String | |
LinesContraGLAccountKeyIsEncrypted | Bool | |
LinesCostCategoryId | String | |
LinesCostOfGoodsSoldGLAccountId | String | |
LinesCostOfGoodsSoldGLAccountKeyIsEncrypted | Bool | |
LinesDate | Datetime | |
LinesExtendedCostCurrency | String | |
LinesExtendedCost | Decimal | |
LinesMarkupPercent | Decimal | |
LinesOriginalDocumentSequenceNumber | Int | |
LinesOverheadAmountCurrency | String | |
LinesOverheadAmount | Decimal | |
LinesOverheadGLAccountId | String | |
LinesOverheadGLAccountKeyIsEncrypted | Bool | |
LinesOverheadPercent | Decimal | |
LinesProfitAmountCurrency | String | |
LinesProfitAmount | Decimal | |
LinesProfitType | String | |
LinesProjectContractId | String | |
LinesProjectId | String | |
LinesQuantity | Decimal | |
LinesReferenceDocumentSequenceNumber | Int | |
LinesRoundAmountCurrency | String | |
LinesRoundAmount | Decimal | |
LinesRoundingGLAccountId | String | |
LinesRoundingGLAccountKeyIsEncrypted | Bool | |
LinesTotalCostCurrency | String | |
LinesTotalCost | Decimal | |
LinesTotalOverheadAmountCurrency | String | |
LinesTotalOverheadAmount | Decimal | |
LinesTotalProfitAmountCurrency | String | |
LinesTotalProfitAmount | Decimal | |
LinesUnbilledAccountReceivableGLAccountId | String | |
LinesUnbilledAccountReceivableGLAccountKeyIsEncrypted | Bool | |
LinesUnbilledProjectRevenueGLAccountId | String | |
LinesUnbilledProjectRevenueGLAccountKeyIsEncrypted | Bool | |
LinesUnitCostCurrency | String | |
LinesUnitCost | Decimal | |
LinesUofM | String | |
LinesWorkInProgressGLAccountId | String | |
LinesWorkInProgressGLAccountKeyIsEncrypted | Bool | |
LinesBeginDateTime | Datetime | |
LinesBillingAmountCurrency | String | |
LinesBillingAmount | Decimal | |
LinesBillingProfitAmountCurrency | String | |
LinesBillingProfitAmount | Decimal | |
LinesBillingProfitPercent | Decimal | |
LinesBillingQuantity | Decimal | |
LinesBillingRateCurrency | String | |
LinesBillingRate | Decimal | |
LinesBillingStatus | String | |
LinesBillingTaxAmountCurrency | String | |
LinesBillingTaxAmount | Decimal | |
LinesBillingType | String | |
LinesBillingDiscountAmountCurrency | String | |
LinesBillingDiscountAmount | Decimal | |
LinesDepartmentCodeId | String | |
LinesEndDateTime | Datetime | |
LinesJobTitleCodeId | String | |
LinesKeyProjectTimesheetId [KEY] | String | |
LinesKeySequenceNumber [KEY] | Int | |
LinesPayCodeId | String | |
LinesProjectChangeOrderId | String | |
LinesProjectChangeOrderKeyProjectContractId | String | |
LinesSalaryPostingType | String | |
PeriodEndDate | Datetime | |
PersonalDataKeeperProxyId | String | |
PersonalDataKeeperTimesheetNumber | String | |
ReportingDate | Datetime | |
ReportingPeriod | Int |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
PurchaseInvoiceDistributions
Return a list of: PurchaseInvoiceDistributions
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
Amount1099Currency | String | |
Amount1099 | Decimal | |
AuditTrailCode | String | |
BatchKeyCreatedDateTime | Datetime | |
BatchId | String | |
BatchKeySource | String | |
CreatedBy | String | |
CreatedDate | Datetime | |
CurrencyKeyISOCode | String | |
Date | Datetime | |
DistributionsExtensionsExtensionAggregate | String | |
DistributionsAuditTrailCode | String | |
DistributionsCreditAmountCurrency | String | |
DistributionsCreditAmount | Decimal | |
DistributionsDebitAmountCurrency | String | |
DistributionsDebitAmount | Decimal | |
DistributionsDistributionTypeId | Int | |
DistributionsGLAccountId | String | |
DistributionsGLAccountKeyIsEncrypted | Bool | |
DistributionsKeyPurchaseTransactionId [KEY] | String | |
DistributionsKeySequenceNumber [KEY] | Int | |
DistributionsReference | String | |
ExchangeDate | Datetime | |
ExchangeRate | Decimal | |
FreightAmountCurrency | String | |
FreightAmount | Decimal | |
FreightTaxAmountCurrency | String | |
FreightTaxAmount | Decimal | |
FreightTaxBasis | String | |
FreightTaxScheduleId | String | |
FreightTaxesAggregate | String | |
GeneralLedgerPostingDate | Datetime | |
Id | String | |
LinesAggregate | String | |
MiscellaneousAmountCurrency | String | |
MiscellaneousAmount | Decimal | |
MiscellaneousTaxAmountCurrency | String | |
MiscellaneousTaxAmount | Decimal | |
MiscellaneousTaxBasis | String | |
MiscellaneousTaxScheduleId | String | |
MiscellaneousTaxesAggregate | String | |
ModifiedDate | Datetime | |
PaymentTermsId | String | |
PostedBy | String | |
PostedDate | Datetime | |
Reference | String | |
RemitToAddressId | String | |
SubtotalCurrency | String | |
Subtotal | Decimal | |
TaxAmountCurrency | String | |
TaxAmount | Decimal | |
TaxScheduleId | String | |
TaxesAggregate | String | |
TermsDiscountItem | String | |
TermsDiscountAvailableAmountCurrency | String | |
TermsDiscountAvailableAmount | Decimal | |
TermsDiscountDate | Datetime | |
TermsDueDate | Datetime | |
TradeDiscountAmountCurrency | String | |
TradeDiscountAmount | Decimal | |
TransactionState | String | |
VendorDocumentNumber | String | |
VendorId | String | |
VendorName | String | |
VoucherNumber | String |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
PurchaseInvoiceFreightTaxes
Return a list of: PurchaseInvoiceFreightTaxes
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
Amount1099Currency | String | |
Amount1099 | Decimal | |
AuditTrailCode | String | |
BatchKeyCreatedDateTime | Datetime | |
BatchId | String | |
BatchKeySource | String | |
CreatedBy | String | |
CreatedDate | Datetime | |
CurrencyKeyISOCode | String | |
Date | Datetime | |
DistributionsAggregate | String | |
ExchangeDate | Datetime | |
ExchangeRate | Decimal | |
FreightAmountCurrency | String | |
FreightAmount | Decimal | |
FreightTaxAmountCurrency | String | |
FreightTaxAmount | Decimal | |
FreightTaxBasis | String | |
FreightTaxScheduleId | String | |
FreightTaxesExtensionsExtensionAggregate | String | |
FreightTaxesAuditTrailCode | String | |
FreightTaxesIsBackoutTax | Bool | |
FreightTaxesKeyPurchaseTransactionId [KEY] | String | |
FreightTaxesKeySequenceNumber [KEY] | Int | |
FreightTaxesKeyTaxDetailId [KEY] | String | |
FreightTaxesTaxAmountCurrency | String | |
FreightTaxesTaxAmount | Decimal | |
FreightTaxesTaxableAmountCurrency | String | |
FreightTaxesTaxableAmount | Decimal | |
FreightTaxesTotalAmountCurrency | String | |
FreightTaxesTotalAmount | Decimal | |
FreightTaxesTotalTaxPotentialAmountCurrency | String | |
FreightTaxesTotalTaxPotentialAmount | Decimal | |
FreightTaxesGLAccountId | String | |
FreightTaxesGLAccountKeyIsEncrypted | Bool | |
GeneralLedgerPostingDate | Datetime | |
Id | String | |
LinesAggregate | String | |
MiscellaneousAmountCurrency | String | |
MiscellaneousAmount | Decimal | |
MiscellaneousTaxAmountCurrency | String | |
MiscellaneousTaxAmount | Decimal | |
MiscellaneousTaxBasis | String | |
MiscellaneousTaxScheduleId | String | |
MiscellaneousTaxesAggregate | String | |
ModifiedDate | Datetime | |
PaymentTermsId | String | |
PostedBy | String | |
PostedDate | Datetime | |
Reference | String | |
RemitToAddressId | String | |
SubtotalCurrency | String | |
Subtotal | Decimal | |
TaxAmountCurrency | String | |
TaxAmount | Decimal | |
TaxScheduleId | String | |
TaxesAggregate | String | |
TermsDiscountItem | String | |
TermsDiscountAvailableAmountCurrency | String | |
TermsDiscountAvailableAmount | Decimal | |
TermsDiscountDate | Datetime | |
TermsDueDate | Datetime | |
TradeDiscountAmountCurrency | String | |
TradeDiscountAmount | Decimal | |
TransactionState | String | |
VendorDocumentNumber | String | |
VendorId | String | |
VendorName | String | |
VoucherNumber | String |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
PurchaseInvoiceLines
Return a list of: PurchaseInvoiceLines
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
Amount1099Currency | String | |
Amount1099 | Decimal | |
AuditTrailCode | String | |
BatchKeyCreatedDateTime | Datetime | |
BatchId | String | |
BatchKeySource | String | |
CreatedBy | String | |
CreatedDate | Datetime | |
CurrencyKeyISOCode | String | |
Date | Datetime | |
DistributionsAggregate | String | |
ExchangeDate | Datetime | |
ExchangeRate | Decimal | |
FreightAmountCurrency | String | |
FreightAmount | Decimal | |
FreightTaxAmountCurrency | String | |
FreightTaxAmount | Decimal | |
FreightTaxBasis | String | |
FreightTaxScheduleId | String | |
FreightTaxesAggregate | String | |
GeneralLedgerPostingDate | Datetime | |
Id | String | |
LinesExtensionsExtensionAggregate | String | |
LinesBackoutTaxAmountCurrency | String | |
LinesBackoutTaxAmount | Decimal | |
LinesCostCategoryId | String | |
LinesExtendedCostCurrency | String | |
LinesExtendedCost | Decimal | |
LinesIsLandedCost | Bool | |
LinesIsNonInventory | Bool | |
LinesItemId | String | |
LinesItemTaxScheduleId | String | |
LinesKeyLineSequenceNumber [KEY] | Int | |
LinesKeyPurchaseTransactionId [KEY] | String | |
LinesProjectId | String | |
LinesPurchaseOrderId | String | |
LinesPurchaseOrderLineKeyLineSequenceNumber | Int | |
LinesPurchaseOrderLineKeyPurchaseTransactionId | String | |
LinesQuantityInvoiced | Decimal | |
LinesReceiptsAggregate | String | |
LinesTaxAmountCurrency | String | |
LinesTaxAmount | Decimal | |
LinesTaxBasis | String | |
LinesTaxesAggregate | String | |
LinesUnitCostCurrency | String | |
LinesUnitCost | Decimal | |
LinesUofM | String | |
LinesVarianceGLAccountId | String | |
LinesVarianceGLAccountKeyIsEncrypted | Bool | |
LinesVendorItemDescription | String | |
LinesVendorItemNumber | String | |
LinesWarehouseTaxScheduleId | String | |
MiscellaneousAmountCurrency | String | |
MiscellaneousAmount | Decimal | |
MiscellaneousTaxAmountCurrency | String | |
MiscellaneousTaxAmount | Decimal | |
MiscellaneousTaxBasis | String | |
MiscellaneousTaxScheduleId | String | |
MiscellaneousTaxesAggregate | String | |
ModifiedDate | Datetime | |
PaymentTermsId | String | |
PostedBy | String | |
PostedDate | Datetime | |
Reference | String | |
RemitToAddressId | String | |
SubtotalCurrency | String | |
Subtotal | Decimal | |
TaxAmountCurrency | String | |
TaxAmount | Decimal | |
TaxScheduleId | String | |
TaxesAggregate | String | |
TermsDiscountItem | String | |
TermsDiscountAvailableAmountCurrency | String | |
TermsDiscountAvailableAmount | Decimal | |
TermsDiscountDate | Datetime | |
TermsDueDate | Datetime | |
TradeDiscountAmountCurrency | String | |
TradeDiscountAmount | Decimal | |
TransactionState | String | |
VendorDocumentNumber | String | |
VendorId | String | |
VendorName | String | |
VoucherNumber | String |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
PurchaseInvoiceMiscellaneousTaxes
Return a list of: PurchaseInvoiceMiscellaneousTaxes
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
Amount1099Currency | String | |
Amount1099 | Decimal | |
AuditTrailCode | String | |
BatchKeyCreatedDateTime | Datetime | |
BatchId | String | |
BatchKeySource | String | |
CreatedBy | String | |
CreatedDate | Datetime | |
CurrencyKeyISOCode | String | |
Date | Datetime | |
DistributionsAggregate | String | |
ExchangeDate | Datetime | |
ExchangeRate | Decimal | |
FreightAmountCurrency | String | |
FreightAmount | Decimal | |
FreightTaxAmountCurrency | String | |
FreightTaxAmount | Decimal | |
FreightTaxBasis | String | |
FreightTaxScheduleId | String | |
FreightTaxesAggregate | String | |
GeneralLedgerPostingDate | Datetime | |
Id | String | |
LinesAggregate | String | |
MiscellaneousAmountCurrency | String | |
MiscellaneousAmount | Decimal | |
MiscellaneousTaxAmountCurrency | String | |
MiscellaneousTaxAmount | Decimal | |
MiscellaneousTaxBasis | String | |
MiscellaneousTaxScheduleId | String | |
MiscellaneousTaxesExtensionsExtensionAggregate | String | |
MiscellaneousTaxesAuditTrailCode | String | |
MiscellaneousTaxesIsBackoutTax | Bool | |
MiscellaneousTaxesKeyPurchaseTransactionId [KEY] | String | |
MiscellaneousTaxesKeySequenceNumber [KEY] | Int | |
MiscellaneousTaxesKeyTaxDetailId [KEY] | String | |
MiscellaneousTaxesTaxAmountCurrency | String | |
MiscellaneousTaxesTaxAmount | Decimal | |
MiscellaneousTaxesTaxableAmountCurrency | String | |
MiscellaneousTaxesTaxableAmount | Decimal | |
MiscellaneousTaxesTotalAmountCurrency | String | |
MiscellaneousTaxesTotalAmount | Decimal | |
MiscellaneousTaxesTotalTaxPotentialAmountCurrency | String | |
MiscellaneousTaxesTotalTaxPotentialAmount | Decimal | |
MiscellaneousTaxesGLAccountId | String | |
MiscellaneousTaxesGLAccountKeyIsEncrypted | Bool | |
ModifiedDate | Datetime | |
PaymentTermsId | String | |
PostedBy | String | |
PostedDate | Datetime | |
Reference | String | |
RemitToAddressId | String | |
SubtotalCurrency | String | |
Subtotal | Decimal | |
TaxAmountCurrency | String | |
TaxAmount | Decimal | |
TaxScheduleId | String | |
TaxesAggregate | String | |
TermsDiscountItem | String | |
TermsDiscountAvailableAmountCurrency | String | |
TermsDiscountAvailableAmount | Decimal | |
TermsDiscountDate | Datetime | |
TermsDueDate | Datetime | |
TradeDiscountAmountCurrency | String | |
TradeDiscountAmount | Decimal | |
TransactionState | String | |
VendorDocumentNumber | String | |
VendorId | String | |
VendorName | String | |
VoucherNumber | String |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
PurchaseInvoiceTaxes
Return a list of: PurchaseInvoiceTaxes
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
Amount1099Currency | String | |
Amount1099 | Decimal | |
AuditTrailCode | String | |
BatchKeyCreatedDateTime | Datetime | |
BatchId | String | |
BatchKeySource | String | |
CreatedBy | String | |
CreatedDate | Datetime | |
CurrencyKeyISOCode | String | |
Date | Datetime | |
DistributionsAggregate | String | |
ExchangeDate | Datetime | |
ExchangeRate | Decimal | |
FreightAmountCurrency | String | |
FreightAmount | Decimal | |
FreightTaxAmountCurrency | String | |
FreightTaxAmount | Decimal | |
FreightTaxBasis | String | |
FreightTaxScheduleId | String | |
FreightTaxesAggregate | String | |
GeneralLedgerPostingDate | Datetime | |
Id | String | |
LinesAggregate | String | |
MiscellaneousAmountCurrency | String | |
MiscellaneousAmount | Decimal | |
MiscellaneousTaxAmountCurrency | String | |
MiscellaneousTaxAmount | Decimal | |
MiscellaneousTaxBasis | String | |
MiscellaneousTaxScheduleId | String | |
MiscellaneousTaxesAggregate | String | |
ModifiedDate | Datetime | |
PaymentTermsId | String | |
PostedBy | String | |
PostedDate | Datetime | |
Reference | String | |
RemitToAddressId | String | |
SubtotalCurrency | String | |
Subtotal | Decimal | |
TaxAmountCurrency | String | |
TaxAmount | Decimal | |
TaxScheduleId | String | |
TaxesExtensionsExtensionAggregate | String | |
TaxesAuditTrailCode | String | |
TaxesIsBackoutTax | Bool | |
TaxesKeyPurchaseTransactionId [KEY] | String | |
TaxesKeySequenceNumber [KEY] | Int | |
TaxesKeyTaxDetailId [KEY] | String | |
TaxesTaxAmountCurrency | String | |
TaxesTaxAmount | Decimal | |
TaxesTaxableAmountCurrency | String | |
TaxesTaxableAmount | Decimal | |
TaxesTotalAmountCurrency | String | |
TaxesTotalAmount | Decimal | |
TaxesTotalTaxPotentialAmountCurrency | String | |
TaxesTotalTaxPotentialAmount | Decimal | |
TaxesGLAccountId | String | |
TaxesGLAccountKeyIsEncrypted | Bool | |
TermsDiscountItem | String | |
TermsDiscountAvailableAmountCurrency | String | |
TermsDiscountAvailableAmount | Decimal | |
TermsDiscountDate | Datetime | |
TermsDueDate | Datetime | |
TradeDiscountAmountCurrency | String | |
TradeDiscountAmount | Decimal | |
TransactionState | String | |
VendorDocumentNumber | String | |
VendorId | String | |
VendorName | String | |
VoucherNumber | String |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
PurchaseOrderFreightTaxes
Return a list of: PurchaseOrderFreightTaxes
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
BackoutFreightTaxAmountCurrency | String | |
BackoutFreightTaxAmount | Decimal | |
BackoutMiscellaneousTaxAmountCurrency | String | |
BackoutMiscellaneousTaxAmount | Decimal | |
BackoutTaxAmountCurrency | String | |
BackoutTaxAmount | Decimal | |
BillToAddressId | String | |
BuyerId | String | |
CanceledSubtotalCurrency | String | |
CanceledSubtotal | Decimal | |
Comment | String | |
CommentId | String | |
ConfirmWith | String | |
ContractEndDate | Datetime | |
ContractNumber | String | |
CreatedBy | String | |
CreatedDate | Datetime | |
CurrencyKeyISOCode | String | |
CustomerId | String | |
Date | Datetime | |
DoesAllowSalesOrderCommitments | Bool | |
ExchangeDate | Datetime | |
ExchangeRate | Decimal | |
FreightAmountCurrency | String | |
FreightAmount | Decimal | |
FreightTaxAmountCurrency | String | |
FreightTaxAmount | Decimal | |
FreightTaxBasis | String | |
FreightTaxScheduleId | String | |
FreightTaxesExtensionsExtensionAggregate | String | |
FreightTaxesAuditTrailCode | String | |
FreightTaxesIsBackoutTax | Bool | |
FreightTaxesKeyPurchaseTransactionId [KEY] | String | |
FreightTaxesKeySequenceNumber [KEY] | Int | |
FreightTaxesKeyTaxDetailId [KEY] | String | |
FreightTaxesTaxAmountCurrency | String | |
FreightTaxesTaxAmount | Decimal | |
FreightTaxesTaxableAmountCurrency | String | |
FreightTaxesTaxableAmount | Decimal | |
FreightTaxesTotalAmountCurrency | String | |
FreightTaxesTotalAmount | Decimal | |
FreightTaxesTotalTaxPotentialAmountCurrency | String | |
FreightTaxesTotalTaxPotentialAmount | Decimal | |
IsOnHold | Bool | |
Id | String | |
LastEditDate | Datetime | |
LastPrintedDate | Datetime | |
LinesAggregate | String | |
MiscellaneousAmountCurrency | String | |
MiscellaneousAmount | Decimal | |
MiscellaneousTaxAmountCurrency | String | |
MiscellaneousTaxAmount | Decimal | |
MiscellaneousTaxBasis | String | |
MiscellaneousTaxScheduleId | String | |
MiscellaneousTaxesAggregate | String | |
ModifiedDate | Datetime | |
PaymentTermsId | String | |
PromisedDate | Datetime | |
PromisedShipDate | Datetime | |
PurchaseAddressExtensionsExtensionAggregate | String | |
PurchaseAddressCity | String | |
PurchaseAddressLine1 | String | |
PurchaseAddressLine2 | String | |
PurchaseAddressLine3 | String | |
PurchaseAddressPostalCode | String | |
PurchaseAddressState | String | |
PurchaseAddressCountryRegion | String | |
PurchaseAddressFaxCountryCode | String | |
PurchaseAddressFaxExtension | String | |
PurchaseAddressFax | String | |
PurchaseAddressPhone1CountryCode | String | |
PurchaseAddressPhone1Extension | String | |
PurchaseAddressPhone1 | String | |
PurchaseAddressPhone2CountryCode | String | |
PurchaseAddressPhone2Extension | String | |
PurchaseAddressPhone2 | String | |
PurchaseAddressPhone3CountryCode | String | |
PurchaseAddressPhone3Extension | String | |
PurchaseAddressPhone3 | String | |
PurchaseAddressCountryRegionCodeId | String | |
PurchaseAddressContactPerson | String | |
PurchaseAddressName | String | |
PurchaseAddressId | String | |
RemainingSubtotalCurrency | String | |
RemainingSubtotal | Decimal | |
RequestedDate | Datetime | |
RequisitionDate | Datetime | |
RevisionNumber | Int | |
ShipToAddressExtensionsExtensionAggregate | String | |
ShipToAddressCity | String | |
ShipToAddressLine1 | String | |
ShipToAddressLine2 | String | |
ShipToAddressLine3 | String | |
ShipToAddressPostalCode | String | |
ShipToAddressState | String | |
ShipToAddressCountryRegion | String | |
ShipToAddressFaxCountryCode | String | |
ShipToAddressFaxExtension | String | |
ShipToAddressFax | String | |
ShipToAddressPhone1CountryCode | String | |
ShipToAddressPhone1Extension | String | |
ShipToAddressPhone1 | String | |
ShipToAddressPhone2CountryCode | String | |
ShipToAddressPhone2Extension | String | |
ShipToAddressPhone2 | String | |
ShipToAddressPhone3CountryCode | String | |
ShipToAddressPhone3Extension | String | |
ShipToAddressPhone3 | String | |
ShipToAddressCountryRegionCodeId | String | |
ShipToAddressContactPerson | String | |
ShipToAddressName | String | |
ShipToAddressId | String | |
ShippingMethodId | String | |
Status | String | |
StatusGroup | String | |
SubtotalCurrency | String | |
Subtotal | Decimal | |
TaxAmountCurrency | String | |
TaxAmount | Decimal | |
TaxRegistrationNumber | String | |
TaxScheduleId | String | |
TaxesAggregate | String | |
TermsDiscountItem | String | |
TermsDiscountAvailableAmountCurrency | String | |
TermsDiscountAvailableAmount | Decimal | |
TermsDiscountDate | Datetime | |
TermsDueDate | Datetime | |
TimesPrinted | Int | |
TotalAmountCurrency | String | |
TotalAmount | Decimal | |
TradeDiscountAmountCurrency | String | |
TradeDiscountAmount | Decimal | |
TransactionState | String | |
Type | String | |
VendorId | String | |
VendorName | String | |
WorkflowPriority | String | |
WorkflowsAggregate | String |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
PurchaseOrderLines
Return a list of: PurchaseOrderLines
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
BackoutFreightTaxAmountCurrency | String | |
BackoutFreightTaxAmount | Decimal | |
BackoutMiscellaneousTaxAmountCurrency | String | |
BackoutMiscellaneousTaxAmount | Decimal | |
BackoutTaxAmountCurrency | String | |
BackoutTaxAmount | Decimal | |
BillToAddressId | String | |
BuyerId | String | |
CanceledSubtotalCurrency | String | |
CanceledSubtotal | Decimal | |
Comment | String | |
CommentId | String | |
ConfirmWith | String | |
ContractEndDate | Datetime | |
ContractNumber | String | |
CreatedBy | String | |
CreatedDate | Datetime | |
CurrencyKeyISOCode | String | |
CustomerId | String | |
Date | Datetime | |
DoesAllowSalesOrderCommitments | Bool | |
ExchangeDate | Datetime | |
ExchangeRate | Decimal | |
FreightAmountCurrency | String | |
FreightAmount | Decimal | |
FreightTaxAmountCurrency | String | |
FreightTaxAmount | Decimal | |
FreightTaxBasis | String | |
FreightTaxScheduleId | String | |
FreightTaxesAggregate | String | |
IsOnHold | Bool | |
Id | String | |
LastEditDate | Datetime | |
LastPrintedDate | Datetime | |
LinesExtensionsExtensionAggregate | String | |
LinesBackoutTaxAmountCurrency | String | |
LinesBackoutTaxAmount | Decimal | |
LinesComment | String | |
LinesCommentId | String | |
LinesCostCategoryId | String | |
LinesDocumentDate | Datetime | |
LinesExtendedCostCurrency | String | |
LinesExtendedCost | Decimal | |
LinesFreeOnBoard | String | |
LinesInventoryGLAccountId | String | |
LinesInventoryGLAccountKeyIsEncrypted | Bool | |
LinesIsCapitalItem | Bool | |
LinesIsNonInventory | Bool | |
LinesItemDescription | String | |
LinesItemId | String | |
LinesItemTaxScheduleId | String | |
LinesJobNumber | String | |
LinesKeyLineSequenceNumber [KEY] | Int | |
LinesKeyPurchaseTransactionId [KEY] | String | |
LinesLandedCostGroupId | String | |
LinesLineOrigin | String | |
LinesProjectId | String | |
LinesPromisedDate | Datetime | |
LinesPromisedShipDate | Datetime | |
LinesQuantityCanceled | Decimal | |
LinesQuantityOrdered | Decimal | |
LinesReleaseByDate | Datetime | |
LinesReleasedDate | Datetime | |
LinesRequestedBy | String | |
LinesRequestedDate | Datetime | |
LinesShipToAddressExtensionsExtensionAggregate | String | |
LinesShipToAddressCity | String | |
LinesShipToAddressLine1 | String | |
LinesShipToAddressLine2 | String | |
LinesShipToAddressLine3 | String | |
LinesShipToAddressPostalCode | String | |
LinesShipToAddressState | String | |
LinesShipToAddressCountryRegion | String | |
LinesShipToAddressFaxCountryCode | String | |
LinesShipToAddressFaxExtension | String | |
LinesShipToAddressFax | String | |
LinesShipToAddressPhone1CountryCode | String | |
LinesShipToAddressPhone1Extension | String | |
LinesShipToAddressPhone1 | String | |
LinesShipToAddressPhone2CountryCode | String | |
LinesShipToAddressPhone2Extension | String | |
LinesShipToAddressPhone2 | String | |
LinesShipToAddressPhone3CountryCode | String | |
LinesShipToAddressPhone3Extension | String | |
LinesShipToAddressPhone3 | String | |
LinesShipToAddressCountryRegionCodeId | String | |
LinesShipToAddressContactPerson | String | |
LinesShipToAddressName | String | |
LinesShipToAddressId | String | |
LinesShippingMethodId | String | |
LinesSourceDocumentLineNumber | String | |
LinesSourceDocumentNumber | String | |
LinesStatus | String | |
LinesTaxAmountCurrency | String | |
LinesTaxAmount | Decimal | |
LinesTaxBasis | String | |
LinesTaxesAggregate | String | |
LinesUnitCostCurrency | String | |
LinesUnitCost | Decimal | |
LinesUofM | String | |
LinesVendorItemDescription | String | |
LinesVendorItemNumber | String | |
LinesWarehouseId | String | |
LinesWarehouseTaxScheduleId | String | |
MiscellaneousAmountCurrency | String | |
MiscellaneousAmount | Decimal | |
MiscellaneousTaxAmountCurrency | String | |
MiscellaneousTaxAmount | Decimal | |
MiscellaneousTaxBasis | String | |
MiscellaneousTaxScheduleId | String | |
MiscellaneousTaxesAggregate | String | |
ModifiedDate | Datetime | |
PaymentTermsId | String | |
PromisedDate | Datetime | |
PromisedShipDate | Datetime | |
PurchaseAddressExtensionsExtensionAggregate | String | |
PurchaseAddressCity | String | |
PurchaseAddressLine1 | String | |
PurchaseAddressLine2 | String | |
PurchaseAddressLine3 | String | |
PurchaseAddressPostalCode | String | |
PurchaseAddressState | String | |
PurchaseAddressCountryRegion | String | |
PurchaseAddressFaxCountryCode | String | |
PurchaseAddressFaxExtension | String | |
PurchaseAddressFax | String | |
PurchaseAddressPhone1CountryCode | String | |
PurchaseAddressPhone1Extension | String | |
PurchaseAddressPhone1 | String | |
PurchaseAddressPhone2CountryCode | String | |
PurchaseAddressPhone2Extension | String | |
PurchaseAddressPhone2 | String | |
PurchaseAddressPhone3CountryCode | String | |
PurchaseAddressPhone3Extension | String | |
PurchaseAddressPhone3 | String | |
PurchaseAddressCountryRegionCodeId | String | |
PurchaseAddressContactPerson | String | |
PurchaseAddressName | String | |
PurchaseAddressId | String | |
RemainingSubtotalCurrency | String | |
RemainingSubtotal | Decimal | |
RequestedDate | Datetime | |
RequisitionDate | Datetime | |
RevisionNumber | Int | |
ShipToAddressExtensionsExtensionAggregate | String | |
ShipToAddressCity | String | |
ShipToAddressLine1 | String | |
ShipToAddressLine2 | String | |
ShipToAddressLine3 | String | |
ShipToAddressPostalCode | String | |
ShipToAddressState | String | |
ShipToAddressCountryRegion | String | |
ShipToAddressFaxCountryCode | String | |
ShipToAddressFaxExtension | String | |
ShipToAddressFax | String | |
ShipToAddressPhone1CountryCode | String | |
ShipToAddressPhone1Extension | String | |
ShipToAddressPhone1 | String | |
ShipToAddressPhone2CountryCode | String | |
ShipToAddressPhone2Extension | String | |
ShipToAddressPhone2 | String | |
ShipToAddressPhone3CountryCode | String | |
ShipToAddressPhone3Extension | String | |
ShipToAddressPhone3 | String | |
ShipToAddressCountryRegionCodeId | String | |
ShipToAddressContactPerson | String | |
ShipToAddressName | String | |
ShipToAddressId | String | |
ShippingMethodId | String | |
Status | String | |
StatusGroup | String | |
SubtotalCurrency | String | |
Subtotal | Decimal | |
TaxAmountCurrency | String | |
TaxAmount | Decimal | |
TaxRegistrationNumber | String | |
TaxScheduleId | String | |
TaxesAggregate | String | |
TermsDiscountItem | String | |
TermsDiscountAvailableAmountCurrency | String | |
TermsDiscountAvailableAmount | Decimal | |
TermsDiscountDate | Datetime | |
TermsDueDate | Datetime | |
TimesPrinted | Int | |
TotalAmountCurrency | String | |
TotalAmount | Decimal | |
TradeDiscountAmountCurrency | String | |
TradeDiscountAmount | Decimal | |
TransactionState | String | |
Type | String | |
VendorId | String | |
VendorName | String | |
WorkflowPriority | String | |
WorkflowsAggregate | String |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
PurchaseOrderMiscellaneousTaxes
Return a list of: PurchaseOrderMiscellaneousTaxes
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
BackoutFreightTaxAmountCurrency | String | |
BackoutFreightTaxAmount | Decimal | |
BackoutMiscellaneousTaxAmountCurrency | String | |
BackoutMiscellaneousTaxAmount | Decimal | |
BackoutTaxAmountCurrency | String | |
BackoutTaxAmount | Decimal | |
BillToAddressId | String | |
BuyerId | String | |
CanceledSubtotalCurrency | String | |
CanceledSubtotal | Decimal | |
Comment | String | |
CommentId | String | |
ConfirmWith | String | |
ContractEndDate | Datetime | |
ContractNumber | String | |
CreatedBy | String | |
CreatedDate | Datetime | |
CurrencyKeyISOCode | String | |
CustomerId | String | |
Date | Datetime | |
DoesAllowSalesOrderCommitments | Bool | |
ExchangeDate | Datetime | |
ExchangeRate | Decimal | |
FreightAmountCurrency | String | |
FreightAmount | Decimal | |
FreightTaxAmountCurrency | String | |
FreightTaxAmount | Decimal | |
FreightTaxBasis | String | |
FreightTaxScheduleId | String | |
FreightTaxesAggregate | String | |
IsOnHold | Bool | |
Id | String | |
LastEditDate | Datetime | |
LastPrintedDate | Datetime | |
LinesAggregate | String | |
MiscellaneousAmountCurrency | String | |
MiscellaneousAmount | Decimal | |
MiscellaneousTaxAmountCurrency | String | |
MiscellaneousTaxAmount | Decimal | |
MiscellaneousTaxBasis | String | |
MiscellaneousTaxScheduleId | String | |
MiscellaneousTaxesExtensionsExtensionAggregate | String | |
MiscellaneousTaxesAuditTrailCode | String | |
MiscellaneousTaxesIsBackoutTax | Bool | |
MiscellaneousTaxesKeyPurchaseTransactionId [KEY] | String | |
MiscellaneousTaxesKeySequenceNumber [KEY] | Int | |
MiscellaneousTaxesKeyTaxDetailId [KEY] | String | |
MiscellaneousTaxesTaxAmountCurrency | String | |
MiscellaneousTaxesTaxAmount | Decimal | |
MiscellaneousTaxesTaxableAmountCurrency | String | |
MiscellaneousTaxesTaxableAmount | Decimal | |
MiscellaneousTaxesTotalAmountCurrency | String | |
MiscellaneousTaxesTotalAmount | Decimal | |
MiscellaneousTaxesTotalTaxPotentialAmountCurrency | String | |
MiscellaneousTaxesTotalTaxPotentialAmount | Decimal | |
ModifiedDate | Datetime | |
PaymentTermsId | String | |
PromisedDate | Datetime | |
PromisedShipDate | Datetime | |
PurchaseAddressExtensionsExtensionAggregate | String | |
PurchaseAddressCity | String | |
PurchaseAddressLine1 | String | |
PurchaseAddressLine2 | String | |
PurchaseAddressLine3 | String | |
PurchaseAddressPostalCode | String | |
PurchaseAddressState | String | |
PurchaseAddressCountryRegion | String | |
PurchaseAddressFaxCountryCode | String | |
PurchaseAddressFaxExtension | String | |
PurchaseAddressFax | String | |
PurchaseAddressPhone1CountryCode | String | |
PurchaseAddressPhone1Extension | String | |
PurchaseAddressPhone1 | String | |
PurchaseAddressPhone2CountryCode | String | |
PurchaseAddressPhone2Extension | String | |
PurchaseAddressPhone2 | String | |
PurchaseAddressPhone3CountryCode | String | |
PurchaseAddressPhone3Extension | String | |
PurchaseAddressPhone3 | String | |
PurchaseAddressCountryRegionCodeId | String | |
PurchaseAddressContactPerson | String | |
PurchaseAddressName | String | |
PurchaseAddressId | String | |
RemainingSubtotalCurrency | String | |
RemainingSubtotal | Decimal | |
RequestedDate | Datetime | |
RequisitionDate | Datetime | |
RevisionNumber | Int | |
ShipToAddressExtensionsExtensionAggregate | String | |
ShipToAddressCity | String | |
ShipToAddressLine1 | String | |
ShipToAddressLine2 | String | |
ShipToAddressLine3 | String | |
ShipToAddressPostalCode | String | |
ShipToAddressState | String | |
ShipToAddressCountryRegion | String | |
ShipToAddressFaxCountryCode | String | |
ShipToAddressFaxExtension | String | |
ShipToAddressFax | String | |
ShipToAddressPhone1CountryCode | String | |
ShipToAddressPhone1Extension | String | |
ShipToAddressPhone1 | String | |
ShipToAddressPhone2CountryCode | String | |
ShipToAddressPhone2Extension | String | |
ShipToAddressPhone2 | String | |
ShipToAddressPhone3CountryCode | String | |
ShipToAddressPhone3Extension | String | |
ShipToAddressPhone3 | String | |
ShipToAddressCountryRegionCodeId | String | |
ShipToAddressContactPerson | String | |
ShipToAddressName | String | |
ShipToAddressId | String | |
ShippingMethodId | String | |
Status | String | |
StatusGroup | String | |
SubtotalCurrency | String | |
Subtotal | Decimal | |
TaxAmountCurrency | String | |
TaxAmount | Decimal | |
TaxRegistrationNumber | String | |
TaxScheduleId | String | |
TaxesAggregate | String | |
TermsDiscountItem | String | |
TermsDiscountAvailableAmountCurrency | String | |
TermsDiscountAvailableAmount | Decimal | |
TermsDiscountDate | Datetime | |
TermsDueDate | Datetime | |
TimesPrinted | Int | |
TotalAmountCurrency | String | |
TotalAmount | Decimal | |
TradeDiscountAmountCurrency | String | |
TradeDiscountAmount | Decimal | |
TransactionState | String | |
Type | String | |
VendorId | String | |
VendorName | String | |
WorkflowPriority | String | |
WorkflowsAggregate | String |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
PurchaseOrderTaxes
Return a list of: PurchaseOrderTaxes
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
BackoutFreightTaxAmountCurrency | String | |
BackoutFreightTaxAmount | Decimal | |
BackoutMiscellaneousTaxAmountCurrency | String | |
BackoutMiscellaneousTaxAmount | Decimal | |
BackoutTaxAmountCurrency | String | |
BackoutTaxAmount | Decimal | |
BillToAddressId | String | |
BuyerId | String | |
CanceledSubtotalCurrency | String | |
CanceledSubtotal | Decimal | |
Comment | String | |
CommentId | String | |
ConfirmWith | String | |
ContractEndDate | Datetime | |
ContractNumber | String | |
CreatedBy | String | |
CreatedDate | Datetime | |
CurrencyKeyISOCode | String | |
CustomerId | String | |
Date | Datetime | |
DoesAllowSalesOrderCommitments | Bool | |
ExchangeDate | Datetime | |
ExchangeRate | Decimal | |
FreightAmountCurrency | String | |
FreightAmount | Decimal | |
FreightTaxAmountCurrency | String | |
FreightTaxAmount | Decimal | |
FreightTaxBasis | String | |
FreightTaxScheduleId | String | |
FreightTaxesAggregate | String | |
IsOnHold | Bool | |
Id | String | |
LastEditDate | Datetime | |
LastPrintedDate | Datetime | |
LinesAggregate | String | |
MiscellaneousAmountCurrency | String | |
MiscellaneousAmount | Decimal | |
MiscellaneousTaxAmountCurrency | String | |
MiscellaneousTaxAmount | Decimal | |
MiscellaneousTaxBasis | String | |
MiscellaneousTaxScheduleId | String | |
MiscellaneousTaxesAggregate | String | |
ModifiedDate | Datetime | |
PaymentTermsId | String | |
PromisedDate | Datetime | |
PromisedShipDate | Datetime | |
PurchaseAddressExtensionsExtensionAggregate | String | |
PurchaseAddressCity | String | |
PurchaseAddressLine1 | String | |
PurchaseAddressLine2 | String | |
PurchaseAddressLine3 | String | |
PurchaseAddressPostalCode | String | |
PurchaseAddressState | String | |
PurchaseAddressCountryRegion | String | |
PurchaseAddressFaxCountryCode | String | |
PurchaseAddressFaxExtension | String | |
PurchaseAddressFax | String | |
PurchaseAddressPhone1CountryCode | String | |
PurchaseAddressPhone1Extension | String | |
PurchaseAddressPhone1 | String | |
PurchaseAddressPhone2CountryCode | String | |
PurchaseAddressPhone2Extension | String | |
PurchaseAddressPhone2 | String | |
PurchaseAddressPhone3CountryCode | String | |
PurchaseAddressPhone3Extension | String | |
PurchaseAddressPhone3 | String | |
PurchaseAddressCountryRegionCodeId | String | |
PurchaseAddressContactPerson | String | |
PurchaseAddressName | String | |
PurchaseAddressId | String | |
RemainingSubtotalCurrency | String | |
RemainingSubtotal | Decimal | |
RequestedDate | Datetime | |
RequisitionDate | Datetime | |
RevisionNumber | Int | |
ShipToAddressExtensionsExtensionAggregate | String | |
ShipToAddressCity | String | |
ShipToAddressLine1 | String | |
ShipToAddressLine2 | String | |
ShipToAddressLine3 | String | |
ShipToAddressPostalCode | String | |
ShipToAddressState | String | |
ShipToAddressCountryRegion | String | |
ShipToAddressFaxCountryCode | String | |
ShipToAddressFaxExtension | String | |
ShipToAddressFax | String | |
ShipToAddressPhone1CountryCode | String | |
ShipToAddressPhone1Extension | String | |
ShipToAddressPhone1 | String | |
ShipToAddressPhone2CountryCode | String | |
ShipToAddressPhone2Extension | String | |
ShipToAddressPhone2 | String | |
ShipToAddressPhone3CountryCode | String | |
ShipToAddressPhone3Extension | String | |
ShipToAddressPhone3 | String | |
ShipToAddressCountryRegionCodeId | String | |
ShipToAddressContactPerson | String | |
ShipToAddressName | String | |
ShipToAddressId | String | |
ShippingMethodId | String | |
Status | String | |
StatusGroup | String | |
SubtotalCurrency | String | |
Subtotal | Decimal | |
TaxAmountCurrency | String | |
TaxAmount | Decimal | |
TaxRegistrationNumber | String | |
TaxScheduleId | String | |
TaxesExtensionsExtensionAggregate | String | |
TaxesAuditTrailCode | String | |
TaxesIsBackoutTax | Bool | |
TaxesKeyPurchaseTransactionId [KEY] | String | |
TaxesKeySequenceNumber [KEY] | Int | |
TaxesKeyTaxDetailId [KEY] | String | |
TaxesTaxAmountCurrency | String | |
TaxesTaxAmount | Decimal | |
TaxesTaxableAmountCurrency | String | |
TaxesTaxableAmount | Decimal | |
TaxesTotalAmountCurrency | String | |
TaxesTotalAmount | Decimal | |
TaxesTotalTaxPotentialAmountCurrency | String | |
TaxesTotalTaxPotentialAmount | Decimal | |
TermsDiscountItem | String | |
TermsDiscountAvailableAmountCurrency | String | |
TermsDiscountAvailableAmount | Decimal | |
TermsDiscountDate | Datetime | |
TermsDueDate | Datetime | |
TimesPrinted | Int | |
TotalAmountCurrency | String | |
TotalAmount | Decimal | |
TradeDiscountAmountCurrency | String | |
TradeDiscountAmount | Decimal | |
TransactionState | String | |
Type | String | |
VendorId | String | |
VendorName | String | |
WorkflowPriority | String | |
WorkflowsAggregate | String |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
PurchaseReceiptDistributions
Return a list of: PurchaseReceiptDistributions
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
ActualShipDate | Datetime | |
AuditTrailCode | String | |
BatchKeyCreatedDateTime | Datetime | |
BatchId | String | |
BatchKeySource | String | |
CreatedBy | String | |
CreatedDate | Datetime | |
CurrencyKeyISOCode | String | |
Date | Datetime | |
DistributionsExtensionsExtensionAggregate | String | |
DistributionsAuditTrailCode | String | |
DistributionsCreditAmountCurrency | String | |
DistributionsCreditAmount | Decimal | |
DistributionsDebitAmountCurrency | String | |
DistributionsDebitAmount | Decimal | |
DistributionsDistributionTypeId | Int | |
DistributionsGLAccountId | String | |
DistributionsGLAccountKeyIsEncrypted | Bool | |
DistributionsKeyPurchaseTransactionId [KEY] | String | |
DistributionsKeySequenceNumber [KEY] | Int | |
DistributionsReference | String | |
ExchangeDate | Datetime | |
ExchangeRate | Decimal | |
GeneralLedgerPostingDate | Datetime | |
Id | String | |
LinesAggregate | String | |
ModifiedDate | Datetime | |
PostedBy | String | |
PostedDate | Datetime | |
Reference | String | |
RemitToAddressId | String | |
SubtotalCurrency | String | |
Subtotal | Decimal | |
TotalLandedCostAmountCurrency | String | |
TotalLandedCostAmount | Decimal | |
TransactionState | String | |
UserDefinedAggregate | String | |
VendorDocumentNumber | String | |
VendorId | String | |
VendorName | String |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
PurchaseReceiptLines
Return a list of: PurchaseReceiptLines
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
ActualShipDate | Datetime | |
AuditTrailCode | String | |
BatchKeyCreatedDateTime | Datetime | |
BatchId | String | |
BatchKeySource | String | |
CreatedBy | String | |
CreatedDate | Datetime | |
CurrencyKeyISOCode | String | |
Date | Datetime | |
DistributionsAggregate | String | |
ExchangeDate | Datetime | |
ExchangeRate | Decimal | |
GeneralLedgerPostingDate | Datetime | |
Id | String | |
LinesExtensionsExtensionAggregate | String | |
LinesActualShipDate | Datetime | |
LinesBillOfLadingNumber | String | |
LinesBinsAggregate | String | |
LinesCostCategoryId | String | |
LinesExtendedCostCurrency | String | |
LinesExtendedCost | Decimal | |
LinesInventoryGLAccountId | String | |
LinesInventoryGLAccountKeyIsEncrypted | Bool | |
LinesIsNonInventory | Bool | |
LinesItemDescription | String | |
LinesItemId | String | |
LinesKeyLineSequenceNumber [KEY] | Int | |
LinesKeyPurchaseTransactionId [KEY] | String | |
LinesLandedCostGroupId | String | |
LinesLotsAggregate | String | |
LinesProjectId | String | |
LinesPurchaseOrderId | String | |
LinesPurchaseOrderLineKeyLineSequenceNumber | Int | |
LinesPurchaseOrderLineKeyPurchaseTransactionId | String | |
LinesQuantityRejected | Decimal | |
LinesQuantityShipped | Decimal | |
LinesSerialsAggregate | String | |
LinesUnitCostCurrency | String | |
LinesUnitCost | Decimal | |
LinesUofM | String | |
LinesVendorItemDescription | String | |
LinesVendorItemNumber | String | |
LinesWarehouseId | String | |
ModifiedDate | Datetime | |
PostedBy | String | |
PostedDate | Datetime | |
Reference | String | |
RemitToAddressId | String | |
SubtotalCurrency | String | |
Subtotal | Decimal | |
TotalLandedCostAmountCurrency | String | |
TotalLandedCostAmount | Decimal | |
TransactionState | String | |
UserDefinedAggregate | String | |
VendorDocumentNumber | String | |
VendorId | String | |
VendorName | String |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
PurchaseReceiptUserDefined
Return a list of: PurchaseReceiptUserDefined
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
ActualShipDate | Datetime | |
AuditTrailCode | String | |
BatchKeyCreatedDateTime | Datetime | |
BatchId | String | |
BatchKeySource | String | |
CreatedBy | String | |
CreatedDate | Datetime | |
CurrencyKeyISOCode | String | |
Date | Datetime | |
DistributionsAggregate | String | |
ExchangeDate | Datetime | |
ExchangeRate | Decimal | |
GeneralLedgerPostingDate | Datetime | |
Id | String | |
LinesAggregate | String | |
ModifiedDate | Datetime | |
PostedBy | String | |
PostedDate | Datetime | |
Reference | String | |
RemitToAddressId | String | |
SubtotalCurrency | String | |
Subtotal | Decimal | |
TotalLandedCostAmountCurrency | String | |
TotalLandedCostAmount | Decimal | |
TransactionState | String | |
UserDefinedExtensionsExtensionAggregate | String | |
UserDefinedDate01 | Datetime | |
UserDefinedDate02 | Datetime | |
UserDefinedDate03 | Datetime | |
UserDefinedDate04 | Datetime | |
UserDefinedDate05 | Datetime | |
UserDefinedDate06 | Datetime | |
UserDefinedDate07 | Datetime | |
UserDefinedDate08 | Datetime | |
UserDefinedDate09 | Datetime | |
UserDefinedDate10 | Datetime | |
UserDefinedDate11 | Datetime | |
UserDefinedDate12 | Datetime | |
UserDefinedDate13 | Datetime | |
UserDefinedDate14 | Datetime | |
UserDefinedDate15 | Datetime | |
UserDefinedDate16 | Datetime | |
UserDefinedDate17 | Datetime | |
UserDefinedDate18 | Datetime | |
UserDefinedDate19 | Datetime | |
UserDefinedDate20 | Datetime | |
UserDefinedKeyPurchaseTransactionId [KEY] | String | |
UserDefinedList01 | String | |
UserDefinedList02 | String | |
UserDefinedList03 | String | |
UserDefinedList04 | String | |
UserDefinedList05 | String | |
UserDefinedText01 | String | |
UserDefinedText02 | String | |
UserDefinedText03 | String | |
UserDefinedText04 | String | |
UserDefinedText05 | String | |
UserDefinedText06 | String | |
UserDefinedText07 | String | |
UserDefinedText08 | String | |
UserDefinedText09 | String | |
UserDefinedText10 | String | |
VendorDocumentNumber | String | |
VendorId | String | |
VendorName | String |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
ReceivablesDebitMemoCommissions
Return a list of: ReceivablesDebitMemoCommissions
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
AddressKeyCustomerId | String | |
AddressId | String | |
AuditTrailCode | String | |
BatchKeyCreatedDateTime | Datetime | |
BatchId | String | |
BatchKeySource | String | |
CorporateAccountId | String | |
CostAmountCurrency | String | |
CostAmount | Decimal | |
CurrencyKeyISOCode | String | |
CurrentDocumentAmountCurrency | String | |
CurrentDocumentAmount | Decimal | |
CustomerId | String | |
CustomerName | String | |
CustomerPONumber | String | |
Date | Datetime | |
Description | String | |
DistributionsAggregate | String | |
DocumentAmountCurrency | String | |
DocumentAmount | Decimal | |
ExchangeDate | Datetime | |
ExchangeRate | Decimal | |
FreightAmountCurrency | String | |
FreightAmount | Decimal | |
FreightTaxScheduleId | String | |
GeneralLedgerPostingDate | Datetime | |
InvoicePaidOffDate | Datetime | |
IsDeleted | Bool | |
IsDirectDebitDocument | Bool | |
IsElectronic | Bool | |
IsIntrastatDocument | Bool | |
IsVoided | Bool | |
Id | String | |
MiscellaneousAmountCurrency | String | |
MiscellaneousAmount | Decimal | |
MiscellaneousTaxScheduleId | String | |
ModifiedBy | String | |
ModifiedDate | Datetime | |
PostedBy | String | |
PostedDate | Datetime | |
SalesAmountCurrency | String | |
SalesAmount | Decimal | |
SalesTaxScheduleId | String | |
SalesTerritoryId | String | |
SalespersonId | String | |
ShippingMethodId | String | |
TaxAmountCurrency | String | |
TaxAmount | Decimal | |
TaxScheduleId | String | |
TaxesAggregate | String | |
TradeDiscountAmountCurrency | String | |
TradeDiscountAmount | Decimal | |
TransactionState | String | |
Type | String | |
VoidDate | Datetime | |
GSTDiscountAmountCurrency | String | |
GSTDiscountAmount | Decimal | |
PaymentCashAmountCurrency | String | |
PaymentCashAmount | Decimal | |
PaymentCashBankAccountId | String | |
PaymentCashDate | Datetime | |
PaymentCashNumber | String | |
PaymentCheckAmountCurrency | String | |
PaymentCheckAmount | Decimal | |
PaymentCheckBankAccountId | String | |
PaymentCheckCheckNumber | String | |
PaymentCheckDate | Datetime | |
PaymentCheckNumber | String | |
PaymentPaymentCardAmountCurrency | String | |
PaymentPaymentCardAmount | Decimal | |
PaymentPaymentCardDate | Datetime | |
PaymentPaymentCardNumber | String | |
PaymentPaymentCardReceiptNumber | String | |
PaymentPaymentCardTypeId | String | |
PaymentPaymentCardBankAccountId | String | |
PaymentTermsId | String | |
TermsDiscountItem | String | |
TermsDiscountAvailableAmountCurrency | String | |
TermsDiscountAvailableAmount | Decimal | |
TermsDiscountDate | Datetime | |
TermsDueDate | Datetime | |
TermsDiscountAvailableTakenAmountCurrency | String | |
TermsDiscountAvailableTakenAmount | Decimal | |
TermsDiscountTakenAmountCurrency | String | |
TermsDiscountTakenAmount | Decimal | |
WriteoffAmountCurrency | String | |
WriteoffAmount | Decimal | |
CommissionAmountCurrency | String | |
CommissionAmount | Decimal | |
CommissionBasedOn | String | |
CommissionsExtensionsExtensionAggregate | String | |
CommissionsCommissionAmountCurrency | String | |
CommissionsCommissionAmount | Decimal | |
CommissionsCommissionPercent | Decimal | |
CommissionsKeyReceivablesDocumentId [KEY] | String | |
CommissionsKeySequenceNumber [KEY] | Int | |
CommissionsNoncommissionedAmountCurrency | String | |
CommissionsNoncommissionedAmount | Decimal | |
CommissionsPercentOfSale | Decimal | |
CommissionsSalesAmountCurrency | String | |
CommissionsSalesAmount | Decimal | |
CommissionsSalesTerritoryId | String | |
CommissionsSalespersonId | String |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
ReceivablesDocument
Return a list of: ReceivablesDocument
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
AddressKeyCustomerId | String | |
AddressId | String | |
AuditTrailCode | String | |
BatchKeyCreatedDateTime | Datetime | |
BatchId | String | |
BatchKeySource | String | |
CorporateAccountId | String | |
CostAmountCurrency | String | |
CostAmount | Decimal | |
CurrencyKeyISOCode | String | |
CurrentDocumentAmountCurrency | String | |
CurrentDocumentAmount | Decimal | |
CustomerId | String | |
CustomerName | String | |
CustomerPONumber | String | |
Date | Datetime | |
Description | String | |
DistributionsAggregate | String | |
DocumentAmountCurrency | String | |
DocumentAmount | Decimal | |
ExchangeDate | Datetime | |
ExchangeRate | Decimal | |
FreightAmountCurrency | String | |
FreightAmount | Decimal | |
FreightTaxScheduleId | String | |
GeneralLedgerPostingDate | Datetime | |
InvoicePaidOffDate | Datetime | |
IsDeleted | Bool | |
IsDirectDebitDocument | Bool | |
IsElectronic | Bool | |
IsIntrastatDocument | Bool | |
IsVoided | Bool | |
Id [KEY] | String | |
MiscellaneousAmountCurrency | String | |
MiscellaneousAmount | Decimal | |
MiscellaneousTaxScheduleId | String | |
ModifiedBy | String | |
ModifiedDate | Datetime | |
PostedBy | String | |
PostedDate | Datetime | |
SalesAmountCurrency | String | |
SalesAmount | Decimal | |
SalesTaxScheduleId | String | |
SalesTerritoryId | String | |
SalespersonId | String | |
ShippingMethodId | String | |
TaxAmountCurrency | String | |
TaxAmount | Decimal | |
TaxScheduleId | String | |
TaxesAggregate | String | |
TradeDiscountAmountCurrency | String | |
TradeDiscountAmount | Decimal | |
TransactionState | String | |
Type | String | |
VoidDate | Datetime |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
ReceivablesDocumentDistributions
The DynamicsGP table ReceivablesDocumentDistributions.
Columns
Name | Type | Description |
---|---|---|
DistributionsKeySequenceNumber [KEY] | Int32 | The DistributionsKeySequenceNumber column for the table ReceivablesDocumentDistributions. |
DistributionsKeyReceivablesDocumentId [KEY] | String | The DistributionsKeyReceivablesDocumentId column for the table ReceivablesDocumentDistributions. |
AddressKeyCustomerId | String | The AddressKeyCustomerId column for the table ReceivablesDocumentDistributions. |
AddressId | String | The AddressId column for the table ReceivablesDocumentDistributions. |
AuditTrailCode | String | The AuditTrailCode column for the table ReceivablesDocumentDistributions. |
BatchKeyCreatedDateTime | Datetime | The BatchKeyCreatedDateTime column for the table ReceivablesDocumentDistributions. |
BatchId | String | The BatchId column for the table ReceivablesDocumentDistributions. |
BatchKeySource | String | The BatchKeySource column for the table ReceivablesDocumentDistributions. |
CorporateAccountId | String | The CorporateAccountId column for the table ReceivablesDocumentDistributions. |
CostAmountCurrency | String | The CostAmountCurrency column for the table ReceivablesDocumentDistributions. |
CostAmount | Decimal | The CostAmount column for the table ReceivablesDocumentDistributions. |
CurrencyKeyISOCode | String | The CurrencyKeyISOCode column for the table ReceivablesDocumentDistributions. |
CurrentDocumentAmountCurrency | String | The CurrentDocumentAmountCurrency column for the table ReceivablesDocumentDistributions. |
CurrentDocumentAmount | Decimal | The CurrentDocumentAmount column for the table ReceivablesDocumentDistributions. |
CustomerId | String | The CustomerId column for the table ReceivablesDocumentDistributions. |
CustomerName | String | The CustomerName column for the table ReceivablesDocumentDistributions. |
CustomerPONumber | String | The CustomerPONumber column for the table ReceivablesDocumentDistributions. |
Date | Datetime | The Date column for the table ReceivablesDocumentDistributions. |
Description | String | The Description column for the table ReceivablesDocumentDistributions. |
DistributionsIsPosted | Boolean | The DistributionsIsPosted column for the table ReceivablesDocumentDistributions. |
DistributionsDistributionTypeId | Int32 | The DistributionsDistributionTypeId column for the table ReceivablesDocumentDistributions. |
DistributionsGLAccountId | String | The DistributionsGLAccountId column for the table ReceivablesDocumentDistributions. |
DistributionsGLAccountKeyIsEncrypted | Boolean | The DistributionsGLAccountKeyIsEncrypted column for the table ReceivablesDocumentDistributions. |
DistributionsReference | String | The DistributionsReference column for the table ReceivablesDocumentDistributions. |
DistributionsExtensionsExtensionAggregate | String | The DistributionsExtensionsExtensionAggregate column for the table ReceivablesDocumentDistributions. |
DocumentAmountCurrency | String | The DocumentAmountCurrency column for the table ReceivablesDocumentDistributions. |
DocumentAmount | Decimal | The DocumentAmount column for the table ReceivablesDocumentDistributions. |
ExchangeDate | Datetime | The ExchangeDate column for the table ReceivablesDocumentDistributions. |
ExchangeRate | Decimal | The ExchangeRate column for the table ReceivablesDocumentDistributions. |
FreightAmountCurrency | String | The FreightAmountCurrency column for the table ReceivablesDocumentDistributions. |
FreightAmount | Decimal | The FreightAmount column for the table ReceivablesDocumentDistributions. |
FreightTaxScheduleId | String | The FreightTaxScheduleId column for the table ReceivablesDocumentDistributions. |
GeneralLedgerPostingDate | Datetime | The GeneralLedgerPostingDate column for the table ReceivablesDocumentDistributions. |
InvoicePaidOffDate | Datetime | The InvoicePaidOffDate column for the table ReceivablesDocumentDistributions. |
IsDeleted | Boolean | The IsDeleted column for the table ReceivablesDocumentDistributions. |
IsDirectDebitDocument | Boolean | The IsDirectDebitDocument column for the table ReceivablesDocumentDistributions. |
IsElectronic | Boolean | The IsElectronic column for the table ReceivablesDocumentDistributions. |
IsIntrastatDocument | Boolean | The IsIntrastatDocument column for the table ReceivablesDocumentDistributions. |
IsVoided | Boolean | The IsVoided column for the table ReceivablesDocumentDistributions. |
Id | String | The ID column for the table ReceivablesDocumentDistributions. |
MiscellaneousAmountCurrency | String | The MiscellaneousAmountCurrency column for the table ReceivablesDocumentDistributions. |
MiscellaneousAmount | Decimal | The MiscellaneousAmount column for the table ReceivablesDocumentDistributions. |
MiscellaneousTaxScheduleId | String | The MiscellaneousTaxScheduleId column for the table ReceivablesDocumentDistributions. |
ModifiedBy | String | The ModifiedBy column for the table ReceivablesDocumentDistributions. |
ModifiedDate | Datetime | The ModifiedDate column for the table ReceivablesDocumentDistributions. |
PostedBy | String | The PostedBy column for the table ReceivablesDocumentDistributions. |
PostedDate | Datetime | The PostedDate column for the table ReceivablesDocumentDistributions. |
SalesAmountCurrency | String | The SalesAmountCurrency column for the table ReceivablesDocumentDistributions. |
SalesAmount | Decimal | The SalesAmount column for the table ReceivablesDocumentDistributions. |
SalesTaxScheduleId | String | The SalesTaxScheduleId column for the table ReceivablesDocumentDistributions. |
SalesTerritoryId | String | The SalesTerritoryId column for the table ReceivablesDocumentDistributions. |
SalespersonId | String | The SalespersonId column for the table ReceivablesDocumentDistributions. |
ShippingMethodId | String | The ShippingMethodId column for the table ReceivablesDocumentDistributions. |
TaxAmountCurrency | String | The TaxAmountCurrency column for the table ReceivablesDocumentDistributions. |
TaxAmount | Decimal | The TaxAmount column for the table ReceivablesDocumentDistributions. |
TaxScheduleId | String | The TaxScheduleId column for the table ReceivablesDocumentDistributions. |
TaxesReceivablesTaxAggregate | String | The TaxesReceivablesTaxAggregate column for the table ReceivablesDocumentDistributions. |
TradeDiscountAmountCurrency | String | The TradeDiscountAmountCurrency column for the table ReceivablesDocumentDistributions. |
TradeDiscountAmount | Decimal | The TradeDiscountAmount column for the table ReceivablesDocumentDistributions. |
TransactionState | String | The TransactionState column for the table ReceivablesDocumentDistributions. |
Type | String | The Type column for the table ReceivablesDocumentDistributions. |
VoidDate | Datetime | The VoidDate column for the table ReceivablesDocumentDistributions. |
ExtensionsExtensionAggregate | String | The ExtensionsExtensionAggregate column for the table ReceivablesDocumentDistributions. |
ReceivablesDocumentTaxes
The DynamicsGP table ReceivablesDocumentTaxes.
Columns
Name | Type | Description |
---|---|---|
TaxesKeyTaxDetailId [KEY] | String | The TaxesKeyTaxDetailId column for the table ReceivablesDocumentTaxes. |
TaxesKeyReceivablesDocumentId [KEY] | String | The TaxesKeyReceivablesDocumentId column for the table ReceivablesDocumentTaxes. |
AddressKeyCustomerId | String | The AddressKeyCustomerId column for the table ReceivablesDocumentTaxes. |
AddressId | String | The AddressId column for the table ReceivablesDocumentTaxes. |
AuditTrailCode | String | The AuditTrailCode column for the table ReceivablesDocumentTaxes. |
BatchKeyCreatedDateTime | Datetime | The BatchKeyCreatedDateTime column for the table ReceivablesDocumentTaxes. |
BatchId | String | The BatchId column for the table ReceivablesDocumentTaxes. |
BatchKeySource | String | The BatchKeySource column for the table ReceivablesDocumentTaxes. |
CorporateAccountId | String | The CorporateAccountId column for the table ReceivablesDocumentTaxes. |
CostAmountCurrency | String | The CostAmountCurrency column for the table ReceivablesDocumentTaxes. |
CostAmount | Decimal | The CostAmount column for the table ReceivablesDocumentTaxes. |
CurrencyKeyISOCode | String | The CurrencyKeyISOCode column for the table ReceivablesDocumentTaxes. |
CurrentDocumentAmountCurrency | String | The CurrentDocumentAmountCurrency column for the table ReceivablesDocumentTaxes. |
CurrentDocumentAmount | Decimal | The CurrentDocumentAmount column for the table ReceivablesDocumentTaxes. |
CustomerId | String | The CustomerId column for the table ReceivablesDocumentTaxes. |
CustomerName | String | The CustomerName column for the table ReceivablesDocumentTaxes. |
CustomerPONumber | String | The CustomerPONumber column for the table ReceivablesDocumentTaxes. |
Date | Datetime | The Date column for the table ReceivablesDocumentTaxes. |
Description | String | The Description column for the table ReceivablesDocumentTaxes. |
DistributionsReceivablesDistributionAggregate | String | The DistributionsReceivablesDistributionAggregate column for the table ReceivablesDocumentTaxes. |
DocumentAmountCurrency | String | The DocumentAmountCurrency column for the table ReceivablesDocumentTaxes. |
DocumentAmount | Decimal | The DocumentAmount column for the table ReceivablesDocumentTaxes. |
ExchangeDate | Datetime | The ExchangeDate column for the table ReceivablesDocumentTaxes. |
ExchangeRate | Decimal | The ExchangeRate column for the table ReceivablesDocumentTaxes. |
FreightAmountCurrency | String | The FreightAmountCurrency column for the table ReceivablesDocumentTaxes. |
FreightAmount | Decimal | The FreightAmount column for the table ReceivablesDocumentTaxes. |
FreightTaxScheduleId | String | The FreightTaxScheduleId column for the table ReceivablesDocumentTaxes. |
GeneralLedgerPostingDate | Datetime | The GeneralLedgerPostingDate column for the table ReceivablesDocumentTaxes. |
InvoicePaidOffDate | Datetime | The InvoicePaidOffDate column for the table ReceivablesDocumentTaxes. |
IsDeleted | Boolean | The IsDeleted column for the table ReceivablesDocumentTaxes. |
IsDirectDebitDocument | Boolean | The IsDirectDebitDocument column for the table ReceivablesDocumentTaxes. |
IsElectronic | Boolean | The IsElectronic column for the table ReceivablesDocumentTaxes. |
IsIntrastatDocument | Boolean | The IsIntrastatDocument column for the table ReceivablesDocumentTaxes. |
IsVoided | Boolean | The IsVoided column for the table ReceivablesDocumentTaxes. |
Id | String | The ID column for the table ReceivablesDocumentTaxes. |
MiscellaneousAmountCurrency | String | The MiscellaneousAmountCurrency column for the table ReceivablesDocumentTaxes. |
MiscellaneousAmount | Decimal | The MiscellaneousAmount column for the table ReceivablesDocumentTaxes. |
MiscellaneousTaxScheduleId | String | The MiscellaneousTaxScheduleId column for the table ReceivablesDocumentTaxes. |
ModifiedBy | String | The ModifiedBy column for the table ReceivablesDocumentTaxes. |
ModifiedDate | Datetime | The ModifiedDate column for the table ReceivablesDocumentTaxes. |
PostedBy | String | The PostedBy column for the table ReceivablesDocumentTaxes. |
PostedDate | Datetime | The PostedDate column for the table ReceivablesDocumentTaxes. |
SalesAmountCurrency | String | The SalesAmountCurrency column for the table ReceivablesDocumentTaxes. |
SalesAmount | Decimal | The SalesAmount column for the table ReceivablesDocumentTaxes. |
SalesTaxScheduleId | String | The SalesTaxScheduleId column for the table ReceivablesDocumentTaxes. |
SalesTerritoryId | String | The SalesTerritoryId column for the table ReceivablesDocumentTaxes. |
SalespersonId | String | The SalespersonId column for the table ReceivablesDocumentTaxes. |
ShippingMethodId | String | The ShippingMethodId column for the table ReceivablesDocumentTaxes. |
TaxAmountCurrency | String | The TaxAmountCurrency column for the table ReceivablesDocumentTaxes. |
TaxAmount | Decimal | The TaxAmount column for the table ReceivablesDocumentTaxes. |
TaxScheduleId | String | The TaxScheduleId column for the table ReceivablesDocumentTaxes. |
TaxesFreightTaxAmountCurrency | String | The TaxesFreightTaxAmountCurrency column for the table ReceivablesDocumentTaxes. |
TaxesFreightTaxAmount | Decimal | The TaxesFreightTaxAmount column for the table ReceivablesDocumentTaxes. |
TaxesGLAccountId | String | The TaxesGLAccountId column for the table ReceivablesDocumentTaxes. |
TaxesGLAccountKeyIsEncrypted | Boolean | The TaxesGLAccountKeyIsEncrypted column for the table ReceivablesDocumentTaxes. |
TaxesMiscellaneousTaxAmountCurrency | String | The TaxesMiscellaneousTaxAmountCurrency column for the table ReceivablesDocumentTaxes. |
TaxesMiscellaneousTaxAmount | Decimal | The TaxesMiscellaneousTaxAmount column for the table ReceivablesDocumentTaxes. |
TaxesSalesTaxAmountCurrency | String | The TaxesSalesTaxAmountCurrency column for the table ReceivablesDocumentTaxes. |
TaxesSalesTaxAmount | Decimal | The TaxesSalesTaxAmount column for the table ReceivablesDocumentTaxes. |
TaxesIsBackoutTax | Boolean | The TaxesIsBackoutTax column for the table ReceivablesDocumentTaxes. |
TaxesTaxAmountCurrency | String | The TaxesTaxAmountCurrency column for the table ReceivablesDocumentTaxes. |
TaxesTaxAmount | Decimal | The TaxesTaxAmount column for the table ReceivablesDocumentTaxes. |
TaxesTaxableAmountCurrency | String | The TaxesTaxableAmountCurrency column for the table ReceivablesDocumentTaxes. |
TaxesTaxableAmount | Decimal | The TaxesTaxableAmount column for the table ReceivablesDocumentTaxes. |
TaxesTotalAmountCurrency | String | The TaxesTotalAmountCurrency column for the table ReceivablesDocumentTaxes. |
TaxesTotalAmount | Decimal | The TaxesTotalAmount column for the table ReceivablesDocumentTaxes. |
TaxesExtensionsExtensionAggregate | String | The TaxesExtensionsExtensionAggregate column for the table ReceivablesDocumentTaxes. |
TradeDiscountAmountCurrency | String | The TradeDiscountAmountCurrency column for the table ReceivablesDocumentTaxes. |
TradeDiscountAmount | Decimal | The TradeDiscountAmount column for the table ReceivablesDocumentTaxes. |
TransactionState | String | The TransactionState column for the table ReceivablesDocumentTaxes. |
Type | String | The Type column for the table ReceivablesDocumentTaxes. |
VoidDate | Datetime | The VoidDate column for the table ReceivablesDocumentTaxes. |
ExtensionsExtensionAggregate | String | The ExtensionsExtensionAggregate column for the table ReceivablesDocumentTaxes. |
ReceivablesInvoiceCommissions
Return a list of: ReceivablesInvoiceCommissions
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
AddressKeyCustomerId | String | |
AddressId | String | |
AuditTrailCode | String | |
BatchKeyCreatedDateTime | Datetime | |
BatchId | String | |
BatchKeySource | String | |
CorporateAccountId | String | |
CostAmountCurrency | String | |
CostAmount | Decimal | |
CurrencyKeyISOCode | String | |
CurrentDocumentAmountCurrency | String | |
CurrentDocumentAmount | Decimal | |
CustomerId | String | |
CustomerName | String | |
CustomerPONumber | String | |
Date | Datetime | |
Description | String | |
DistributionsAggregate | String | |
DocumentAmountCurrency | String | |
DocumentAmount | Decimal | |
ExchangeDate | Datetime | |
ExchangeRate | Decimal | |
FreightAmountCurrency | String | |
FreightAmount | Decimal | |
FreightTaxScheduleId | String | |
GeneralLedgerPostingDate | Datetime | |
InvoicePaidOffDate | Datetime | |
IsDeleted | Bool | |
IsDirectDebitDocument | Bool | |
IsElectronic | Bool | |
IsIntrastatDocument | Bool | |
IsVoided | Bool | |
Id | String | |
MiscellaneousAmountCurrency | String | |
MiscellaneousAmount | Decimal | |
MiscellaneousTaxScheduleId | String | |
ModifiedBy | String | |
ModifiedDate | Datetime | |
PostedBy | String | |
PostedDate | Datetime | |
SalesAmountCurrency | String | |
SalesAmount | Decimal | |
SalesTaxScheduleId | String | |
SalesTerritoryId | String | |
SalespersonId | String | |
ShippingMethodId | String | |
TaxAmountCurrency | String | |
TaxAmount | Decimal | |
TaxScheduleId | String | |
TaxesAggregate | String | |
TradeDiscountAmountCurrency | String | |
TradeDiscountAmount | Decimal | |
TransactionState | String | |
Type | String | |
VoidDate | Datetime | |
GSTDiscountAmountCurrency | String | |
GSTDiscountAmount | Decimal | |
PaymentCashAmountCurrency | String | |
PaymentCashAmount | Decimal | |
PaymentCashBankAccountId | String | |
PaymentCashDate | Datetime | |
PaymentCashNumber | String | |
PaymentCheckAmountCurrency | String | |
PaymentCheckAmount | Decimal | |
PaymentCheckBankAccountId | String | |
PaymentCheckCheckNumber | String | |
PaymentCheckDate | Datetime | |
PaymentCheckNumber | String | |
PaymentPaymentCardAmountCurrency | String | |
PaymentPaymentCardAmount | Decimal | |
PaymentPaymentCardDate | Datetime | |
PaymentPaymentCardNumber | String | |
PaymentPaymentCardReceiptNumber | String | |
PaymentPaymentCardTypeId | String | |
PaymentPaymentCardBankAccountId | String | |
PaymentTermsId | String | |
TermsDiscountItem | String | |
TermsDiscountAvailableAmountCurrency | String | |
TermsDiscountAvailableAmount | Decimal | |
TermsDiscountDate | Datetime | |
TermsDueDate | Datetime | |
TermsDiscountAvailableTakenAmountCurrency | String | |
TermsDiscountAvailableTakenAmount | Decimal | |
TermsDiscountTakenAmountCurrency | String | |
TermsDiscountTakenAmount | Decimal | |
WriteoffAmountCurrency | String | |
WriteoffAmount | Decimal | |
CommissionAmountCurrency | String | |
CommissionAmount | Decimal | |
CommissionBasedOn | String | |
CommissionsExtensionsExtensionAggregate | String | |
CommissionsCommissionAmountCurrency | String | |
CommissionsCommissionAmount | Decimal | |
CommissionsCommissionPercent | Decimal | |
CommissionsKeyReceivablesDocumentId [KEY] | String | |
CommissionsKeySequenceNumber [KEY] | Int | |
CommissionsNoncommissionedAmountCurrency | String | |
CommissionsNoncommissionedAmount | Decimal | |
CommissionsPercentOfSale | Decimal | |
CommissionsSalesAmountCurrency | String | |
CommissionsSalesAmount | Decimal | |
CommissionsSalesTerritoryId | String | |
CommissionsSalespersonId | String |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
ReceivablesReturnCommissions
Return a list of: ReceivablesReturnCommissions
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
AddressKeyCustomerId | String | |
AddressId | String | |
AuditTrailCode | String | |
BatchKeyCreatedDateTime | Datetime | |
BatchId | String | |
BatchKeySource | String | |
CorporateAccountId | String | |
CostAmountCurrency | String | |
CostAmount | Decimal | |
CurrencyKeyISOCode | String | |
CurrentDocumentAmountCurrency | String | |
CurrentDocumentAmount | Decimal | |
CustomerId | String | |
CustomerName | String | |
CustomerPONumber | String | |
Date | Datetime | |
Description | String | |
DistributionsAggregate | String | |
DocumentAmountCurrency | String | |
DocumentAmount | Decimal | |
ExchangeDate | Datetime | |
ExchangeRate | Decimal | |
FreightAmountCurrency | String | |
FreightAmount | Decimal | |
FreightTaxScheduleId | String | |
GeneralLedgerPostingDate | Datetime | |
InvoicePaidOffDate | Datetime | |
IsDeleted | Bool | |
IsDirectDebitDocument | Bool | |
IsElectronic | Bool | |
IsIntrastatDocument | Bool | |
IsVoided | Bool | |
Id | String | |
MiscellaneousAmountCurrency | String | |
MiscellaneousAmount | Decimal | |
MiscellaneousTaxScheduleId | String | |
ModifiedBy | String | |
ModifiedDate | Datetime | |
PostedBy | String | |
PostedDate | Datetime | |
SalesAmountCurrency | String | |
SalesAmount | Decimal | |
SalesTaxScheduleId | String | |
SalesTerritoryId | String | |
SalespersonId | String | |
ShippingMethodId | String | |
TaxAmountCurrency | String | |
TaxAmount | Decimal | |
TaxScheduleId | String | |
TaxesAggregate | String | |
TradeDiscountAmountCurrency | String | |
TradeDiscountAmount | Decimal | |
TransactionState | String | |
Type | String | |
VoidDate | Datetime | |
DiscountReturnedCurrency | String | |
DiscountReturned | Decimal | |
CommissionAmountCurrency | String | |
CommissionAmount | Decimal | |
CommissionBasedOn | String | |
CommissionsExtensionsExtensionAggregate | String | |
CommissionsCommissionAmountCurrency | String | |
CommissionsCommissionAmount | Decimal | |
CommissionsCommissionPercent | Decimal | |
CommissionsKeyReceivablesDocumentId [KEY] | String | |
CommissionsKeySequenceNumber [KEY] | Int | |
CommissionsNoncommissionedAmountCurrency | String | |
CommissionsNoncommissionedAmount | Decimal | |
CommissionsPercentOfSale | Decimal | |
CommissionsSalesAmountCurrency | String | |
CommissionsSalesAmount | Decimal | |
CommissionsSalesTerritoryId | String | |
CommissionsSalespersonId | String | |
PaymentCashAmountCurrency | String | |
PaymentCashAmount | Decimal | |
PaymentCashBankAccountId | String | |
PaymentCashDate | Datetime | |
PaymentCashNumber | String | |
PaymentCheckAmountCurrency | String | |
PaymentCheckAmount | Decimal | |
PaymentCheckBankAccountId | String | |
PaymentCheckCheckNumber | String | |
PaymentCheckDate | Datetime | |
PaymentCheckNumber | String | |
PaymentPaymentCardAmountCurrency | String | |
PaymentPaymentCardAmount | Decimal | |
PaymentPaymentCardDate | Datetime | |
PaymentPaymentCardNumber | String | |
PaymentPaymentCardReceiptNumber | String | |
PaymentPaymentCardTypeId | String | |
PaymentPaymentCardBankAccountId | String |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
ReceivablesServiceRepairCommissions
Return a list of: ReceivablesServiceRepairCommissions
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
AddressKeyCustomerId | String | |
AddressId | String | |
AuditTrailCode | String | |
BatchKeyCreatedDateTime | Datetime | |
BatchId | String | |
BatchKeySource | String | |
CorporateAccountId | String | |
CostAmountCurrency | String | |
CostAmount | Decimal | |
CurrencyKeyISOCode | String | |
CurrentDocumentAmountCurrency | String | |
CurrentDocumentAmount | Decimal | |
CustomerId | String | |
CustomerName | String | |
CustomerPONumber | String | |
Date | Datetime | |
Description | String | |
DistributionsAggregate | String | |
DocumentAmountCurrency | String | |
DocumentAmount | Decimal | |
ExchangeDate | Datetime | |
ExchangeRate | Decimal | |
FreightAmountCurrency | String | |
FreightAmount | Decimal | |
FreightTaxScheduleId | String | |
GeneralLedgerPostingDate | Datetime | |
InvoicePaidOffDate | Datetime | |
IsDeleted | Bool | |
IsDirectDebitDocument | Bool | |
IsElectronic | Bool | |
IsIntrastatDocument | Bool | |
IsVoided | Bool | |
Id | String | |
MiscellaneousAmountCurrency | String | |
MiscellaneousAmount | Decimal | |
MiscellaneousTaxScheduleId | String | |
ModifiedBy | String | |
ModifiedDate | Datetime | |
PostedBy | String | |
PostedDate | Datetime | |
SalesAmountCurrency | String | |
SalesAmount | Decimal | |
SalesTaxScheduleId | String | |
SalesTerritoryId | String | |
SalespersonId | String | |
ShippingMethodId | String | |
TaxAmountCurrency | String | |
TaxAmount | Decimal | |
TaxScheduleId | String | |
TaxesAggregate | String | |
TradeDiscountAmountCurrency | String | |
TradeDiscountAmount | Decimal | |
TransactionState | String | |
Type | String | |
VoidDate | Datetime | |
GSTDiscountAmountCurrency | String | |
GSTDiscountAmount | Decimal | |
PaymentCashAmountCurrency | String | |
PaymentCashAmount | Decimal | |
PaymentCashBankAccountId | String | |
PaymentCashDate | Datetime | |
PaymentCashNumber | String | |
PaymentCheckAmountCurrency | String | |
PaymentCheckAmount | Decimal | |
PaymentCheckBankAccountId | String | |
PaymentCheckCheckNumber | String | |
PaymentCheckDate | Datetime | |
PaymentCheckNumber | String | |
PaymentPaymentCardAmountCurrency | String | |
PaymentPaymentCardAmount | Decimal | |
PaymentPaymentCardDate | Datetime | |
PaymentPaymentCardNumber | String | |
PaymentPaymentCardReceiptNumber | String | |
PaymentPaymentCardTypeId | String | |
PaymentPaymentCardBankAccountId | String | |
PaymentTermsId | String | |
TermsDiscountItem | String | |
TermsDiscountAvailableAmountCurrency | String | |
TermsDiscountAvailableAmount | Decimal | |
TermsDiscountDate | Datetime | |
TermsDueDate | Datetime | |
TermsDiscountAvailableTakenAmountCurrency | String | |
TermsDiscountAvailableTakenAmount | Decimal | |
TermsDiscountTakenAmountCurrency | String | |
TermsDiscountTakenAmount | Decimal | |
WriteoffAmountCurrency | String | |
WriteoffAmount | Decimal | |
CommissionAmountCurrency | String | |
CommissionAmount | Decimal | |
CommissionBasedOn | String | |
CommissionsExtensionsExtensionAggregate | String | |
CommissionsCommissionAmountCurrency | String | |
CommissionsCommissionAmount | Decimal | |
CommissionsCommissionPercent | Decimal | |
CommissionsKeyReceivablesDocumentId [KEY] | String | |
CommissionsKeySequenceNumber [KEY] | Int | |
CommissionsNoncommissionedAmountCurrency | String | |
CommissionsNoncommissionedAmount | Decimal | |
CommissionsPercentOfSale | Decimal | |
CommissionsSalesAmountCurrency | String | |
CommissionsSalesAmount | Decimal | |
CommissionsSalesTerritoryId | String | |
CommissionsSalespersonId | String |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
ReturnMaterialAuthorizationAudits
Return a list of: ReturnMaterialAuthorizationAudits
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
BillToAddressId | String | |
BillToCustomerId | String | |
CurrencyKeyISOCode | String | |
CustomerId | String | |
CustomerName | String | |
CustomerPONumber | String | |
EntryDateTime | Datetime | |
EstimatedArrivalDateTime | Datetime | |
ExchangeDate | Datetime | |
ExchangeRate | Decimal | |
FrontOfficeIntegrationId | String | |
Id | String | |
Note | String | |
OfficeId | String | |
RateTypeId | String | |
ShipToAddressId | String | |
TransactionState | String | |
UserDefined01 | String | |
UserDefined02 | String | |
UserDefined03 | String | |
UserDefined04 | String | |
UserDefined05 | String | |
AuditsExtensionsExtensionAggregate | String | |
AuditsCreatedBy | String | |
AuditsCreatedDateTime | Datetime | |
AuditsDescription | String | |
AuditsFromReturnStatusCodeId | String | |
AuditsKeySequenceNumber [KEY] | Int | |
AuditsKeyServiceLineKeyLineSequenceNumber [KEY] | Int | |
AuditsKeyServiceLineKeyServiceDocumentId [KEY] | String | |
AuditsLineSequenceNumber | Decimal | |
AuditsToReturnStatusCodeId | String | |
BillOfLading | String | |
ClosedDateTime | Datetime | |
CommitDateTime | Datetime | |
CreatedBy | String | |
IsFromServiceCall | Bool | |
IsReceived | Bool | |
LinesAggregate | String | |
OriginatingDocumentId | String | |
OriginatingDocumentType | String | |
ReasonCodeDescription | String | |
ReasonCodeId | String | |
ReturnDateTime | Datetime | |
ReturnStatus | String | |
ReturnStatusCodeId | String | |
ReturnToAddressExtensionsExtensionAggregate | String | |
ReturnToAddressCity | String | |
ReturnToAddressLine1 | String | |
ReturnToAddressLine2 | String | |
ReturnToAddressLine3 | String | |
ReturnToAddressPostalCode | String | |
ReturnToAddressState | String | |
ReturnToAddressCountryRegion | String | |
ReturnToAddressName | String | |
ReturnTypeId | String | |
ReturnWarehouseId | String | |
ShipToAddressExtensionsExtensionAggregate | String | |
ShipToAddressCity | String | |
ShipToAddressLine1 | String | |
ShipToAddressLine2 | String | |
ShipToAddressLine3 | String | |
ShipToAddressPostalCode | String | |
ShipToAddressState | String | |
ShipToAddressCountryRegion | String | |
ShipToAddressContactPerson | String | |
ShippingMethodId | String | |
Type | String |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
ReturnMaterialAuthorizationLines
Return a list of: ReturnMaterialAuthorizationLines
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
BillToAddressId | String | |
BillToCustomerId | String | |
CurrencyKeyISOCode | String | |
CustomerId | String | |
CustomerName | String | |
CustomerPONumber | String | |
EntryDateTime | Datetime | |
EstimatedArrivalDateTime | Datetime | |
ExchangeDate | Datetime | |
ExchangeRate | Decimal | |
FrontOfficeIntegrationId | String | |
Id | String | |
Note | String | |
OfficeId | String | |
RateTypeId | String | |
ShipToAddressId | String | |
TransactionState | String | |
UserDefined01 | String | |
UserDefined02 | String | |
UserDefined03 | String | |
UserDefined04 | String | |
UserDefined05 | String | |
AuditsAggregate | String | |
BillOfLading | String | |
ClosedDateTime | Datetime | |
CommitDateTime | Datetime | |
CreatedBy | String | |
IsFromServiceCall | Bool | |
IsReceived | Bool | |
LinesExtensionsExtensionAggregate | String | |
LinesBillOfLading | String | |
LinesClosedDateTime | Datetime | |
LinesCommitDateTime | Datetime | |
LinesCreatedBy | String | |
LinesCustomerName | String | |
LinesCustomerPONumber | String | |
LinesDistributionsAggregate | String | |
LinesEntryDateTime | Datetime | |
LinesEquipmentLineSequenceNumber | Int | |
LinesEstimatedArrivalDateTime | Datetime | |
LinesFrontOfficeIntegrationId | String | |
LinesIsClosed | Bool | |
LinesIsCustomerOwned | Bool | |
LinesIsFactorySealed | Bool | |
LinesIsFromServiceCall | Bool | |
LinesIsReadyToClose | Bool | |
LinesIsReceived | Bool | |
LinesIsTravelerPrinted | Bool | |
LinesItemDescription | String | |
LinesItemId | String | |
LinesKeyLineSequenceNumber [KEY] | Int | |
LinesKeyServiceDocumentId [KEY] | String | |
LinesLotsAggregate | String | |
LinesNote | String | |
LinesOfficeId | String | |
LinesOriginatingDocumentId | String | |
LinesPromiseDateTime | Datetime | |
LinesQuantity | Decimal | |
LinesReasonCodeDescription | String | |
LinesReasonCodeId | String | |
LinesReference | String | |
LinesRepairCostCurrency | String | |
LinesRepairCost | Decimal | |
LinesRepairDocumentId | String | |
LinesRepairFlatRatePriceCurrency | String | |
LinesRepairFlatRatePrice | Decimal | |
LinesRepairInvoiceItemId | String | |
LinesRepairNotToExceedPriceCurrency | String | |
LinesRepairNotToExceedPrice | Decimal | |
LinesRepairPriceCurrency | String | |
LinesRepairPrice | Decimal | |
LinesReplacementItemId | String | |
LinesReplacementPriceLevelId | String | |
LinesReplacementQuantity | Decimal | |
LinesReplacementUnitCostCurrency | String | |
LinesReplacementUnitCost | Decimal | |
LinesReplacementUnitPriceCurrency | String | |
LinesReplacementUnitPrice | Decimal | |
LinesReplacementUofM | String | |
LinesReplacementWarehouseId | String | |
LinesReturnDateTime | Datetime | |
LinesReturnStatus | String | |
LinesReturnStatusCodeId | String | |
LinesReturnToAddressExtensionsExtensionAggregate | String | |
LinesReturnToAddressCity | String | |
LinesReturnToAddressLine1 | String | |
LinesReturnToAddressLine2 | String | |
LinesReturnToAddressLine3 | String | |
LinesReturnToAddressPostalCode | String | |
LinesReturnToAddressState | String | |
LinesReturnToAddressCountryRegion | String | |
LinesReturnToAddressName | String | |
LinesReturnTypeId | String | |
LinesReturnWarehouseId | String | |
LinesReturnedItemDescription | String | |
LinesReturnedItemId | String | |
LinesReturnedPriceLevelId | String | |
LinesReturnedQuantity | Decimal | |
LinesReturnedTotalAmountCurrency | String | |
LinesReturnedTotalAmount | Decimal | |
LinesReturnedTotalCostCurrency | String | |
LinesReturnedTotalCost | Decimal | |
LinesReturnedUnitCostCurrency | String | |
LinesReturnedUnitCost | Decimal | |
LinesReturnedUnitPriceCurrency | String | |
LinesReturnedUnitPrice | Decimal | |
LinesReturnedUofM | String | |
LinesReturnedWarehouseId | String | |
LinesSalesInvoiceComponentSequenceNumber | Int | |
LinesSalesInvoiceLineKeyLineSequenceNumber | Int | |
LinesSalesInvoiceLineKeySalesDocumentId | String | |
LinesSalesOrderLineKeyLineSequenceNumber | Int | |
LinesSalesOrderLineKeySalesDocumentId | String | |
LinesSalesReturnLineKeyLineSequenceNumber | Int | |
LinesSalesReturnLineKeySalesDocumentId | String | |
LinesSerialsAggregate | String | |
LinesServiceLineKeyLineSequenceNumber | Int | |
LinesServiceLineKeyServiceDocumentId | String | |
LinesShipToAddressExtensionsExtensionAggregate | String | |
LinesShipToAddressCity | String | |
LinesShipToAddressLine1 | String | |
LinesShipToAddressLine2 | String | |
LinesShipToAddressLine3 | String | |
LinesShipToAddressPostalCode | String | |
LinesShipToAddressState | String | |
LinesShipToAddressCountryRegion | String | |
LinesShipToAddressContactPerson | String | |
LinesShipToAddressId | String | |
LinesShippingMethodId | String | |
LinesTotalAmountCurrency | String | |
LinesTotalAmount | Decimal | |
LinesTotalCostCurrency | String | |
LinesTotalCost | Decimal | |
LinesTransferDocumentLineKeyLineSequenceNumber | Int | |
LinesTransferDocumentLineKeyServiceDocumentId | String | |
LinesTransferStatus | String | |
LinesUnitCostCurrency | String | |
LinesUnitCost | Decimal | |
LinesUnitPriceCurrency | String | |
LinesUnitPrice | Decimal | |
LinesUofM | String | |
LinesUserDefined01 | String | |
LinesUserDefined02 | String | |
LinesUserDefined03 | String | |
LinesUserDefined04 | String | |
LinesUserDefined05 | String | |
OriginatingDocumentId | String | |
OriginatingDocumentType | String | |
ReasonCodeDescription | String | |
ReasonCodeId | String | |
ReturnDateTime | Datetime | |
ReturnStatus | String | |
ReturnStatusCodeId | String | |
ReturnToAddressExtensionsExtensionAggregate | String | |
ReturnToAddressCity | String | |
ReturnToAddressLine1 | String | |
ReturnToAddressLine2 | String | |
ReturnToAddressLine3 | String | |
ReturnToAddressPostalCode | String | |
ReturnToAddressState | String | |
ReturnToAddressCountryRegion | String | |
ReturnToAddressName | String | |
ReturnTypeId | String | |
ReturnWarehouseId | String | |
ShipToAddressExtensionsExtensionAggregate | String | |
ShipToAddressCity | String | |
ShipToAddressLine1 | String | |
ShipToAddressLine2 | String | |
ShipToAddressLine3 | String | |
ShipToAddressPostalCode | String | |
ShipToAddressState | String | |
ShipToAddressCountryRegion | String | |
ShipToAddressContactPerson | String | |
ShippingMethodId | String | |
Type | String |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
SalesBackorderLines
Return a list of: SalesBackorderLines
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
ActualShipDate | Datetime | |
AuditTrailCode | String | |
BackorderDate | Datetime | |
BatchKeyCreatedDateTime | Datetime | |
BatchId | String | |
BatchKeySource | String | |
BillToAddressKeyCustomerId | String | |
BillToAddressId | String | |
Comment | String | |
CommentId | String | |
CommissionAmountCurrency | String | |
CommissionAmount | Decimal | |
CommissionBasedOn | String | |
CommissionSaleAmountCurrency | String | |
CommissionSaleAmount | Decimal | |
CommissionsAggregate | String | |
CreatedBy | String | |
CreatedDate | Datetime | |
CurrencyKeyISOCode | String | |
CustomerId | String | |
CustomerName | String | |
CustomerPONumber | String | |
Date | Datetime | |
DiscountAmountCurrency | String | |
DiscountAmount | Decimal | |
DocumentTypeId | String | |
DocumentTypeKeyType | String | |
ExchangeDate | Datetime | |
ExchangeRate | Decimal | |
FreightAmountCurrency | String | |
FreightAmount | Decimal | |
FreightTaxAmountCurrency | String | |
FreightTaxAmount | Decimal | |
FreightTaxBasis | String | |
FreightTaxScheduleId | String | |
FreightTaxesAggregate | String | |
FrontOfficeIntegrationId | String | |
FulfillDate | Datetime | |
IntegrationId | String | |
IntegrationSource | Int | |
InvoiceDate | Datetime | |
IsIntrastatDocument | Bool | |
IsVoided | Bool | |
Id | String | |
LastModifiedDate | Datetime | |
LineTotalAmountCurrency | String | |
LineTotalAmount | Decimal | |
MasterNumber | Int | |
MiscellaneousAmountCurrency | String | |
MiscellaneousAmount | Decimal | |
MiscellaneousTaxAmountCurrency | String | |
MiscellaneousTaxAmount | Decimal | |
MiscellaneousTaxBasis | String | |
MiscellaneousTaxScheduleId | String | |
MiscellaneousTaxesAggregate | String | |
ModifiedDate | Datetime | |
Note | String | |
OriginalSalesDocumentId | String | |
OriginalSalesDocumentType | String | |
PaymentTermsId | String | |
PriceLevelId | String | |
ProcessHoldsAggregate | String | |
QuoteDate | Datetime | |
Reference | String | |
RequestedShipDate | Datetime | |
ReturnDate | Datetime | |
SalesTerritoryId | String | |
SalespersonId | String | |
ShipCompleteOnly | Bool | |
ShipToAddressExtensionsExtensionAggregate | String | |
ShipToAddressCity | String | |
ShipToAddressLine1 | String | |
ShipToAddressLine2 | String | |
ShipToAddressLine3 | String | |
ShipToAddressPostalCode | String | |
ShipToAddressState | String | |
ShipToAddressCountryRegion | String | |
ShipToAddressFaxCountryCode | String | |
ShipToAddressFaxExtension | String | |
ShipToAddressFax | String | |
ShipToAddressPhone1CountryCode | String | |
ShipToAddressPhone1Extension | String | |
ShipToAddressPhone1 | String | |
ShipToAddressPhone2CountryCode | String | |
ShipToAddressPhone2Extension | String | |
ShipToAddressPhone2 | String | |
ShipToAddressPhone3CountryCode | String | |
ShipToAddressPhone3Extension | String | |
ShipToAddressPhone3 | String | |
ShipToAddressCountryRegionCodeId | String | |
ShipToAddressContactPerson | String | |
ShipToAddressName | String | |
ShipToAddressKeyCustomerId | String | |
ShipToAddressId | String | |
ShippingMethodId | String | |
TaxAmountCurrency | String | |
TaxAmount | Decimal | |
TaxExemptNumber1 | String | |
TaxExemptNumber2 | String | |
TaxRegistrationNumber | String | |
TaxScheduleId | String | |
TaxesAggregate | String | |
TotalAmountCurrency | String | |
TotalAmount | Decimal | |
TrackingNumbersAggregate | String | |
TradeDiscountItem | String | |
TransactionState | String | |
Type | String | |
UPSZone | String | |
UserDefinedDate01 | Datetime | |
UserDefinedDate02 | Datetime | |
UserDefinedList01 | String | |
UserDefinedList02 | String | |
UserDefinedList03 | String | |
UserDefinedText01 | String | |
UserDefinedText02 | String | |
UserDefinedText03 | String | |
UserDefinedText04 | String | |
UserDefinedText05 | String | |
WarehouseId | String | |
DepositAmountCurrency | String | |
DepositAmount | Decimal | |
LinesExtensionsExtensionAggregate | String | |
LinesComment | String | |
LinesCommentId | String | |
LinesCostOfSalesGLAccountId | String | |
LinesCostOfSalesGLAccountKeyIsEncrypted | Bool | |
LinesDamagedGLAccountId | String | |
LinesDamagedGLAccountKeyIsEncrypted | Bool | |
LinesDeleteOnUpdate | Bool | |
LinesDiscountItem | String | |
LinesDiscountGLAccountId | String | |
LinesDiscountGLAccountKeyIsEncrypted | Bool | |
LinesExtendedCostCurrency | String | |
LinesExtendedCost | Decimal | |
LinesFrontOfficeIntegrationId | String | |
LinesInServiceGLAccountId | String | |
LinesInServiceGLAccountKeyIsEncrypted | Bool | |
LinesInUseGLAccountId | String | |
LinesInUseGLAccountKeyIsEncrypted | Bool | |
LinesIntegrationId | String | |
LinesIntegrationSource | Int | |
LinesInventoryGLAccountId | String | |
LinesInventoryGLAccountKeyIsEncrypted | Bool | |
LinesIsDropShip | Bool | |
LinesIsNonInventory | Bool | |
LinesItemDescription | String | |
LinesItemId | String | |
LinesItemTaxScheduleId | String | |
LinesKeyLineSequenceNumber [KEY] | Int | |
LinesKeySalesDocumentId [KEY] | String | |
LinesPriceLevelId | String | |
LinesQuantity | Decimal | |
LinesRequestedShipDate | Datetime | |
LinesReturnsGLAccountId | String | |
LinesReturnsGLAccountKeyIsEncrypted | Bool | |
LinesSalesGLAccountId | String | |
LinesSalesGLAccountKeyIsEncrypted | Bool | |
LinesSalesTerritoryId | String | |
LinesSalespersonId | String | |
LinesShipToAddressExtensionsExtensionAggregate | String | |
LinesShipToAddressCity | String | |
LinesShipToAddressLine1 | String | |
LinesShipToAddressLine2 | String | |
LinesShipToAddressLine3 | String | |
LinesShipToAddressPostalCode | String | |
LinesShipToAddressState | String | |
LinesShipToAddressCountryRegion | String | |
LinesShipToAddressFaxCountryCode | String | |
LinesShipToAddressFaxExtension | String | |
LinesShipToAddressFax | String | |
LinesShipToAddressPhone1CountryCode | String | |
LinesShipToAddressPhone1Extension | String | |
LinesShipToAddressPhone1 | String | |
LinesShipToAddressPhone2CountryCode | String | |
LinesShipToAddressPhone2Extension | String | |
LinesShipToAddressPhone2 | String | |
LinesShipToAddressPhone3CountryCode | String | |
LinesShipToAddressPhone3Extension | String | |
LinesShipToAddressPhone3 | String | |
LinesShipToAddressCountryRegionCodeId | String | |
LinesShipToAddressContactPerson | String | |
LinesShipToAddressName | String | |
LinesShipToAddressKeyCustomerId | String | |
LinesShipToAddressId | String | |
LinesShippingMethodId | String | |
LinesTaxAmountCurrency | String | |
LinesTaxAmount | Decimal | |
LinesTaxBasis | String | |
LinesTaxScheduleId | String | |
LinesTaxesAggregate | String | |
LinesTotalAmountCurrency | String | |
LinesTotalAmount | Decimal | |
LinesUnitCostCurrency | String | |
LinesUnitCost | Decimal | |
LinesUnitPriceCurrency | String | |
LinesUnitPrice | Decimal | |
LinesUofM | String | |
LinesWarehouseId | String | |
LinesComponentsAggregate | String | |
LinesQuantityCanceled | Decimal | |
LinesQuantityToInvoice | Decimal | |
LinesQuantityToOrder | Decimal | |
PaymentAmountCurrency | String | |
PaymentAmount | Decimal | |
PaymentsAggregate | String |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
SalesBackorderPayments
Return a list of: SalesBackorderPayments
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
ActualShipDate | Datetime | |
AuditTrailCode | String | |
BackorderDate | Datetime | |
BatchKeyCreatedDateTime | Datetime | |
BatchId | String | |
BatchKeySource | String | |
BillToAddressKeyCustomerId | String | |
BillToAddressId | String | |
Comment | String | |
CommentId | String | |
CommissionAmountCurrency | String | |
CommissionAmount | Decimal | |
CommissionBasedOn | String | |
CommissionSaleAmountCurrency | String | |
CommissionSaleAmount | Decimal | |
CommissionsAggregate | String | |
CreatedBy | String | |
CreatedDate | Datetime | |
CurrencyKeyISOCode | String | |
CustomerId | String | |
CustomerName | String | |
CustomerPONumber | String | |
Date | Datetime | |
DiscountAmountCurrency | String | |
DiscountAmount | Decimal | |
DocumentTypeId | String | |
DocumentTypeKeyType | String | |
ExchangeDate | Datetime | |
ExchangeRate | Decimal | |
FreightAmountCurrency | String | |
FreightAmount | Decimal | |
FreightTaxAmountCurrency | String | |
FreightTaxAmount | Decimal | |
FreightTaxBasis | String | |
FreightTaxScheduleId | String | |
FreightTaxesAggregate | String | |
FrontOfficeIntegrationId | String | |
FulfillDate | Datetime | |
IntegrationId | String | |
IntegrationSource | Int | |
InvoiceDate | Datetime | |
IsIntrastatDocument | Bool | |
IsVoided | Bool | |
Id | String | |
LastModifiedDate | Datetime | |
LineTotalAmountCurrency | String | |
LineTotalAmount | Decimal | |
MasterNumber | Int | |
MiscellaneousAmountCurrency | String | |
MiscellaneousAmount | Decimal | |
MiscellaneousTaxAmountCurrency | String | |
MiscellaneousTaxAmount | Decimal | |
MiscellaneousTaxBasis | String | |
MiscellaneousTaxScheduleId | String | |
MiscellaneousTaxesAggregate | String | |
ModifiedDate | Datetime | |
Note | String | |
OriginalSalesDocumentId | String | |
OriginalSalesDocumentType | String | |
PaymentTermsId | String | |
PriceLevelId | String | |
ProcessHoldsAggregate | String | |
QuoteDate | Datetime | |
Reference | String | |
RequestedShipDate | Datetime | |
ReturnDate | Datetime | |
SalesTerritoryId | String | |
SalespersonId | String | |
ShipCompleteOnly | Bool | |
ShipToAddressExtensionsExtensionAggregate | String | |
ShipToAddressCity | String | |
ShipToAddressLine1 | String | |
ShipToAddressLine2 | String | |
ShipToAddressLine3 | String | |
ShipToAddressPostalCode | String | |
ShipToAddressState | String | |
ShipToAddressCountryRegion | String | |
ShipToAddressFaxCountryCode | String | |
ShipToAddressFaxExtension | String | |
ShipToAddressFax | String | |
ShipToAddressPhone1CountryCode | String | |
ShipToAddressPhone1Extension | String | |
ShipToAddressPhone1 | String | |
ShipToAddressPhone2CountryCode | String | |
ShipToAddressPhone2Extension | String | |
ShipToAddressPhone2 | String | |
ShipToAddressPhone3CountryCode | String | |
ShipToAddressPhone3Extension | String | |
ShipToAddressPhone3 | String | |
ShipToAddressCountryRegionCodeId | String | |
ShipToAddressContactPerson | String | |
ShipToAddressName | String | |
ShipToAddressKeyCustomerId | String | |
ShipToAddressId | String | |
ShippingMethodId | String | |
TaxAmountCurrency | String | |
TaxAmount | Decimal | |
TaxExemptNumber1 | String | |
TaxExemptNumber2 | String | |
TaxRegistrationNumber | String | |
TaxScheduleId | String | |
TaxesAggregate | String | |
TotalAmountCurrency | String | |
TotalAmount | Decimal | |
TrackingNumbersAggregate | String | |
TradeDiscountItem | String | |
TransactionState | String | |
Type | String | |
UPSZone | String | |
UserDefinedDate01 | Datetime | |
UserDefinedDate02 | Datetime | |
UserDefinedList01 | String | |
UserDefinedList02 | String | |
UserDefinedList03 | String | |
UserDefinedText01 | String | |
UserDefinedText02 | String | |
UserDefinedText03 | String | |
UserDefinedText04 | String | |
UserDefinedText05 | String | |
WarehouseId | String | |
DepositAmountCurrency | String | |
DepositAmount | Decimal | |
LinesAggregate | String | |
PaymentAmountCurrency | String | |
PaymentAmount | Decimal | |
PaymentsExtensionsExtensionAggregate | String | |
PaymentsAuditTrailCode | String | |
PaymentsAuthorizationCode | String | |
PaymentsBankAccountId | String | |
PaymentsCheckNumber | String | |
PaymentsCurrencyKeyISOCode | String | |
PaymentsDate | Datetime | |
PaymentsDeleteOnUpdate | Bool | |
PaymentsExpirationDate | Datetime | |
PaymentsKeySalesDocumentId [KEY] | String | |
PaymentsKeySequenceNumber [KEY] | Int | |
PaymentsNumber | String | |
PaymentsPaymentAmountCurrency | String | |
PaymentsPaymentAmount | Decimal | |
PaymentsPaymentCardNumber | String | |
PaymentsPaymentCardTypeId | String | |
PaymentsType | String |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
SalesDocument
Return a list of: SalesDocument
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
ActualShipDate | Datetime | |
AuditTrailCode | String | |
BackorderDate | Datetime | |
BatchKeyCreatedDateTime | Datetime | |
BatchId | String | |
BatchKeySource | String | |
BillToAddressKeyCustomerId | String | |
BillToAddressId | String | |
Comment | String | |
CommentId | String | |
CommissionAmountCurrency | String | |
CommissionAmount | Decimal | |
CommissionBasedOn | String | |
CommissionSaleAmountCurrency | String | |
CommissionSaleAmount | Decimal | |
CommissionsAggregate | String | |
CreatedBy | String | |
CreatedDate | Datetime | |
CurrencyKeyISOCode | String | |
CustomerId | String | |
CustomerName | String | |
CustomerPONumber | String | |
Date | Datetime | |
DiscountAmountCurrency | String | |
DiscountAmount | Decimal | |
DocumentTypeId | String | |
DocumentTypeKeyType | String | |
ExchangeDate | Datetime | |
ExchangeRate | Decimal | |
FreightAmountCurrency | String | |
FreightAmount | Decimal | |
FreightTaxAmountCurrency | String | |
FreightTaxAmount | Decimal | |
FreightTaxBasis | String | |
FreightTaxScheduleId | String | |
FreightTaxesAggregate | String | |
FrontOfficeIntegrationId | String | |
FulfillDate | Datetime | |
IntegrationId | String | |
IntegrationSource | Int | |
InvoiceDate | Datetime | |
IsIntrastatDocument | Bool | |
IsVoided | Bool | |
Id [KEY] | String | |
LastModifiedDate | Datetime | |
LineTotalAmountCurrency | String | |
LineTotalAmount | Decimal | |
MasterNumber | Int | |
MiscellaneousAmountCurrency | String | |
MiscellaneousAmount | Decimal | |
MiscellaneousTaxAmountCurrency | String | |
MiscellaneousTaxAmount | Decimal | |
MiscellaneousTaxBasis | String | |
MiscellaneousTaxScheduleId | String | |
MiscellaneousTaxesAggregate | String | |
ModifiedDate | Datetime | |
Note | String | |
OriginalSalesDocumentId | String | |
OriginalSalesDocumentType | String | |
PaymentTermsId | String | |
PriceLevelId | String | |
ProcessHoldsAggregate | String | |
QuoteDate | Datetime | |
Reference | String | |
RequestedShipDate | Datetime | |
ReturnDate | Datetime | |
SalesTerritoryId | String | |
SalespersonId | String | |
ShipCompleteOnly | Bool | |
ShipToAddressExtensionsExtensionAggregate | String | |
ShipToAddressCity | String | |
ShipToAddressLine1 | String | |
ShipToAddressLine2 | String | |
ShipToAddressLine3 | String | |
ShipToAddressPostalCode | String | |
ShipToAddressState | String | |
ShipToAddressCountryRegion | String | |
ShipToAddressFaxCountryCode | String | |
ShipToAddressFaxExtension | String | |
ShipToAddressFax | String | |
ShipToAddressPhone1CountryCode | String | |
ShipToAddressPhone1Extension | String | |
ShipToAddressPhone1 | String | |
ShipToAddressPhone2CountryCode | String | |
ShipToAddressPhone2Extension | String | |
ShipToAddressPhone2 | String | |
ShipToAddressPhone3CountryCode | String | |
ShipToAddressPhone3Extension | String | |
ShipToAddressPhone3 | String | |
ShipToAddressCountryRegionCodeId | String | |
ShipToAddressContactPerson | String | |
ShipToAddressName | String | |
ShipToAddressKeyCustomerId | String | |
ShipToAddressId | String | |
ShippingMethodId | String | |
TaxAmountCurrency | String | |
TaxAmount | Decimal | |
TaxExemptNumber1 | String | |
TaxExemptNumber2 | String | |
TaxRegistrationNumber | String | |
TaxScheduleId | String | |
TaxesAggregate | String | |
TotalAmountCurrency | String | |
TotalAmount | Decimal | |
TrackingNumbersAggregate | String | |
TradeDiscountItem | String | |
TransactionState | String | |
Type | String | |
UPSZone | String | |
UserDefinedDate01 | Datetime | |
UserDefinedDate02 | Datetime | |
UserDefinedList01 | String | |
UserDefinedList02 | String | |
UserDefinedList03 | String | |
UserDefinedText01 | String | |
UserDefinedText02 | String | |
UserDefinedText03 | String | |
UserDefinedText04 | String | |
UserDefinedText05 | String | |
WarehouseId | String |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
SalesDocumentCommissions
The DynamicsGP table SalesDocumentCommissions.
Columns
Name | Type | Description |
---|---|---|
CommissionsKeySequenceNumber [KEY] | Int32 | The CommissionsKeySequenceNumber column for the table SalesDocumentCommissions. |
CommissionsKeySalesDocumentId [KEY] | String | The CommissionsKeySalesDocumentId column for the table SalesDocumentCommissions. |
ActualShipDate | Datetime | The ActualShipDate column for the table SalesDocumentCommissions. |
AuditTrailCode | String | The AuditTrailCode column for the table SalesDocumentCommissions. |
BackorderDate | Datetime | The BackorderDate column for the table SalesDocumentCommissions. |
BatchKeyCreatedDateTime | Datetime | The BatchKeyCreatedDateTime column for the table SalesDocumentCommissions. |
BatchId | String | The BatchId column for the table SalesDocumentCommissions. |
BatchKeySource | String | The BatchKeySource column for the table SalesDocumentCommissions. |
BillToAddressKeyCustomerId | String | The BillToAddressKeyCustomerId column for the table SalesDocumentCommissions. |
BillToAddressId | String | The BillToAddressId column for the table SalesDocumentCommissions. |
Comment | String | The Comment column for the table SalesDocumentCommissions. |
CommentId | String | The CommentId column for the table SalesDocumentCommissions. |
CommissionAmountCurrency | String | The CommissionAmountCurrency column for the table SalesDocumentCommissions. |
CommissionAmount | Decimal | The CommissionAmount column for the table SalesDocumentCommissions. |
CommissionBasedOn | String | The CommissionBasedOn column for the table SalesDocumentCommissions. |
CommissionSaleAmountCurrency | String | The CommissionSaleAmountCurrency column for the table SalesDocumentCommissions. |
CommissionSaleAmount | Decimal | The CommissionSaleAmount column for the table SalesDocumentCommissions. |
CommissionsCommissionAmountCurrency | String | The CommissionsCommissionAmountCurrency column for the table SalesDocumentCommissions. |
CommissionsCommissionAmount | Decimal | The CommissionsCommissionAmount column for the table SalesDocumentCommissions. |
CommissionsCommissionPercent | Decimal | The CommissionsCommissionPercent column for the table SalesDocumentCommissions. |
CommissionsCommissionSaleAmountCurrency | String | The CommissionsCommissionSaleAmountCurrency column for the table SalesDocumentCommissions. |
CommissionsCommissionSaleAmount | Decimal | The CommissionsCommissionSaleAmount column for the table SalesDocumentCommissions. |
CommissionsNoncommissionedAmountCurrency | String | The CommissionsNoncommissionedAmountCurrency column for the table SalesDocumentCommissions. |
CommissionsNoncommissionedAmount | Decimal | The CommissionsNoncommissionedAmount column for the table SalesDocumentCommissions. |
CommissionsPercentOfSale | Decimal | The CommissionsPercentOfSale column for the table SalesDocumentCommissions. |
CommissionsSalesAmountCurrency | String | The CommissionsSalesAmountCurrency column for the table SalesDocumentCommissions. |
CommissionsSalesAmount | Decimal | The CommissionsSalesAmount column for the table SalesDocumentCommissions. |
CommissionsSalesTerritoryId | String | The CommissionsSalesTerritoryId column for the table SalesDocumentCommissions. |
CommissionsSalespersonId | String | The CommissionsSalespersonId column for the table SalesDocumentCommissions. |
CommissionsExtensionsExtensionAggregate | String | The CommissionsExtensionsExtensionAggregate column for the table SalesDocumentCommissions. |
CreatedBy | String | The CreatedBy column for the table SalesDocumentCommissions. |
CreatedDate | Datetime | The CreatedDate column for the table SalesDocumentCommissions. |
CurrencyKeyISOCode | String | The CurrencyKeyISOCode column for the table SalesDocumentCommissions. |
CustomerId | String | The CustomerId column for the table SalesDocumentCommissions. |
CustomerName | String | The CustomerName column for the table SalesDocumentCommissions. |
CustomerPONumber | String | The CustomerPONumber column for the table SalesDocumentCommissions. |
Date | Datetime | The Date column for the table SalesDocumentCommissions. |
DiscountAmountCurrency | String | The DiscountAmountCurrency column for the table SalesDocumentCommissions. |
DiscountAmount | Decimal | The DiscountAmount column for the table SalesDocumentCommissions. |
DocumentTypeId | String | The DocumentTypeId column for the table SalesDocumentCommissions. |
DocumentTypeKeyType | String | The DocumentTypeKeyType column for the table SalesDocumentCommissions. |
ExchangeDate | Datetime | The ExchangeDate column for the table SalesDocumentCommissions. |
ExchangeRate | Decimal | The ExchangeRate column for the table SalesDocumentCommissions. |
FreightAmountCurrency | String | The FreightAmountCurrency column for the table SalesDocumentCommissions. |
FreightAmount | Decimal | The FreightAmount column for the table SalesDocumentCommissions. |
FreightTaxAmountCurrency | String | The FreightTaxAmountCurrency column for the table SalesDocumentCommissions. |
FreightTaxAmount | Decimal | The FreightTaxAmount column for the table SalesDocumentCommissions. |
FreightTaxBasis | String | The FreightTaxBasis column for the table SalesDocumentCommissions. |
FreightTaxScheduleId | String | The FreightTaxScheduleId column for the table SalesDocumentCommissions. |
FreightTaxesSalesDocumentTaxAggregate | String | The FreightTaxesSalesDocumentTaxAggregate column for the table SalesDocumentCommissions. |
FrontOfficeIntegrationId | String | The FrontOfficeIntegrationId column for the table SalesDocumentCommissions. |
FulfillDate | Datetime | The FulfillDate column for the table SalesDocumentCommissions. |
IntegrationId | String | The IntegrationId column for the table SalesDocumentCommissions. |
IntegrationSource | Int32 | The IntegrationSource column for the table SalesDocumentCommissions. |
InvoiceDate | Datetime | The InvoiceDate column for the table SalesDocumentCommissions. |
IsIntrastatDocument | Boolean | The IsIntrastatDocument column for the table SalesDocumentCommissions. |
IsVoided | Boolean | The IsVoided column for the table SalesDocumentCommissions. |
Id | String | The ID column for the table SalesDocumentCommissions. |
LastModifiedDate | Datetime | The LastModifiedDate column for the table SalesDocumentCommissions. |
LineTotalAmountCurrency | String | The LineTotalAmountCurrency column for the table SalesDocumentCommissions. |
LineTotalAmount | Decimal | The LineTotalAmount column for the table SalesDocumentCommissions. |
MasterNumber | Int32 | The MasterNumber column for the table SalesDocumentCommissions. |
MiscellaneousAmountCurrency | String | The MiscellaneousAmountCurrency column for the table SalesDocumentCommissions. |
MiscellaneousAmount | Decimal | The MiscellaneousAmount column for the table SalesDocumentCommissions. |
MiscellaneousTaxAmountCurrency | String | The MiscellaneousTaxAmountCurrency column for the table SalesDocumentCommissions. |
MiscellaneousTaxAmount | Decimal | The MiscellaneousTaxAmount column for the table SalesDocumentCommissions. |
MiscellaneousTaxBasis | String | The MiscellaneousTaxBasis column for the table SalesDocumentCommissions. |
MiscellaneousTaxScheduleId | String | The MiscellaneousTaxScheduleId column for the table SalesDocumentCommissions. |
MiscellaneousTaxesSalesDocumentTaxAggregate | String | The MiscellaneousTaxesSalesDocumentTaxAggregate column for the table SalesDocumentCommissions. |
ModifiedDate | Datetime | The ModifiedDate column for the table SalesDocumentCommissions. |
Note | String | The Note column for the table SalesDocumentCommissions. |
OriginalSalesDocumentId | String | The OriginalSalesDocumentId column for the table SalesDocumentCommissions. |
OriginalSalesDocumentType | String | The OriginalSalesDocumentType column for the table SalesDocumentCommissions. |
PaymentTermsId | String | The PaymentTermsId column for the table SalesDocumentCommissions. |
PriceLevelId | String | The PriceLevelId column for the table SalesDocumentCommissions. |
ProcessHoldsSalesProcessHoldAggregate | String | The ProcessHoldsSalesProcessHoldAggregate column for the table SalesDocumentCommissions. |
QuoteDate | Datetime | The QuoteDate column for the table SalesDocumentCommissions. |
Reference | String | The Reference column for the table SalesDocumentCommissions. |
RequestedShipDate | Datetime | The RequestedShipDate column for the table SalesDocumentCommissions. |
ReturnDate | Datetime | The ReturnDate column for the table SalesDocumentCommissions. |
SalesTerritoryId | String | The SalesTerritoryId column for the table SalesDocumentCommissions. |
SalespersonId | String | The SalespersonId column for the table SalesDocumentCommissions. |
ShipCompleteOnly | Boolean | The ShipCompleteOnly column for the table SalesDocumentCommissions. |
ShipToAddressExtensionsExtensionAggregate | String | The ShipToAddressExtensionsExtensionAggregate column for the table SalesDocumentCommissions. |
ShipToAddressCity | String | The ShipToAddressCity column for the table SalesDocumentCommissions. |
ShipToAddressLine1 | String | The ShipToAddressLine1 column for the table SalesDocumentCommissions. |
ShipToAddressLine2 | String | The ShipToAddressLine2 column for the table SalesDocumentCommissions. |
ShipToAddressLine3 | String | The ShipToAddressLine3 column for the table SalesDocumentCommissions. |
ShipToAddressPostalCode | String | The ShipToAddressPostalCode column for the table SalesDocumentCommissions. |
ShipToAddressState | String | The ShipToAddressState column for the table SalesDocumentCommissions. |
ShipToAddressCountryRegion | String | The ShipToAddressCountryRegion column for the table SalesDocumentCommissions. |
ShipToAddressFaxCountryCode | String | The ShipToAddressFaxCountryCode column for the table SalesDocumentCommissions. |
ShipToAddressFaxExtension | String | The ShipToAddressFaxExtension column for the table SalesDocumentCommissions. |
ShipToAddressFax | String | The ShipToAddressFax column for the table SalesDocumentCommissions. |
ShipToAddressPhone1CountryCode | String | The ShipToAddressPhone1CountryCode column for the table SalesDocumentCommissions. |
ShipToAddressPhone1Extension | String | The ShipToAddressPhone1Extension column for the table SalesDocumentCommissions. |
ShipToAddressPhone1 | String | The ShipToAddressPhone1 column for the table SalesDocumentCommissions. |
ShipToAddressPhone2CountryCode | String | The ShipToAddressPhone2CountryCode column for the table SalesDocumentCommissions. |
ShipToAddressPhone2Extension | String | The ShipToAddressPhone2Extension column for the table SalesDocumentCommissions. |
ShipToAddressPhone2 | String | The ShipToAddressPhone2 column for the table SalesDocumentCommissions. |
ShipToAddressPhone3CountryCode | String | The ShipToAddressPhone3CountryCode column for the table SalesDocumentCommissions. |
ShipToAddressPhone3Extension | String | The ShipToAddressPhone3Extension column for the table SalesDocumentCommissions. |
ShipToAddressPhone3 | String | The ShipToAddressPhone3 column for the table SalesDocumentCommissions. |
ShipToAddressCountryRegionCodeId | String | The ShipToAddressCountryRegionCodeId column for the table SalesDocumentCommissions. |
ShipToAddressContactPerson | String | The ShipToAddressContactPerson column for the table SalesDocumentCommissions. |
ShipToAddressName | String | The ShipToAddressName column for the table SalesDocumentCommissions. |
ShipToAddressKeyCustomerId | String | The ShipToAddressKeyCustomerId column for the table SalesDocumentCommissions. |
ShipToAddressId | String | The ShipToAddressId column for the table SalesDocumentCommissions. |
ShippingMethodId | String | The ShippingMethodId column for the table SalesDocumentCommissions. |
TaxAmountCurrency | String | The TaxAmountCurrency column for the table SalesDocumentCommissions. |
TaxAmount | Decimal | The TaxAmount column for the table SalesDocumentCommissions. |
TaxExemptNumber1 | String | The TaxExemptNumber1 column for the table SalesDocumentCommissions. |
TaxExemptNumber2 | String | The TaxExemptNumber2 column for the table SalesDocumentCommissions. |
TaxRegistrationNumber | String | The TaxRegistrationNumber column for the table SalesDocumentCommissions. |
TaxScheduleId | String | The TaxScheduleId column for the table SalesDocumentCommissions. |
TaxesSalesDocumentTaxAggregate | String | The TaxesSalesDocumentTaxAggregate column for the table SalesDocumentCommissions. |
TotalAmountCurrency | String | The TotalAmountCurrency column for the table SalesDocumentCommissions. |
TotalAmount | Decimal | The TotalAmount column for the table SalesDocumentCommissions. |
TrackingNumbersSalesTrackingNumberAggregate | String | The TrackingNumbersSalesTrackingNumberAggregate column for the table SalesDocumentCommissions. |
TradeDiscountItem | String | The TradeDiscountItem column for the table SalesDocumentCommissions. |
TransactionState | String | The TransactionState column for the table SalesDocumentCommissions. |
Type | String | The Type column for the table SalesDocumentCommissions. |
UPSZone | String | The UPSZone column for the table SalesDocumentCommissions. |
UserDefinedDate01 | Datetime | The UserDefinedDate01 column for the table SalesDocumentCommissions. |
UserDefinedDate02 | Datetime | The UserDefinedDate02 column for the table SalesDocumentCommissions. |
UserDefinedList01 | String | The UserDefinedList01 column for the table SalesDocumentCommissions. |
UserDefinedList02 | String | The UserDefinedList02 column for the table SalesDocumentCommissions. |
UserDefinedList03 | String | The UserDefinedList03 column for the table SalesDocumentCommissions. |
UserDefinedText01 | String | The UserDefinedText01 column for the table SalesDocumentCommissions. |
UserDefinedText02 | String | The UserDefinedText02 column for the table SalesDocumentCommissions. |
UserDefinedText03 | String | The UserDefinedText03 column for the table SalesDocumentCommissions. |
UserDefinedText04 | String | The UserDefinedText04 column for the table SalesDocumentCommissions. |
UserDefinedText05 | String | The UserDefinedText05 column for the table SalesDocumentCommissions. |
WarehouseId | String | The WarehouseId column for the table SalesDocumentCommissions. |
ExtensionsExtensionAggregate | String | The ExtensionsExtensionAggregate column for the table SalesDocumentCommissions. |
SalesDocumentFreightTaxes
The DynamicsGP table SalesDocumentFreightTaxes.
Columns
Name | Type | Description |
---|---|---|
FreightTaxesKeyTaxDetailId [KEY] | String | The FreightTaxesKeyTaxDetailId column for the table SalesDocumentFreightTaxes. |
FreightTaxesKeySequenceNumber [KEY] | Int32 | The FreightTaxesKeySequenceNumber column for the table SalesDocumentFreightTaxes. |
FreightTaxesKeySalesDocumentId [KEY] | String | The FreightTaxesKeySalesDocumentId column for the table SalesDocumentFreightTaxes. |
ActualShipDate | Datetime | The ActualShipDate column for the table SalesDocumentFreightTaxes. |
AuditTrailCode | String | The AuditTrailCode column for the table SalesDocumentFreightTaxes. |
BackorderDate | Datetime | The BackorderDate column for the table SalesDocumentFreightTaxes. |
BatchKeyCreatedDateTime | Datetime | The BatchKeyCreatedDateTime column for the table SalesDocumentFreightTaxes. |
BatchId | String | The BatchId column for the table SalesDocumentFreightTaxes. |
BatchKeySource | String | The BatchKeySource column for the table SalesDocumentFreightTaxes. |
BillToAddressKeyCustomerId | String | The BillToAddressKeyCustomerId column for the table SalesDocumentFreightTaxes. |
BillToAddressId | String | The BillToAddressId column for the table SalesDocumentFreightTaxes. |
Comment | String | The Comment column for the table SalesDocumentFreightTaxes. |
CommentId | String | The CommentId column for the table SalesDocumentFreightTaxes. |
CommissionAmountCurrency | String | The CommissionAmountCurrency column for the table SalesDocumentFreightTaxes. |
CommissionAmount | Decimal | The CommissionAmount column for the table SalesDocumentFreightTaxes. |
CommissionBasedOn | String | The CommissionBasedOn column for the table SalesDocumentFreightTaxes. |
CommissionSaleAmountCurrency | String | The CommissionSaleAmountCurrency column for the table SalesDocumentFreightTaxes. |
CommissionSaleAmount | Decimal | The CommissionSaleAmount column for the table SalesDocumentFreightTaxes. |
CommissionsSalesCommissionAggregate | String | The CommissionsSalesCommissionAggregate column for the table SalesDocumentFreightTaxes. |
CreatedBy | String | The CreatedBy column for the table SalesDocumentFreightTaxes. |
CreatedDate | Datetime | The CreatedDate column for the table SalesDocumentFreightTaxes. |
CurrencyKeyISOCode | String | The CurrencyKeyISOCode column for the table SalesDocumentFreightTaxes. |
CustomerId | String | The CustomerId column for the table SalesDocumentFreightTaxes. |
CustomerName | String | The CustomerName column for the table SalesDocumentFreightTaxes. |
CustomerPONumber | String | The CustomerPONumber column for the table SalesDocumentFreightTaxes. |
Date | Datetime | The Date column for the table SalesDocumentFreightTaxes. |
DiscountAmountCurrency | String | The DiscountAmountCurrency column for the table SalesDocumentFreightTaxes. |
DiscountAmount | Decimal | The DiscountAmount column for the table SalesDocumentFreightTaxes. |
DocumentTypeId | String | The DocumentTypeId column for the table SalesDocumentFreightTaxes. |
DocumentTypeKeyType | String | The DocumentTypeKeyType column for the table SalesDocumentFreightTaxes. |
ExchangeDate | Datetime | The ExchangeDate column for the table SalesDocumentFreightTaxes. |
ExchangeRate | Decimal | The ExchangeRate column for the table SalesDocumentFreightTaxes. |
FreightAmountCurrency | String | The FreightAmountCurrency column for the table SalesDocumentFreightTaxes. |
FreightAmount | Decimal | The FreightAmount column for the table SalesDocumentFreightTaxes. |
FreightTaxAmountCurrency | String | The FreightTaxAmountCurrency column for the table SalesDocumentFreightTaxes. |
FreightTaxAmount | Decimal | The FreightTaxAmount column for the table SalesDocumentFreightTaxes. |
FreightTaxBasis | String | The FreightTaxBasis column for the table SalesDocumentFreightTaxes. |
FreightTaxScheduleId | String | The FreightTaxScheduleId column for the table SalesDocumentFreightTaxes. |
FreightTaxesGLAccountId | String | The FreightTaxesGLAccountId column for the table SalesDocumentFreightTaxes. |
FreightTaxesGLAccountKeyIsEncrypted | Boolean | The FreightTaxesGLAccountKeyIsEncrypted column for the table SalesDocumentFreightTaxes. |
FreightTaxesIsTaxableTax | Boolean | The FreightTaxesIsTaxableTax column for the table SalesDocumentFreightTaxes. |
FreightTaxesTotalTaxPotentialAmountCurrency | String | The FreightTaxesTotalTaxPotentialAmountCurrency column for the table SalesDocumentFreightTaxes. |
FreightTaxesTotalTaxPotentialAmount | Decimal | The FreightTaxesTotalTaxPotentialAmount column for the table SalesDocumentFreightTaxes. |
FreightTaxesIsBackoutTax | Boolean | The FreightTaxesIsBackoutTax column for the table SalesDocumentFreightTaxes. |
FreightTaxesTaxAmountCurrency | String | The FreightTaxesTaxAmountCurrency column for the table SalesDocumentFreightTaxes. |
FreightTaxesTaxAmount | Decimal | The FreightTaxesTaxAmount column for the table SalesDocumentFreightTaxes. |
FreightTaxesTaxableAmountCurrency | String | The FreightTaxesTaxableAmountCurrency column for the table SalesDocumentFreightTaxes. |
FreightTaxesTaxableAmount | Decimal | The FreightTaxesTaxableAmount column for the table SalesDocumentFreightTaxes. |
FreightTaxesTotalAmountCurrency | String | The FreightTaxesTotalAmountCurrency column for the table SalesDocumentFreightTaxes. |
FreightTaxesTotalAmount | Decimal | The FreightTaxesTotalAmount column for the table SalesDocumentFreightTaxes. |
FreightTaxesExtensionsExtensionAggregate | String | The FreightTaxesExtensionsExtensionAggregate column for the table SalesDocumentFreightTaxes. |
FrontOfficeIntegrationId | String | The FrontOfficeIntegrationId column for the table SalesDocumentFreightTaxes. |
FulfillDate | Datetime | The FulfillDate column for the table SalesDocumentFreightTaxes. |
IntegrationId | String | The IntegrationId column for the table SalesDocumentFreightTaxes. |
IntegrationSource | Int32 | The IntegrationSource column for the table SalesDocumentFreightTaxes. |
InvoiceDate | Datetime | The InvoiceDate column for the table SalesDocumentFreightTaxes. |
IsIntrastatDocument | Boolean | The IsIntrastatDocument column for the table SalesDocumentFreightTaxes. |
IsVoided | Boolean | The IsVoided column for the table SalesDocumentFreightTaxes. |
Id | String | The ID column for the table SalesDocumentFreightTaxes. |
LastModifiedDate | Datetime | The LastModifiedDate column for the table SalesDocumentFreightTaxes. |
LineTotalAmountCurrency | String | The LineTotalAmountCurrency column for the table SalesDocumentFreightTaxes. |
LineTotalAmount | Decimal | The LineTotalAmount column for the table SalesDocumentFreightTaxes. |
MasterNumber | Int32 | The MasterNumber column for the table SalesDocumentFreightTaxes. |
MiscellaneousAmountCurrency | String | The MiscellaneousAmountCurrency column for the table SalesDocumentFreightTaxes. |
MiscellaneousAmount | Decimal | The MiscellaneousAmount column for the table SalesDocumentFreightTaxes. |
MiscellaneousTaxAmountCurrency | String | The MiscellaneousTaxAmountCurrency column for the table SalesDocumentFreightTaxes. |
MiscellaneousTaxAmount | Decimal | The MiscellaneousTaxAmount column for the table SalesDocumentFreightTaxes. |
MiscellaneousTaxBasis | String | The MiscellaneousTaxBasis column for the table SalesDocumentFreightTaxes. |
MiscellaneousTaxScheduleId | String | The MiscellaneousTaxScheduleId column for the table SalesDocumentFreightTaxes. |
MiscellaneousTaxesSalesDocumentTaxAggregate | String | The MiscellaneousTaxesSalesDocumentTaxAggregate column for the table SalesDocumentFreightTaxes. |
ModifiedDate | Datetime | The ModifiedDate column for the table SalesDocumentFreightTaxes. |
Note | String | The Note column for the table SalesDocumentFreightTaxes. |
OriginalSalesDocumentId | String | The OriginalSalesDocumentId column for the table SalesDocumentFreightTaxes. |
OriginalSalesDocumentType | String | The OriginalSalesDocumentType column for the table SalesDocumentFreightTaxes. |
PaymentTermsId | String | The PaymentTermsId column for the table SalesDocumentFreightTaxes. |
PriceLevelId | String | The PriceLevelId column for the table SalesDocumentFreightTaxes. |
ProcessHoldsSalesProcessHoldAggregate | String | The ProcessHoldsSalesProcessHoldAggregate column for the table SalesDocumentFreightTaxes. |
QuoteDate | Datetime | The QuoteDate column for the table SalesDocumentFreightTaxes. |
Reference | String | The Reference column for the table SalesDocumentFreightTaxes. |
RequestedShipDate | Datetime | The RequestedShipDate column for the table SalesDocumentFreightTaxes. |
ReturnDate | Datetime | The ReturnDate column for the table SalesDocumentFreightTaxes. |
SalesTerritoryId | String | The SalesTerritoryId column for the table SalesDocumentFreightTaxes. |
SalespersonId | String | The SalespersonId column for the table SalesDocumentFreightTaxes. |
ShipCompleteOnly | Boolean | The ShipCompleteOnly column for the table SalesDocumentFreightTaxes. |
ShipToAddressExtensionsExtensionAggregate | String | The ShipToAddressExtensionsExtensionAggregate column for the table SalesDocumentFreightTaxes. |
ShipToAddressCity | String | The ShipToAddressCity column for the table SalesDocumentFreightTaxes. |
ShipToAddressLine1 | String | The ShipToAddressLine1 column for the table SalesDocumentFreightTaxes. |
ShipToAddressLine2 | String | The ShipToAddressLine2 column for the table SalesDocumentFreightTaxes. |
ShipToAddressLine3 | String | The ShipToAddressLine3 column for the table SalesDocumentFreightTaxes. |
ShipToAddressPostalCode | String | The ShipToAddressPostalCode column for the table SalesDocumentFreightTaxes. |
ShipToAddressState | String | The ShipToAddressState column for the table SalesDocumentFreightTaxes. |
ShipToAddressCountryRegion | String | The ShipToAddressCountryRegion column for the table SalesDocumentFreightTaxes. |
ShipToAddressFaxCountryCode | String | The ShipToAddressFaxCountryCode column for the table SalesDocumentFreightTaxes. |
ShipToAddressFaxExtension | String | The ShipToAddressFaxExtension column for the table SalesDocumentFreightTaxes. |
ShipToAddressFax | String | The ShipToAddressFax column for the table SalesDocumentFreightTaxes. |
ShipToAddressPhone1CountryCode | String | The ShipToAddressPhone1CountryCode column for the table SalesDocumentFreightTaxes. |
ShipToAddressPhone1Extension | String | The ShipToAddressPhone1Extension column for the table SalesDocumentFreightTaxes. |
ShipToAddressPhone1 | String | The ShipToAddressPhone1 column for the table SalesDocumentFreightTaxes. |
ShipToAddressPhone2CountryCode | String | The ShipToAddressPhone2CountryCode column for the table SalesDocumentFreightTaxes. |
ShipToAddressPhone2Extension | String | The ShipToAddressPhone2Extension column for the table SalesDocumentFreightTaxes. |
ShipToAddressPhone2 | String | The ShipToAddressPhone2 column for the table SalesDocumentFreightTaxes. |
ShipToAddressPhone3CountryCode | String | The ShipToAddressPhone3CountryCode column for the table SalesDocumentFreightTaxes. |
ShipToAddressPhone3Extension | String | The ShipToAddressPhone3Extension column for the table SalesDocumentFreightTaxes. |
ShipToAddressPhone3 | String | The ShipToAddressPhone3 column for the table SalesDocumentFreightTaxes. |
ShipToAddressCountryRegionCodeId | String | The ShipToAddressCountryRegionCodeId column for the table SalesDocumentFreightTaxes. |
ShipToAddressContactPerson | String | The ShipToAddressContactPerson column for the table SalesDocumentFreightTaxes. |
ShipToAddressName | String | The ShipToAddressName column for the table SalesDocumentFreightTaxes. |
ShipToAddressKeyCustomerId | String | The ShipToAddressKeyCustomerId column for the table SalesDocumentFreightTaxes. |
ShipToAddressId | String | The ShipToAddressId column for the table SalesDocumentFreightTaxes. |
ShippingMethodId | String | The ShippingMethodId column for the table SalesDocumentFreightTaxes. |
TaxAmountCurrency | String | The TaxAmountCurrency column for the table SalesDocumentFreightTaxes. |
TaxAmount | Decimal | The TaxAmount column for the table SalesDocumentFreightTaxes. |
TaxExemptNumber1 | String | The TaxExemptNumber1 column for the table SalesDocumentFreightTaxes. |
TaxExemptNumber2 | String | The TaxExemptNumber2 column for the table SalesDocumentFreightTaxes. |
TaxRegistrationNumber | String | The TaxRegistrationNumber column for the table SalesDocumentFreightTaxes. |
TaxScheduleId | String | The TaxScheduleId column for the table SalesDocumentFreightTaxes. |
TaxesSalesDocumentTaxAggregate | String | The TaxesSalesDocumentTaxAggregate column for the table SalesDocumentFreightTaxes. |
TotalAmountCurrency | String | The TotalAmountCurrency column for the table SalesDocumentFreightTaxes. |
TotalAmount | Decimal | The TotalAmount column for the table SalesDocumentFreightTaxes. |
TrackingNumbersSalesTrackingNumberAggregate | String | The TrackingNumbersSalesTrackingNumberAggregate column for the table SalesDocumentFreightTaxes. |
TradeDiscountItem | String | The TradeDiscountItem column for the table SalesDocumentFreightTaxes. |
TransactionState | String | The TransactionState column for the table SalesDocumentFreightTaxes. |
Type | String | The Type column for the table SalesDocumentFreightTaxes. |
UPSZone | String | The UPSZone column for the table SalesDocumentFreightTaxes. |
UserDefinedDate01 | Datetime | The UserDefinedDate01 column for the table SalesDocumentFreightTaxes. |
UserDefinedDate02 | Datetime | The UserDefinedDate02 column for the table SalesDocumentFreightTaxes. |
UserDefinedList01 | String | The UserDefinedList01 column for the table SalesDocumentFreightTaxes. |
UserDefinedList02 | String | The UserDefinedList02 column for the table SalesDocumentFreightTaxes. |
UserDefinedList03 | String | The UserDefinedList03 column for the table SalesDocumentFreightTaxes. |
UserDefinedText01 | String | The UserDefinedText01 column for the table SalesDocumentFreightTaxes. |
UserDefinedText02 | String | The UserDefinedText02 column for the table SalesDocumentFreightTaxes. |
UserDefinedText03 | String | The UserDefinedText03 column for the table SalesDocumentFreightTaxes. |
UserDefinedText04 | String | The UserDefinedText04 column for the table SalesDocumentFreightTaxes. |
UserDefinedText05 | String | The UserDefinedText05 column for the table SalesDocumentFreightTaxes. |
WarehouseId | String | The WarehouseId column for the table SalesDocumentFreightTaxes. |
ExtensionsExtensionAggregate | String | The ExtensionsExtensionAggregate column for the table SalesDocumentFreightTaxes. |
SalesDocumentMiscellaneousTaxes
The DynamicsGP table SalesDocumentMiscellaneousTaxes.
Columns
Name | Type | Description |
---|---|---|
MiscellaneousTaxesKeyTaxDetailId [KEY] | String | The MiscellaneousTaxesKeyTaxDetailId column for the table SalesDocumentMiscellaneousTaxes. |
MiscellaneousTaxesKeySequenceNumber [KEY] | Int32 | The MiscellaneousTaxesKeySequenceNumber column for the table SalesDocumentMiscellaneousTaxes. |
MiscellaneousTaxesKeySalesDocumentId [KEY] | String | The MiscellaneousTaxesKeySalesDocumentId column for the table SalesDocumentMiscellaneousTaxes. |
ActualShipDate | Datetime | The ActualShipDate column for the table SalesDocumentMiscellaneousTaxes. |
AuditTrailCode | String | The AuditTrailCode column for the table SalesDocumentMiscellaneousTaxes. |
BackorderDate | Datetime | The BackorderDate column for the table SalesDocumentMiscellaneousTaxes. |
BatchKeyCreatedDateTime | Datetime | The BatchKeyCreatedDateTime column for the table SalesDocumentMiscellaneousTaxes. |
BatchId | String | The BatchId column for the table SalesDocumentMiscellaneousTaxes. |
BatchKeySource | String | The BatchKeySource column for the table SalesDocumentMiscellaneousTaxes. |
BillToAddressKeyCustomerId | String | The BillToAddressKeyCustomerId column for the table SalesDocumentMiscellaneousTaxes. |
BillToAddressId | String | The BillToAddressId column for the table SalesDocumentMiscellaneousTaxes. |
Comment | String | The Comment column for the table SalesDocumentMiscellaneousTaxes. |
CommentId | String | The CommentId column for the table SalesDocumentMiscellaneousTaxes. |
CommissionAmountCurrency | String | The CommissionAmountCurrency column for the table SalesDocumentMiscellaneousTaxes. |
CommissionAmount | Decimal | The CommissionAmount column for the table SalesDocumentMiscellaneousTaxes. |
CommissionBasedOn | String | The CommissionBasedOn column for the table SalesDocumentMiscellaneousTaxes. |
CommissionSaleAmountCurrency | String | The CommissionSaleAmountCurrency column for the table SalesDocumentMiscellaneousTaxes. |
CommissionSaleAmount | Decimal | The CommissionSaleAmount column for the table SalesDocumentMiscellaneousTaxes. |
CommissionsSalesCommissionAggregate | String | The CommissionsSalesCommissionAggregate column for the table SalesDocumentMiscellaneousTaxes. |
CreatedBy | String | The CreatedBy column for the table SalesDocumentMiscellaneousTaxes. |
CreatedDate | Datetime | The CreatedDate column for the table SalesDocumentMiscellaneousTaxes. |
CurrencyKeyISOCode | String | The CurrencyKeyISOCode column for the table SalesDocumentMiscellaneousTaxes. |
CustomerId | String | The CustomerId column for the table SalesDocumentMiscellaneousTaxes. |
CustomerName | String | The CustomerName column for the table SalesDocumentMiscellaneousTaxes. |
CustomerPONumber | String | The CustomerPONumber column for the table SalesDocumentMiscellaneousTaxes. |
Date | Datetime | The Date column for the table SalesDocumentMiscellaneousTaxes. |
DiscountAmountCurrency | String | The DiscountAmountCurrency column for the table SalesDocumentMiscellaneousTaxes. |
DiscountAmount | Decimal | The DiscountAmount column for the table SalesDocumentMiscellaneousTaxes. |
DocumentTypeId | String | The DocumentTypeId column for the table SalesDocumentMiscellaneousTaxes. |
DocumentTypeKeyType | String | The DocumentTypeKeyType column for the table SalesDocumentMiscellaneousTaxes. |
ExchangeDate | Datetime | The ExchangeDate column for the table SalesDocumentMiscellaneousTaxes. |
ExchangeRate | Decimal | The ExchangeRate column for the table SalesDocumentMiscellaneousTaxes. |
FreightAmountCurrency | String | The FreightAmountCurrency column for the table SalesDocumentMiscellaneousTaxes. |
FreightAmount | Decimal | The FreightAmount column for the table SalesDocumentMiscellaneousTaxes. |
FreightTaxAmountCurrency | String | The FreightTaxAmountCurrency column for the table SalesDocumentMiscellaneousTaxes. |
FreightTaxAmount | Decimal | The FreightTaxAmount column for the table SalesDocumentMiscellaneousTaxes. |
FreightTaxBasis | String | The FreightTaxBasis column for the table SalesDocumentMiscellaneousTaxes. |
FreightTaxScheduleId | String | The FreightTaxScheduleId column for the table SalesDocumentMiscellaneousTaxes. |
FreightTaxesSalesDocumentTaxAggregate | String | The FreightTaxesSalesDocumentTaxAggregate column for the table SalesDocumentMiscellaneousTaxes. |
FrontOfficeIntegrationId | String | The FrontOfficeIntegrationId column for the table SalesDocumentMiscellaneousTaxes. |
FulfillDate | Datetime | The FulfillDate column for the table SalesDocumentMiscellaneousTaxes. |
IntegrationId | String | The IntegrationId column for the table SalesDocumentMiscellaneousTaxes. |
IntegrationSource | Int32 | The IntegrationSource column for the table SalesDocumentMiscellaneousTaxes. |
InvoiceDate | Datetime | The InvoiceDate column for the table SalesDocumentMiscellaneousTaxes. |
IsIntrastatDocument | Boolean | The IsIntrastatDocument column for the table SalesDocumentMiscellaneousTaxes. |
IsVoided | Boolean | The IsVoided column for the table SalesDocumentMiscellaneousTaxes. |
Id | String | The ID column for the table SalesDocumentMiscellaneousTaxes. |
LastModifiedDate | Datetime | The LastModifiedDate column for the table SalesDocumentMiscellaneousTaxes. |
LineTotalAmountCurrency | String | The LineTotalAmountCurrency column for the table SalesDocumentMiscellaneousTaxes. |
LineTotalAmount | Decimal | The LineTotalAmount column for the table SalesDocumentMiscellaneousTaxes. |
MasterNumber | Int32 | The MasterNumber column for the table SalesDocumentMiscellaneousTaxes. |
MiscellaneousAmountCurrency | String | The MiscellaneousAmountCurrency column for the table SalesDocumentMiscellaneousTaxes. |
MiscellaneousAmount | Decimal | The MiscellaneousAmount column for the table SalesDocumentMiscellaneousTaxes. |
MiscellaneousTaxAmountCurrency | String | The MiscellaneousTaxAmountCurrency column for the table SalesDocumentMiscellaneousTaxes. |
MiscellaneousTaxAmount | Decimal | The MiscellaneousTaxAmount column for the table SalesDocumentMiscellaneousTaxes. |
MiscellaneousTaxBasis | String | The MiscellaneousTaxBasis column for the table SalesDocumentMiscellaneousTaxes. |
MiscellaneousTaxScheduleId | String | The MiscellaneousTaxScheduleId column for the table SalesDocumentMiscellaneousTaxes. |
MiscellaneousTaxesGLAccountId | String | The MiscellaneousTaxesGLAccountId column for the table SalesDocumentMiscellaneousTaxes. |
MiscellaneousTaxesGLAccountKeyIsEncrypted | Boolean | The MiscellaneousTaxesGLAccountKeyIsEncrypted column for the table SalesDocumentMiscellaneousTaxes. |
MiscellaneousTaxesIsTaxableTax | Boolean | The MiscellaneousTaxesIsTaxableTax column for the table SalesDocumentMiscellaneousTaxes. |
MiscellaneousTaxesTotalTaxPotentialAmountCurrency | String | The MiscellaneousTaxesTotalTaxPotentialAmountCurrency column for the table SalesDocumentMiscellaneousTaxes. |
MiscellaneousTaxesTotalTaxPotentialAmount | Decimal | The MiscellaneousTaxesTotalTaxPotentialAmount column for the table SalesDocumentMiscellaneousTaxes. |
MiscellaneousTaxesIsBackoutTax | Boolean | The MiscellaneousTaxesIsBackoutTax column for the table SalesDocumentMiscellaneousTaxes. |
MiscellaneousTaxesTaxAmountCurrency | String | The MiscellaneousTaxesTaxAmountCurrency column for the table SalesDocumentMiscellaneousTaxes. |
MiscellaneousTaxesTaxAmount | Decimal | The MiscellaneousTaxesTaxAmount column for the table SalesDocumentMiscellaneousTaxes. |
MiscellaneousTaxesTaxableAmountCurrency | String | The MiscellaneousTaxesTaxableAmountCurrency column for the table SalesDocumentMiscellaneousTaxes. |
MiscellaneousTaxesTaxableAmount | Decimal | The MiscellaneousTaxesTaxableAmount column for the table SalesDocumentMiscellaneousTaxes. |
MiscellaneousTaxesTotalAmountCurrency | String | The MiscellaneousTaxesTotalAmountCurrency column for the table SalesDocumentMiscellaneousTaxes. |
MiscellaneousTaxesTotalAmount | Decimal | The MiscellaneousTaxesTotalAmount column for the table SalesDocumentMiscellaneousTaxes. |
MiscellaneousTaxesExtensionsExtensionAggregate | String | The MiscellaneousTaxesExtensionsExtensionAggregate column for the table SalesDocumentMiscellaneousTaxes. |
ModifiedDate | Datetime | The ModifiedDate column for the table SalesDocumentMiscellaneousTaxes. |
Note | String | The Note column for the table SalesDocumentMiscellaneousTaxes. |
OriginalSalesDocumentId | String | The OriginalSalesDocumentId column for the table SalesDocumentMiscellaneousTaxes. |
OriginalSalesDocumentType | String | The OriginalSalesDocumentType column for the table SalesDocumentMiscellaneousTaxes. |
PaymentTermsId | String | The PaymentTermsId column for the table SalesDocumentMiscellaneousTaxes. |
PriceLevelId | String | The PriceLevelId column for the table SalesDocumentMiscellaneousTaxes. |
ProcessHoldsSalesProcessHoldAggregate | String | The ProcessHoldsSalesProcessHoldAggregate column for the table SalesDocumentMiscellaneousTaxes. |
QuoteDate | Datetime | The QuoteDate column for the table SalesDocumentMiscellaneousTaxes. |
Reference | String | The Reference column for the table SalesDocumentMiscellaneousTaxes. |
RequestedShipDate | Datetime | The RequestedShipDate column for the table SalesDocumentMiscellaneousTaxes. |
ReturnDate | Datetime | The ReturnDate column for the table SalesDocumentMiscellaneousTaxes. |
SalesTerritoryId | String | The SalesTerritoryId column for the table SalesDocumentMiscellaneousTaxes. |
SalespersonId | String | The SalespersonId column for the table SalesDocumentMiscellaneousTaxes. |
ShipCompleteOnly | Boolean | The ShipCompleteOnly column for the table SalesDocumentMiscellaneousTaxes. |
ShipToAddressExtensionsExtensionAggregate | String | The ShipToAddressExtensionsExtensionAggregate column for the table SalesDocumentMiscellaneousTaxes. |
ShipToAddressCity | String | The ShipToAddressCity column for the table SalesDocumentMiscellaneousTaxes. |
ShipToAddressLine1 | String | The ShipToAddressLine1 column for the table SalesDocumentMiscellaneousTaxes. |
ShipToAddressLine2 | String | The ShipToAddressLine2 column for the table SalesDocumentMiscellaneousTaxes. |
ShipToAddressLine3 | String | The ShipToAddressLine3 column for the table SalesDocumentMiscellaneousTaxes. |
ShipToAddressPostalCode | String | The ShipToAddressPostalCode column for the table SalesDocumentMiscellaneousTaxes. |
ShipToAddressState | String | The ShipToAddressState column for the table SalesDocumentMiscellaneousTaxes. |
ShipToAddressCountryRegion | String | The ShipToAddressCountryRegion column for the table SalesDocumentMiscellaneousTaxes. |
ShipToAddressFaxCountryCode | String | The ShipToAddressFaxCountryCode column for the table SalesDocumentMiscellaneousTaxes. |
ShipToAddressFaxExtension | String | The ShipToAddressFaxExtension column for the table SalesDocumentMiscellaneousTaxes. |
ShipToAddressFax | String | The ShipToAddressFax column for the table SalesDocumentMiscellaneousTaxes. |
ShipToAddressPhone1CountryCode | String | The ShipToAddressPhone1CountryCode column for the table SalesDocumentMiscellaneousTaxes. |
ShipToAddressPhone1Extension | String | The ShipToAddressPhone1Extension column for the table SalesDocumentMiscellaneousTaxes. |
ShipToAddressPhone1 | String | The ShipToAddressPhone1 column for the table SalesDocumentMiscellaneousTaxes. |
ShipToAddressPhone2CountryCode | String | The ShipToAddressPhone2CountryCode column for the table SalesDocumentMiscellaneousTaxes. |
ShipToAddressPhone2Extension | String | The ShipToAddressPhone2Extension column for the table SalesDocumentMiscellaneousTaxes. |
ShipToAddressPhone2 | String | The ShipToAddressPhone2 column for the table SalesDocumentMiscellaneousTaxes. |
ShipToAddressPhone3CountryCode | String | The ShipToAddressPhone3CountryCode column for the table SalesDocumentMiscellaneousTaxes. |
ShipToAddressPhone3Extension | String | The ShipToAddressPhone3Extension column for the table SalesDocumentMiscellaneousTaxes. |
ShipToAddressPhone3 | String | The ShipToAddressPhone3 column for the table SalesDocumentMiscellaneousTaxes. |
ShipToAddressCountryRegionCodeId | String | The ShipToAddressCountryRegionCodeId column for the table SalesDocumentMiscellaneousTaxes. |
ShipToAddressContactPerson | String | The ShipToAddressContactPerson column for the table SalesDocumentMiscellaneousTaxes. |
ShipToAddressName | String | The ShipToAddressName column for the table SalesDocumentMiscellaneousTaxes. |
ShipToAddressKeyCustomerId | String | The ShipToAddressKeyCustomerId column for the table SalesDocumentMiscellaneousTaxes. |
ShipToAddressId | String | The ShipToAddressId column for the table SalesDocumentMiscellaneousTaxes. |
ShippingMethodId | String | The ShippingMethodId column for the table SalesDocumentMiscellaneousTaxes. |
TaxAmountCurrency | String | The TaxAmountCurrency column for the table SalesDocumentMiscellaneousTaxes. |
TaxAmount | Decimal | The TaxAmount column for the table SalesDocumentMiscellaneousTaxes. |
TaxExemptNumber1 | String | The TaxExemptNumber1 column for the table SalesDocumentMiscellaneousTaxes. |
TaxExemptNumber2 | String | The TaxExemptNumber2 column for the table SalesDocumentMiscellaneousTaxes. |
TaxRegistrationNumber | String | The TaxRegistrationNumber column for the table SalesDocumentMiscellaneousTaxes. |
TaxScheduleId | String | The TaxScheduleId column for the table SalesDocumentMiscellaneousTaxes. |
TaxesSalesDocumentTaxAggregate | String | The TaxesSalesDocumentTaxAggregate column for the table SalesDocumentMiscellaneousTaxes. |
TotalAmountCurrency | String | The TotalAmountCurrency column for the table SalesDocumentMiscellaneousTaxes. |
TotalAmount | Decimal | The TotalAmount column for the table SalesDocumentMiscellaneousTaxes. |
TrackingNumbersSalesTrackingNumberAggregate | String | The TrackingNumbersSalesTrackingNumberAggregate column for the table SalesDocumentMiscellaneousTaxes. |
TradeDiscountItem | String | The TradeDiscountItem column for the table SalesDocumentMiscellaneousTaxes. |
TransactionState | String | The TransactionState column for the table SalesDocumentMiscellaneousTaxes. |
Type | String | The Type column for the table SalesDocumentMiscellaneousTaxes. |
UPSZone | String | The UPSZone column for the table SalesDocumentMiscellaneousTaxes. |
UserDefinedDate01 | Datetime | The UserDefinedDate01 column for the table SalesDocumentMiscellaneousTaxes. |
UserDefinedDate02 | Datetime | The UserDefinedDate02 column for the table SalesDocumentMiscellaneousTaxes. |
UserDefinedList01 | String | The UserDefinedList01 column for the table SalesDocumentMiscellaneousTaxes. |
UserDefinedList02 | String | The UserDefinedList02 column for the table SalesDocumentMiscellaneousTaxes. |
UserDefinedList03 | String | The UserDefinedList03 column for the table SalesDocumentMiscellaneousTaxes. |
UserDefinedText01 | String | The UserDefinedText01 column for the table SalesDocumentMiscellaneousTaxes. |
UserDefinedText02 | String | The UserDefinedText02 column for the table SalesDocumentMiscellaneousTaxes. |
UserDefinedText03 | String | The UserDefinedText03 column for the table SalesDocumentMiscellaneousTaxes. |
UserDefinedText04 | String | The UserDefinedText04 column for the table SalesDocumentMiscellaneousTaxes. |
UserDefinedText05 | String | The UserDefinedText05 column for the table SalesDocumentMiscellaneousTaxes. |
WarehouseId | String | The WarehouseId column for the table SalesDocumentMiscellaneousTaxes. |
ExtensionsExtensionAggregate | String | The ExtensionsExtensionAggregate column for the table SalesDocumentMiscellaneousTaxes. |
SalesDocumentProcessHolds
The DynamicsGP table SalesDocumentProcessHolds.
Columns
Name | Type | Description |
---|---|---|
ProcessHoldsKeySalesProcessHoldSetupId [KEY] | String | The ProcessHoldsKeySalesProcessHoldSetupId column for the table SalesDocumentProcessHolds. |
ProcessHoldsKeySalesDocumentId [KEY] | String | The ProcessHoldsKeySalesDocumentId column for the table SalesDocumentProcessHolds. |
ActualShipDate | Datetime | The ActualShipDate column for the table SalesDocumentProcessHolds. |
AuditTrailCode | String | The AuditTrailCode column for the table SalesDocumentProcessHolds. |
BackorderDate | Datetime | The BackorderDate column for the table SalesDocumentProcessHolds. |
BatchKeyCreatedDateTime | Datetime | The BatchKeyCreatedDateTime column for the table SalesDocumentProcessHolds. |
BatchId | String | The BatchId column for the table SalesDocumentProcessHolds. |
BatchKeySource | String | The BatchKeySource column for the table SalesDocumentProcessHolds. |
BillToAddressKeyCustomerId | String | The BillToAddressKeyCustomerId column for the table SalesDocumentProcessHolds. |
BillToAddressId | String | The BillToAddressId column for the table SalesDocumentProcessHolds. |
Comment | String | The Comment column for the table SalesDocumentProcessHolds. |
CommentId | String | The CommentId column for the table SalesDocumentProcessHolds. |
CommissionAmountCurrency | String | The CommissionAmountCurrency column for the table SalesDocumentProcessHolds. |
CommissionAmount | Decimal | The CommissionAmount column for the table SalesDocumentProcessHolds. |
CommissionBasedOn | String | The CommissionBasedOn column for the table SalesDocumentProcessHolds. |
CommissionSaleAmountCurrency | String | The CommissionSaleAmountCurrency column for the table SalesDocumentProcessHolds. |
CommissionSaleAmount | Decimal | The CommissionSaleAmount column for the table SalesDocumentProcessHolds. |
CommissionsSalesCommissionAggregate | String | The CommissionsSalesCommissionAggregate column for the table SalesDocumentProcessHolds. |
CreatedBy | String | The CreatedBy column for the table SalesDocumentProcessHolds. |
CreatedDate | Datetime | The CreatedDate column for the table SalesDocumentProcessHolds. |
CurrencyKeyISOCode | String | The CurrencyKeyISOCode column for the table SalesDocumentProcessHolds. |
CustomerId | String | The CustomerId column for the table SalesDocumentProcessHolds. |
CustomerName | String | The CustomerName column for the table SalesDocumentProcessHolds. |
CustomerPONumber | String | The CustomerPONumber column for the table SalesDocumentProcessHolds. |
Date | Datetime | The Date column for the table SalesDocumentProcessHolds. |
DiscountAmountCurrency | String | The DiscountAmountCurrency column for the table SalesDocumentProcessHolds. |
DiscountAmount | Decimal | The DiscountAmount column for the table SalesDocumentProcessHolds. |
DocumentTypeId | String | The DocumentTypeId column for the table SalesDocumentProcessHolds. |
DocumentTypeKeyType | String | The DocumentTypeKeyType column for the table SalesDocumentProcessHolds. |
ExchangeDate | Datetime | The ExchangeDate column for the table SalesDocumentProcessHolds. |
ExchangeRate | Decimal | The ExchangeRate column for the table SalesDocumentProcessHolds. |
FreightAmountCurrency | String | The FreightAmountCurrency column for the table SalesDocumentProcessHolds. |
FreightAmount | Decimal | The FreightAmount column for the table SalesDocumentProcessHolds. |
FreightTaxAmountCurrency | String | The FreightTaxAmountCurrency column for the table SalesDocumentProcessHolds. |
FreightTaxAmount | Decimal | The FreightTaxAmount column for the table SalesDocumentProcessHolds. |
FreightTaxBasis | String | The FreightTaxBasis column for the table SalesDocumentProcessHolds. |
FreightTaxScheduleId | String | The FreightTaxScheduleId column for the table SalesDocumentProcessHolds. |
FreightTaxesSalesDocumentTaxAggregate | String | The FreightTaxesSalesDocumentTaxAggregate column for the table SalesDocumentProcessHolds. |
FrontOfficeIntegrationId | String | The FrontOfficeIntegrationId column for the table SalesDocumentProcessHolds. |
FulfillDate | Datetime | The FulfillDate column for the table SalesDocumentProcessHolds. |
IntegrationId | String | The IntegrationId column for the table SalesDocumentProcessHolds. |
IntegrationSource | Int32 | The IntegrationSource column for the table SalesDocumentProcessHolds. |
InvoiceDate | Datetime | The InvoiceDate column for the table SalesDocumentProcessHolds. |
IsIntrastatDocument | Boolean | The IsIntrastatDocument column for the table SalesDocumentProcessHolds. |
IsVoided | Boolean | The IsVoided column for the table SalesDocumentProcessHolds. |
Id | String | The ID column for the table SalesDocumentProcessHolds. |
LastModifiedDate | Datetime | The LastModifiedDate column for the table SalesDocumentProcessHolds. |
LineTotalAmountCurrency | String | The LineTotalAmountCurrency column for the table SalesDocumentProcessHolds. |
LineTotalAmount | Decimal | The LineTotalAmount column for the table SalesDocumentProcessHolds. |
MasterNumber | Int32 | The MasterNumber column for the table SalesDocumentProcessHolds. |
MiscellaneousAmountCurrency | String | The MiscellaneousAmountCurrency column for the table SalesDocumentProcessHolds. |
MiscellaneousAmount | Decimal | The MiscellaneousAmount column for the table SalesDocumentProcessHolds. |
MiscellaneousTaxAmountCurrency | String | The MiscellaneousTaxAmountCurrency column for the table SalesDocumentProcessHolds. |
MiscellaneousTaxAmount | Decimal | The MiscellaneousTaxAmount column for the table SalesDocumentProcessHolds. |
MiscellaneousTaxBasis | String | The MiscellaneousTaxBasis column for the table SalesDocumentProcessHolds. |
MiscellaneousTaxScheduleId | String | The MiscellaneousTaxScheduleId column for the table SalesDocumentProcessHolds. |
MiscellaneousTaxesSalesDocumentTaxAggregate | String | The MiscellaneousTaxesSalesDocumentTaxAggregate column for the table SalesDocumentProcessHolds. |
ModifiedDate | Datetime | The ModifiedDate column for the table SalesDocumentProcessHolds. |
Note | String | The Note column for the table SalesDocumentProcessHolds. |
OriginalSalesDocumentId | String | The OriginalSalesDocumentId column for the table SalesDocumentProcessHolds. |
OriginalSalesDocumentType | String | The OriginalSalesDocumentType column for the table SalesDocumentProcessHolds. |
PaymentTermsId | String | The PaymentTermsId column for the table SalesDocumentProcessHolds. |
PriceLevelId | String | The PriceLevelId column for the table SalesDocumentProcessHolds. |
ProcessHoldsDeleteOnUpdate | Boolean | The ProcessHoldsDeleteOnUpdate column for the table SalesDocumentProcessHolds. |
ProcessHoldsDescription | String | The ProcessHoldsDescription column for the table SalesDocumentProcessHolds. |
ProcessHoldsHoldDateTime | Datetime | The ProcessHoldsHoldDateTime column for the table SalesDocumentProcessHolds. |
ProcessHoldsIsDeleted | Boolean | The ProcessHoldsIsDeleted column for the table SalesDocumentProcessHolds. |
ProcessHoldsIsFulfillHold | Boolean | The ProcessHoldsIsFulfillHold column for the table SalesDocumentProcessHolds. |
ProcessHoldsIsPostHold | Boolean | The ProcessHoldsIsPostHold column for the table SalesDocumentProcessHolds. |
ProcessHoldsIsPrintHold | Boolean | The ProcessHoldsIsPrintHold column for the table SalesDocumentProcessHolds. |
ProcessHoldsIsTransferHold | Boolean | The ProcessHoldsIsTransferHold column for the table SalesDocumentProcessHolds. |
ProcessHoldsPassword | String | The ProcessHoldsPassword column for the table SalesDocumentProcessHolds. |
ProcessHoldsUser | String | The ProcessHoldsUser column for the table SalesDocumentProcessHolds. |
ProcessHoldsExtensionsExtensionAggregate | String | The ProcessHoldsExtensionsExtensionAggregate column for the table SalesDocumentProcessHolds. |
QuoteDate | Datetime | The QuoteDate column for the table SalesDocumentProcessHolds. |
Reference | String | The Reference column for the table SalesDocumentProcessHolds. |
RequestedShipDate | Datetime | The RequestedShipDate column for the table SalesDocumentProcessHolds. |
ReturnDate | Datetime | The ReturnDate column for the table SalesDocumentProcessHolds. |
SalesTerritoryId | String | The SalesTerritoryId column for the table SalesDocumentProcessHolds. |
SalespersonId | String | The SalespersonId column for the table SalesDocumentProcessHolds. |
ShipCompleteOnly | Boolean | The ShipCompleteOnly column for the table SalesDocumentProcessHolds. |
ShipToAddressExtensionsExtensionAggregate | String | The ShipToAddressExtensionsExtensionAggregate column for the table SalesDocumentProcessHolds. |
ShipToAddressCity | String | The ShipToAddressCity column for the table SalesDocumentProcessHolds. |
ShipToAddressLine1 | String | The ShipToAddressLine1 column for the table SalesDocumentProcessHolds. |
ShipToAddressLine2 | String | The ShipToAddressLine2 column for the table SalesDocumentProcessHolds. |
ShipToAddressLine3 | String | The ShipToAddressLine3 column for the table SalesDocumentProcessHolds. |
ShipToAddressPostalCode | String | The ShipToAddressPostalCode column for the table SalesDocumentProcessHolds. |
ShipToAddressState | String | The ShipToAddressState column for the table SalesDocumentProcessHolds. |
ShipToAddressCountryRegion | String | The ShipToAddressCountryRegion column for the table SalesDocumentProcessHolds. |
ShipToAddressFaxCountryCode | String | The ShipToAddressFaxCountryCode column for the table SalesDocumentProcessHolds. |
ShipToAddressFaxExtension | String | The ShipToAddressFaxExtension column for the table SalesDocumentProcessHolds. |
ShipToAddressFax | String | The ShipToAddressFax column for the table SalesDocumentProcessHolds. |
ShipToAddressPhone1CountryCode | String | The ShipToAddressPhone1CountryCode column for the table SalesDocumentProcessHolds. |
ShipToAddressPhone1Extension | String | The ShipToAddressPhone1Extension column for the table SalesDocumentProcessHolds. |
ShipToAddressPhone1 | String | The ShipToAddressPhone1 column for the table SalesDocumentProcessHolds. |
ShipToAddressPhone2CountryCode | String | The ShipToAddressPhone2CountryCode column for the table SalesDocumentProcessHolds. |
ShipToAddressPhone2Extension | String | The ShipToAddressPhone2Extension column for the table SalesDocumentProcessHolds. |
ShipToAddressPhone2 | String | The ShipToAddressPhone2 column for the table SalesDocumentProcessHolds. |
ShipToAddressPhone3CountryCode | String | The ShipToAddressPhone3CountryCode column for the table SalesDocumentProcessHolds. |
ShipToAddressPhone3Extension | String | The ShipToAddressPhone3Extension column for the table SalesDocumentProcessHolds. |
ShipToAddressPhone3 | String | The ShipToAddressPhone3 column for the table SalesDocumentProcessHolds. |
ShipToAddressCountryRegionCodeId | String | The ShipToAddressCountryRegionCodeId column for the table SalesDocumentProcessHolds. |
ShipToAddressContactPerson | String | The ShipToAddressContactPerson column for the table SalesDocumentProcessHolds. |
ShipToAddressName | String | The ShipToAddressName column for the table SalesDocumentProcessHolds. |
ShipToAddressKeyCustomerId | String | The ShipToAddressKeyCustomerId column for the table SalesDocumentProcessHolds. |
ShipToAddressId | String | The ShipToAddressId column for the table SalesDocumentProcessHolds. |
ShippingMethodId | String | The ShippingMethodId column for the table SalesDocumentProcessHolds. |
TaxAmountCurrency | String | The TaxAmountCurrency column for the table SalesDocumentProcessHolds. |
TaxAmount | Decimal | The TaxAmount column for the table SalesDocumentProcessHolds. |
TaxExemptNumber1 | String | The TaxExemptNumber1 column for the table SalesDocumentProcessHolds. |
TaxExemptNumber2 | String | The TaxExemptNumber2 column for the table SalesDocumentProcessHolds. |
TaxRegistrationNumber | String | The TaxRegistrationNumber column for the table SalesDocumentProcessHolds. |
TaxScheduleId | String | The TaxScheduleId column for the table SalesDocumentProcessHolds. |
TaxesSalesDocumentTaxAggregate | String | The TaxesSalesDocumentTaxAggregate column for the table SalesDocumentProcessHolds. |
TotalAmountCurrency | String | The TotalAmountCurrency column for the table SalesDocumentProcessHolds. |
TotalAmount | Decimal | The TotalAmount column for the table SalesDocumentProcessHolds. |
TrackingNumbersSalesTrackingNumberAggregate | String | The TrackingNumbersSalesTrackingNumberAggregate column for the table SalesDocumentProcessHolds. |
TradeDiscountItem | String | The TradeDiscountItem column for the table SalesDocumentProcessHolds. |
TransactionState | String | The TransactionState column for the table SalesDocumentProcessHolds. |
Type | String | The Type column for the table SalesDocumentProcessHolds. |
UPSZone | String | The UPSZone column for the table SalesDocumentProcessHolds. |
UserDefinedDate01 | Datetime | The UserDefinedDate01 column for the table SalesDocumentProcessHolds. |
UserDefinedDate02 | Datetime | The UserDefinedDate02 column for the table SalesDocumentProcessHolds. |
UserDefinedList01 | String | The UserDefinedList01 column for the table SalesDocumentProcessHolds. |
UserDefinedList02 | String | The UserDefinedList02 column for the table SalesDocumentProcessHolds. |
UserDefinedList03 | String | The UserDefinedList03 column for the table SalesDocumentProcessHolds. |
UserDefinedText01 | String | The UserDefinedText01 column for the table SalesDocumentProcessHolds. |
UserDefinedText02 | String | The UserDefinedText02 column for the table SalesDocumentProcessHolds. |
UserDefinedText03 | String | The UserDefinedText03 column for the table SalesDocumentProcessHolds. |
UserDefinedText04 | String | The UserDefinedText04 column for the table SalesDocumentProcessHolds. |
UserDefinedText05 | String | The UserDefinedText05 column for the table SalesDocumentProcessHolds. |
WarehouseId | String | The WarehouseId column for the table SalesDocumentProcessHolds. |
ExtensionsExtensionAggregate | String | The ExtensionsExtensionAggregate column for the table SalesDocumentProcessHolds. |
SalesDocumentTaxes
The DynamicsGP table SalesDocumentTaxes.
Columns
Name | Type | Description |
---|---|---|
TaxesKeyTaxDetailId [KEY] | String | The TaxesKeyTaxDetailId column for the table SalesDocumentTaxes. |
TaxesKeySequenceNumber [KEY] | Int32 | The TaxesKeySequenceNumber column for the table SalesDocumentTaxes. |
TaxesKeySalesDocumentId [KEY] | String | The TaxesKeySalesDocumentId column for the table SalesDocumentTaxes. |
ActualShipDate | Datetime | The ActualShipDate column for the table SalesDocumentTaxes. |
AuditTrailCode | String | The AuditTrailCode column for the table SalesDocumentTaxes. |
BackorderDate | Datetime | The BackorderDate column for the table SalesDocumentTaxes. |
BatchKeyCreatedDateTime | Datetime | The BatchKeyCreatedDateTime column for the table SalesDocumentTaxes. |
BatchId | String | The BatchId column for the table SalesDocumentTaxes. |
BatchKeySource | String | The BatchKeySource column for the table SalesDocumentTaxes. |
BillToAddressKeyCustomerId | String | The BillToAddressKeyCustomerId column for the table SalesDocumentTaxes. |
BillToAddressId | String | The BillToAddressId column for the table SalesDocumentTaxes. |
Comment | String | The Comment column for the table SalesDocumentTaxes. |
CommentId | String | The CommentId column for the table SalesDocumentTaxes. |
CommissionAmountCurrency | String | The CommissionAmountCurrency column for the table SalesDocumentTaxes. |
CommissionAmount | Decimal | The CommissionAmount column for the table SalesDocumentTaxes. |
CommissionBasedOn | String | The CommissionBasedOn column for the table SalesDocumentTaxes. |
CommissionSaleAmountCurrency | String | The CommissionSaleAmountCurrency column for the table SalesDocumentTaxes. |
CommissionSaleAmount | Decimal | The CommissionSaleAmount column for the table SalesDocumentTaxes. |
CommissionsSalesCommissionAggregate | String | The CommissionsSalesCommissionAggregate column for the table SalesDocumentTaxes. |
CreatedBy | String | The CreatedBy column for the table SalesDocumentTaxes. |
CreatedDate | Datetime | The CreatedDate column for the table SalesDocumentTaxes. |
CurrencyKeyISOCode | String | The CurrencyKeyISOCode column for the table SalesDocumentTaxes. |
CustomerId | String | The CustomerId column for the table SalesDocumentTaxes. |
CustomerName | String | The CustomerName column for the table SalesDocumentTaxes. |
CustomerPONumber | String | The CustomerPONumber column for the table SalesDocumentTaxes. |
Date | Datetime | The Date column for the table SalesDocumentTaxes. |
DiscountAmountCurrency | String | The DiscountAmountCurrency column for the table SalesDocumentTaxes. |
DiscountAmount | Decimal | The DiscountAmount column for the table SalesDocumentTaxes. |
DocumentTypeId | String | The DocumentTypeId column for the table SalesDocumentTaxes. |
DocumentTypeKeyType | String | The DocumentTypeKeyType column for the table SalesDocumentTaxes. |
ExchangeDate | Datetime | The ExchangeDate column for the table SalesDocumentTaxes. |
ExchangeRate | Decimal | The ExchangeRate column for the table SalesDocumentTaxes. |
FreightAmountCurrency | String | The FreightAmountCurrency column for the table SalesDocumentTaxes. |
FreightAmount | Decimal | The FreightAmount column for the table SalesDocumentTaxes. |
FreightTaxAmountCurrency | String | The FreightTaxAmountCurrency column for the table SalesDocumentTaxes. |
FreightTaxAmount | Decimal | The FreightTaxAmount column for the table SalesDocumentTaxes. |
FreightTaxBasis | String | The FreightTaxBasis column for the table SalesDocumentTaxes. |
FreightTaxScheduleId | String | The FreightTaxScheduleId column for the table SalesDocumentTaxes. |
FreightTaxesSalesDocumentTaxAggregate | String | The FreightTaxesSalesDocumentTaxAggregate column for the table SalesDocumentTaxes. |
FrontOfficeIntegrationId | String | The FrontOfficeIntegrationId column for the table SalesDocumentTaxes. |
FulfillDate | Datetime | The FulfillDate column for the table SalesDocumentTaxes. |
IntegrationId | String | The IntegrationId column for the table SalesDocumentTaxes. |
IntegrationSource | Int32 | The IntegrationSource column for the table SalesDocumentTaxes. |
InvoiceDate | Datetime | The InvoiceDate column for the table SalesDocumentTaxes. |
IsIntrastatDocument | Boolean | The IsIntrastatDocument column for the table SalesDocumentTaxes. |
IsVoided | Boolean | The IsVoided column for the table SalesDocumentTaxes. |
Id | String | The ID column for the table SalesDocumentTaxes. |
LastModifiedDate | Datetime | The LastModifiedDate column for the table SalesDocumentTaxes. |
LineTotalAmountCurrency | String | The LineTotalAmountCurrency column for the table SalesDocumentTaxes. |
LineTotalAmount | Decimal | The LineTotalAmount column for the table SalesDocumentTaxes. |
MasterNumber | Int32 | The MasterNumber column for the table SalesDocumentTaxes. |
MiscellaneousAmountCurrency | String | The MiscellaneousAmountCurrency column for the table SalesDocumentTaxes. |
MiscellaneousAmount | Decimal | The MiscellaneousAmount column for the table SalesDocumentTaxes. |
MiscellaneousTaxAmountCurrency | String | The MiscellaneousTaxAmountCurrency column for the table SalesDocumentTaxes. |
MiscellaneousTaxAmount | Decimal | The MiscellaneousTaxAmount column for the table SalesDocumentTaxes. |
MiscellaneousTaxBasis | String | The MiscellaneousTaxBasis column for the table SalesDocumentTaxes. |
MiscellaneousTaxScheduleId | String | The MiscellaneousTaxScheduleId column for the table SalesDocumentTaxes. |
MiscellaneousTaxesSalesDocumentTaxAggregate | String | The MiscellaneousTaxesSalesDocumentTaxAggregate column for the table SalesDocumentTaxes. |
ModifiedDate | Datetime | The ModifiedDate column for the table SalesDocumentTaxes. |
Note | String | The Note column for the table SalesDocumentTaxes. |
OriginalSalesDocumentId | String | The OriginalSalesDocumentId column for the table SalesDocumentTaxes. |
OriginalSalesDocumentType | String | The OriginalSalesDocumentType column for the table SalesDocumentTaxes. |
PaymentTermsId | String | The PaymentTermsId column for the table SalesDocumentTaxes. |
PriceLevelId | String | The PriceLevelId column for the table SalesDocumentTaxes. |
ProcessHoldsSalesProcessHoldAggregate | String | The ProcessHoldsSalesProcessHoldAggregate column for the table SalesDocumentTaxes. |
QuoteDate | Datetime | The QuoteDate column for the table SalesDocumentTaxes. |
Reference | String | The Reference column for the table SalesDocumentTaxes. |
RequestedShipDate | Datetime | The RequestedShipDate column for the table SalesDocumentTaxes. |
ReturnDate | Datetime | The ReturnDate column for the table SalesDocumentTaxes. |
SalesTerritoryId | String | The SalesTerritoryId column for the table SalesDocumentTaxes. |
SalespersonId | String | The SalespersonId column for the table SalesDocumentTaxes. |
ShipCompleteOnly | Boolean | The ShipCompleteOnly column for the table SalesDocumentTaxes. |
ShipToAddressExtensionsExtensionAggregate | String | The ShipToAddressExtensionsExtensionAggregate column for the table SalesDocumentTaxes. |
ShipToAddressCity | String | The ShipToAddressCity column for the table SalesDocumentTaxes. |
ShipToAddressLine1 | String | The ShipToAddressLine1 column for the table SalesDocumentTaxes. |
ShipToAddressLine2 | String | The ShipToAddressLine2 column for the table SalesDocumentTaxes. |
ShipToAddressLine3 | String | The ShipToAddressLine3 column for the table SalesDocumentTaxes. |
ShipToAddressPostalCode | String | The ShipToAddressPostalCode column for the table SalesDocumentTaxes. |
ShipToAddressState | String | The ShipToAddressState column for the table SalesDocumentTaxes. |
ShipToAddressCountryRegion | String | The ShipToAddressCountryRegion column for the table SalesDocumentTaxes. |
ShipToAddressFaxCountryCode | String | The ShipToAddressFaxCountryCode column for the table SalesDocumentTaxes. |
ShipToAddressFaxExtension | String | The ShipToAddressFaxExtension column for the table SalesDocumentTaxes. |
ShipToAddressFax | String | The ShipToAddressFax column for the table SalesDocumentTaxes. |
ShipToAddressPhone1CountryCode | String | The ShipToAddressPhone1CountryCode column for the table SalesDocumentTaxes. |
ShipToAddressPhone1Extension | String | The ShipToAddressPhone1Extension column for the table SalesDocumentTaxes. |
ShipToAddressPhone1 | String | The ShipToAddressPhone1 column for the table SalesDocumentTaxes. |
ShipToAddressPhone2CountryCode | String | The ShipToAddressPhone2CountryCode column for the table SalesDocumentTaxes. |
ShipToAddressPhone2Extension | String | The ShipToAddressPhone2Extension column for the table SalesDocumentTaxes. |
ShipToAddressPhone2 | String | The ShipToAddressPhone2 column for the table SalesDocumentTaxes. |
ShipToAddressPhone3CountryCode | String | The ShipToAddressPhone3CountryCode column for the table SalesDocumentTaxes. |
ShipToAddressPhone3Extension | String | The ShipToAddressPhone3Extension column for the table SalesDocumentTaxes. |
ShipToAddressPhone3 | String | The ShipToAddressPhone3 column for the table SalesDocumentTaxes. |
ShipToAddressCountryRegionCodeId | String | The ShipToAddressCountryRegionCodeId column for the table SalesDocumentTaxes. |
ShipToAddressContactPerson | String | The ShipToAddressContactPerson column for the table SalesDocumentTaxes. |
ShipToAddressName | String | The ShipToAddressName column for the table SalesDocumentTaxes. |
ShipToAddressKeyCustomerId | String | The ShipToAddressKeyCustomerId column for the table SalesDocumentTaxes. |
ShipToAddressId | String | The ShipToAddressId column for the table SalesDocumentTaxes. |
ShippingMethodId | String | The ShippingMethodId column for the table SalesDocumentTaxes. |
TaxAmountCurrency | String | The TaxAmountCurrency column for the table SalesDocumentTaxes. |
TaxAmount | Decimal | The TaxAmount column for the table SalesDocumentTaxes. |
TaxExemptNumber1 | String | The TaxExemptNumber1 column for the table SalesDocumentTaxes. |
TaxExemptNumber2 | String | The TaxExemptNumber2 column for the table SalesDocumentTaxes. |
TaxRegistrationNumber | String | The TaxRegistrationNumber column for the table SalesDocumentTaxes. |
TaxScheduleId | String | The TaxScheduleId column for the table SalesDocumentTaxes. |
TaxesGLAccountId | String | The TaxesGLAccountId column for the table SalesDocumentTaxes. |
TaxesGLAccountKeyIsEncrypted | Boolean | The TaxesGLAccountKeyIsEncrypted column for the table SalesDocumentTaxes. |
TaxesIsTaxableTax | Boolean | The TaxesIsTaxableTax column for the table SalesDocumentTaxes. |
TaxesTotalTaxPotentialAmountCurrency | String | The TaxesTotalTaxPotentialAmountCurrency column for the table SalesDocumentTaxes. |
TaxesTotalTaxPotentialAmount | Decimal | The TaxesTotalTaxPotentialAmount column for the table SalesDocumentTaxes. |
TaxesIsBackoutTax | Boolean | The TaxesIsBackoutTax column for the table SalesDocumentTaxes. |
TaxesTaxAmountCurrency | String | The TaxesTaxAmountCurrency column for the table SalesDocumentTaxes. |
TaxesTaxAmount | Decimal | The TaxesTaxAmount column for the table SalesDocumentTaxes. |
TaxesTaxableAmountCurrency | String | The TaxesTaxableAmountCurrency column for the table SalesDocumentTaxes. |
TaxesTaxableAmount | Decimal | The TaxesTaxableAmount column for the table SalesDocumentTaxes. |
TaxesTotalAmountCurrency | String | The TaxesTotalAmountCurrency column for the table SalesDocumentTaxes. |
TaxesTotalAmount | Decimal | The TaxesTotalAmount column for the table SalesDocumentTaxes. |
TaxesExtensionsExtensionAggregate | String | The TaxesExtensionsExtensionAggregate column for the table SalesDocumentTaxes. |
TotalAmountCurrency | String | The TotalAmountCurrency column for the table SalesDocumentTaxes. |
TotalAmount | Decimal | The TotalAmount column for the table SalesDocumentTaxes. |
TrackingNumbersSalesTrackingNumberAggregate | String | The TrackingNumbersSalesTrackingNumberAggregate column for the table SalesDocumentTaxes. |
TradeDiscountItem | String | The TradeDiscountItem column for the table SalesDocumentTaxes. |
TransactionState | String | The TransactionState column for the table SalesDocumentTaxes. |
Type | String | The Type column for the table SalesDocumentTaxes. |
UPSZone | String | The UPSZone column for the table SalesDocumentTaxes. |
UserDefinedDate01 | Datetime | The UserDefinedDate01 column for the table SalesDocumentTaxes. |
UserDefinedDate02 | Datetime | The UserDefinedDate02 column for the table SalesDocumentTaxes. |
UserDefinedList01 | String | The UserDefinedList01 column for the table SalesDocumentTaxes. |
UserDefinedList02 | String | The UserDefinedList02 column for the table SalesDocumentTaxes. |
UserDefinedList03 | String | The UserDefinedList03 column for the table SalesDocumentTaxes. |
UserDefinedText01 | String | The UserDefinedText01 column for the table SalesDocumentTaxes. |
UserDefinedText02 | String | The UserDefinedText02 column for the table SalesDocumentTaxes. |
UserDefinedText03 | String | The UserDefinedText03 column for the table SalesDocumentTaxes. |
UserDefinedText04 | String | The UserDefinedText04 column for the table SalesDocumentTaxes. |
UserDefinedText05 | String | The UserDefinedText05 column for the table SalesDocumentTaxes. |
WarehouseId | String | The WarehouseId column for the table SalesDocumentTaxes. |
ExtensionsExtensionAggregate | String | The ExtensionsExtensionAggregate column for the table SalesDocumentTaxes. |
SalesDocumentTrackingNumbers
The DynamicsGP table SalesDocumentTrackingNumbers.
Columns
Name | Type | Description |
---|---|---|
TrackingNumbersKeySalesDocumentId [KEY] | String | The TrackingNumbersKeySalesDocumentId column for the table SalesDocumentTrackingNumbers. |
TrackingNumbersId [KEY] | String | The TrackingNumbersId column for the table SalesDocumentTrackingNumbers. |
ActualShipDate | Datetime | The ActualShipDate column for the table SalesDocumentTrackingNumbers. |
AuditTrailCode | String | The AuditTrailCode column for the table SalesDocumentTrackingNumbers. |
BackorderDate | Datetime | The BackorderDate column for the table SalesDocumentTrackingNumbers. |
BatchKeyCreatedDateTime | Datetime | The BatchKeyCreatedDateTime column for the table SalesDocumentTrackingNumbers. |
BatchId | String | The BatchId column for the table SalesDocumentTrackingNumbers. |
BatchKeySource | String | The BatchKeySource column for the table SalesDocumentTrackingNumbers. |
BillToAddressKeyCustomerId | String | The BillToAddressKeyCustomerId column for the table SalesDocumentTrackingNumbers. |
BillToAddressId | String | The BillToAddressId column for the table SalesDocumentTrackingNumbers. |
Comment | String | The Comment column for the table SalesDocumentTrackingNumbers. |
CommentId | String | The CommentId column for the table SalesDocumentTrackingNumbers. |
CommissionAmountCurrency | String | The CommissionAmountCurrency column for the table SalesDocumentTrackingNumbers. |
CommissionAmount | Decimal | The CommissionAmount column for the table SalesDocumentTrackingNumbers. |
CommissionBasedOn | String | The CommissionBasedOn column for the table SalesDocumentTrackingNumbers. |
CommissionSaleAmountCurrency | String | The CommissionSaleAmountCurrency column for the table SalesDocumentTrackingNumbers. |
CommissionSaleAmount | Decimal | The CommissionSaleAmount column for the table SalesDocumentTrackingNumbers. |
CommissionsSalesCommissionAggregate | String | The CommissionsSalesCommissionAggregate column for the table SalesDocumentTrackingNumbers. |
CreatedBy | String | The CreatedBy column for the table SalesDocumentTrackingNumbers. |
CreatedDate | Datetime | The CreatedDate column for the table SalesDocumentTrackingNumbers. |
CurrencyKeyISOCode | String | The CurrencyKeyISOCode column for the table SalesDocumentTrackingNumbers. |
CustomerId | String | The CustomerId column for the table SalesDocumentTrackingNumbers. |
CustomerName | String | The CustomerName column for the table SalesDocumentTrackingNumbers. |
CustomerPONumber | String | The CustomerPONumber column for the table SalesDocumentTrackingNumbers. |
Date | Datetime | The Date column for the table SalesDocumentTrackingNumbers. |
DiscountAmountCurrency | String | The DiscountAmountCurrency column for the table SalesDocumentTrackingNumbers. |
DiscountAmount | Decimal | The DiscountAmount column for the table SalesDocumentTrackingNumbers. |
DocumentTypeId | String | The DocumentTypeId column for the table SalesDocumentTrackingNumbers. |
DocumentTypeKeyType | String | The DocumentTypeKeyType column for the table SalesDocumentTrackingNumbers. |
ExchangeDate | Datetime | The ExchangeDate column for the table SalesDocumentTrackingNumbers. |
ExchangeRate | Decimal | The ExchangeRate column for the table SalesDocumentTrackingNumbers. |
FreightAmountCurrency | String | The FreightAmountCurrency column for the table SalesDocumentTrackingNumbers. |
FreightAmount | Decimal | The FreightAmount column for the table SalesDocumentTrackingNumbers. |
FreightTaxAmountCurrency | String | The FreightTaxAmountCurrency column for the table SalesDocumentTrackingNumbers. |
FreightTaxAmount | Decimal | The FreightTaxAmount column for the table SalesDocumentTrackingNumbers. |
FreightTaxBasis | String | The FreightTaxBasis column for the table SalesDocumentTrackingNumbers. |
FreightTaxScheduleId | String | The FreightTaxScheduleId column for the table SalesDocumentTrackingNumbers. |
FreightTaxesSalesDocumentTaxAggregate | String | The FreightTaxesSalesDocumentTaxAggregate column for the table SalesDocumentTrackingNumbers. |
FrontOfficeIntegrationId | String | The FrontOfficeIntegrationId column for the table SalesDocumentTrackingNumbers. |
FulfillDate | Datetime | The FulfillDate column for the table SalesDocumentTrackingNumbers. |
IntegrationId | String | The IntegrationId column for the table SalesDocumentTrackingNumbers. |
IntegrationSource | Int32 | The IntegrationSource column for the table SalesDocumentTrackingNumbers. |
InvoiceDate | Datetime | The InvoiceDate column for the table SalesDocumentTrackingNumbers. |
IsIntrastatDocument | Boolean | The IsIntrastatDocument column for the table SalesDocumentTrackingNumbers. |
IsVoided | Boolean | The IsVoided column for the table SalesDocumentTrackingNumbers. |
Id | String | The ID column for the table SalesDocumentTrackingNumbers. |
LastModifiedDate | Datetime | The LastModifiedDate column for the table SalesDocumentTrackingNumbers. |
LineTotalAmountCurrency | String | The LineTotalAmountCurrency column for the table SalesDocumentTrackingNumbers. |
LineTotalAmount | Decimal | The LineTotalAmount column for the table SalesDocumentTrackingNumbers. |
MasterNumber | Int32 | The MasterNumber column for the table SalesDocumentTrackingNumbers. |
MiscellaneousAmountCurrency | String | The MiscellaneousAmountCurrency column for the table SalesDocumentTrackingNumbers. |
MiscellaneousAmount | Decimal | The MiscellaneousAmount column for the table SalesDocumentTrackingNumbers. |
MiscellaneousTaxAmountCurrency | String | The MiscellaneousTaxAmountCurrency column for the table SalesDocumentTrackingNumbers. |
MiscellaneousTaxAmount | Decimal | The MiscellaneousTaxAmount column for the table SalesDocumentTrackingNumbers. |
MiscellaneousTaxBasis | String | The MiscellaneousTaxBasis column for the table SalesDocumentTrackingNumbers. |
MiscellaneousTaxScheduleId | String | The MiscellaneousTaxScheduleId column for the table SalesDocumentTrackingNumbers. |
MiscellaneousTaxesSalesDocumentTaxAggregate | String | The MiscellaneousTaxesSalesDocumentTaxAggregate column for the table SalesDocumentTrackingNumbers. |
ModifiedDate | Datetime | The ModifiedDate column for the table SalesDocumentTrackingNumbers. |
Note | String | The Note column for the table SalesDocumentTrackingNumbers. |
OriginalSalesDocumentId | String | The OriginalSalesDocumentId column for the table SalesDocumentTrackingNumbers. |
OriginalSalesDocumentType | String | The OriginalSalesDocumentType column for the table SalesDocumentTrackingNumbers. |
PaymentTermsId | String | The PaymentTermsId column for the table SalesDocumentTrackingNumbers. |
PriceLevelId | String | The PriceLevelId column for the table SalesDocumentTrackingNumbers. |
ProcessHoldsSalesProcessHoldAggregate | String | The ProcessHoldsSalesProcessHoldAggregate column for the table SalesDocumentTrackingNumbers. |
QuoteDate | Datetime | The QuoteDate column for the table SalesDocumentTrackingNumbers. |
Reference | String | The Reference column for the table SalesDocumentTrackingNumbers. |
RequestedShipDate | Datetime | The RequestedShipDate column for the table SalesDocumentTrackingNumbers. |
ReturnDate | Datetime | The ReturnDate column for the table SalesDocumentTrackingNumbers. |
SalesTerritoryId | String | The SalesTerritoryId column for the table SalesDocumentTrackingNumbers. |
SalespersonId | String | The SalespersonId column for the table SalesDocumentTrackingNumbers. |
ShipCompleteOnly | Boolean | The ShipCompleteOnly column for the table SalesDocumentTrackingNumbers. |
ShipToAddressExtensionsExtensionAggregate | String | The ShipToAddressExtensionsExtensionAggregate column for the table SalesDocumentTrackingNumbers. |
ShipToAddressCity | String | The ShipToAddressCity column for the table SalesDocumentTrackingNumbers. |
ShipToAddressLine1 | String | The ShipToAddressLine1 column for the table SalesDocumentTrackingNumbers. |
ShipToAddressLine2 | String | The ShipToAddressLine2 column for the table SalesDocumentTrackingNumbers. |
ShipToAddressLine3 | String | The ShipToAddressLine3 column for the table SalesDocumentTrackingNumbers. |
ShipToAddressPostalCode | String | The ShipToAddressPostalCode column for the table SalesDocumentTrackingNumbers. |
ShipToAddressState | String | The ShipToAddressState column for the table SalesDocumentTrackingNumbers. |
ShipToAddressCountryRegion | String | The ShipToAddressCountryRegion column for the table SalesDocumentTrackingNumbers. |
ShipToAddressFaxCountryCode | String | The ShipToAddressFaxCountryCode column for the table SalesDocumentTrackingNumbers. |
ShipToAddressFaxExtension | String | The ShipToAddressFaxExtension column for the table SalesDocumentTrackingNumbers. |
ShipToAddressFax | String | The ShipToAddressFax column for the table SalesDocumentTrackingNumbers. |
ShipToAddressPhone1CountryCode | String | The ShipToAddressPhone1CountryCode column for the table SalesDocumentTrackingNumbers. |
ShipToAddressPhone1Extension | String | The ShipToAddressPhone1Extension column for the table SalesDocumentTrackingNumbers. |
ShipToAddressPhone1 | String | The ShipToAddressPhone1 column for the table SalesDocumentTrackingNumbers. |
ShipToAddressPhone2CountryCode | String | The ShipToAddressPhone2CountryCode column for the table SalesDocumentTrackingNumbers. |
ShipToAddressPhone2Extension | String | The ShipToAddressPhone2Extension column for the table SalesDocumentTrackingNumbers. |
ShipToAddressPhone2 | String | The ShipToAddressPhone2 column for the table SalesDocumentTrackingNumbers. |
ShipToAddressPhone3CountryCode | String | The ShipToAddressPhone3CountryCode column for the table SalesDocumentTrackingNumbers. |
ShipToAddressPhone3Extension | String | The ShipToAddressPhone3Extension column for the table SalesDocumentTrackingNumbers. |
ShipToAddressPhone3 | String | The ShipToAddressPhone3 column for the table SalesDocumentTrackingNumbers. |
ShipToAddressCountryRegionCodeId | String | The ShipToAddressCountryRegionCodeId column for the table SalesDocumentTrackingNumbers. |
ShipToAddressContactPerson | String | The ShipToAddressContactPerson column for the table SalesDocumentTrackingNumbers. |
ShipToAddressName | String | The ShipToAddressName column for the table SalesDocumentTrackingNumbers. |
ShipToAddressKeyCustomerId | String | The ShipToAddressKeyCustomerId column for the table SalesDocumentTrackingNumbers. |
ShipToAddressId | String | The ShipToAddressId column for the table SalesDocumentTrackingNumbers. |
ShippingMethodId | String | The ShippingMethodId column for the table SalesDocumentTrackingNumbers. |
TaxAmountCurrency | String | The TaxAmountCurrency column for the table SalesDocumentTrackingNumbers. |
TaxAmount | Decimal | The TaxAmount column for the table SalesDocumentTrackingNumbers. |
TaxExemptNumber1 | String | The TaxExemptNumber1 column for the table SalesDocumentTrackingNumbers. |
TaxExemptNumber2 | String | The TaxExemptNumber2 column for the table SalesDocumentTrackingNumbers. |
TaxRegistrationNumber | String | The TaxRegistrationNumber column for the table SalesDocumentTrackingNumbers. |
TaxScheduleId | String | The TaxScheduleId column for the table SalesDocumentTrackingNumbers. |
TaxesSalesDocumentTaxAggregate | String | The TaxesSalesDocumentTaxAggregate column for the table SalesDocumentTrackingNumbers. |
TotalAmountCurrency | String | The TotalAmountCurrency column for the table SalesDocumentTrackingNumbers. |
TotalAmount | Decimal | The TotalAmount column for the table SalesDocumentTrackingNumbers. |
TrackingNumbersDeleteOnUpdate | Boolean | The TrackingNumbersDeleteOnUpdate column for the table SalesDocumentTrackingNumbers. |
TrackingNumbersExtensionsExtensionAggregate | String | The TrackingNumbersExtensionsExtensionAggregate column for the table SalesDocumentTrackingNumbers. |
TradeDiscountItem | String | The TradeDiscountItem column for the table SalesDocumentTrackingNumbers. |
TransactionState | String | The TransactionState column for the table SalesDocumentTrackingNumbers. |
Type | String | The Type column for the table SalesDocumentTrackingNumbers. |
UPSZone | String | The UPSZone column for the table SalesDocumentTrackingNumbers. |
UserDefinedDate01 | Datetime | The UserDefinedDate01 column for the table SalesDocumentTrackingNumbers. |
UserDefinedDate02 | Datetime | The UserDefinedDate02 column for the table SalesDocumentTrackingNumbers. |
UserDefinedList01 | String | The UserDefinedList01 column for the table SalesDocumentTrackingNumbers. |
UserDefinedList02 | String | The UserDefinedList02 column for the table SalesDocumentTrackingNumbers. |
UserDefinedList03 | String | The UserDefinedList03 column for the table SalesDocumentTrackingNumbers. |
UserDefinedText01 | String | The UserDefinedText01 column for the table SalesDocumentTrackingNumbers. |
UserDefinedText02 | String | The UserDefinedText02 column for the table SalesDocumentTrackingNumbers. |
UserDefinedText03 | String | The UserDefinedText03 column for the table SalesDocumentTrackingNumbers. |
UserDefinedText04 | String | The UserDefinedText04 column for the table SalesDocumentTrackingNumbers. |
UserDefinedText05 | String | The UserDefinedText05 column for the table SalesDocumentTrackingNumbers. |
WarehouseId | String | The WarehouseId column for the table SalesDocumentTrackingNumbers. |
ExtensionsExtensionAggregate | String | The ExtensionsExtensionAggregate column for the table SalesDocumentTrackingNumbers. |
SalesFulfillmentOrderDistributions
Return a list of: SalesFulfillmentOrderDistributions
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
ActualShipDate | Datetime | |
AuditTrailCode | String | |
BackorderDate | Datetime | |
BatchKeyCreatedDateTime | Datetime | |
BatchId | String | |
BatchKeySource | String | |
BillToAddressKeyCustomerId | String | |
BillToAddressId | String | |
Comment | String | |
CommentId | String | |
CommissionAmountCurrency | String | |
CommissionAmount | Decimal | |
CommissionBasedOn | String | |
CommissionSaleAmountCurrency | String | |
CommissionSaleAmount | Decimal | |
CommissionsAggregate | String | |
CreatedBy | String | |
CreatedDate | Datetime | |
CurrencyKeyISOCode | String | |
CustomerId | String | |
CustomerName | String | |
CustomerPONumber | String | |
Date | Datetime | |
DiscountAmountCurrency | String | |
DiscountAmount | Decimal | |
DocumentTypeId | String | |
DocumentTypeKeyType | String | |
ExchangeDate | Datetime | |
ExchangeRate | Decimal | |
FreightAmountCurrency | String | |
FreightAmount | Decimal | |
FreightTaxAmountCurrency | String | |
FreightTaxAmount | Decimal | |
FreightTaxBasis | String | |
FreightTaxScheduleId | String | |
FreightTaxesAggregate | String | |
FrontOfficeIntegrationId | String | |
FulfillDate | Datetime | |
IntegrationId | String | |
IntegrationSource | Int | |
InvoiceDate | Datetime | |
IsIntrastatDocument | Bool | |
IsVoided | Bool | |
Id | String | |
LastModifiedDate | Datetime | |
LineTotalAmountCurrency | String | |
LineTotalAmount | Decimal | |
MasterNumber | Int | |
MiscellaneousAmountCurrency | String | |
MiscellaneousAmount | Decimal | |
MiscellaneousTaxAmountCurrency | String | |
MiscellaneousTaxAmount | Decimal | |
MiscellaneousTaxBasis | String | |
MiscellaneousTaxScheduleId | String | |
MiscellaneousTaxesAggregate | String | |
ModifiedDate | Datetime | |
Note | String | |
OriginalSalesDocumentId | String | |
OriginalSalesDocumentType | String | |
PaymentTermsId | String | |
PriceLevelId | String | |
ProcessHoldsAggregate | String | |
QuoteDate | Datetime | |
Reference | String | |
RequestedShipDate | Datetime | |
ReturnDate | Datetime | |
SalesTerritoryId | String | |
SalespersonId | String | |
ShipCompleteOnly | Bool | |
ShipToAddressExtensionsExtensionAggregate | String | |
ShipToAddressCity | String | |
ShipToAddressLine1 | String | |
ShipToAddressLine2 | String | |
ShipToAddressLine3 | String | |
ShipToAddressPostalCode | String | |
ShipToAddressState | String | |
ShipToAddressCountryRegion | String | |
ShipToAddressFaxCountryCode | String | |
ShipToAddressFaxExtension | String | |
ShipToAddressFax | String | |
ShipToAddressPhone1CountryCode | String | |
ShipToAddressPhone1Extension | String | |
ShipToAddressPhone1 | String | |
ShipToAddressPhone2CountryCode | String | |
ShipToAddressPhone2Extension | String | |
ShipToAddressPhone2 | String | |
ShipToAddressPhone3CountryCode | String | |
ShipToAddressPhone3Extension | String | |
ShipToAddressPhone3 | String | |
ShipToAddressCountryRegionCodeId | String | |
ShipToAddressContactPerson | String | |
ShipToAddressName | String | |
ShipToAddressKeyCustomerId | String | |
ShipToAddressId | String | |
ShippingMethodId | String | |
TaxAmountCurrency | String | |
TaxAmount | Decimal | |
TaxExemptNumber1 | String | |
TaxExemptNumber2 | String | |
TaxRegistrationNumber | String | |
TaxScheduleId | String | |
TaxesAggregate | String | |
TotalAmountCurrency | String | |
TotalAmount | Decimal | |
TrackingNumbersAggregate | String | |
TradeDiscountItem | String | |
TransactionState | String | |
Type | String | |
UPSZone | String | |
UserDefinedDate01 | Datetime | |
UserDefinedDate02 | Datetime | |
UserDefinedList01 | String | |
UserDefinedList02 | String | |
UserDefinedList03 | String | |
UserDefinedText01 | String | |
UserDefinedText02 | String | |
UserDefinedText03 | String | |
UserDefinedText04 | String | |
UserDefinedText05 | String | |
WarehouseId | String | |
DepositAmountCurrency | String | |
DepositAmount | Decimal | |
DistributionsExtensionsExtensionAggregate | String | |
DistributionsDistributionTypeId | Int | |
DistributionsGLAccountId | String | |
DistributionsGLAccountKeyIsEncrypted | Bool | |
DistributionsReference | String | |
DistributionsIsPosted | Bool | |
DistributionsKeySalesDocumentId [KEY] | String | |
DistributionsKeySequenceNumber [KEY] | Int | |
GeneralLedgerPostingDate | Datetime | |
IsDirectDebit | Bool | |
LinesAggregate | String | |
PaymentAmountCurrency | String | |
PaymentAmount | Decimal | |
PaymentsAggregate | String | |
PostedBy | String | |
PostedDate | Datetime | |
ShippingProcessStatus | String | |
TermsDiscountItem | String | |
TermsDiscountAvailableAmountCurrency | String | |
TermsDiscountAvailableAmount | Decimal | |
TermsDiscountDate | Datetime | |
TermsDueDate | Datetime | |
TermsDiscountTakenAmountCurrency | String | |
TermsDiscountTakenAmount | Decimal | |
WorkflowPriority | String | |
WorkflowsAggregate | String |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
SalesFulfillmentOrderLines
Return a list of: SalesFulfillmentOrderLines
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
ActualShipDate | Datetime | |
AuditTrailCode | String | |
BackorderDate | Datetime | |
BatchKeyCreatedDateTime | Datetime | |
BatchId | String | |
BatchKeySource | String | |
BillToAddressKeyCustomerId | String | |
BillToAddressId | String | |
Comment | String | |
CommentId | String | |
CommissionAmountCurrency | String | |
CommissionAmount | Decimal | |
CommissionBasedOn | String | |
CommissionSaleAmountCurrency | String | |
CommissionSaleAmount | Decimal | |
CommissionsAggregate | String | |
CreatedBy | String | |
CreatedDate | Datetime | |
CurrencyKeyISOCode | String | |
CustomerId | String | |
CustomerName | String | |
CustomerPONumber | String | |
Date | Datetime | |
DiscountAmountCurrency | String | |
DiscountAmount | Decimal | |
DocumentTypeId | String | |
DocumentTypeKeyType | String | |
ExchangeDate | Datetime | |
ExchangeRate | Decimal | |
FreightAmountCurrency | String | |
FreightAmount | Decimal | |
FreightTaxAmountCurrency | String | |
FreightTaxAmount | Decimal | |
FreightTaxBasis | String | |
FreightTaxScheduleId | String | |
FreightTaxesAggregate | String | |
FrontOfficeIntegrationId | String | |
FulfillDate | Datetime | |
IntegrationId | String | |
IntegrationSource | Int | |
InvoiceDate | Datetime | |
IsIntrastatDocument | Bool | |
IsVoided | Bool | |
Id | String | |
LastModifiedDate | Datetime | |
LineTotalAmountCurrency | String | |
LineTotalAmount | Decimal | |
MasterNumber | Int | |
MiscellaneousAmountCurrency | String | |
MiscellaneousAmount | Decimal | |
MiscellaneousTaxAmountCurrency | String | |
MiscellaneousTaxAmount | Decimal | |
MiscellaneousTaxBasis | String | |
MiscellaneousTaxScheduleId | String | |
MiscellaneousTaxesAggregate | String | |
ModifiedDate | Datetime | |
Note | String | |
OriginalSalesDocumentId | String | |
OriginalSalesDocumentType | String | |
PaymentTermsId | String | |
PriceLevelId | String | |
ProcessHoldsAggregate | String | |
QuoteDate | Datetime | |
Reference | String | |
RequestedShipDate | Datetime | |
ReturnDate | Datetime | |
SalesTerritoryId | String | |
SalespersonId | String | |
ShipCompleteOnly | Bool | |
ShipToAddressExtensionsExtensionAggregate | String | |
ShipToAddressCity | String | |
ShipToAddressLine1 | String | |
ShipToAddressLine2 | String | |
ShipToAddressLine3 | String | |
ShipToAddressPostalCode | String | |
ShipToAddressState | String | |
ShipToAddressCountryRegion | String | |
ShipToAddressFaxCountryCode | String | |
ShipToAddressFaxExtension | String | |
ShipToAddressFax | String | |
ShipToAddressPhone1CountryCode | String | |
ShipToAddressPhone1Extension | String | |
ShipToAddressPhone1 | String | |
ShipToAddressPhone2CountryCode | String | |
ShipToAddressPhone2Extension | String | |
ShipToAddressPhone2 | String | |
ShipToAddressPhone3CountryCode | String | |
ShipToAddressPhone3Extension | String | |
ShipToAddressPhone3 | String | |
ShipToAddressCountryRegionCodeId | String | |
ShipToAddressContactPerson | String | |
ShipToAddressName | String | |
ShipToAddressKeyCustomerId | String | |
ShipToAddressId | String | |
ShippingMethodId | String | |
TaxAmountCurrency | String | |
TaxAmount | Decimal | |
TaxExemptNumber1 | String | |
TaxExemptNumber2 | String | |
TaxRegistrationNumber | String | |
TaxScheduleId | String | |
TaxesAggregate | String | |
TotalAmountCurrency | String | |
TotalAmount | Decimal | |
TrackingNumbersAggregate | String | |
TradeDiscountItem | String | |
TransactionState | String | |
Type | String | |
UPSZone | String | |
UserDefinedDate01 | Datetime | |
UserDefinedDate02 | Datetime | |
UserDefinedList01 | String | |
UserDefinedList02 | String | |
UserDefinedList03 | String | |
UserDefinedText01 | String | |
UserDefinedText02 | String | |
UserDefinedText03 | String | |
UserDefinedText04 | String | |
UserDefinedText05 | String | |
WarehouseId | String | |
DepositAmountCurrency | String | |
DepositAmount | Decimal | |
DistributionsAggregate | String | |
GeneralLedgerPostingDate | Datetime | |
IsDirectDebit | Bool | |
LinesExtensionsExtensionAggregate | String | |
LinesComment | String | |
LinesCommentId | String | |
LinesCostOfSalesGLAccountId | String | |
LinesCostOfSalesGLAccountKeyIsEncrypted | Bool | |
LinesDamagedGLAccountId | String | |
LinesDamagedGLAccountKeyIsEncrypted | Bool | |
LinesDeleteOnUpdate | Bool | |
LinesDiscountItem | String | |
LinesDiscountGLAccountId | String | |
LinesDiscountGLAccountKeyIsEncrypted | Bool | |
LinesExtendedCostCurrency | String | |
LinesExtendedCost | Decimal | |
LinesFrontOfficeIntegrationId | String | |
LinesInServiceGLAccountId | String | |
LinesInServiceGLAccountKeyIsEncrypted | Bool | |
LinesInUseGLAccountId | String | |
LinesInUseGLAccountKeyIsEncrypted | Bool | |
LinesIntegrationId | String | |
LinesIntegrationSource | Int | |
LinesInventoryGLAccountId | String | |
LinesInventoryGLAccountKeyIsEncrypted | Bool | |
LinesIsDropShip | Bool | |
LinesIsNonInventory | Bool | |
LinesItemDescription | String | |
LinesItemId | String | |
LinesItemTaxScheduleId | String | |
LinesKeyLineSequenceNumber [KEY] | Int | |
LinesKeySalesDocumentId [KEY] | String | |
LinesPriceLevelId | String | |
LinesQuantity | Decimal | |
LinesRequestedShipDate | Datetime | |
LinesReturnsGLAccountId | String | |
LinesReturnsGLAccountKeyIsEncrypted | Bool | |
LinesSalesGLAccountId | String | |
LinesSalesGLAccountKeyIsEncrypted | Bool | |
LinesSalesTerritoryId | String | |
LinesSalespersonId | String | |
LinesShipToAddressExtensionsExtensionAggregate | String | |
LinesShipToAddressCity | String | |
LinesShipToAddressLine1 | String | |
LinesShipToAddressLine2 | String | |
LinesShipToAddressLine3 | String | |
LinesShipToAddressPostalCode | String | |
LinesShipToAddressState | String | |
LinesShipToAddressCountryRegion | String | |
LinesShipToAddressFaxCountryCode | String | |
LinesShipToAddressFaxExtension | String | |
LinesShipToAddressFax | String | |
LinesShipToAddressPhone1CountryCode | String | |
LinesShipToAddressPhone1Extension | String | |
LinesShipToAddressPhone1 | String | |
LinesShipToAddressPhone2CountryCode | String | |
LinesShipToAddressPhone2Extension | String | |
LinesShipToAddressPhone2 | String | |
LinesShipToAddressPhone3CountryCode | String | |
LinesShipToAddressPhone3Extension | String | |
LinesShipToAddressPhone3 | String | |
LinesShipToAddressCountryRegionCodeId | String | |
LinesShipToAddressContactPerson | String | |
LinesShipToAddressName | String | |
LinesShipToAddressKeyCustomerId | String | |
LinesShipToAddressId | String | |
LinesShippingMethodId | String | |
LinesTaxAmountCurrency | String | |
LinesTaxAmount | Decimal | |
LinesTaxBasis | String | |
LinesTaxScheduleId | String | |
LinesTaxesAggregate | String | |
LinesTotalAmountCurrency | String | |
LinesTotalAmount | Decimal | |
LinesUnitCostCurrency | String | |
LinesUnitCost | Decimal | |
LinesUnitPriceCurrency | String | |
LinesUnitPrice | Decimal | |
LinesUofM | String | |
LinesWarehouseId | String | |
LinesActualShipDate | Datetime | |
LinesBillingQuantity | Decimal | |
LinesBinsAggregate | String | |
LinesComponentsAggregate | String | |
LinesFulfillDate | Datetime | |
LinesLotsAggregate | String | |
LinesQuantityAllocated | Decimal | |
LinesQuantityCanceled | Decimal | |
LinesQuantityFulfilled | Decimal | |
LinesQuantityToBackorder | Decimal | |
LinesSerialsAggregate | String | |
PaymentAmountCurrency | String | |
PaymentAmount | Decimal | |
PaymentsAggregate | String | |
PostedBy | String | |
PostedDate | Datetime | |
ShippingProcessStatus | String | |
TermsDiscountItem | String | |
TermsDiscountAvailableAmountCurrency | String | |
TermsDiscountAvailableAmount | Decimal | |
TermsDiscountDate | Datetime | |
TermsDueDate | Datetime | |
TermsDiscountTakenAmountCurrency | String | |
TermsDiscountTakenAmount | Decimal | |
WorkflowPriority | String | |
WorkflowsAggregate | String |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
SalesFulfillmentOrderPayments
Return a list of: SalesFulfillmentOrderPayments
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
ActualShipDate | Datetime | |
AuditTrailCode | String | |
BackorderDate | Datetime | |
BatchKeyCreatedDateTime | Datetime | |
BatchId | String | |
BatchKeySource | String | |
BillToAddressKeyCustomerId | String | |
BillToAddressId | String | |
Comment | String | |
CommentId | String | |
CommissionAmountCurrency | String | |
CommissionAmount | Decimal | |
CommissionBasedOn | String | |
CommissionSaleAmountCurrency | String | |
CommissionSaleAmount | Decimal | |
CommissionsAggregate | String | |
CreatedBy | String | |
CreatedDate | Datetime | |
CurrencyKeyISOCode | String | |
CustomerId | String | |
CustomerName | String | |
CustomerPONumber | String | |
Date | Datetime | |
DiscountAmountCurrency | String | |
DiscountAmount | Decimal | |
DocumentTypeId | String | |
DocumentTypeKeyType | String | |
ExchangeDate | Datetime | |
ExchangeRate | Decimal | |
FreightAmountCurrency | String | |
FreightAmount | Decimal | |
FreightTaxAmountCurrency | String | |
FreightTaxAmount | Decimal | |
FreightTaxBasis | String | |
FreightTaxScheduleId | String | |
FreightTaxesAggregate | String | |
FrontOfficeIntegrationId | String | |
FulfillDate | Datetime | |
IntegrationId | String | |
IntegrationSource | Int | |
InvoiceDate | Datetime | |
IsIntrastatDocument | Bool | |
IsVoided | Bool | |
Id | String | |
LastModifiedDate | Datetime | |
LineTotalAmountCurrency | String | |
LineTotalAmount | Decimal | |
MasterNumber | Int | |
MiscellaneousAmountCurrency | String | |
MiscellaneousAmount | Decimal | |
MiscellaneousTaxAmountCurrency | String | |
MiscellaneousTaxAmount | Decimal | |
MiscellaneousTaxBasis | String | |
MiscellaneousTaxScheduleId | String | |
MiscellaneousTaxesAggregate | String | |
ModifiedDate | Datetime | |
Note | String | |
OriginalSalesDocumentId | String | |
OriginalSalesDocumentType | String | |
PaymentTermsId | String | |
PriceLevelId | String | |
ProcessHoldsAggregate | String | |
QuoteDate | Datetime | |
Reference | String | |
RequestedShipDate | Datetime | |
ReturnDate | Datetime | |
SalesTerritoryId | String | |
SalespersonId | String | |
ShipCompleteOnly | Bool | |
ShipToAddressExtensionsExtensionAggregate | String | |
ShipToAddressCity | String | |
ShipToAddressLine1 | String | |
ShipToAddressLine2 | String | |
ShipToAddressLine3 | String | |
ShipToAddressPostalCode | String | |
ShipToAddressState | String | |
ShipToAddressCountryRegion | String | |
ShipToAddressFaxCountryCode | String | |
ShipToAddressFaxExtension | String | |
ShipToAddressFax | String | |
ShipToAddressPhone1CountryCode | String | |
ShipToAddressPhone1Extension | String | |
ShipToAddressPhone1 | String | |
ShipToAddressPhone2CountryCode | String | |
ShipToAddressPhone2Extension | String | |
ShipToAddressPhone2 | String | |
ShipToAddressPhone3CountryCode | String | |
ShipToAddressPhone3Extension | String | |
ShipToAddressPhone3 | String | |
ShipToAddressCountryRegionCodeId | String | |
ShipToAddressContactPerson | String | |
ShipToAddressName | String | |
ShipToAddressKeyCustomerId | String | |
ShipToAddressId | String | |
ShippingMethodId | String | |
TaxAmountCurrency | String | |
TaxAmount | Decimal | |
TaxExemptNumber1 | String | |
TaxExemptNumber2 | String | |
TaxRegistrationNumber | String | |
TaxScheduleId | String | |
TaxesAggregate | String | |
TotalAmountCurrency | String | |
TotalAmount | Decimal | |
TrackingNumbersAggregate | String | |
TradeDiscountItem | String | |
TransactionState | String | |
Type | String | |
UPSZone | String | |
UserDefinedDate01 | Datetime | |
UserDefinedDate02 | Datetime | |
UserDefinedList01 | String | |
UserDefinedList02 | String | |
UserDefinedList03 | String | |
UserDefinedText01 | String | |
UserDefinedText02 | String | |
UserDefinedText03 | String | |
UserDefinedText04 | String | |
UserDefinedText05 | String | |
WarehouseId | String | |
DepositAmountCurrency | String | |
DepositAmount | Decimal | |
DistributionsAggregate | String | |
GeneralLedgerPostingDate | Datetime | |
IsDirectDebit | Bool | |
LinesAggregate | String | |
PaymentAmountCurrency | String | |
PaymentAmount | Decimal | |
PaymentsExtensionsExtensionAggregate | String | |
PaymentsAuditTrailCode | String | |
PaymentsAuthorizationCode | String | |
PaymentsBankAccountId | String | |
PaymentsCheckNumber | String | |
PaymentsCurrencyKeyISOCode | String | |
PaymentsDate | Datetime | |
PaymentsDeleteOnUpdate | Bool | |
PaymentsExpirationDate | Datetime | |
PaymentsKeySalesDocumentId [KEY] | String | |
PaymentsKeySequenceNumber [KEY] | Int | |
PaymentsNumber | String | |
PaymentsPaymentAmountCurrency | String | |
PaymentsPaymentAmount | Decimal | |
PaymentsPaymentCardNumber | String | |
PaymentsPaymentCardTypeId | String | |
PaymentsType | String | |
PostedBy | String | |
PostedDate | Datetime | |
ShippingProcessStatus | String | |
TermsDiscountItem | String | |
TermsDiscountAvailableAmountCurrency | String | |
TermsDiscountAvailableAmount | Decimal | |
TermsDiscountDate | Datetime | |
TermsDueDate | Datetime | |
TermsDiscountTakenAmountCurrency | String | |
TermsDiscountTakenAmount | Decimal | |
WorkflowPriority | String | |
WorkflowsAggregate | String |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
SalesInvoiceDistributions
Return a list of: SalesInvoiceDistributions
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
ActualShipDate | Datetime | |
AuditTrailCode | String | |
BackorderDate | Datetime | |
BatchKeyCreatedDateTime | Datetime | |
BatchId | String | |
BatchKeySource | String | |
BillToAddressKeyCustomerId | String | |
BillToAddressId | String | |
Comment | String | |
CommentId | String | |
CommissionAmountCurrency | String | |
CommissionAmount | Decimal | |
CommissionBasedOn | String | |
CommissionSaleAmountCurrency | String | |
CommissionSaleAmount | Decimal | |
CommissionsAggregate | String | |
CreatedBy | String | |
CreatedDate | Datetime | |
CurrencyKeyISOCode | String | |
CustomerId | String | |
CustomerName | String | |
CustomerPONumber | String | |
Date | Datetime | |
DiscountAmountCurrency | String | |
DiscountAmount | Decimal | |
DocumentTypeId | String | |
DocumentTypeKeyType | String | |
ExchangeDate | Datetime | |
ExchangeRate | Decimal | |
FreightAmountCurrency | String | |
FreightAmount | Decimal | |
FreightTaxAmountCurrency | String | |
FreightTaxAmount | Decimal | |
FreightTaxBasis | String | |
FreightTaxScheduleId | String | |
FreightTaxesAggregate | String | |
FrontOfficeIntegrationId | String | |
FulfillDate | Datetime | |
IntegrationId | String | |
IntegrationSource | Int | |
InvoiceDate | Datetime | |
IsIntrastatDocument | Bool | |
IsVoided | Bool | |
Id | String | |
LastModifiedDate | Datetime | |
LineTotalAmountCurrency | String | |
LineTotalAmount | Decimal | |
MasterNumber | Int | |
MiscellaneousAmountCurrency | String | |
MiscellaneousAmount | Decimal | |
MiscellaneousTaxAmountCurrency | String | |
MiscellaneousTaxAmount | Decimal | |
MiscellaneousTaxBasis | String | |
MiscellaneousTaxScheduleId | String | |
MiscellaneousTaxesAggregate | String | |
ModifiedDate | Datetime | |
Note | String | |
OriginalSalesDocumentId | String | |
OriginalSalesDocumentType | String | |
PaymentTermsId | String | |
PriceLevelId | String | |
ProcessHoldsAggregate | String | |
QuoteDate | Datetime | |
Reference | String | |
RequestedShipDate | Datetime | |
ReturnDate | Datetime | |
SalesTerritoryId | String | |
SalespersonId | String | |
ShipCompleteOnly | Bool | |
ShipToAddressExtensionsExtensionAggregate | String | |
ShipToAddressCity | String | |
ShipToAddressLine1 | String | |
ShipToAddressLine2 | String | |
ShipToAddressLine3 | String | |
ShipToAddressPostalCode | String | |
ShipToAddressState | String | |
ShipToAddressCountryRegion | String | |
ShipToAddressFaxCountryCode | String | |
ShipToAddressFaxExtension | String | |
ShipToAddressFax | String | |
ShipToAddressPhone1CountryCode | String | |
ShipToAddressPhone1Extension | String | |
ShipToAddressPhone1 | String | |
ShipToAddressPhone2CountryCode | String | |
ShipToAddressPhone2Extension | String | |
ShipToAddressPhone2 | String | |
ShipToAddressPhone3CountryCode | String | |
ShipToAddressPhone3Extension | String | |
ShipToAddressPhone3 | String | |
ShipToAddressCountryRegionCodeId | String | |
ShipToAddressContactPerson | String | |
ShipToAddressName | String | |
ShipToAddressKeyCustomerId | String | |
ShipToAddressId | String | |
ShippingMethodId | String | |
TaxAmountCurrency | String | |
TaxAmount | Decimal | |
TaxExemptNumber1 | String | |
TaxExemptNumber2 | String | |
TaxRegistrationNumber | String | |
TaxScheduleId | String | |
TaxesAggregate | String | |
TotalAmountCurrency | String | |
TotalAmount | Decimal | |
TrackingNumbersAggregate | String | |
TradeDiscountItem | String | |
TransactionState | String | |
Type | String | |
UPSZone | String | |
UserDefinedDate01 | Datetime | |
UserDefinedDate02 | Datetime | |
UserDefinedList01 | String | |
UserDefinedList02 | String | |
UserDefinedList03 | String | |
UserDefinedText01 | String | |
UserDefinedText02 | String | |
UserDefinedText03 | String | |
UserDefinedText04 | String | |
UserDefinedText05 | String | |
WarehouseId | String | |
DepositAmountCurrency | String | |
DepositAmount | Decimal | |
DistributionsExtensionsExtensionAggregate | String | |
DistributionsDistributionTypeId | Int | |
DistributionsGLAccountId | String | |
DistributionsGLAccountKeyIsEncrypted | Bool | |
DistributionsReference | String | |
DistributionsIsPosted | Bool | |
DistributionsKeySalesDocumentId [KEY] | String | |
DistributionsKeySequenceNumber [KEY] | Int | |
GeneralLedgerPostingDate | Datetime | |
IsDirectDebit | Bool | |
LinesAggregate | String | |
PaymentAmountCurrency | String | |
PaymentAmount | Decimal | |
PaymentsAggregate | String | |
PostedBy | String | |
PostedDate | Datetime | |
TermsDiscountItem | String | |
TermsDiscountAvailableAmountCurrency | String | |
TermsDiscountAvailableAmount | Decimal | |
TermsDiscountDate | Datetime | |
TermsDueDate | Datetime | |
TermsDiscountTakenAmountCurrency | String | |
TermsDiscountTakenAmount | Decimal | |
WorkflowPriority | String | |
WorkflowsAggregate | String |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
SalesInvoiceLines
Return a list of: SalesInvoiceLines
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
ActualShipDate | Datetime | |
AuditTrailCode | String | |
BackorderDate | Datetime | |
BatchKeyCreatedDateTime | Datetime | |
BatchId | String | |
BatchKeySource | String | |
BillToAddressKeyCustomerId | String | |
BillToAddressId | String | |
Comment | String | |
CommentId | String | |
CommissionAmountCurrency | String | |
CommissionAmount | Decimal | |
CommissionBasedOn | String | |
CommissionSaleAmountCurrency | String | |
CommissionSaleAmount | Decimal | |
CommissionsAggregate | String | |
CreatedBy | String | |
CreatedDate | Datetime | |
CurrencyKeyISOCode | String | |
CustomerId | String | |
CustomerName | String | |
CustomerPONumber | String | |
Date | Datetime | |
DiscountAmountCurrency | String | |
DiscountAmount | Decimal | |
DocumentTypeId | String | |
DocumentTypeKeyType | String | |
ExchangeDate | Datetime | |
ExchangeRate | Decimal | |
FreightAmountCurrency | String | |
FreightAmount | Decimal | |
FreightTaxAmountCurrency | String | |
FreightTaxAmount | Decimal | |
FreightTaxBasis | String | |
FreightTaxScheduleId | String | |
FreightTaxesAggregate | String | |
FrontOfficeIntegrationId | String | |
FulfillDate | Datetime | |
IntegrationId | String | |
IntegrationSource | Int | |
InvoiceDate | Datetime | |
IsIntrastatDocument | Bool | |
IsVoided | Bool | |
Id | String | |
LastModifiedDate | Datetime | |
LineTotalAmountCurrency | String | |
LineTotalAmount | Decimal | |
MasterNumber | Int | |
MiscellaneousAmountCurrency | String | |
MiscellaneousAmount | Decimal | |
MiscellaneousTaxAmountCurrency | String | |
MiscellaneousTaxAmount | Decimal | |
MiscellaneousTaxBasis | String | |
MiscellaneousTaxScheduleId | String | |
MiscellaneousTaxesAggregate | String | |
ModifiedDate | Datetime | |
Note | String | |
OriginalSalesDocumentId | String | |
OriginalSalesDocumentType | String | |
PaymentTermsId | String | |
PriceLevelId | String | |
ProcessHoldsAggregate | String | |
QuoteDate | Datetime | |
Reference | String | |
RequestedShipDate | Datetime | |
ReturnDate | Datetime | |
SalesTerritoryId | String | |
SalespersonId | String | |
ShipCompleteOnly | Bool | |
ShipToAddressExtensionsExtensionAggregate | String | |
ShipToAddressCity | String | |
ShipToAddressLine1 | String | |
ShipToAddressLine2 | String | |
ShipToAddressLine3 | String | |
ShipToAddressPostalCode | String | |
ShipToAddressState | String | |
ShipToAddressCountryRegion | String | |
ShipToAddressFaxCountryCode | String | |
ShipToAddressFaxExtension | String | |
ShipToAddressFax | String | |
ShipToAddressPhone1CountryCode | String | |
ShipToAddressPhone1Extension | String | |
ShipToAddressPhone1 | String | |
ShipToAddressPhone2CountryCode | String | |
ShipToAddressPhone2Extension | String | |
ShipToAddressPhone2 | String | |
ShipToAddressPhone3CountryCode | String | |
ShipToAddressPhone3Extension | String | |
ShipToAddressPhone3 | String | |
ShipToAddressCountryRegionCodeId | String | |
ShipToAddressContactPerson | String | |
ShipToAddressName | String | |
ShipToAddressKeyCustomerId | String | |
ShipToAddressId | String | |
ShippingMethodId | String | |
TaxAmountCurrency | String | |
TaxAmount | Decimal | |
TaxExemptNumber1 | String | |
TaxExemptNumber2 | String | |
TaxRegistrationNumber | String | |
TaxScheduleId | String | |
TaxesAggregate | String | |
TotalAmountCurrency | String | |
TotalAmount | Decimal | |
TrackingNumbersAggregate | String | |
TradeDiscountItem | String | |
TransactionState | String | |
Type | String | |
UPSZone | String | |
UserDefinedDate01 | Datetime | |
UserDefinedDate02 | Datetime | |
UserDefinedList01 | String | |
UserDefinedList02 | String | |
UserDefinedList03 | String | |
UserDefinedText01 | String | |
UserDefinedText02 | String | |
UserDefinedText03 | String | |
UserDefinedText04 | String | |
UserDefinedText05 | String | |
WarehouseId | String | |
DepositAmountCurrency | String | |
DepositAmount | Decimal | |
DistributionsAggregate | String | |
GeneralLedgerPostingDate | Datetime | |
IsDirectDebit | Bool | |
LinesExtensionsExtensionAggregate | String | |
LinesComment | String | |
LinesCommentId | String | |
LinesCostOfSalesGLAccountId | String | |
LinesCostOfSalesGLAccountKeyIsEncrypted | Bool | |
LinesDamagedGLAccountId | String | |
LinesDamagedGLAccountKeyIsEncrypted | Bool | |
LinesDeleteOnUpdate | Bool | |
LinesDiscountItem | String | |
LinesDiscountGLAccountId | String | |
LinesDiscountGLAccountKeyIsEncrypted | Bool | |
LinesExtendedCostCurrency | String | |
LinesExtendedCost | Decimal | |
LinesFrontOfficeIntegrationId | String | |
LinesInServiceGLAccountId | String | |
LinesInServiceGLAccountKeyIsEncrypted | Bool | |
LinesInUseGLAccountId | String | |
LinesInUseGLAccountKeyIsEncrypted | Bool | |
LinesIntegrationId | String | |
LinesIntegrationSource | Int | |
LinesInventoryGLAccountId | String | |
LinesInventoryGLAccountKeyIsEncrypted | Bool | |
LinesIsDropShip | Bool | |
LinesIsNonInventory | Bool | |
LinesItemDescription | String | |
LinesItemId | String | |
LinesItemTaxScheduleId | String | |
LinesKeyLineSequenceNumber [KEY] | Int | |
LinesKeySalesDocumentId [KEY] | String | |
LinesPriceLevelId | String | |
LinesQuantity | Decimal | |
LinesRequestedShipDate | Datetime | |
LinesReturnsGLAccountId | String | |
LinesReturnsGLAccountKeyIsEncrypted | Bool | |
LinesSalesGLAccountId | String | |
LinesSalesGLAccountKeyIsEncrypted | Bool | |
LinesSalesTerritoryId | String | |
LinesSalespersonId | String | |
LinesShipToAddressExtensionsExtensionAggregate | String | |
LinesShipToAddressCity | String | |
LinesShipToAddressLine1 | String | |
LinesShipToAddressLine2 | String | |
LinesShipToAddressLine3 | String | |
LinesShipToAddressPostalCode | String | |
LinesShipToAddressState | String | |
LinesShipToAddressCountryRegion | String | |
LinesShipToAddressFaxCountryCode | String | |
LinesShipToAddressFaxExtension | String | |
LinesShipToAddressFax | String | |
LinesShipToAddressPhone1CountryCode | String | |
LinesShipToAddressPhone1Extension | String | |
LinesShipToAddressPhone1 | String | |
LinesShipToAddressPhone2CountryCode | String | |
LinesShipToAddressPhone2Extension | String | |
LinesShipToAddressPhone2 | String | |
LinesShipToAddressPhone3CountryCode | String | |
LinesShipToAddressPhone3Extension | String | |
LinesShipToAddressPhone3 | String | |
LinesShipToAddressCountryRegionCodeId | String | |
LinesShipToAddressContactPerson | String | |
LinesShipToAddressName | String | |
LinesShipToAddressKeyCustomerId | String | |
LinesShipToAddressId | String | |
LinesShippingMethodId | String | |
LinesTaxAmountCurrency | String | |
LinesTaxAmount | Decimal | |
LinesTaxBasis | String | |
LinesTaxScheduleId | String | |
LinesTaxesAggregate | String | |
LinesTotalAmountCurrency | String | |
LinesTotalAmount | Decimal | |
LinesUnitCostCurrency | String | |
LinesUnitCost | Decimal | |
LinesUnitPriceCurrency | String | |
LinesUnitPrice | Decimal | |
LinesUofM | String | |
LinesWarehouseId | String | |
LinesActualShipDate | Datetime | |
LinesBillingQuantity | Decimal | |
LinesBinsAggregate | String | |
LinesComponentsAggregate | String | |
LinesFulfillDate | Datetime | |
LinesLotsAggregate | String | |
LinesQuantityAllocated | Decimal | |
LinesQuantityCanceled | Decimal | |
LinesQuantityFulfilled | Decimal | |
LinesQuantityToBackorder | Decimal | |
LinesSerialsAggregate | String | |
PaymentAmountCurrency | String | |
PaymentAmount | Decimal | |
PaymentsAggregate | String | |
PostedBy | String | |
PostedDate | Datetime | |
TermsDiscountItem | String | |
TermsDiscountAvailableAmountCurrency | String | |
TermsDiscountAvailableAmount | Decimal | |
TermsDiscountDate | Datetime | |
TermsDueDate | Datetime | |
TermsDiscountTakenAmountCurrency | String | |
TermsDiscountTakenAmount | Decimal | |
WorkflowPriority | String | |
WorkflowsAggregate | String |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
SalesInvoicePayments
Return a list of: SalesInvoicePayments
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
ActualShipDate | Datetime | |
AuditTrailCode | String | |
BackorderDate | Datetime | |
BatchKeyCreatedDateTime | Datetime | |
BatchId | String | |
BatchKeySource | String | |
BillToAddressKeyCustomerId | String | |
BillToAddressId | String | |
Comment | String | |
CommentId | String | |
CommissionAmountCurrency | String | |
CommissionAmount | Decimal | |
CommissionBasedOn | String | |
CommissionSaleAmountCurrency | String | |
CommissionSaleAmount | Decimal | |
CommissionsAggregate | String | |
CreatedBy | String | |
CreatedDate | Datetime | |
CurrencyKeyISOCode | String | |
CustomerId | String | |
CustomerName | String | |
CustomerPONumber | String | |
Date | Datetime | |
DiscountAmountCurrency | String | |
DiscountAmount | Decimal | |
DocumentTypeId | String | |
DocumentTypeKeyType | String | |
ExchangeDate | Datetime | |
ExchangeRate | Decimal | |
FreightAmountCurrency | String | |
FreightAmount | Decimal | |
FreightTaxAmountCurrency | String | |
FreightTaxAmount | Decimal | |
FreightTaxBasis | String | |
FreightTaxScheduleId | String | |
FreightTaxesAggregate | String | |
FrontOfficeIntegrationId | String | |
FulfillDate | Datetime | |
IntegrationId | String | |
IntegrationSource | Int | |
InvoiceDate | Datetime | |
IsIntrastatDocument | Bool | |
IsVoided | Bool | |
Id | String | |
LastModifiedDate | Datetime | |
LineTotalAmountCurrency | String | |
LineTotalAmount | Decimal | |
MasterNumber | Int | |
MiscellaneousAmountCurrency | String | |
MiscellaneousAmount | Decimal | |
MiscellaneousTaxAmountCurrency | String | |
MiscellaneousTaxAmount | Decimal | |
MiscellaneousTaxBasis | String | |
MiscellaneousTaxScheduleId | String | |
MiscellaneousTaxesAggregate | String | |
ModifiedDate | Datetime | |
Note | String | |
OriginalSalesDocumentId | String | |
OriginalSalesDocumentType | String | |
PaymentTermsId | String | |
PriceLevelId | String | |
ProcessHoldsAggregate | String | |
QuoteDate | Datetime | |
Reference | String | |
RequestedShipDate | Datetime | |
ReturnDate | Datetime | |
SalesTerritoryId | String | |
SalespersonId | String | |
ShipCompleteOnly | Bool | |
ShipToAddressExtensionsExtensionAggregate | String | |
ShipToAddressCity | String | |
ShipToAddressLine1 | String | |
ShipToAddressLine2 | String | |
ShipToAddressLine3 | String | |
ShipToAddressPostalCode | String | |
ShipToAddressState | String | |
ShipToAddressCountryRegion | String | |
ShipToAddressFaxCountryCode | String | |
ShipToAddressFaxExtension | String | |
ShipToAddressFax | String | |
ShipToAddressPhone1CountryCode | String | |
ShipToAddressPhone1Extension | String | |
ShipToAddressPhone1 | String | |
ShipToAddressPhone2CountryCode | String | |
ShipToAddressPhone2Extension | String | |
ShipToAddressPhone2 | String | |
ShipToAddressPhone3CountryCode | String | |
ShipToAddressPhone3Extension | String | |
ShipToAddressPhone3 | String | |
ShipToAddressCountryRegionCodeId | String | |
ShipToAddressContactPerson | String | |
ShipToAddressName | String | |
ShipToAddressKeyCustomerId | String | |
ShipToAddressId | String | |
ShippingMethodId | String | |
TaxAmountCurrency | String | |
TaxAmount | Decimal | |
TaxExemptNumber1 | String | |
TaxExemptNumber2 | String | |
TaxRegistrationNumber | String | |
TaxScheduleId | String | |
TaxesAggregate | String | |
TotalAmountCurrency | String | |
TotalAmount | Decimal | |
TrackingNumbersAggregate | String | |
TradeDiscountItem | String | |
TransactionState | String | |
Type | String | |
UPSZone | String | |
UserDefinedDate01 | Datetime | |
UserDefinedDate02 | Datetime | |
UserDefinedList01 | String | |
UserDefinedList02 | String | |
UserDefinedList03 | String | |
UserDefinedText01 | String | |
UserDefinedText02 | String | |
UserDefinedText03 | String | |
UserDefinedText04 | String | |
UserDefinedText05 | String | |
WarehouseId | String | |
DepositAmountCurrency | String | |
DepositAmount | Decimal | |
DistributionsAggregate | String | |
GeneralLedgerPostingDate | Datetime | |
IsDirectDebit | Bool | |
LinesAggregate | String | |
PaymentAmountCurrency | String | |
PaymentAmount | Decimal | |
PaymentsExtensionsExtensionAggregate | String | |
PaymentsAuditTrailCode | String | |
PaymentsAuthorizationCode | String | |
PaymentsBankAccountId | String | |
PaymentsCheckNumber | String | |
PaymentsCurrencyKeyISOCode | String | |
PaymentsDate | Datetime | |
PaymentsDeleteOnUpdate | Bool | |
PaymentsExpirationDate | Datetime | |
PaymentsKeySalesDocumentId [KEY] | String | |
PaymentsKeySequenceNumber [KEY] | Int | |
PaymentsNumber | String | |
PaymentsPaymentAmountCurrency | String | |
PaymentsPaymentAmount | Decimal | |
PaymentsPaymentCardNumber | String | |
PaymentsPaymentCardTypeId | String | |
PaymentsType | String | |
PostedBy | String | |
PostedDate | Datetime | |
TermsDiscountItem | String | |
TermsDiscountAvailableAmountCurrency | String | |
TermsDiscountAvailableAmount | Decimal | |
TermsDiscountDate | Datetime | |
TermsDueDate | Datetime | |
TermsDiscountTakenAmountCurrency | String | |
TermsDiscountTakenAmount | Decimal | |
WorkflowPriority | String | |
WorkflowsAggregate | String |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
SalesOrderLines
Return a list of: SalesOrderLines
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
ActualShipDate | Datetime | |
AuditTrailCode | String | |
BackorderDate | Datetime | |
BatchKeyCreatedDateTime | Datetime | |
BatchId | String | |
BatchKeySource | String | |
BillToAddressKeyCustomerId | String | |
BillToAddressId | String | |
Comment | String | |
CommentId | String | |
CommissionAmountCurrency | String | |
CommissionAmount | Decimal | |
CommissionBasedOn | String | |
CommissionSaleAmountCurrency | String | |
CommissionSaleAmount | Decimal | |
CommissionsAggregate | String | |
CreatedBy | String | |
CreatedDate | Datetime | |
CurrencyKeyISOCode | String | |
CustomerId | String | |
CustomerName | String | |
CustomerPONumber | String | |
Date | Datetime | |
DiscountAmountCurrency | String | |
DiscountAmount | Decimal | |
DocumentTypeId | String | |
DocumentTypeKeyType | String | |
ExchangeDate | Datetime | |
ExchangeRate | Decimal | |
FreightAmountCurrency | String | |
FreightAmount | Decimal | |
FreightTaxAmountCurrency | String | |
FreightTaxAmount | Decimal | |
FreightTaxBasis | String | |
FreightTaxScheduleId | String | |
FreightTaxesAggregate | String | |
FrontOfficeIntegrationId | String | |
FulfillDate | Datetime | |
IntegrationId | String | |
IntegrationSource | Int | |
InvoiceDate | Datetime | |
IsIntrastatDocument | Bool | |
IsVoided | Bool | |
Id | String | |
LastModifiedDate | Datetime | |
LineTotalAmountCurrency | String | |
LineTotalAmount | Decimal | |
MasterNumber | Int | |
MiscellaneousAmountCurrency | String | |
MiscellaneousAmount | Decimal | |
MiscellaneousTaxAmountCurrency | String | |
MiscellaneousTaxAmount | Decimal | |
MiscellaneousTaxBasis | String | |
MiscellaneousTaxScheduleId | String | |
MiscellaneousTaxesAggregate | String | |
ModifiedDate | Datetime | |
Note | String | |
OriginalSalesDocumentId | String | |
OriginalSalesDocumentType | String | |
PaymentTermsId | String | |
PriceLevelId | String | |
ProcessHoldsAggregate | String | |
QuoteDate | Datetime | |
Reference | String | |
RequestedShipDate | Datetime | |
ReturnDate | Datetime | |
SalesTerritoryId | String | |
SalespersonId | String | |
ShipCompleteOnly | Bool | |
ShipToAddressExtensionsExtensionAggregate | String | |
ShipToAddressCity | String | |
ShipToAddressLine1 | String | |
ShipToAddressLine2 | String | |
ShipToAddressLine3 | String | |
ShipToAddressPostalCode | String | |
ShipToAddressState | String | |
ShipToAddressCountryRegion | String | |
ShipToAddressFaxCountryCode | String | |
ShipToAddressFaxExtension | String | |
ShipToAddressFax | String | |
ShipToAddressPhone1CountryCode | String | |
ShipToAddressPhone1Extension | String | |
ShipToAddressPhone1 | String | |
ShipToAddressPhone2CountryCode | String | |
ShipToAddressPhone2Extension | String | |
ShipToAddressPhone2 | String | |
ShipToAddressPhone3CountryCode | String | |
ShipToAddressPhone3Extension | String | |
ShipToAddressPhone3 | String | |
ShipToAddressCountryRegionCodeId | String | |
ShipToAddressContactPerson | String | |
ShipToAddressName | String | |
ShipToAddressKeyCustomerId | String | |
ShipToAddressId | String | |
ShippingMethodId | String | |
TaxAmountCurrency | String | |
TaxAmount | Decimal | |
TaxExemptNumber1 | String | |
TaxExemptNumber2 | String | |
TaxRegistrationNumber | String | |
TaxScheduleId | String | |
TaxesAggregate | String | |
TotalAmountCurrency | String | |
TotalAmount | Decimal | |
TrackingNumbersAggregate | String | |
TradeDiscountItem | String | |
TransactionState | String | |
Type | String | |
UPSZone | String | |
UserDefinedDate01 | Datetime | |
UserDefinedDate02 | Datetime | |
UserDefinedList01 | String | |
UserDefinedList02 | String | |
UserDefinedList03 | String | |
UserDefinedText01 | String | |
UserDefinedText02 | String | |
UserDefinedText03 | String | |
UserDefinedText04 | String | |
UserDefinedText05 | String | |
WarehouseId | String | |
DaysToIncrement | Int | |
DepositAmountCurrency | String | |
DepositAmount | Decimal | |
DocumentFrequency | String | |
IsRepeating | Bool | |
LinesExtensionsExtensionAggregate | String | |
LinesComment | String | |
LinesCommentId | String | |
LinesCostOfSalesGLAccountId | String | |
LinesCostOfSalesGLAccountKeyIsEncrypted | Bool | |
LinesDamagedGLAccountId | String | |
LinesDamagedGLAccountKeyIsEncrypted | Bool | |
LinesDeleteOnUpdate | Bool | |
LinesDiscountItem | String | |
LinesDiscountGLAccountId | String | |
LinesDiscountGLAccountKeyIsEncrypted | Bool | |
LinesExtendedCostCurrency | String | |
LinesExtendedCost | Decimal | |
LinesFrontOfficeIntegrationId | String | |
LinesInServiceGLAccountId | String | |
LinesInServiceGLAccountKeyIsEncrypted | Bool | |
LinesInUseGLAccountId | String | |
LinesInUseGLAccountKeyIsEncrypted | Bool | |
LinesIntegrationId | String | |
LinesIntegrationSource | Int | |
LinesInventoryGLAccountId | String | |
LinesInventoryGLAccountKeyIsEncrypted | Bool | |
LinesIsDropShip | Bool | |
LinesIsNonInventory | Bool | |
LinesItemDescription | String | |
LinesItemId | String | |
LinesItemTaxScheduleId | String | |
LinesKeyLineSequenceNumber [KEY] | Int | |
LinesKeySalesDocumentId [KEY] | String | |
LinesPriceLevelId | String | |
LinesQuantity | Decimal | |
LinesRequestedShipDate | Datetime | |
LinesReturnsGLAccountId | String | |
LinesReturnsGLAccountKeyIsEncrypted | Bool | |
LinesSalesGLAccountId | String | |
LinesSalesGLAccountKeyIsEncrypted | Bool | |
LinesSalesTerritoryId | String | |
LinesSalespersonId | String | |
LinesShipToAddressExtensionsExtensionAggregate | String | |
LinesShipToAddressCity | String | |
LinesShipToAddressLine1 | String | |
LinesShipToAddressLine2 | String | |
LinesShipToAddressLine3 | String | |
LinesShipToAddressPostalCode | String | |
LinesShipToAddressState | String | |
LinesShipToAddressCountryRegion | String | |
LinesShipToAddressFaxCountryCode | String | |
LinesShipToAddressFaxExtension | String | |
LinesShipToAddressFax | String | |
LinesShipToAddressPhone1CountryCode | String | |
LinesShipToAddressPhone1Extension | String | |
LinesShipToAddressPhone1 | String | |
LinesShipToAddressPhone2CountryCode | String | |
LinesShipToAddressPhone2Extension | String | |
LinesShipToAddressPhone2 | String | |
LinesShipToAddressPhone3CountryCode | String | |
LinesShipToAddressPhone3Extension | String | |
LinesShipToAddressPhone3 | String | |
LinesShipToAddressCountryRegionCodeId | String | |
LinesShipToAddressContactPerson | String | |
LinesShipToAddressName | String | |
LinesShipToAddressKeyCustomerId | String | |
LinesShipToAddressId | String | |
LinesShippingMethodId | String | |
LinesTaxAmountCurrency | String | |
LinesTaxAmount | Decimal | |
LinesTaxBasis | String | |
LinesTaxScheduleId | String | |
LinesTaxesAggregate | String | |
LinesTotalAmountCurrency | String | |
LinesTotalAmount | Decimal | |
LinesUnitCostCurrency | String | |
LinesUnitCost | Decimal | |
LinesUnitPriceCurrency | String | |
LinesUnitPrice | Decimal | |
LinesUofM | String | |
LinesWarehouseId | String | |
LinesActualShipDate | Datetime | |
LinesBinsAggregate | String | |
LinesComponentsAggregate | String | |
LinesFulfillDate | Datetime | |
LinesLotsAggregate | String | |
LinesQuantityAllocated | Decimal | |
LinesQuantityCanceled | Decimal | |
LinesQuantityFulfilled | Decimal | |
LinesQuantityToBackorder | Decimal | |
LinesQuantityToInvoice | Decimal | |
LinesSerialsAggregate | String | |
PaymentAmountCurrency | String | |
PaymentAmount | Decimal | |
PaymentsAggregate | String | |
ShippingProcessStatus | String | |
TimesToRepeat | Int | |
WorkflowPriority | String | |
WorkflowsAggregate | String |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
SalesOrderPayments
Return a list of: SalesOrderPayments
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
ActualShipDate | Datetime | |
AuditTrailCode | String | |
BackorderDate | Datetime | |
BatchKeyCreatedDateTime | Datetime | |
BatchId | String | |
BatchKeySource | String | |
BillToAddressKeyCustomerId | String | |
BillToAddressId | String | |
Comment | String | |
CommentId | String | |
CommissionAmountCurrency | String | |
CommissionAmount | Decimal | |
CommissionBasedOn | String | |
CommissionSaleAmountCurrency | String | |
CommissionSaleAmount | Decimal | |
CommissionsAggregate | String | |
CreatedBy | String | |
CreatedDate | Datetime | |
CurrencyKeyISOCode | String | |
CustomerId | String | |
CustomerName | String | |
CustomerPONumber | String | |
Date | Datetime | |
DiscountAmountCurrency | String | |
DiscountAmount | Decimal | |
DocumentTypeId | String | |
DocumentTypeKeyType | String | |
ExchangeDate | Datetime | |
ExchangeRate | Decimal | |
FreightAmountCurrency | String | |
FreightAmount | Decimal | |
FreightTaxAmountCurrency | String | |
FreightTaxAmount | Decimal | |
FreightTaxBasis | String | |
FreightTaxScheduleId | String | |
FreightTaxesAggregate | String | |
FrontOfficeIntegrationId | String | |
FulfillDate | Datetime | |
IntegrationId | String | |
IntegrationSource | Int | |
InvoiceDate | Datetime | |
IsIntrastatDocument | Bool | |
IsVoided | Bool | |
Id | String | |
LastModifiedDate | Datetime | |
LineTotalAmountCurrency | String | |
LineTotalAmount | Decimal | |
MasterNumber | Int | |
MiscellaneousAmountCurrency | String | |
MiscellaneousAmount | Decimal | |
MiscellaneousTaxAmountCurrency | String | |
MiscellaneousTaxAmount | Decimal | |
MiscellaneousTaxBasis | String | |
MiscellaneousTaxScheduleId | String | |
MiscellaneousTaxesAggregate | String | |
ModifiedDate | Datetime | |
Note | String | |
OriginalSalesDocumentId | String | |
OriginalSalesDocumentType | String | |
PaymentTermsId | String | |
PriceLevelId | String | |
ProcessHoldsAggregate | String | |
QuoteDate | Datetime | |
Reference | String | |
RequestedShipDate | Datetime | |
ReturnDate | Datetime | |
SalesTerritoryId | String | |
SalespersonId | String | |
ShipCompleteOnly | Bool | |
ShipToAddressExtensionsExtensionAggregate | String | |
ShipToAddressCity | String | |
ShipToAddressLine1 | String | |
ShipToAddressLine2 | String | |
ShipToAddressLine3 | String | |
ShipToAddressPostalCode | String | |
ShipToAddressState | String | |
ShipToAddressCountryRegion | String | |
ShipToAddressFaxCountryCode | String | |
ShipToAddressFaxExtension | String | |
ShipToAddressFax | String | |
ShipToAddressPhone1CountryCode | String | |
ShipToAddressPhone1Extension | String | |
ShipToAddressPhone1 | String | |
ShipToAddressPhone2CountryCode | String | |
ShipToAddressPhone2Extension | String | |
ShipToAddressPhone2 | String | |
ShipToAddressPhone3CountryCode | String | |
ShipToAddressPhone3Extension | String | |
ShipToAddressPhone3 | String | |
ShipToAddressCountryRegionCodeId | String | |
ShipToAddressContactPerson | String | |
ShipToAddressName | String | |
ShipToAddressKeyCustomerId | String | |
ShipToAddressId | String | |
ShippingMethodId | String | |
TaxAmountCurrency | String | |
TaxAmount | Decimal | |
TaxExemptNumber1 | String | |
TaxExemptNumber2 | String | |
TaxRegistrationNumber | String | |
TaxScheduleId | String | |
TaxesAggregate | String | |
TotalAmountCurrency | String | |
TotalAmount | Decimal | |
TrackingNumbersAggregate | String | |
TradeDiscountItem | String | |
TransactionState | String | |
Type | String | |
UPSZone | String | |
UserDefinedDate01 | Datetime | |
UserDefinedDate02 | Datetime | |
UserDefinedList01 | String | |
UserDefinedList02 | String | |
UserDefinedList03 | String | |
UserDefinedText01 | String | |
UserDefinedText02 | String | |
UserDefinedText03 | String | |
UserDefinedText04 | String | |
UserDefinedText05 | String | |
WarehouseId | String | |
DaysToIncrement | Int | |
DepositAmountCurrency | String | |
DepositAmount | Decimal | |
DocumentFrequency | String | |
IsRepeating | Bool | |
LinesAggregate | String | |
PaymentAmountCurrency | String | |
PaymentAmount | Decimal | |
PaymentsExtensionsExtensionAggregate | String | |
PaymentsAuditTrailCode | String | |
PaymentsAuthorizationCode | String | |
PaymentsBankAccountId | String | |
PaymentsCheckNumber | String | |
PaymentsCurrencyKeyISOCode | String | |
PaymentsDate | Datetime | |
PaymentsDeleteOnUpdate | Bool | |
PaymentsExpirationDate | Datetime | |
PaymentsKeySalesDocumentId [KEY] | String | |
PaymentsKeySequenceNumber [KEY] | Int | |
PaymentsNumber | String | |
PaymentsPaymentAmountCurrency | String | |
PaymentsPaymentAmount | Decimal | |
PaymentsPaymentCardNumber | String | |
PaymentsPaymentCardTypeId | String | |
PaymentsType | String | |
ShippingProcessStatus | String | |
TimesToRepeat | Int | |
WorkflowPriority | String | |
WorkflowsAggregate | String |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
Salesperson
Return a list of: Salesperson
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
AddressExtensionsExtensionAggregate | String | |
AddressCity | String | |
AddressLine1 | String | |
AddressLine2 | String | |
AddressLine3 | String | |
AddressPostalCode | String | |
AddressState | String | |
AddressCountryRegion | String | |
AddressFaxCountryCode | String | |
AddressFaxExtension | String | |
AddressFax | String | |
AddressPhone1CountryCode | String | |
AddressPhone1Extension | String | |
AddressPhone1 | String | |
AddressPhone2CountryCode | String | |
AddressPhone2Extension | String | |
AddressPhone2 | String | |
AddressPhone3CountryCode | String | |
AddressPhone3Extension | String | |
AddressPhone3 | String | |
CommissionBasedOn | String | |
CommissionPercent | Decimal | |
CreatedDate | Datetime | |
EmployeeId | String | |
FirstName | String | |
HistoryOptionsExtensionsExtensionAggregate | String | |
HistoryOptionsKeepCalendar | Bool | |
HistoryOptionsKeepPeriod | Bool | |
InternetAddressesAdditionalInformation | String | |
InternetAddressesEmailBccAddress | String | |
InternetAddressesEmailCcAddress | String | |
InternetAddressesEmailToAddress | String | |
InternetAddressesInternetField1 | String | |
InternetAddressesInternetField2 | String | |
InternetAddressesInternetField3 | String | |
InternetAddressesInternetField4 | String | |
InternetAddressesInternetField5 | String | |
InternetAddressesInternetField6 | String | |
InternetAddressesInternetField7 | String | |
InternetAddressesInternetField8 | String | |
InternetAddressesMessengerAddress | String | |
IsActive | Bool | |
Id [KEY] | String | |
LastName | String | |
MiddleName | String | |
ModifiedDate | Datetime | |
SalesHistoryAggregate | String | |
SalesSummaryExtensionsExtensionAggregate | String | |
SalesSummaryLastYearExtensionsExtensionAggregate | String | |
SalesSummaryLastYearCommissionedSalesCurrency | String | |
SalesSummaryLastYearCommissionedSales | Decimal | |
SalesSummaryLastYearCostOfSalesCurrency | String | |
SalesSummaryLastYearCostOfSales | Decimal | |
SalesSummaryLastYearNoncommissionedSalesCurrency | String | |
SalesSummaryLastYearNoncommissionedSales | Decimal | |
SalesSummaryLastYearTotalCommissionsAmountCurrency | String | |
SalesSummaryLastYearTotalCommissionsAmount | Decimal | |
SalesSummaryYearToDateExtensionsExtensionAggregate | String | |
SalesSummaryYearToDateCommissionedSalesCurrency | String | |
SalesSummaryYearToDateCommissionedSales | Decimal | |
SalesSummaryYearToDateCostOfSalesCurrency | String | |
SalesSummaryYearToDateCostOfSales | Decimal | |
SalesSummaryYearToDateNoncommissionedSalesCurrency | String | |
SalesSummaryYearToDateNoncommissionedSales | Decimal | |
SalesSummaryYearToDateTotalCommissionsAmountCurrency | String | |
SalesSummaryYearToDateTotalCommissionsAmount | Decimal | |
SalesTerritoryId | String | |
VendorId | String |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
SalespersonCommissions
Return a list of: SalespersonCommissions
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
AmountCurrency | String | |
Amount | Decimal | |
AuditTrailCode | String | |
CommissionAuditTrailCode | String | |
CommissionPercent | Decimal | |
CurrencyKeyISOCode | String | |
CustomerId | String | |
IsPaid | Bool | |
IsPosted | Bool | |
KeyDocumentNumber [KEY] | String | |
KeyDocumentType [KEY] | String | |
KeySequenceNumber [KEY] | Int | |
NoncommissionedAmountCurrency | String | |
NoncommissionedAmount | Decimal | |
PercentOfSale | Decimal | |
SalesAmountCurrency | String | |
SalesAmount | Decimal | |
SalesTerritoryId | String | |
SalespersonId | String | |
TransactionState | String |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
SalespersonSalesHistory
Return a list of: SalespersonSalesHistory
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
AddressExtensionsExtensionAggregate | String | |
AddressCity | String | |
AddressLine1 | String | |
AddressLine2 | String | |
AddressLine3 | String | |
AddressPostalCode | String | |
AddressState | String | |
AddressCountryRegion | String | |
AddressFaxCountryCode | String | |
AddressFaxExtension | String | |
AddressFax | String | |
AddressPhone1CountryCode | String | |
AddressPhone1Extension | String | |
AddressPhone1 | String | |
AddressPhone2CountryCode | String | |
AddressPhone2Extension | String | |
AddressPhone2 | String | |
AddressPhone3CountryCode | String | |
AddressPhone3Extension | String | |
AddressPhone3 | String | |
CommissionBasedOn | String | |
CommissionPercent | Decimal | |
CreatedDate | Datetime | |
EmployeeId | String | |
FirstName | String | |
HistoryOptionsExtensionsExtensionAggregate | String | |
HistoryOptionsKeepCalendar | Bool | |
HistoryOptionsKeepPeriod | Bool | |
InternetAddressesAdditionalInformation | String | |
InternetAddressesEmailBccAddress | String | |
InternetAddressesEmailCcAddress | String | |
InternetAddressesEmailToAddress | String | |
InternetAddressesInternetField1 | String | |
InternetAddressesInternetField2 | String | |
InternetAddressesInternetField3 | String | |
InternetAddressesInternetField4 | String | |
InternetAddressesInternetField5 | String | |
InternetAddressesInternetField6 | String | |
InternetAddressesInternetField7 | String | |
InternetAddressesInternetField8 | String | |
InternetAddressesMessengerAddress | String | |
IsActive | Bool | |
Id | String | |
LastName | String | |
MiddleName | String | |
ModifiedDate | Datetime | |
SalesHistoryExtensionsExtensionAggregate | String | |
SalesHistoryCommissionSummaryExtensionsExtensionAggregate | String | |
SalesHistoryCommissionSummaryCommissionedSalesCurrency | String | |
SalesHistoryCommissionSummaryCommissionedSales | Decimal | |
SalesHistoryCommissionSummaryCostOfSalesCurrency | String | |
SalesHistoryCommissionSummaryCostOfSales | Decimal | |
SalesHistoryCommissionSummaryNoncommissionedSalesCurrency | String | |
SalesHistoryCommissionSummaryNoncommissionedSales | Decimal | |
SalesHistoryCommissionSummaryTotalCommissionsAmountCurrency | String | |
SalesHistoryCommissionSummaryTotalCommissionsAmount | Decimal | |
SalesHistoryKeyPeriod [KEY] | Int | |
SalesHistoryKeySalespersonId [KEY] | String | |
SalesHistoryKeySummaryType [KEY] | String | |
SalesHistoryKeyYear [KEY] | Int | |
SalesSummaryExtensionsExtensionAggregate | String | |
SalesSummaryLastYearExtensionsExtensionAggregate | String | |
SalesSummaryLastYearCommissionedSalesCurrency | String | |
SalesSummaryLastYearCommissionedSales | Decimal | |
SalesSummaryLastYearCostOfSalesCurrency | String | |
SalesSummaryLastYearCostOfSales | Decimal | |
SalesSummaryLastYearNoncommissionedSalesCurrency | String | |
SalesSummaryLastYearNoncommissionedSales | Decimal | |
SalesSummaryLastYearTotalCommissionsAmountCurrency | String | |
SalesSummaryLastYearTotalCommissionsAmount | Decimal | |
SalesSummaryYearToDateExtensionsExtensionAggregate | String | |
SalesSummaryYearToDateCommissionedSalesCurrency | String | |
SalesSummaryYearToDateCommissionedSales | Decimal | |
SalesSummaryYearToDateCostOfSalesCurrency | String | |
SalesSummaryYearToDateCostOfSales | Decimal | |
SalesSummaryYearToDateNoncommissionedSalesCurrency | String | |
SalesSummaryYearToDateNoncommissionedSales | Decimal | |
SalesSummaryYearToDateTotalCommissionsAmountCurrency | String | |
SalesSummaryYearToDateTotalCommissionsAmount | Decimal | |
SalesTerritoryId | String | |
VendorId | String |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
SalesQuoteLines
Return a list of: SalesQuoteLines
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
ActualShipDate | Datetime | |
AuditTrailCode | String | |
BackorderDate | Datetime | |
BatchKeyCreatedDateTime | Datetime | |
BatchId | String | |
BatchKeySource | String | |
BillToAddressKeyCustomerId | String | |
BillToAddressId | String | |
Comment | String | |
CommentId | String | |
CommissionAmountCurrency | String | |
CommissionAmount | Decimal | |
CommissionBasedOn | String | |
CommissionSaleAmountCurrency | String | |
CommissionSaleAmount | Decimal | |
CommissionsAggregate | String | |
CreatedBy | String | |
CreatedDate | Datetime | |
CurrencyKeyISOCode | String | |
CustomerId | String | |
CustomerName | String | |
CustomerPONumber | String | |
Date | Datetime | |
DiscountAmountCurrency | String | |
DiscountAmount | Decimal | |
DocumentTypeId | String | |
DocumentTypeKeyType | String | |
ExchangeDate | Datetime | |
ExchangeRate | Decimal | |
FreightAmountCurrency | String | |
FreightAmount | Decimal | |
FreightTaxAmountCurrency | String | |
FreightTaxAmount | Decimal | |
FreightTaxBasis | String | |
FreightTaxScheduleId | String | |
FreightTaxesAggregate | String | |
FrontOfficeIntegrationId | String | |
FulfillDate | Datetime | |
IntegrationId | String | |
IntegrationSource | Int | |
InvoiceDate | Datetime | |
IsIntrastatDocument | Bool | |
IsVoided | Bool | |
Id | String | |
LastModifiedDate | Datetime | |
LineTotalAmountCurrency | String | |
LineTotalAmount | Decimal | |
MasterNumber | Int | |
MiscellaneousAmountCurrency | String | |
MiscellaneousAmount | Decimal | |
MiscellaneousTaxAmountCurrency | String | |
MiscellaneousTaxAmount | Decimal | |
MiscellaneousTaxBasis | String | |
MiscellaneousTaxScheduleId | String | |
MiscellaneousTaxesAggregate | String | |
ModifiedDate | Datetime | |
Note | String | |
OriginalSalesDocumentId | String | |
OriginalSalesDocumentType | String | |
PaymentTermsId | String | |
PriceLevelId | String | |
ProcessHoldsAggregate | String | |
QuoteDate | Datetime | |
Reference | String | |
RequestedShipDate | Datetime | |
ReturnDate | Datetime | |
SalesTerritoryId | String | |
SalespersonId | String | |
ShipCompleteOnly | Bool | |
ShipToAddressExtensionsExtensionAggregate | String | |
ShipToAddressCity | String | |
ShipToAddressLine1 | String | |
ShipToAddressLine2 | String | |
ShipToAddressLine3 | String | |
ShipToAddressPostalCode | String | |
ShipToAddressState | String | |
ShipToAddressCountryRegion | String | |
ShipToAddressFaxCountryCode | String | |
ShipToAddressFaxExtension | String | |
ShipToAddressFax | String | |
ShipToAddressPhone1CountryCode | String | |
ShipToAddressPhone1Extension | String | |
ShipToAddressPhone1 | String | |
ShipToAddressPhone2CountryCode | String | |
ShipToAddressPhone2Extension | String | |
ShipToAddressPhone2 | String | |
ShipToAddressPhone3CountryCode | String | |
ShipToAddressPhone3Extension | String | |
ShipToAddressPhone3 | String | |
ShipToAddressCountryRegionCodeId | String | |
ShipToAddressContactPerson | String | |
ShipToAddressName | String | |
ShipToAddressKeyCustomerId | String | |
ShipToAddressId | String | |
ShippingMethodId | String | |
TaxAmountCurrency | String | |
TaxAmount | Decimal | |
TaxExemptNumber1 | String | |
TaxExemptNumber2 | String | |
TaxRegistrationNumber | String | |
TaxScheduleId | String | |
TaxesAggregate | String | |
TotalAmountCurrency | String | |
TotalAmount | Decimal | |
TrackingNumbersAggregate | String | |
TradeDiscountItem | String | |
TransactionState | String | |
Type | String | |
UPSZone | String | |
UserDefinedDate01 | Datetime | |
UserDefinedDate02 | Datetime | |
UserDefinedList01 | String | |
UserDefinedList02 | String | |
UserDefinedList03 | String | |
UserDefinedText01 | String | |
UserDefinedText02 | String | |
UserDefinedText03 | String | |
UserDefinedText04 | String | |
UserDefinedText05 | String | |
WarehouseId | String | |
DaysToIncrement | Int | |
DocumentFrequency | String | |
ExpirationDate | Datetime | |
IsProspect | Bool | |
IsRepeating | Bool | |
LinesExtensionsExtensionAggregate | String | |
LinesComment | String | |
LinesCommentId | String | |
LinesCostOfSalesGLAccountId | String | |
LinesCostOfSalesGLAccountKeyIsEncrypted | Bool | |
LinesDamagedGLAccountId | String | |
LinesDamagedGLAccountKeyIsEncrypted | Bool | |
LinesDeleteOnUpdate | Bool | |
LinesDiscountItem | String | |
LinesDiscountGLAccountId | String | |
LinesDiscountGLAccountKeyIsEncrypted | Bool | |
LinesExtendedCostCurrency | String | |
LinesExtendedCost | Decimal | |
LinesFrontOfficeIntegrationId | String | |
LinesInServiceGLAccountId | String | |
LinesInServiceGLAccountKeyIsEncrypted | Bool | |
LinesInUseGLAccountId | String | |
LinesInUseGLAccountKeyIsEncrypted | Bool | |
LinesIntegrationId | String | |
LinesIntegrationSource | Int | |
LinesInventoryGLAccountId | String | |
LinesInventoryGLAccountKeyIsEncrypted | Bool | |
LinesIsDropShip | Bool | |
LinesIsNonInventory | Bool | |
LinesItemDescription | String | |
LinesItemId | String | |
LinesItemTaxScheduleId | String | |
LinesKeyLineSequenceNumber [KEY] | Int | |
LinesKeySalesDocumentId [KEY] | String | |
LinesPriceLevelId | String | |
LinesQuantity | Decimal | |
LinesRequestedShipDate | Datetime | |
LinesReturnsGLAccountId | String | |
LinesReturnsGLAccountKeyIsEncrypted | Bool | |
LinesSalesGLAccountId | String | |
LinesSalesGLAccountKeyIsEncrypted | Bool | |
LinesSalesTerritoryId | String | |
LinesSalespersonId | String | |
LinesShipToAddressExtensionsExtensionAggregate | String | |
LinesShipToAddressCity | String | |
LinesShipToAddressLine1 | String | |
LinesShipToAddressLine2 | String | |
LinesShipToAddressLine3 | String | |
LinesShipToAddressPostalCode | String | |
LinesShipToAddressState | String | |
LinesShipToAddressCountryRegion | String | |
LinesShipToAddressFaxCountryCode | String | |
LinesShipToAddressFaxExtension | String | |
LinesShipToAddressFax | String | |
LinesShipToAddressPhone1CountryCode | String | |
LinesShipToAddressPhone1Extension | String | |
LinesShipToAddressPhone1 | String | |
LinesShipToAddressPhone2CountryCode | String | |
LinesShipToAddressPhone2Extension | String | |
LinesShipToAddressPhone2 | String | |
LinesShipToAddressPhone3CountryCode | String | |
LinesShipToAddressPhone3Extension | String | |
LinesShipToAddressPhone3 | String | |
LinesShipToAddressCountryRegionCodeId | String | |
LinesShipToAddressContactPerson | String | |
LinesShipToAddressName | String | |
LinesShipToAddressKeyCustomerId | String | |
LinesShipToAddressId | String | |
LinesShippingMethodId | String | |
LinesTaxAmountCurrency | String | |
LinesTaxAmount | Decimal | |
LinesTaxBasis | String | |
LinesTaxScheduleId | String | |
LinesTaxesAggregate | String | |
LinesTotalAmountCurrency | String | |
LinesTotalAmount | Decimal | |
LinesUnitCostCurrency | String | |
LinesUnitCost | Decimal | |
LinesUnitPriceCurrency | String | |
LinesUnitPrice | Decimal | |
LinesUofM | String | |
LinesWarehouseId | String | |
LinesComponentsAggregate | String | |
LinesQuantityCanceled | Decimal | |
LinesQuantityToInvoice | Decimal | |
LinesQuantityToOrder | Decimal | |
TimesToRepeat | Int | |
WorkflowPriority | String | |
WorkflowsAggregate | String |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
SalesReturnDistributions
Return a list of: SalesReturnDistributions
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
ActualShipDate | Datetime | |
AuditTrailCode | String | |
BackorderDate | Datetime | |
BatchKeyCreatedDateTime | Datetime | |
BatchId | String | |
BatchKeySource | String | |
BillToAddressKeyCustomerId | String | |
BillToAddressId | String | |
Comment | String | |
CommentId | String | |
CommissionAmountCurrency | String | |
CommissionAmount | Decimal | |
CommissionBasedOn | String | |
CommissionSaleAmountCurrency | String | |
CommissionSaleAmount | Decimal | |
CommissionsAggregate | String | |
CreatedBy | String | |
CreatedDate | Datetime | |
CurrencyKeyISOCode | String | |
CustomerId | String | |
CustomerName | String | |
CustomerPONumber | String | |
Date | Datetime | |
DiscountAmountCurrency | String | |
DiscountAmount | Decimal | |
DocumentTypeId | String | |
DocumentTypeKeyType | String | |
ExchangeDate | Datetime | |
ExchangeRate | Decimal | |
FreightAmountCurrency | String | |
FreightAmount | Decimal | |
FreightTaxAmountCurrency | String | |
FreightTaxAmount | Decimal | |
FreightTaxBasis | String | |
FreightTaxScheduleId | String | |
FreightTaxesAggregate | String | |
FrontOfficeIntegrationId | String | |
FulfillDate | Datetime | |
IntegrationId | String | |
IntegrationSource | Int | |
InvoiceDate | Datetime | |
IsIntrastatDocument | Bool | |
IsVoided | Bool | |
Id | String | |
LastModifiedDate | Datetime | |
LineTotalAmountCurrency | String | |
LineTotalAmount | Decimal | |
MasterNumber | Int | |
MiscellaneousAmountCurrency | String | |
MiscellaneousAmount | Decimal | |
MiscellaneousTaxAmountCurrency | String | |
MiscellaneousTaxAmount | Decimal | |
MiscellaneousTaxBasis | String | |
MiscellaneousTaxScheduleId | String | |
MiscellaneousTaxesAggregate | String | |
ModifiedDate | Datetime | |
Note | String | |
OriginalSalesDocumentId | String | |
OriginalSalesDocumentType | String | |
PaymentTermsId | String | |
PriceLevelId | String | |
ProcessHoldsAggregate | String | |
QuoteDate | Datetime | |
Reference | String | |
RequestedShipDate | Datetime | |
ReturnDate | Datetime | |
SalesTerritoryId | String | |
SalespersonId | String | |
ShipCompleteOnly | Bool | |
ShipToAddressExtensionsExtensionAggregate | String | |
ShipToAddressCity | String | |
ShipToAddressLine1 | String | |
ShipToAddressLine2 | String | |
ShipToAddressLine3 | String | |
ShipToAddressPostalCode | String | |
ShipToAddressState | String | |
ShipToAddressCountryRegion | String | |
ShipToAddressFaxCountryCode | String | |
ShipToAddressFaxExtension | String | |
ShipToAddressFax | String | |
ShipToAddressPhone1CountryCode | String | |
ShipToAddressPhone1Extension | String | |
ShipToAddressPhone1 | String | |
ShipToAddressPhone2CountryCode | String | |
ShipToAddressPhone2Extension | String | |
ShipToAddressPhone2 | String | |
ShipToAddressPhone3CountryCode | String | |
ShipToAddressPhone3Extension | String | |
ShipToAddressPhone3 | String | |
ShipToAddressCountryRegionCodeId | String | |
ShipToAddressContactPerson | String | |
ShipToAddressName | String | |
ShipToAddressKeyCustomerId | String | |
ShipToAddressId | String | |
ShippingMethodId | String | |
TaxAmountCurrency | String | |
TaxAmount | Decimal | |
TaxExemptNumber1 | String | |
TaxExemptNumber2 | String | |
TaxRegistrationNumber | String | |
TaxScheduleId | String | |
TaxesAggregate | String | |
TotalAmountCurrency | String | |
TotalAmount | Decimal | |
TrackingNumbersAggregate | String | |
TradeDiscountItem | String | |
TransactionState | String | |
Type | String | |
UPSZone | String | |
UserDefinedDate01 | Datetime | |
UserDefinedDate02 | Datetime | |
UserDefinedList01 | String | |
UserDefinedList02 | String | |
UserDefinedList03 | String | |
UserDefinedText01 | String | |
UserDefinedText02 | String | |
UserDefinedText03 | String | |
UserDefinedText04 | String | |
UserDefinedText05 | String | |
WarehouseId | String | |
DistributionsExtensionsExtensionAggregate | String | |
DistributionsDistributionTypeId | Int | |
DistributionsGLAccountId | String | |
DistributionsGLAccountKeyIsEncrypted | Bool | |
DistributionsReference | String | |
DistributionsIsPosted | Bool | |
DistributionsKeySalesDocumentId [KEY] | String | |
DistributionsKeySequenceNumber [KEY] | Int | |
GeneralLedgerPostingDate | Datetime | |
LinesAggregate | String | |
PaymentAmountCurrency | String | |
PaymentAmount | Decimal | |
PaymentsAggregate | String | |
PostedBy | String | |
PostedDate | Datetime | |
TermsDiscountReturnedAmountCurrency | String | |
TermsDiscountReturnedAmount | Decimal |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
SalesReturnLines
Return a list of: SalesReturnLines
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
ActualShipDate | Datetime | |
AuditTrailCode | String | |
BackorderDate | Datetime | |
BatchKeyCreatedDateTime | Datetime | |
BatchId | String | |
BatchKeySource | String | |
BillToAddressKeyCustomerId | String | |
BillToAddressId | String | |
Comment | String | |
CommentId | String | |
CommissionAmountCurrency | String | |
CommissionAmount | Decimal | |
CommissionBasedOn | String | |
CommissionSaleAmountCurrency | String | |
CommissionSaleAmount | Decimal | |
CommissionsAggregate | String | |
CreatedBy | String | |
CreatedDate | Datetime | |
CurrencyKeyISOCode | String | |
CustomerId | String | |
CustomerName | String | |
CustomerPONumber | String | |
Date | Datetime | |
DiscountAmountCurrency | String | |
DiscountAmount | Decimal | |
DocumentTypeId | String | |
DocumentTypeKeyType | String | |
ExchangeDate | Datetime | |
ExchangeRate | Decimal | |
FreightAmountCurrency | String | |
FreightAmount | Decimal | |
FreightTaxAmountCurrency | String | |
FreightTaxAmount | Decimal | |
FreightTaxBasis | String | |
FreightTaxScheduleId | String | |
FreightTaxesAggregate | String | |
FrontOfficeIntegrationId | String | |
FulfillDate | Datetime | |
IntegrationId | String | |
IntegrationSource | Int | |
InvoiceDate | Datetime | |
IsIntrastatDocument | Bool | |
IsVoided | Bool | |
Id | String | |
LastModifiedDate | Datetime | |
LineTotalAmountCurrency | String | |
LineTotalAmount | Decimal | |
MasterNumber | Int | |
MiscellaneousAmountCurrency | String | |
MiscellaneousAmount | Decimal | |
MiscellaneousTaxAmountCurrency | String | |
MiscellaneousTaxAmount | Decimal | |
MiscellaneousTaxBasis | String | |
MiscellaneousTaxScheduleId | String | |
MiscellaneousTaxesAggregate | String | |
ModifiedDate | Datetime | |
Note | String | |
OriginalSalesDocumentId | String | |
OriginalSalesDocumentType | String | |
PaymentTermsId | String | |
PriceLevelId | String | |
ProcessHoldsAggregate | String | |
QuoteDate | Datetime | |
Reference | String | |
RequestedShipDate | Datetime | |
ReturnDate | Datetime | |
SalesTerritoryId | String | |
SalespersonId | String | |
ShipCompleteOnly | Bool | |
ShipToAddressExtensionsExtensionAggregate | String | |
ShipToAddressCity | String | |
ShipToAddressLine1 | String | |
ShipToAddressLine2 | String | |
ShipToAddressLine3 | String | |
ShipToAddressPostalCode | String | |
ShipToAddressState | String | |
ShipToAddressCountryRegion | String | |
ShipToAddressFaxCountryCode | String | |
ShipToAddressFaxExtension | String | |
ShipToAddressFax | String | |
ShipToAddressPhone1CountryCode | String | |
ShipToAddressPhone1Extension | String | |
ShipToAddressPhone1 | String | |
ShipToAddressPhone2CountryCode | String | |
ShipToAddressPhone2Extension | String | |
ShipToAddressPhone2 | String | |
ShipToAddressPhone3CountryCode | String | |
ShipToAddressPhone3Extension | String | |
ShipToAddressPhone3 | String | |
ShipToAddressCountryRegionCodeId | String | |
ShipToAddressContactPerson | String | |
ShipToAddressName | String | |
ShipToAddressKeyCustomerId | String | |
ShipToAddressId | String | |
ShippingMethodId | String | |
TaxAmountCurrency | String | |
TaxAmount | Decimal | |
TaxExemptNumber1 | String | |
TaxExemptNumber2 | String | |
TaxRegistrationNumber | String | |
TaxScheduleId | String | |
TaxesAggregate | String | |
TotalAmountCurrency | String | |
TotalAmount | Decimal | |
TrackingNumbersAggregate | String | |
TradeDiscountItem | String | |
TransactionState | String | |
Type | String | |
UPSZone | String | |
UserDefinedDate01 | Datetime | |
UserDefinedDate02 | Datetime | |
UserDefinedList01 | String | |
UserDefinedList02 | String | |
UserDefinedList03 | String | |
UserDefinedText01 | String | |
UserDefinedText02 | String | |
UserDefinedText03 | String | |
UserDefinedText04 | String | |
UserDefinedText05 | String | |
WarehouseId | String | |
DistributionsAggregate | String | |
GeneralLedgerPostingDate | Datetime | |
LinesExtensionsExtensionAggregate | String | |
LinesComment | String | |
LinesCommentId | String | |
LinesCostOfSalesGLAccountId | String | |
LinesCostOfSalesGLAccountKeyIsEncrypted | Bool | |
LinesDamagedGLAccountId | String | |
LinesDamagedGLAccountKeyIsEncrypted | Bool | |
LinesDeleteOnUpdate | Bool | |
LinesDiscountItem | String | |
LinesDiscountGLAccountId | String | |
LinesDiscountGLAccountKeyIsEncrypted | Bool | |
LinesExtendedCostCurrency | String | |
LinesExtendedCost | Decimal | |
LinesFrontOfficeIntegrationId | String | |
LinesInServiceGLAccountId | String | |
LinesInServiceGLAccountKeyIsEncrypted | Bool | |
LinesInUseGLAccountId | String | |
LinesInUseGLAccountKeyIsEncrypted | Bool | |
LinesIntegrationId | String | |
LinesIntegrationSource | Int | |
LinesInventoryGLAccountId | String | |
LinesInventoryGLAccountKeyIsEncrypted | Bool | |
LinesIsDropShip | Bool | |
LinesIsNonInventory | Bool | |
LinesItemDescription | String | |
LinesItemId | String | |
LinesItemTaxScheduleId | String | |
LinesKeyLineSequenceNumber [KEY] | Int | |
LinesKeySalesDocumentId [KEY] | String | |
LinesPriceLevelId | String | |
LinesQuantity | Decimal | |
LinesRequestedShipDate | Datetime | |
LinesReturnsGLAccountId | String | |
LinesReturnsGLAccountKeyIsEncrypted | Bool | |
LinesSalesGLAccountId | String | |
LinesSalesGLAccountKeyIsEncrypted | Bool | |
LinesSalesTerritoryId | String | |
LinesSalespersonId | String | |
LinesShipToAddressExtensionsExtensionAggregate | String | |
LinesShipToAddressCity | String | |
LinesShipToAddressLine1 | String | |
LinesShipToAddressLine2 | String | |
LinesShipToAddressLine3 | String | |
LinesShipToAddressPostalCode | String | |
LinesShipToAddressState | String | |
LinesShipToAddressCountryRegion | String | |
LinesShipToAddressFaxCountryCode | String | |
LinesShipToAddressFaxExtension | String | |
LinesShipToAddressFax | String | |
LinesShipToAddressPhone1CountryCode | String | |
LinesShipToAddressPhone1Extension | String | |
LinesShipToAddressPhone1 | String | |
LinesShipToAddressPhone2CountryCode | String | |
LinesShipToAddressPhone2Extension | String | |
LinesShipToAddressPhone2 | String | |
LinesShipToAddressPhone3CountryCode | String | |
LinesShipToAddressPhone3Extension | String | |
LinesShipToAddressPhone3 | String | |
LinesShipToAddressCountryRegionCodeId | String | |
LinesShipToAddressContactPerson | String | |
LinesShipToAddressName | String | |
LinesShipToAddressKeyCustomerId | String | |
LinesShipToAddressId | String | |
LinesShippingMethodId | String | |
LinesTaxAmountCurrency | String | |
LinesTaxAmount | Decimal | |
LinesTaxBasis | String | |
LinesTaxScheduleId | String | |
LinesTaxesAggregate | String | |
LinesTotalAmountCurrency | String | |
LinesTotalAmount | Decimal | |
LinesUnitCostCurrency | String | |
LinesUnitCost | Decimal | |
LinesUnitPriceCurrency | String | |
LinesUnitPrice | Decimal | |
LinesUofM | String | |
LinesWarehouseId | String | |
LinesBinsAggregate | String | |
LinesComponentsAggregate | String | |
LinesLotsAggregate | String | |
LinesReturnQuantityDamagedQuantity | Decimal | |
LinesReturnQuantityInServiceQuantity | Decimal | |
LinesReturnQuantityInUseQuantity | Decimal | |
LinesReturnQuantityOnHandQuantity | Decimal | |
LinesReturnQuantityReturnedQuantity | Decimal | |
LinesSerialsAggregate | String | |
PaymentAmountCurrency | String | |
PaymentAmount | Decimal | |
PaymentsAggregate | String | |
PostedBy | String | |
PostedDate | Datetime | |
TermsDiscountReturnedAmountCurrency | String | |
TermsDiscountReturnedAmount | Decimal |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
SalesReturnPayments
Return a list of: SalesReturnPayments
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
ActualShipDate | Datetime | |
AuditTrailCode | String | |
BackorderDate | Datetime | |
BatchKeyCreatedDateTime | Datetime | |
BatchId | String | |
BatchKeySource | String | |
BillToAddressKeyCustomerId | String | |
BillToAddressId | String | |
Comment | String | |
CommentId | String | |
CommissionAmountCurrency | String | |
CommissionAmount | Decimal | |
CommissionBasedOn | String | |
CommissionSaleAmountCurrency | String | |
CommissionSaleAmount | Decimal | |
CommissionsAggregate | String | |
CreatedBy | String | |
CreatedDate | Datetime | |
CurrencyKeyISOCode | String | |
CustomerId | String | |
CustomerName | String | |
CustomerPONumber | String | |
Date | Datetime | |
DiscountAmountCurrency | String | |
DiscountAmount | Decimal | |
DocumentTypeId | String | |
DocumentTypeKeyType | String | |
ExchangeDate | Datetime | |
ExchangeRate | Decimal | |
FreightAmountCurrency | String | |
FreightAmount | Decimal | |
FreightTaxAmountCurrency | String | |
FreightTaxAmount | Decimal | |
FreightTaxBasis | String | |
FreightTaxScheduleId | String | |
FreightTaxesAggregate | String | |
FrontOfficeIntegrationId | String | |
FulfillDate | Datetime | |
IntegrationId | String | |
IntegrationSource | Int | |
InvoiceDate | Datetime | |
IsIntrastatDocument | Bool | |
IsVoided | Bool | |
Id | String | |
LastModifiedDate | Datetime | |
LineTotalAmountCurrency | String | |
LineTotalAmount | Decimal | |
MasterNumber | Int | |
MiscellaneousAmountCurrency | String | |
MiscellaneousAmount | Decimal | |
MiscellaneousTaxAmountCurrency | String | |
MiscellaneousTaxAmount | Decimal | |
MiscellaneousTaxBasis | String | |
MiscellaneousTaxScheduleId | String | |
MiscellaneousTaxesAggregate | String | |
ModifiedDate | Datetime | |
Note | String | |
OriginalSalesDocumentId | String | |
OriginalSalesDocumentType | String | |
PaymentTermsId | String | |
PriceLevelId | String | |
ProcessHoldsAggregate | String | |
QuoteDate | Datetime | |
Reference | String | |
RequestedShipDate | Datetime | |
ReturnDate | Datetime | |
SalesTerritoryId | String | |
SalespersonId | String | |
ShipCompleteOnly | Bool | |
ShipToAddressExtensionsExtensionAggregate | String | |
ShipToAddressCity | String | |
ShipToAddressLine1 | String | |
ShipToAddressLine2 | String | |
ShipToAddressLine3 | String | |
ShipToAddressPostalCode | String | |
ShipToAddressState | String | |
ShipToAddressCountryRegion | String | |
ShipToAddressFaxCountryCode | String | |
ShipToAddressFaxExtension | String | |
ShipToAddressFax | String | |
ShipToAddressPhone1CountryCode | String | |
ShipToAddressPhone1Extension | String | |
ShipToAddressPhone1 | String | |
ShipToAddressPhone2CountryCode | String | |
ShipToAddressPhone2Extension | String | |
ShipToAddressPhone2 | String | |
ShipToAddressPhone3CountryCode | String | |
ShipToAddressPhone3Extension | String | |
ShipToAddressPhone3 | String | |
ShipToAddressCountryRegionCodeId | String | |
ShipToAddressContactPerson | String | |
ShipToAddressName | String | |
ShipToAddressKeyCustomerId | String | |
ShipToAddressId | String | |
ShippingMethodId | String | |
TaxAmountCurrency | String | |
TaxAmount | Decimal | |
TaxExemptNumber1 | String | |
TaxExemptNumber2 | String | |
TaxRegistrationNumber | String | |
TaxScheduleId | String | |
TaxesAggregate | String | |
TotalAmountCurrency | String | |
TotalAmount | Decimal | |
TrackingNumbersAggregate | String | |
TradeDiscountItem | String | |
TransactionState | String | |
Type | String | |
UPSZone | String | |
UserDefinedDate01 | Datetime | |
UserDefinedDate02 | Datetime | |
UserDefinedList01 | String | |
UserDefinedList02 | String | |
UserDefinedList03 | String | |
UserDefinedText01 | String | |
UserDefinedText02 | String | |
UserDefinedText03 | String | |
UserDefinedText04 | String | |
UserDefinedText05 | String | |
WarehouseId | String | |
DistributionsAggregate | String | |
GeneralLedgerPostingDate | Datetime | |
LinesAggregate | String | |
PaymentAmountCurrency | String | |
PaymentAmount | Decimal | |
PaymentsExtensionsExtensionAggregate | String | |
PaymentsAuditTrailCode | String | |
PaymentsAuthorizationCode | String | |
PaymentsBankAccountId | String | |
PaymentsCheckNumber | String | |
PaymentsCurrencyKeyISOCode | String | |
PaymentsDate | Datetime | |
PaymentsDeleteOnUpdate | Bool | |
PaymentsExpirationDate | Datetime | |
PaymentsKeySalesDocumentId [KEY] | String | |
PaymentsKeySequenceNumber [KEY] | Int | |
PaymentsNumber | String | |
PaymentsPaymentAmountCurrency | String | |
PaymentsPaymentAmount | Decimal | |
PaymentsPaymentCardNumber | String | |
PaymentsPaymentCardTypeId | String | |
PaymentsType | String | |
PostedBy | String | |
PostedDate | Datetime | |
TermsDiscountReturnedAmountCurrency | String | |
TermsDiscountReturnedAmount | Decimal |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
SalesTerritory
Return a list of: SalesTerritory
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
Country | String | |
CreatedDate | Datetime | |
Description | String | |
HistoryOptionsExtensionsExtensionAggregate | String | |
HistoryOptionsKeepCalendar | Bool | |
HistoryOptionsKeepPeriod | Bool | |
IsActive | Bool | |
Id [KEY] | String | |
ModifiedDate | Datetime | |
SalesHistoryAggregate | String | |
SalesManagerFirstName | String | |
SalesManagerId | String | |
SalesManagerLastName | String | |
SalesManagerMiddleName | String | |
SalesSummaryExtensionsExtensionAggregate | String | |
SalesSummaryLastYearExtensionsExtensionAggregate | String | |
SalesSummaryLastYearCommissionedSalesCurrency | String | |
SalesSummaryLastYearCommissionedSales | Decimal | |
SalesSummaryLastYearCostOfSalesCurrency | String | |
SalesSummaryLastYearCostOfSales | Decimal | |
SalesSummaryLastYearNoncommissionedSalesCurrency | String | |
SalesSummaryLastYearNoncommissionedSales | Decimal | |
SalesSummaryLastYearTotalCommissionsAmountCurrency | String | |
SalesSummaryLastYearTotalCommissionsAmount | Decimal | |
SalesSummaryYearToDateExtensionsExtensionAggregate | String | |
SalesSummaryYearToDateCommissionedSalesCurrency | String | |
SalesSummaryYearToDateCommissionedSales | Decimal | |
SalesSummaryYearToDateCostOfSalesCurrency | String | |
SalesSummaryYearToDateCostOfSales | Decimal | |
SalesSummaryYearToDateNoncommissionedSalesCurrency | String | |
SalesSummaryYearToDateNoncommissionedSales | Decimal | |
SalesSummaryYearToDateTotalCommissionsAmountCurrency | String | |
SalesSummaryYearToDateTotalCommissionsAmount | Decimal |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
SalesTerritorySalesHistory
Return a list of: SalesTerritorySalesHistory
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
Country | String | |
CreatedDate | Datetime | |
Description | String | |
HistoryOptionsExtensionsExtensionAggregate | String | |
HistoryOptionsKeepCalendar | Bool | |
HistoryOptionsKeepPeriod | Bool | |
IsActive | Bool | |
Id | String | |
ModifiedDate | Datetime | |
SalesHistoryExtensionsExtensionAggregate | String | |
SalesHistoryCommissionSummaryExtensionsExtensionAggregate | String | |
SalesHistoryCommissionSummaryCommissionedSalesCurrency | String | |
SalesHistoryCommissionSummaryCommissionedSales | Decimal | |
SalesHistoryCommissionSummaryCostOfSalesCurrency | String | |
SalesHistoryCommissionSummaryCostOfSales | Decimal | |
SalesHistoryCommissionSummaryNoncommissionedSalesCurrency | String | |
SalesHistoryCommissionSummaryNoncommissionedSales | Decimal | |
SalesHistoryCommissionSummaryTotalCommissionsAmountCurrency | String | |
SalesHistoryCommissionSummaryTotalCommissionsAmount | Decimal | |
SalesHistoryKeyPeriod [KEY] | Int | |
SalesHistoryKeySalesTerritoryId [KEY] | String | |
SalesHistoryKeySummaryType [KEY] | String | |
SalesHistoryKeyYear [KEY] | Int | |
SalesManagerFirstName | String | |
SalesManagerId | String | |
SalesManagerLastName | String | |
SalesManagerMiddleName | String | |
SalesSummaryExtensionsExtensionAggregate | String | |
SalesSummaryLastYearExtensionsExtensionAggregate | String | |
SalesSummaryLastYearCommissionedSalesCurrency | String | |
SalesSummaryLastYearCommissionedSales | Decimal | |
SalesSummaryLastYearCostOfSalesCurrency | String | |
SalesSummaryLastYearCostOfSales | Decimal | |
SalesSummaryLastYearNoncommissionedSalesCurrency | String | |
SalesSummaryLastYearNoncommissionedSales | Decimal | |
SalesSummaryLastYearTotalCommissionsAmountCurrency | String | |
SalesSummaryLastYearTotalCommissionsAmount | Decimal | |
SalesSummaryYearToDateExtensionsExtensionAggregate | String | |
SalesSummaryYearToDateCommissionedSalesCurrency | String | |
SalesSummaryYearToDateCommissionedSales | Decimal | |
SalesSummaryYearToDateCostOfSalesCurrency | String | |
SalesSummaryYearToDateCostOfSales | Decimal | |
SalesSummaryYearToDateNoncommissionedSalesCurrency | String | |
SalesSummaryYearToDateNoncommissionedSales | Decimal | |
SalesSummaryYearToDateTotalCommissionsAmountCurrency | String | |
SalesSummaryYearToDateTotalCommissionsAmount | Decimal |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
ServiceCallAdditionalCharges
Return a list of: ServiceCallAdditionalCharges
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
BillToAddressId | String | |
BillToCustomerId | String | |
CurrencyKeyISOCode | String | |
CustomerId | String | |
CustomerName | String | |
CustomerPONumber | String | |
EntryDateTime | Datetime | |
EstimatedArrivalDateTime | Datetime | |
ExchangeDate | Datetime | |
ExchangeRate | Decimal | |
FrontOfficeIntegrationId | String | |
Id | String | |
Note | String | |
OfficeId | String | |
RateTypeId | String | |
ShipToAddressId | String | |
TransactionState | String | |
UserDefined01 | String | |
UserDefined02 | String | |
UserDefined03 | String | |
UserDefined04 | String | |
UserDefined05 | String | |
AuditsAggregate | String | |
CustomerReference | String | |
Description | String | |
DistributionsAggregate | String | |
DocumentTotalCurrency | String | |
DocumentTotal | Decimal | |
EstimatedTimeToRepair | Decimal | |
IsOnHold | Bool | |
LaborChargesExtensionsExtensionAggregate | String | |
LaborChargesBillablePercent | Decimal | |
LaborChargesTotalAmountCurrency | String | |
LaborChargesTotalAmount | Decimal | |
LaborChargesTotalCostCurrency | String | |
LaborChargesTotalCost | Decimal | |
MiscellaneousChargesExtensionsExtensionAggregate | String | |
MiscellaneousChargesBillablePercent | Decimal | |
MiscellaneousChargesTotalAmountCurrency | String | |
MiscellaneousChargesTotalAmount | Decimal | |
MiscellaneousChargesTotalCostCurrency | String | |
MiscellaneousChargesTotalCost | Decimal | |
PartsChargesExtensionsExtensionAggregate | String | |
PartsChargesBillablePercent | Decimal | |
PartsChargesTotalAmountCurrency | String | |
PartsChargesTotalAmount | Decimal | |
PartsChargesTotalCostCurrency | String | |
PartsChargesTotalCost | Decimal | |
PaymentTermsId | String | |
PreTaxDocumentAmountCurrency | String | |
PreTaxDocumentAmount | Decimal | |
PriceLevelId | String | |
Priority | Int | |
ResponseDateTime | Datetime | |
SalesPersonId | String | |
ServiceAreaId | String | |
ServiceContractId | String | |
ServiceContractLineSequenceNumber | Decimal | |
ServiceTypeId | String | |
ShipToAddressExtensionsExtensionAggregate | String | |
ShipToAddressCity | String | |
ShipToAddressLine1 | String | |
ShipToAddressLine2 | String | |
ShipToAddressLine3 | String | |
ShipToAddressPostalCode | String | |
ShipToAddressState | String | |
ShipToAddressCountryRegion | String | |
ShipToAddressContactPerson | String | |
ShipToAddressPhone1CountryCode | String | |
ShipToAddressPhone1Extension | String | |
ShipToAddressPhone1 | String | |
StatusCodeId | String | |
TaxAmountCurrency | String | |
TaxAmount | Decimal | |
TaxExemptNumber1 | String | |
TaxExemptNumber2 | String | |
TaxScheduleId | String | |
TechnicianId | String | |
TimeZoneId | String | |
AdditionalChargesExtensionsExtensionAggregate | String | |
AdditionalChargesEntryDateTime | Datetime | |
AdditionalChargesEquipmentLineSequenceNumber | Int | |
AdditionalChargesFrontOfficeIntegrationId | String | |
AdditionalChargesItemDescription | String | |
AdditionalChargesItemId | String | |
AdditionalChargesKeyLineSequenceNumber [KEY] | Int | |
AdditionalChargesKeyServiceDocumentId [KEY] | String | |
AdditionalChargesNote | String | |
AdditionalChargesPriceLevelId | String | |
AdditionalChargesTaxAmountCurrency | String | |
AdditionalChargesTaxAmount | Decimal | |
AdditionalChargesTechnicianId | String | |
AdditionalChargesTotalAmountCurrency | String | |
AdditionalChargesTotalAmount | Decimal | |
AdditionalChargesUnitCostCurrency | String | |
AdditionalChargesUnitCost | Decimal | |
AdditionalChargesUnitPriceCurrency | String | |
AdditionalChargesUnitPrice | Decimal | |
AdditionalChargesUofM | String | |
AdditionalChargesBillableMiscellaneousPercent | Decimal | |
AdditionalChargesPurchaseOrderConsolidateOnPO | Bool | |
AdditionalChargesPurchaseOrderCreatePO | Bool | |
AdditionalChargesPurchaseOrderPromiseDate | Datetime | |
AdditionalChargesPurchaseOrderVendorId | String | |
AdditionalChargesPurchaseOrderLineKeyLineSequenceNumber | Int | |
AdditionalChargesPurchaseOrderLineKeyPurchaseTransactionId | String | |
AdditionalChargesQuantitySold | Decimal | |
AdditionalChargesTotalCostCurrency | String | |
AdditionalChargesTotalCost | Decimal | |
ArrivalDateTime | Datetime | |
CompletionDateTime | Datetime | |
DispatchDateTime | Datetime | |
EquipmentCodesAggregate | String | |
EscalationDateTime | Datetime | |
EscalationLevel | Int | |
ExpensesAggregate | String | |
InvoicedAmountCurrency | String | |
InvoicedAmount | Decimal | |
IsCallback | Bool | |
LaborAggregate | String | |
Meter1ExtensionsExtensionAggregate | String | |
Meter1CurrentReading | Int | |
Meter1Replaced | Bool | |
Meter1InternalUsage | Int | |
Meter2ExtensionsExtensionAggregate | String | |
Meter2CurrentReading | Int | |
Meter2Replaced | Bool | |
Meter2InternalUsage | Int | |
Meter3ExtensionsExtensionAggregate | String | |
Meter3CurrentReading | Int | |
Meter3Replaced | Bool | |
Meter3InternalUsage | Int | |
Meter4ExtensionsExtensionAggregate | String | |
Meter4CurrentReading | Int | |
Meter4Replaced | Bool | |
Meter4InternalUsage | Int | |
Meter5ExtensionsExtensionAggregate | String | |
Meter5CurrentReading | Int | |
Meter5Replaced | Bool | |
Meter5InternalUsage | Int | |
NotifyDateTime | Datetime | |
PartsAggregate | String | |
Type | String | |
WasNotified | Bool |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
ServiceCallEquipmentCodes
Return a list of: ServiceCallEquipmentCodes
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
BillToAddressId | String | |
BillToCustomerId | String | |
CurrencyKeyISOCode | String | |
CustomerId | String | |
CustomerName | String | |
CustomerPONumber | String | |
EntryDateTime | Datetime | |
EstimatedArrivalDateTime | Datetime | |
ExchangeDate | Datetime | |
ExchangeRate | Decimal | |
FrontOfficeIntegrationId | String | |
Id | String | |
Note | String | |
OfficeId | String | |
RateTypeId | String | |
ShipToAddressId | String | |
TransactionState | String | |
UserDefined01 | String | |
UserDefined02 | String | |
UserDefined03 | String | |
UserDefined04 | String | |
UserDefined05 | String | |
AuditsAggregate | String | |
CustomerReference | String | |
Description | String | |
DistributionsAggregate | String | |
DocumentTotalCurrency | String | |
DocumentTotal | Decimal | |
EstimatedTimeToRepair | Decimal | |
IsOnHold | Bool | |
LaborChargesExtensionsExtensionAggregate | String | |
LaborChargesBillablePercent | Decimal | |
LaborChargesTotalAmountCurrency | String | |
LaborChargesTotalAmount | Decimal | |
LaborChargesTotalCostCurrency | String | |
LaborChargesTotalCost | Decimal | |
MiscellaneousChargesExtensionsExtensionAggregate | String | |
MiscellaneousChargesBillablePercent | Decimal | |
MiscellaneousChargesTotalAmountCurrency | String | |
MiscellaneousChargesTotalAmount | Decimal | |
MiscellaneousChargesTotalCostCurrency | String | |
MiscellaneousChargesTotalCost | Decimal | |
PartsChargesExtensionsExtensionAggregate | String | |
PartsChargesBillablePercent | Decimal | |
PartsChargesTotalAmountCurrency | String | |
PartsChargesTotalAmount | Decimal | |
PartsChargesTotalCostCurrency | String | |
PartsChargesTotalCost | Decimal | |
PaymentTermsId | String | |
PreTaxDocumentAmountCurrency | String | |
PreTaxDocumentAmount | Decimal | |
PriceLevelId | String | |
Priority | Int | |
ResponseDateTime | Datetime | |
SalesPersonId | String | |
ServiceAreaId | String | |
ServiceContractId | String | |
ServiceContractLineSequenceNumber | Decimal | |
ServiceTypeId | String | |
ShipToAddressExtensionsExtensionAggregate | String | |
ShipToAddressCity | String | |
ShipToAddressLine1 | String | |
ShipToAddressLine2 | String | |
ShipToAddressLine3 | String | |
ShipToAddressPostalCode | String | |
ShipToAddressState | String | |
ShipToAddressCountryRegion | String | |
ShipToAddressContactPerson | String | |
ShipToAddressPhone1CountryCode | String | |
ShipToAddressPhone1Extension | String | |
ShipToAddressPhone1 | String | |
StatusCodeId | String | |
TaxAmountCurrency | String | |
TaxAmount | Decimal | |
TaxExemptNumber1 | String | |
TaxExemptNumber2 | String | |
TaxScheduleId | String | |
TechnicianId | String | |
TimeZoneId | String | |
AdditionalChargesAggregate | String | |
ArrivalDateTime | Datetime | |
CompletionDateTime | Datetime | |
DispatchDateTime | Datetime | |
EquipmentCodesExtensionsExtensionAggregate | String | |
EquipmentCodesCauseCodeId | String | |
EquipmentCodesEquipmentLineSequenceNumber | Int | |
EquipmentCodesItemId | String | |
EquipmentCodesKeyLineSequenceNumber [KEY] | Int | |
EquipmentCodesKeyServiceDocumentId [KEY] | String | |
EquipmentCodesProblemCodeId | String | |
EquipmentCodesRepairCodeId | String | |
EquipmentCodesSerialNumber | String | |
EquipmentCodesPerformedPreventiveMaintenance | Bool | |
EscalationDateTime | Datetime | |
EscalationLevel | Int | |
ExpensesAggregate | String | |
InvoicedAmountCurrency | String | |
InvoicedAmount | Decimal | |
IsCallback | Bool | |
LaborAggregate | String | |
Meter1ExtensionsExtensionAggregate | String | |
Meter1CurrentReading | Int | |
Meter1Replaced | Bool | |
Meter1InternalUsage | Int | |
Meter2ExtensionsExtensionAggregate | String | |
Meter2CurrentReading | Int | |
Meter2Replaced | Bool | |
Meter2InternalUsage | Int | |
Meter3ExtensionsExtensionAggregate | String | |
Meter3CurrentReading | Int | |
Meter3Replaced | Bool | |
Meter3InternalUsage | Int | |
Meter4ExtensionsExtensionAggregate | String | |
Meter4CurrentReading | Int | |
Meter4Replaced | Bool | |
Meter4InternalUsage | Int | |
Meter5ExtensionsExtensionAggregate | String | |
Meter5CurrentReading | Int | |
Meter5Replaced | Bool | |
Meter5InternalUsage | Int | |
NotifyDateTime | Datetime | |
PartsAggregate | String | |
Type | String | |
WasNotified | Bool |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
ServiceCallExpenses
Return a list of: ServiceCallExpenses
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
BillToAddressId | String | |
BillToCustomerId | String | |
CurrencyKeyISOCode | String | |
CustomerId | String | |
CustomerName | String | |
CustomerPONumber | String | |
EntryDateTime | Datetime | |
EstimatedArrivalDateTime | Datetime | |
ExchangeDate | Datetime | |
ExchangeRate | Decimal | |
FrontOfficeIntegrationId | String | |
Id | String | |
Note | String | |
OfficeId | String | |
RateTypeId | String | |
ShipToAddressId | String | |
TransactionState | String | |
UserDefined01 | String | |
UserDefined02 | String | |
UserDefined03 | String | |
UserDefined04 | String | |
UserDefined05 | String | |
AuditsAggregate | String | |
CustomerReference | String | |
Description | String | |
DistributionsAggregate | String | |
DocumentTotalCurrency | String | |
DocumentTotal | Decimal | |
EstimatedTimeToRepair | Decimal | |
IsOnHold | Bool | |
LaborChargesExtensionsExtensionAggregate | String | |
LaborChargesBillablePercent | Decimal | |
LaborChargesTotalAmountCurrency | String | |
LaborChargesTotalAmount | Decimal | |
LaborChargesTotalCostCurrency | String | |
LaborChargesTotalCost | Decimal | |
MiscellaneousChargesExtensionsExtensionAggregate | String | |
MiscellaneousChargesBillablePercent | Decimal | |
MiscellaneousChargesTotalAmountCurrency | String | |
MiscellaneousChargesTotalAmount | Decimal | |
MiscellaneousChargesTotalCostCurrency | String | |
MiscellaneousChargesTotalCost | Decimal | |
PartsChargesExtensionsExtensionAggregate | String | |
PartsChargesBillablePercent | Decimal | |
PartsChargesTotalAmountCurrency | String | |
PartsChargesTotalAmount | Decimal | |
PartsChargesTotalCostCurrency | String | |
PartsChargesTotalCost | Decimal | |
PaymentTermsId | String | |
PreTaxDocumentAmountCurrency | String | |
PreTaxDocumentAmount | Decimal | |
PriceLevelId | String | |
Priority | Int | |
ResponseDateTime | Datetime | |
SalesPersonId | String | |
ServiceAreaId | String | |
ServiceContractId | String | |
ServiceContractLineSequenceNumber | Decimal | |
ServiceTypeId | String | |
ShipToAddressExtensionsExtensionAggregate | String | |
ShipToAddressCity | String | |
ShipToAddressLine1 | String | |
ShipToAddressLine2 | String | |
ShipToAddressLine3 | String | |
ShipToAddressPostalCode | String | |
ShipToAddressState | String | |
ShipToAddressCountryRegion | String | |
ShipToAddressContactPerson | String | |
ShipToAddressPhone1CountryCode | String | |
ShipToAddressPhone1Extension | String | |
ShipToAddressPhone1 | String | |
StatusCodeId | String | |
TaxAmountCurrency | String | |
TaxAmount | Decimal | |
TaxExemptNumber1 | String | |
TaxExemptNumber2 | String | |
TaxScheduleId | String | |
TechnicianId | String | |
TimeZoneId | String | |
AdditionalChargesAggregate | String | |
ArrivalDateTime | Datetime | |
CompletionDateTime | Datetime | |
DispatchDateTime | Datetime | |
EquipmentCodesAggregate | String | |
EscalationDateTime | Datetime | |
EscalationLevel | Int | |
ExpensesExtensionsExtensionAggregate | String | |
ExpensesEntryDateTime | Datetime | |
ExpensesEquipmentLineSequenceNumber | Int | |
ExpensesFrontOfficeIntegrationId | String | |
ExpensesItemDescription | String | |
ExpensesItemId | String | |
ExpensesKeyLineSequenceNumber [KEY] | Int | |
ExpensesKeyServiceDocumentId [KEY] | String | |
ExpensesNote | String | |
ExpensesPriceLevelId | String | |
ExpensesTaxAmountCurrency | String | |
ExpensesTaxAmount | Decimal | |
ExpensesTechnicianId | String | |
ExpensesTotalAmountCurrency | String | |
ExpensesTotalAmount | Decimal | |
ExpensesUnitCostCurrency | String | |
ExpensesUnitCost | Decimal | |
ExpensesUnitPriceCurrency | String | |
ExpensesUnitPrice | Decimal | |
ExpensesUofM | String | |
ExpensesBillableMiscellaneousPercent | Decimal | |
ExpensesPurchaseOrderConsolidateOnPO | Bool | |
ExpensesPurchaseOrderCreatePO | Bool | |
ExpensesPurchaseOrderPromiseDate | Datetime | |
ExpensesPurchaseOrderVendorId | String | |
ExpensesPurchaseOrderLineKeyLineSequenceNumber | Int | |
ExpensesPurchaseOrderLineKeyPurchaseTransactionId | String | |
ExpensesQuantitySold | Decimal | |
ExpensesTotalCostCurrency | String | |
ExpensesTotalCost | Decimal | |
InvoicedAmountCurrency | String | |
InvoicedAmount | Decimal | |
IsCallback | Bool | |
LaborAggregate | String | |
Meter1ExtensionsExtensionAggregate | String | |
Meter1CurrentReading | Int | |
Meter1Replaced | Bool | |
Meter1InternalUsage | Int | |
Meter2ExtensionsExtensionAggregate | String | |
Meter2CurrentReading | Int | |
Meter2Replaced | Bool | |
Meter2InternalUsage | Int | |
Meter3ExtensionsExtensionAggregate | String | |
Meter3CurrentReading | Int | |
Meter3Replaced | Bool | |
Meter3InternalUsage | Int | |
Meter4ExtensionsExtensionAggregate | String | |
Meter4CurrentReading | Int | |
Meter4Replaced | Bool | |
Meter4InternalUsage | Int | |
Meter5ExtensionsExtensionAggregate | String | |
Meter5CurrentReading | Int | |
Meter5Replaced | Bool | |
Meter5InternalUsage | Int | |
NotifyDateTime | Datetime | |
PartsAggregate | String | |
Type | String | |
WasNotified | Bool |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
ServiceCallLabor
Return a list of: ServiceCallLabor
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
BillToAddressId | String | |
BillToCustomerId | String | |
CurrencyKeyISOCode | String | |
CustomerId | String | |
CustomerName | String | |
CustomerPONumber | String | |
EntryDateTime | Datetime | |
EstimatedArrivalDateTime | Datetime | |
ExchangeDate | Datetime | |
ExchangeRate | Decimal | |
FrontOfficeIntegrationId | String | |
Id | String | |
Note | String | |
OfficeId | String | |
RateTypeId | String | |
ShipToAddressId | String | |
TransactionState | String | |
UserDefined01 | String | |
UserDefined02 | String | |
UserDefined03 | String | |
UserDefined04 | String | |
UserDefined05 | String | |
AuditsAggregate | String | |
CustomerReference | String | |
Description | String | |
DistributionsAggregate | String | |
DocumentTotalCurrency | String | |
DocumentTotal | Decimal | |
EstimatedTimeToRepair | Decimal | |
IsOnHold | Bool | |
LaborChargesExtensionsExtensionAggregate | String | |
LaborChargesBillablePercent | Decimal | |
LaborChargesTotalAmountCurrency | String | |
LaborChargesTotalAmount | Decimal | |
LaborChargesTotalCostCurrency | String | |
LaborChargesTotalCost | Decimal | |
MiscellaneousChargesExtensionsExtensionAggregate | String | |
MiscellaneousChargesBillablePercent | Decimal | |
MiscellaneousChargesTotalAmountCurrency | String | |
MiscellaneousChargesTotalAmount | Decimal | |
MiscellaneousChargesTotalCostCurrency | String | |
MiscellaneousChargesTotalCost | Decimal | |
PartsChargesExtensionsExtensionAggregate | String | |
PartsChargesBillablePercent | Decimal | |
PartsChargesTotalAmountCurrency | String | |
PartsChargesTotalAmount | Decimal | |
PartsChargesTotalCostCurrency | String | |
PartsChargesTotalCost | Decimal | |
PaymentTermsId | String | |
PreTaxDocumentAmountCurrency | String | |
PreTaxDocumentAmount | Decimal | |
PriceLevelId | String | |
Priority | Int | |
ResponseDateTime | Datetime | |
SalesPersonId | String | |
ServiceAreaId | String | |
ServiceContractId | String | |
ServiceContractLineSequenceNumber | Decimal | |
ServiceTypeId | String | |
ShipToAddressExtensionsExtensionAggregate | String | |
ShipToAddressCity | String | |
ShipToAddressLine1 | String | |
ShipToAddressLine2 | String | |
ShipToAddressLine3 | String | |
ShipToAddressPostalCode | String | |
ShipToAddressState | String | |
ShipToAddressCountryRegion | String | |
ShipToAddressContactPerson | String | |
ShipToAddressPhone1CountryCode | String | |
ShipToAddressPhone1Extension | String | |
ShipToAddressPhone1 | String | |
StatusCodeId | String | |
TaxAmountCurrency | String | |
TaxAmount | Decimal | |
TaxExemptNumber1 | String | |
TaxExemptNumber2 | String | |
TaxScheduleId | String | |
TechnicianId | String | |
TimeZoneId | String | |
AdditionalChargesAggregate | String | |
ArrivalDateTime | Datetime | |
CompletionDateTime | Datetime | |
DispatchDateTime | Datetime | |
EquipmentCodesAggregate | String | |
EscalationDateTime | Datetime | |
EscalationLevel | Int | |
ExpensesAggregate | String | |
InvoicedAmountCurrency | String | |
InvoicedAmount | Decimal | |
IsCallback | Bool | |
LaborExtensionsExtensionAggregate | String | |
LaborEntryDateTime | Datetime | |
LaborEquipmentLineSequenceNumber | Int | |
LaborFrontOfficeIntegrationId | String | |
LaborItemDescription | String | |
LaborItemId | String | |
LaborKeyLineSequenceNumber [KEY] | Int | |
LaborKeyServiceDocumentId [KEY] | String | |
LaborNote | String | |
LaborPriceLevelId | String | |
LaborTaxAmountCurrency | String | |
LaborTaxAmount | Decimal | |
LaborTechnicianId | String | |
LaborTotalAmountCurrency | String | |
LaborTotalAmount | Decimal | |
LaborUnitCostCurrency | String | |
LaborUnitCost | Decimal | |
LaborUnitPriceCurrency | String | |
LaborUnitPrice | Decimal | |
LaborUofM | String | |
LaborBillableLaborPercent | Decimal | |
LaborBillableTime | Int | |
LaborDistanceTraveledExtensionsExtensionAggregate | String | |
LaborDistanceTraveledEnding | Int | |
LaborDistanceTraveledStarting | Int | |
LaborDistanceTraveledUsed | Int | |
LaborEndDateTime | Datetime | |
LaborQuantity | Decimal | |
LaborQuantitySold | Decimal | |
LaborStartDateTime | Datetime | |
LaborTotalCostCurrency | String | |
LaborTotalCost | Decimal | |
LaborTransactionTime | Int | |
LaborUseType | String | |
LaborWorkTypeId | String | |
Meter1ExtensionsExtensionAggregate | String | |
Meter1CurrentReading | Int | |
Meter1Replaced | Bool | |
Meter1InternalUsage | Int | |
Meter2ExtensionsExtensionAggregate | String | |
Meter2CurrentReading | Int | |
Meter2Replaced | Bool | |
Meter2InternalUsage | Int | |
Meter3ExtensionsExtensionAggregate | String | |
Meter3CurrentReading | Int | |
Meter3Replaced | Bool | |
Meter3InternalUsage | Int | |
Meter4ExtensionsExtensionAggregate | String | |
Meter4CurrentReading | Int | |
Meter4Replaced | Bool | |
Meter4InternalUsage | Int | |
Meter5ExtensionsExtensionAggregate | String | |
Meter5CurrentReading | Int | |
Meter5Replaced | Bool | |
Meter5InternalUsage | Int | |
NotifyDateTime | Datetime | |
PartsAggregate | String | |
Type | String | |
WasNotified | Bool |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
ServiceCallParts
Return a list of: ServiceCallParts
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
BillToAddressId | String | |
BillToCustomerId | String | |
CurrencyKeyISOCode | String | |
CustomerId | String | |
CustomerName | String | |
CustomerPONumber | String | |
EntryDateTime | Datetime | |
EstimatedArrivalDateTime | Datetime | |
ExchangeDate | Datetime | |
ExchangeRate | Decimal | |
FrontOfficeIntegrationId | String | |
Id | String | |
Note | String | |
OfficeId | String | |
RateTypeId | String | |
ShipToAddressId | String | |
TransactionState | String | |
UserDefined01 | String | |
UserDefined02 | String | |
UserDefined03 | String | |
UserDefined04 | String | |
UserDefined05 | String | |
AuditsAggregate | String | |
CustomerReference | String | |
Description | String | |
DistributionsAggregate | String | |
DocumentTotalCurrency | String | |
DocumentTotal | Decimal | |
EstimatedTimeToRepair | Decimal | |
IsOnHold | Bool | |
LaborChargesExtensionsExtensionAggregate | String | |
LaborChargesBillablePercent | Decimal | |
LaborChargesTotalAmountCurrency | String | |
LaborChargesTotalAmount | Decimal | |
LaborChargesTotalCostCurrency | String | |
LaborChargesTotalCost | Decimal | |
MiscellaneousChargesExtensionsExtensionAggregate | String | |
MiscellaneousChargesBillablePercent | Decimal | |
MiscellaneousChargesTotalAmountCurrency | String | |
MiscellaneousChargesTotalAmount | Decimal | |
MiscellaneousChargesTotalCostCurrency | String | |
MiscellaneousChargesTotalCost | Decimal | |
PartsChargesExtensionsExtensionAggregate | String | |
PartsChargesBillablePercent | Decimal | |
PartsChargesTotalAmountCurrency | String | |
PartsChargesTotalAmount | Decimal | |
PartsChargesTotalCostCurrency | String | |
PartsChargesTotalCost | Decimal | |
PaymentTermsId | String | |
PreTaxDocumentAmountCurrency | String | |
PreTaxDocumentAmount | Decimal | |
PriceLevelId | String | |
Priority | Int | |
ResponseDateTime | Datetime | |
SalesPersonId | String | |
ServiceAreaId | String | |
ServiceContractId | String | |
ServiceContractLineSequenceNumber | Decimal | |
ServiceTypeId | String | |
ShipToAddressExtensionsExtensionAggregate | String | |
ShipToAddressCity | String | |
ShipToAddressLine1 | String | |
ShipToAddressLine2 | String | |
ShipToAddressLine3 | String | |
ShipToAddressPostalCode | String | |
ShipToAddressState | String | |
ShipToAddressCountryRegion | String | |
ShipToAddressContactPerson | String | |
ShipToAddressPhone1CountryCode | String | |
ShipToAddressPhone1Extension | String | |
ShipToAddressPhone1 | String | |
StatusCodeId | String | |
TaxAmountCurrency | String | |
TaxAmount | Decimal | |
TaxExemptNumber1 | String | |
TaxExemptNumber2 | String | |
TaxScheduleId | String | |
TechnicianId | String | |
TimeZoneId | String | |
AdditionalChargesAggregate | String | |
ArrivalDateTime | Datetime | |
CompletionDateTime | Datetime | |
DispatchDateTime | Datetime | |
EquipmentCodesAggregate | String | |
EscalationDateTime | Datetime | |
EscalationLevel | Int | |
ExpensesAggregate | String | |
InvoicedAmountCurrency | String | |
InvoicedAmount | Decimal | |
IsCallback | Bool | |
LaborAggregate | String | |
Meter1ExtensionsExtensionAggregate | String | |
Meter1CurrentReading | Int | |
Meter1Replaced | Bool | |
Meter1InternalUsage | Int | |
Meter2ExtensionsExtensionAggregate | String | |
Meter2CurrentReading | Int | |
Meter2Replaced | Bool | |
Meter2InternalUsage | Int | |
Meter3ExtensionsExtensionAggregate | String | |
Meter3CurrentReading | Int | |
Meter3Replaced | Bool | |
Meter3InternalUsage | Int | |
Meter4ExtensionsExtensionAggregate | String | |
Meter4CurrentReading | Int | |
Meter4Replaced | Bool | |
Meter4InternalUsage | Int | |
Meter5ExtensionsExtensionAggregate | String | |
Meter5CurrentReading | Int | |
Meter5Replaced | Bool | |
Meter5InternalUsage | Int | |
NotifyDateTime | Datetime | |
PartsExtensionsExtensionAggregate | String | |
PartsEntryDateTime | Datetime | |
PartsEquipmentLineSequenceNumber | Int | |
PartsFrontOfficeIntegrationId | String | |
PartsItemDescription | String | |
PartsItemId | String | |
PartsKeyLineSequenceNumber [KEY] | Int | |
PartsKeyServiceDocumentId [KEY] | String | |
PartsNote | String | |
PartsPriceLevelId | String | |
PartsTaxAmountCurrency | String | |
PartsTaxAmount | Decimal | |
PartsTechnicianId | String | |
PartsTotalAmountCurrency | String | |
PartsTotalAmount | Decimal | |
PartsUnitCostCurrency | String | |
PartsUnitCost | Decimal | |
PartsUnitPriceCurrency | String | |
PartsUnitPrice | Decimal | |
PartsUofM | String | |
PartsBillablePartsPercent | Decimal | |
PartsDoNotCreateReturnLine | Bool | |
PartsMiscellaneousAddressId | String | |
PartsPurchaseOrderConsolidateOnPO | Bool | |
PartsPurchaseOrderCreatePO | Bool | |
PartsPurchaseOrderPromiseDate | Datetime | |
PartsPurchaseOrderVendorId | String | |
PartsQuantity | Decimal | |
PartsQuantityBackordered | Decimal | |
PartsShipToAddressOptionType | String | |
PartsStatusCodeId | String | |
PartsUseType | String | |
PartsWarehouseId | String | |
PartsConsolidateOnPO | Bool | |
PartsIsOnReturnDocument | Bool | |
PartsIsOnTransfer | Bool | |
PartsLotDetailsAggregate | String | |
PartsPurchaseOrderLineKeyLineSequenceNumber | Int | |
PartsPurchaseOrderLineKeyPurchaseTransactionId | String | |
PartsQuantityAllocated | Decimal | |
PartsQuantitySold | Decimal | |
PartsReturnMaterialAuthorizationLineKeyLineSequenceNumber | Int | |
PartsReturnMaterialAuthorizationLineKeyServiceDocumentId | String | |
PartsSerialDetailsAggregate | String | |
PartsTotalCostCurrency | String | |
PartsTotalCost | Decimal | |
PartsTransferFromWarehouseId | String | |
PartsTransferLineKeyLineSequenceNumber | Int | |
PartsTransferLineKeyServiceDocumentId | String | |
PartsTransferQuantity | Decimal | |
Type | String | |
WasNotified | Bool |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
ServiceEquipmentReadings
Return a list of: ServiceEquipmentReadings
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
AddressExtensionsExtensionAggregate | String | |
AddressCity | String | |
AddressLine1 | String | |
AddressLine2 | String | |
AddressLine3 | String | |
AddressPostalCode | String | |
AddressState | String | |
AddressContactPerson | String | |
AddressCountry | String | |
AddressId | String | |
AssetTag | String | |
CustomerId | String | |
InstallDate | Datetime | |
Id | String | |
KeyItemId | String | |
LastCalculatedDate | Datetime | |
LastPreventiveMaintenanceDate | Datetime | |
LastServiceDate | Datetime | |
Note | String | |
OfficeId | String | |
PreventiveMaintenanceDay | Int | |
PreventiveMaintenanceMonth | String | |
Quantity | Decimal | |
ReadingsExtensionsExtensionAggregate | String | |
ReadingsKeySequenceNumber [KEY] | Int | |
ReadingsKeyServiceEquipmentId [KEY] | String | |
ReadingsKeyServiceEquipmentKeyItemId [KEY] | String | |
ReadingsMeter1ExtensionsExtensionAggregate | String | |
ReadingsMeter1CurrentReading | Int | |
ReadingsMeter1Replaced | Bool | |
ReadingsMeter2ExtensionsExtensionAggregate | String | |
ReadingsMeter2CurrentReading | Int | |
ReadingsMeter2Replaced | Bool | |
ReadingsMeter3ExtensionsExtensionAggregate | String | |
ReadingsMeter3CurrentReading | Int | |
ReadingsMeter3Replaced | Bool | |
ReadingsMeter4ExtensionsExtensionAggregate | String | |
ReadingsMeter4CurrentReading | Int | |
ReadingsMeter4Replaced | Bool | |
ReadingsMeter5ExtensionsExtensionAggregate | String | |
ReadingsMeter5CurrentReading | Int | |
ReadingsMeter5Replaced | Bool | |
ReadingsModifiedBy | String | |
ReadingsModifiedDate | Datetime | |
ReadingsReadingEnteredFrom | String | |
Reference | String | |
RegisterDate | Datetime | |
SellerWarrantyCodeExtensionsExtensionAggregate | String | |
SellerWarrantyCodeEndDate | Datetime | |
SellerWarrantyCodeId | String | |
SellerWarrantyCodeStartDate | Datetime | |
SerialNumber | String | |
ServiceAreaId | String | |
ShippedDate | Datetime | |
StatusId | String | |
TechnicianId | String | |
TimeZoneId | String | |
UserDefined01 | String | |
UserDefined02 | String | |
UserDefined03 | String | |
UserDefined04 | String | |
UserDefined05 | String | |
VendorId | String | |
VendorWarrantyCodeExtensionsExtensionAggregate | String | |
VendorWarrantyCodeEndDate | Datetime | |
VendorWarrantyCodeId | String | |
VendorWarrantyCodeStartDate | Datetime | |
Version | String |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
ServiceQuoteAdditionalCharges
Return a list of: ServiceQuoteAdditionalCharges
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
BillToAddressId | String | |
BillToCustomerId | String | |
CurrencyKeyISOCode | String | |
CustomerId | String | |
CustomerName | String | |
CustomerPONumber | String | |
EntryDateTime | Datetime | |
EstimatedArrivalDateTime | Datetime | |
ExchangeDate | Datetime | |
ExchangeRate | Decimal | |
FrontOfficeIntegrationId | String | |
Id | String | |
Note | String | |
OfficeId | String | |
RateTypeId | String | |
ShipToAddressId | String | |
TransactionState | String | |
UserDefined01 | String | |
UserDefined02 | String | |
UserDefined03 | String | |
UserDefined04 | String | |
UserDefined05 | String | |
AuditsAggregate | String | |
CustomerReference | String | |
Description | String | |
DistributionsAggregate | String | |
DocumentTotalCurrency | String | |
DocumentTotal | Decimal | |
EstimatedTimeToRepair | Decimal | |
IsOnHold | Bool | |
LaborChargesExtensionsExtensionAggregate | String | |
LaborChargesBillablePercent | Decimal | |
LaborChargesTotalAmountCurrency | String | |
LaborChargesTotalAmount | Decimal | |
LaborChargesTotalCostCurrency | String | |
LaborChargesTotalCost | Decimal | |
MiscellaneousChargesExtensionsExtensionAggregate | String | |
MiscellaneousChargesBillablePercent | Decimal | |
MiscellaneousChargesTotalAmountCurrency | String | |
MiscellaneousChargesTotalAmount | Decimal | |
MiscellaneousChargesTotalCostCurrency | String | |
MiscellaneousChargesTotalCost | Decimal | |
PartsChargesExtensionsExtensionAggregate | String | |
PartsChargesBillablePercent | Decimal | |
PartsChargesTotalAmountCurrency | String | |
PartsChargesTotalAmount | Decimal | |
PartsChargesTotalCostCurrency | String | |
PartsChargesTotalCost | Decimal | |
PaymentTermsId | String | |
PreTaxDocumentAmountCurrency | String | |
PreTaxDocumentAmount | Decimal | |
PriceLevelId | String | |
Priority | Int | |
ResponseDateTime | Datetime | |
SalesPersonId | String | |
ServiceAreaId | String | |
ServiceContractId | String | |
ServiceContractLineSequenceNumber | Decimal | |
ServiceTypeId | String | |
ShipToAddressExtensionsExtensionAggregate | String | |
ShipToAddressCity | String | |
ShipToAddressLine1 | String | |
ShipToAddressLine2 | String | |
ShipToAddressLine3 | String | |
ShipToAddressPostalCode | String | |
ShipToAddressState | String | |
ShipToAddressCountryRegion | String | |
ShipToAddressContactPerson | String | |
ShipToAddressPhone1CountryCode | String | |
ShipToAddressPhone1Extension | String | |
ShipToAddressPhone1 | String | |
StatusCodeId | String | |
TaxAmountCurrency | String | |
TaxAmount | Decimal | |
TaxExemptNumber1 | String | |
TaxExemptNumber2 | String | |
TaxScheduleId | String | |
TechnicianId | String | |
TimeZoneId | String | |
AdditionalChargesExtensionsExtensionAggregate | String | |
AdditionalChargesEntryDateTime | Datetime | |
AdditionalChargesEquipmentLineSequenceNumber | Int | |
AdditionalChargesFrontOfficeIntegrationId | String | |
AdditionalChargesItemDescription | String | |
AdditionalChargesItemId | String | |
AdditionalChargesKeyLineSequenceNumber [KEY] | Int | |
AdditionalChargesKeyServiceDocumentId [KEY] | String | |
AdditionalChargesNote | String | |
AdditionalChargesPriceLevelId | String | |
AdditionalChargesTaxAmountCurrency | String | |
AdditionalChargesTaxAmount | Decimal | |
AdditionalChargesTechnicianId | String | |
AdditionalChargesTotalAmountCurrency | String | |
AdditionalChargesTotalAmount | Decimal | |
AdditionalChargesUnitCostCurrency | String | |
AdditionalChargesUnitCost | Decimal | |
AdditionalChargesUnitPriceCurrency | String | |
AdditionalChargesUnitPrice | Decimal | |
AdditionalChargesUofM | String | |
AdditionalChargesBillableMiscellaneousPercent | Decimal | |
AdditionalChargesPurchaseOrderConsolidateOnPO | Bool | |
AdditionalChargesPurchaseOrderCreatePO | Bool | |
AdditionalChargesPurchaseOrderPromiseDate | Datetime | |
AdditionalChargesPurchaseOrderVendorId | String | |
AdditionalChargesPurchaseOrderLineKeyLineSequenceNumber | Int | |
AdditionalChargesPurchaseOrderLineKeyPurchaseTransactionId | String | |
AdditionalChargesQuantitySold | Decimal | |
AdditionalChargesTotalCostCurrency | String | |
AdditionalChargesTotalCost | Decimal | |
EquipmentCodesAggregate | String | |
ExpensesAggregate | String | |
LaborAggregate | String | |
PartsAggregate | String |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
ServiceQuoteEquipmentCodes
Return a list of: ServiceQuoteEquipmentCodes
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
BillToAddressId | String | |
BillToCustomerId | String | |
CurrencyKeyISOCode | String | |
CustomerId | String | |
CustomerName | String | |
CustomerPONumber | String | |
EntryDateTime | Datetime | |
EstimatedArrivalDateTime | Datetime | |
ExchangeDate | Datetime | |
ExchangeRate | Decimal | |
FrontOfficeIntegrationId | String | |
Id | String | |
Note | String | |
OfficeId | String | |
RateTypeId | String | |
ShipToAddressId | String | |
TransactionState | String | |
UserDefined01 | String | |
UserDefined02 | String | |
UserDefined03 | String | |
UserDefined04 | String | |
UserDefined05 | String | |
AuditsAggregate | String | |
CustomerReference | String | |
Description | String | |
DistributionsAggregate | String | |
DocumentTotalCurrency | String | |
DocumentTotal | Decimal | |
EstimatedTimeToRepair | Decimal | |
IsOnHold | Bool | |
LaborChargesExtensionsExtensionAggregate | String | |
LaborChargesBillablePercent | Decimal | |
LaborChargesTotalAmountCurrency | String | |
LaborChargesTotalAmount | Decimal | |
LaborChargesTotalCostCurrency | String | |
LaborChargesTotalCost | Decimal | |
MiscellaneousChargesExtensionsExtensionAggregate | String | |
MiscellaneousChargesBillablePercent | Decimal | |
MiscellaneousChargesTotalAmountCurrency | String | |
MiscellaneousChargesTotalAmount | Decimal | |
MiscellaneousChargesTotalCostCurrency | String | |
MiscellaneousChargesTotalCost | Decimal | |
PartsChargesExtensionsExtensionAggregate | String | |
PartsChargesBillablePercent | Decimal | |
PartsChargesTotalAmountCurrency | String | |
PartsChargesTotalAmount | Decimal | |
PartsChargesTotalCostCurrency | String | |
PartsChargesTotalCost | Decimal | |
PaymentTermsId | String | |
PreTaxDocumentAmountCurrency | String | |
PreTaxDocumentAmount | Decimal | |
PriceLevelId | String | |
Priority | Int | |
ResponseDateTime | Datetime | |
SalesPersonId | String | |
ServiceAreaId | String | |
ServiceContractId | String | |
ServiceContractLineSequenceNumber | Decimal | |
ServiceTypeId | String | |
ShipToAddressExtensionsExtensionAggregate | String | |
ShipToAddressCity | String | |
ShipToAddressLine1 | String | |
ShipToAddressLine2 | String | |
ShipToAddressLine3 | String | |
ShipToAddressPostalCode | String | |
ShipToAddressState | String | |
ShipToAddressCountryRegion | String | |
ShipToAddressContactPerson | String | |
ShipToAddressPhone1CountryCode | String | |
ShipToAddressPhone1Extension | String | |
ShipToAddressPhone1 | String | |
StatusCodeId | String | |
TaxAmountCurrency | String | |
TaxAmount | Decimal | |
TaxExemptNumber1 | String | |
TaxExemptNumber2 | String | |
TaxScheduleId | String | |
TechnicianId | String | |
TimeZoneId | String | |
AdditionalChargesAggregate | String | |
EquipmentCodesExtensionsExtensionAggregate | String | |
EquipmentCodesCauseCodeId | String | |
EquipmentCodesEquipmentLineSequenceNumber | Int | |
EquipmentCodesItemId | String | |
EquipmentCodesKeyLineSequenceNumber [KEY] | Int | |
EquipmentCodesKeyServiceDocumentId [KEY] | String | |
EquipmentCodesProblemCodeId | String | |
EquipmentCodesRepairCodeId | String | |
EquipmentCodesSerialNumber | String | |
ExpensesAggregate | String | |
LaborAggregate | String | |
PartsAggregate | String |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
ServiceQuoteExpenses
Return a list of: ServiceQuoteExpenses
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
BillToAddressId | String | |
BillToCustomerId | String | |
CurrencyKeyISOCode | String | |
CustomerId | String | |
CustomerName | String | |
CustomerPONumber | String | |
EntryDateTime | Datetime | |
EstimatedArrivalDateTime | Datetime | |
ExchangeDate | Datetime | |
ExchangeRate | Decimal | |
FrontOfficeIntegrationId | String | |
Id | String | |
Note | String | |
OfficeId | String | |
RateTypeId | String | |
ShipToAddressId | String | |
TransactionState | String | |
UserDefined01 | String | |
UserDefined02 | String | |
UserDefined03 | String | |
UserDefined04 | String | |
UserDefined05 | String | |
AuditsAggregate | String | |
CustomerReference | String | |
Description | String | |
DistributionsAggregate | String | |
DocumentTotalCurrency | String | |
DocumentTotal | Decimal | |
EstimatedTimeToRepair | Decimal | |
IsOnHold | Bool | |
LaborChargesExtensionsExtensionAggregate | String | |
LaborChargesBillablePercent | Decimal | |
LaborChargesTotalAmountCurrency | String | |
LaborChargesTotalAmount | Decimal | |
LaborChargesTotalCostCurrency | String | |
LaborChargesTotalCost | Decimal | |
MiscellaneousChargesExtensionsExtensionAggregate | String | |
MiscellaneousChargesBillablePercent | Decimal | |
MiscellaneousChargesTotalAmountCurrency | String | |
MiscellaneousChargesTotalAmount | Decimal | |
MiscellaneousChargesTotalCostCurrency | String | |
MiscellaneousChargesTotalCost | Decimal | |
PartsChargesExtensionsExtensionAggregate | String | |
PartsChargesBillablePercent | Decimal | |
PartsChargesTotalAmountCurrency | String | |
PartsChargesTotalAmount | Decimal | |
PartsChargesTotalCostCurrency | String | |
PartsChargesTotalCost | Decimal | |
PaymentTermsId | String | |
PreTaxDocumentAmountCurrency | String | |
PreTaxDocumentAmount | Decimal | |
PriceLevelId | String | |
Priority | Int | |
ResponseDateTime | Datetime | |
SalesPersonId | String | |
ServiceAreaId | String | |
ServiceContractId | String | |
ServiceContractLineSequenceNumber | Decimal | |
ServiceTypeId | String | |
ShipToAddressExtensionsExtensionAggregate | String | |
ShipToAddressCity | String | |
ShipToAddressLine1 | String | |
ShipToAddressLine2 | String | |
ShipToAddressLine3 | String | |
ShipToAddressPostalCode | String | |
ShipToAddressState | String | |
ShipToAddressCountryRegion | String | |
ShipToAddressContactPerson | String | |
ShipToAddressPhone1CountryCode | String | |
ShipToAddressPhone1Extension | String | |
ShipToAddressPhone1 | String | |
StatusCodeId | String | |
TaxAmountCurrency | String | |
TaxAmount | Decimal | |
TaxExemptNumber1 | String | |
TaxExemptNumber2 | String | |
TaxScheduleId | String | |
TechnicianId | String | |
TimeZoneId | String | |
AdditionalChargesAggregate | String | |
EquipmentCodesAggregate | String | |
ExpensesExtensionsExtensionAggregate | String | |
ExpensesEntryDateTime | Datetime | |
ExpensesEquipmentLineSequenceNumber | Int | |
ExpensesFrontOfficeIntegrationId | String | |
ExpensesItemDescription | String | |
ExpensesItemId | String | |
ExpensesKeyLineSequenceNumber [KEY] | Int | |
ExpensesKeyServiceDocumentId [KEY] | String | |
ExpensesNote | String | |
ExpensesPriceLevelId | String | |
ExpensesTaxAmountCurrency | String | |
ExpensesTaxAmount | Decimal | |
ExpensesTechnicianId | String | |
ExpensesTotalAmountCurrency | String | |
ExpensesTotalAmount | Decimal | |
ExpensesUnitCostCurrency | String | |
ExpensesUnitCost | Decimal | |
ExpensesUnitPriceCurrency | String | |
ExpensesUnitPrice | Decimal | |
ExpensesUofM | String | |
ExpensesBillableMiscellaneousPercent | Decimal | |
ExpensesPurchaseOrderConsolidateOnPO | Bool | |
ExpensesPurchaseOrderCreatePO | Bool | |
ExpensesPurchaseOrderPromiseDate | Datetime | |
ExpensesPurchaseOrderVendorId | String | |
ExpensesPurchaseOrderLineKeyLineSequenceNumber | Int | |
ExpensesPurchaseOrderLineKeyPurchaseTransactionId | String | |
ExpensesQuantitySold | Decimal | |
ExpensesTotalCostCurrency | String | |
ExpensesTotalCost | Decimal | |
LaborAggregate | String | |
PartsAggregate | String |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
ServiceQuoteLabor
Return a list of: ServiceQuoteLabor
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
BillToAddressId | String | |
BillToCustomerId | String | |
CurrencyKeyISOCode | String | |
CustomerId | String | |
CustomerName | String | |
CustomerPONumber | String | |
EntryDateTime | Datetime | |
EstimatedArrivalDateTime | Datetime | |
ExchangeDate | Datetime | |
ExchangeRate | Decimal | |
FrontOfficeIntegrationId | String | |
Id | String | |
Note | String | |
OfficeId | String | |
RateTypeId | String | |
ShipToAddressId | String | |
TransactionState | String | |
UserDefined01 | String | |
UserDefined02 | String | |
UserDefined03 | String | |
UserDefined04 | String | |
UserDefined05 | String | |
AuditsAggregate | String | |
CustomerReference | String | |
Description | String | |
DistributionsAggregate | String | |
DocumentTotalCurrency | String | |
DocumentTotal | Decimal | |
EstimatedTimeToRepair | Decimal | |
IsOnHold | Bool | |
LaborChargesExtensionsExtensionAggregate | String | |
LaborChargesBillablePercent | Decimal | |
LaborChargesTotalAmountCurrency | String | |
LaborChargesTotalAmount | Decimal | |
LaborChargesTotalCostCurrency | String | |
LaborChargesTotalCost | Decimal | |
MiscellaneousChargesExtensionsExtensionAggregate | String | |
MiscellaneousChargesBillablePercent | Decimal | |
MiscellaneousChargesTotalAmountCurrency | String | |
MiscellaneousChargesTotalAmount | Decimal | |
MiscellaneousChargesTotalCostCurrency | String | |
MiscellaneousChargesTotalCost | Decimal | |
PartsChargesExtensionsExtensionAggregate | String | |
PartsChargesBillablePercent | Decimal | |
PartsChargesTotalAmountCurrency | String | |
PartsChargesTotalAmount | Decimal | |
PartsChargesTotalCostCurrency | String | |
PartsChargesTotalCost | Decimal | |
PaymentTermsId | String | |
PreTaxDocumentAmountCurrency | String | |
PreTaxDocumentAmount | Decimal | |
PriceLevelId | String | |
Priority | Int | |
ResponseDateTime | Datetime | |
SalesPersonId | String | |
ServiceAreaId | String | |
ServiceContractId | String | |
ServiceContractLineSequenceNumber | Decimal | |
ServiceTypeId | String | |
ShipToAddressExtensionsExtensionAggregate | String | |
ShipToAddressCity | String | |
ShipToAddressLine1 | String | |
ShipToAddressLine2 | String | |
ShipToAddressLine3 | String | |
ShipToAddressPostalCode | String | |
ShipToAddressState | String | |
ShipToAddressCountryRegion | String | |
ShipToAddressContactPerson | String | |
ShipToAddressPhone1CountryCode | String | |
ShipToAddressPhone1Extension | String | |
ShipToAddressPhone1 | String | |
StatusCodeId | String | |
TaxAmountCurrency | String | |
TaxAmount | Decimal | |
TaxExemptNumber1 | String | |
TaxExemptNumber2 | String | |
TaxScheduleId | String | |
TechnicianId | String | |
TimeZoneId | String | |
AdditionalChargesAggregate | String | |
EquipmentCodesAggregate | String | |
ExpensesAggregate | String | |
LaborExtensionsExtensionAggregate | String | |
LaborEntryDateTime | Datetime | |
LaborEquipmentLineSequenceNumber | Int | |
LaborFrontOfficeIntegrationId | String | |
LaborItemDescription | String | |
LaborItemId | String | |
LaborKeyLineSequenceNumber [KEY] | Int | |
LaborKeyServiceDocumentId [KEY] | String | |
LaborNote | String | |
LaborPriceLevelId | String | |
LaborTaxAmountCurrency | String | |
LaborTaxAmount | Decimal | |
LaborTechnicianId | String | |
LaborTotalAmountCurrency | String | |
LaborTotalAmount | Decimal | |
LaborUnitCostCurrency | String | |
LaborUnitCost | Decimal | |
LaborUnitPriceCurrency | String | |
LaborUnitPrice | Decimal | |
LaborUofM | String | |
LaborBillableLaborPercent | Decimal | |
LaborBillableTime | Int | |
LaborDistanceTraveledExtensionsExtensionAggregate | String | |
LaborDistanceTraveledEnding | Int | |
LaborDistanceTraveledStarting | Int | |
LaborDistanceTraveledUsed | Int | |
LaborEndDateTime | Datetime | |
LaborQuantity | Decimal | |
LaborQuantitySold | Decimal | |
LaborStartDateTime | Datetime | |
LaborTotalCostCurrency | String | |
LaborTotalCost | Decimal | |
LaborTransactionTime | Int | |
LaborUseType | String | |
LaborWorkTypeId | String | |
PartsAggregate | String |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
ServiceQuoteParts
Return a list of: ServiceQuoteParts
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
BillToAddressId | String | |
BillToCustomerId | String | |
CurrencyKeyISOCode | String | |
CustomerId | String | |
CustomerName | String | |
CustomerPONumber | String | |
EntryDateTime | Datetime | |
EstimatedArrivalDateTime | Datetime | |
ExchangeDate | Datetime | |
ExchangeRate | Decimal | |
FrontOfficeIntegrationId | String | |
Id | String | |
Note | String | |
OfficeId | String | |
RateTypeId | String | |
ShipToAddressId | String | |
TransactionState | String | |
UserDefined01 | String | |
UserDefined02 | String | |
UserDefined03 | String | |
UserDefined04 | String | |
UserDefined05 | String | |
AuditsAggregate | String | |
CustomerReference | String | |
Description | String | |
DistributionsAggregate | String | |
DocumentTotalCurrency | String | |
DocumentTotal | Decimal | |
EstimatedTimeToRepair | Decimal | |
IsOnHold | Bool | |
LaborChargesExtensionsExtensionAggregate | String | |
LaborChargesBillablePercent | Decimal | |
LaborChargesTotalAmountCurrency | String | |
LaborChargesTotalAmount | Decimal | |
LaborChargesTotalCostCurrency | String | |
LaborChargesTotalCost | Decimal | |
MiscellaneousChargesExtensionsExtensionAggregate | String | |
MiscellaneousChargesBillablePercent | Decimal | |
MiscellaneousChargesTotalAmountCurrency | String | |
MiscellaneousChargesTotalAmount | Decimal | |
MiscellaneousChargesTotalCostCurrency | String | |
MiscellaneousChargesTotalCost | Decimal | |
PartsChargesExtensionsExtensionAggregate | String | |
PartsChargesBillablePercent | Decimal | |
PartsChargesTotalAmountCurrency | String | |
PartsChargesTotalAmount | Decimal | |
PartsChargesTotalCostCurrency | String | |
PartsChargesTotalCost | Decimal | |
PaymentTermsId | String | |
PreTaxDocumentAmountCurrency | String | |
PreTaxDocumentAmount | Decimal | |
PriceLevelId | String | |
Priority | Int | |
ResponseDateTime | Datetime | |
SalesPersonId | String | |
ServiceAreaId | String | |
ServiceContractId | String | |
ServiceContractLineSequenceNumber | Decimal | |
ServiceTypeId | String | |
ShipToAddressExtensionsExtensionAggregate | String | |
ShipToAddressCity | String | |
ShipToAddressLine1 | String | |
ShipToAddressLine2 | String | |
ShipToAddressLine3 | String | |
ShipToAddressPostalCode | String | |
ShipToAddressState | String | |
ShipToAddressCountryRegion | String | |
ShipToAddressContactPerson | String | |
ShipToAddressPhone1CountryCode | String | |
ShipToAddressPhone1Extension | String | |
ShipToAddressPhone1 | String | |
StatusCodeId | String | |
TaxAmountCurrency | String | |
TaxAmount | Decimal | |
TaxExemptNumber1 | String | |
TaxExemptNumber2 | String | |
TaxScheduleId | String | |
TechnicianId | String | |
TimeZoneId | String | |
AdditionalChargesAggregate | String | |
EquipmentCodesAggregate | String | |
ExpensesAggregate | String | |
LaborAggregate | String | |
PartsExtensionsExtensionAggregate | String | |
PartsEntryDateTime | Datetime | |
PartsEquipmentLineSequenceNumber | Int | |
PartsFrontOfficeIntegrationId | String | |
PartsItemDescription | String | |
PartsItemId | String | |
PartsKeyLineSequenceNumber [KEY] | Int | |
PartsKeyServiceDocumentId [KEY] | String | |
PartsNote | String | |
PartsPriceLevelId | String | |
PartsTaxAmountCurrency | String | |
PartsTaxAmount | Decimal | |
PartsTechnicianId | String | |
PartsTotalAmountCurrency | String | |
PartsTotalAmount | Decimal | |
PartsUnitCostCurrency | String | |
PartsUnitCost | Decimal | |
PartsUnitPriceCurrency | String | |
PartsUnitPrice | Decimal | |
PartsUofM | String | |
PartsBillablePartsPercent | Decimal | |
PartsDoNotCreateReturnLine | Bool | |
PartsMiscellaneousAddressId | String | |
PartsPurchaseOrderConsolidateOnPO | Bool | |
PartsPurchaseOrderCreatePO | Bool | |
PartsPurchaseOrderPromiseDate | Datetime | |
PartsPurchaseOrderVendorId | String | |
PartsQuantity | Decimal | |
PartsQuantityBackordered | Decimal | |
PartsShipToAddressOptionType | String | |
PartsStatusCodeId | String | |
PartsUseType | String | |
PartsWarehouseId | String |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
ShippingMethod
Return a list of: ShippingMethod
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
Carrier | String | |
CarrierAccount | String | |
Contact | String | |
CreatedDate | Datetime | |
Description | String | |
Id [KEY] | String | |
ModifiedBy | String | |
ModifiedDate | Datetime | |
PhoneNumberCountryCode | String | |
PhoneNumberExtension | String | |
PhoneNumber | String | |
Type | String |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
SkillSetSkills
Return a list of: SkillSetSkills
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
AvailableSkills | Int | |
SkillSetId | String | |
SkillsExtensionsExtensionAggregate | String | |
SkillsCompensationExtensionsExtensionAggregate | String | |
SkillsCompensationCompensationAmount | Decimal | |
SkillsCompensationCompensationPeriod | String | |
SkillsDeleteOnUpdate | Bool | |
SkillsSkillId [KEY] | String |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
UofMSchedule
Return a list of: UofMSchedule
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
BaseUofM | String | |
Description | String | |
DetailsAggregate | String | |
Id [KEY] | String | |
LastModifiedBy | String | |
LastModifiedDate | Datetime | |
UofMDecimalPlacesQuantities | String |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
UofMScheduleDetails
Return a list of: UofMScheduleDetails
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
BaseUofM | String | |
Description | String | |
DetailsExtensionsExtensionAggregate | String | |
DetailsEquivalentUofM | String | |
DetailsEquivalentUofMQuantity | Decimal | |
DetailsKeySequenceNumber [KEY] | Int | |
DetailsKeyUofMScheduleId [KEY] | String | |
DetailsLastModifiedBy | String | |
DetailsLastModifiedDate | Datetime | |
DetailsLongDescription | String | |
DetailsQuantityInBaseUofM | Decimal | |
DetailsUofM | String | |
Id | String | |
LastModifiedBy | String | |
LastModifiedDate | Datetime | |
UofMDecimalPlacesQuantities | String |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
UserAssignableBusinessObject
Return a list of: UserAssignableBusinessObject
Columns
Name | Type | Description |
---|---|---|
BusinessObjectTypeDisplayName | String | |
BusinessObjectTypeId [KEY] | String | |
IsKeyEqualToDisplayId | Bool | |
SupportedContainment | String |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
VendorAddresses
Return a list of: VendorAddresses
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
AccountsPayableGLAccountId | String | |
AccountsPayableGLAccountKeyIsEncrypted | Bool | |
AccruedPurchasesGLAccountId | String | |
AccruedPurchasesGLAccountKeyIsEncrypted | Bool | |
AddressesExtensionsExtensionAggregate | String | |
AddressesCity | String | |
AddressesLine1 | String | |
AddressesLine2 | String | |
AddressesLine3 | String | |
AddressesPostalCode | String | |
AddressesState | String | |
AddressesCountryRegion | String | |
AddressesFaxCountryCode | String | |
AddressesFaxExtension | String | |
AddressesFax | String | |
AddressesPhone1CountryCode | String | |
AddressesPhone1Extension | String | |
AddressesPhone1 | String | |
AddressesPhone2CountryCode | String | |
AddressesPhone2Extension | String | |
AddressesPhone2 | String | |
AddressesPhone3CountryCode | String | |
AddressesPhone3Extension | String | |
AddressesPhone3 | String | |
AddressesCountryRegionCodeId | String | |
AddressesContactPerson | String | |
AddressesName | String | |
AddressesCreatedDate | Datetime | |
AddressesInternetAddressesAdditionalInformation | String | |
AddressesInternetAddressesEmailBccAddress | String | |
AddressesInternetAddressesEmailCcAddress | String | |
AddressesInternetAddressesEmailToAddress | String | |
AddressesInternetAddressesInternetField1 | String | |
AddressesInternetAddressesInternetField2 | String | |
AddressesInternetAddressesInternetField3 | String | |
AddressesInternetAddressesInternetField4 | String | |
AddressesInternetAddressesInternetField5 | String | |
AddressesInternetAddressesInternetField6 | String | |
AddressesInternetAddressesInternetField7 | String | |
AddressesInternetAddressesInternetField8 | String | |
AddressesInternetAddressesMessengerAddress | String | |
AddressesLastModifiedDate | Datetime | |
AddressesModifiedDate | Datetime | |
AddressesShippingMethodId | String | |
AddressesTaxScheduleId | String | |
AddressesUPSZone | String | |
AddressesUserDefined1 | String | |
AddressesUserDefined2 | String | |
AddressesDeleteOnUpdate | Bool | |
AddressesId [KEY] | String | |
AddressesKeyVendorId [KEY] | String | |
AllowRevaluation | Bool | |
BankAccountId | String | |
CashGLAccountId | String | |
CashGLAccountKeyIsEncrypted | Bool | |
CheckName | String | |
ClassId | String | |
Comment1 | String | |
Comment2 | String | |
CreatedDate | Datetime | |
CreditLimitItem | String | |
CurrencyKeyISOCode | String | |
DefaultAddressId | String | |
DefaultAddressKeyVendorId | String | |
DefaultCashAccountType | String | |
DiscountGracePeriod | Int | |
DueDateGracePeriod | Int | |
FinanceChargesGLAccountId | String | |
FinanceChargesGLAccountKeyIsEncrypted | Bool | |
FreeOnBoard | String | |
FreightGLAccountId | String | |
FreightGLAccountKeyIsEncrypted | Bool | |
HistoryOptionsKeepCalendarHistory | Bool | |
HistoryOptionsKeepDistributionHistory | Bool | |
HistoryOptionsKeepFiscalHistory | Bool | |
HistoryOptionsKeepTransactionHistory | Bool | |
IsActive | Bool | |
IsOnHold | Bool | |
IsOneTime | Bool | |
Id | String | |
Language | String | |
MaximumInvoiceItem | String | |
MaximumWriteoffItem | String | |
MinimumOrderAmountCurrency | String | |
MinimumOrderAmount | Decimal | |
MinimumPaymentItem | String | |
MiscellaneousGLAccountId | String | |
MiscellaneousGLAccountKeyIsEncrypted | Bool | |
ModifiedDate | Datetime | |
Name | String | |
Notes | String | |
PaymentPriority | String | |
PaymentTermsId | String | |
PostResultsTo | String | |
ProjectAccountingOptionsDefaultPurchaseOrderFormat | String | |
ProjectAccountingOptionsUnitCostCurrency | String | |
ProjectAccountingOptionsUnitCost | Decimal | |
ProjectAccountingOptionsUnitOfMeasure | String | |
ProjectAccountingOptionsUserDefined1 | String | |
ProjectAccountingOptionsUserDefined2 | String | |
PurchaseAddressId | String | |
PurchaseAddressKeyVendorId | String | |
PurchasePriceVarianceGLAccountId | String | |
PurchasePriceVarianceGLAccountKeyIsEncrypted | Bool | |
PurchasesGLAccountId | String | |
PurchasesGLAccountKeyIsEncrypted | Bool | |
RateTypeId | String | |
RemitToAddressId | String | |
RemitToAddressKeyVendorId | String | |
ShipFromAddressId | String | |
ShipFromAddressKeyVendorId | String | |
ShortName | String | |
Tax1099BoxNumber | Int | |
Tax1099Type | String | |
TaxGLAccountId | String | |
TaxGLAccountKeyIsEncrypted | Bool | |
TaxIdentificationNumber | String | |
TaxRegistrationNumber | String | |
TaxSchedule | String | |
TermsDiscountAvailableGLAccountId | String | |
TermsDiscountAvailableGLAccountKeyIsEncrypted | Bool | |
TermsDiscountTakenGLAccountId | String | |
TermsDiscountTakenGLAccountKeyIsEncrypted | Bool | |
TradeDiscountGLAccountId | String | |
TradeDiscountGLAccountKeyIsEncrypted | Bool | |
TradeDiscountPercent | Decimal | |
UserDefined1 | String | |
UserDefined2 | String | |
UserLanguageId | Int | |
VendorAccountNumber | String | |
WorkflowPriority | String | |
WorkflowsAggregate | String | |
WriteoffGLAccountId | String | |
WriteoffGLAccountKeyIsEncrypted | Bool |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
VendorManufacturingOrder
Return a list of: VendorManufacturingOrder
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
ActualDemand | Decimal | |
BOMCategory | String | |
BOMRevisionLevel | String | |
ComponentCalculation | String | |
DateCompleted | Datetime | |
Description | String | |
DrawFromSite | String | |
EndDate | Datetime | |
EndingQty | Decimal | |
IsArchivedMO | Bool | |
IsQuickMO | Bool | |
ItemId | String | |
LastModifiedDate | Datetime | |
LotNumber | String | |
ManufacturingOrderDocumentId [KEY] | String | |
Notes | String | |
OrderStatus | String | |
OutSourced | String | |
PickNumber | String | |
PlanName | String | |
PostToSite | String | |
Priority | String | |
RoutingName | String | |
RoutingRevisionLevel | String | |
ScheduleMethod | String | |
SchedulingPreference | String | |
StartDate | Datetime | |
StartingQty | Decimal | |
RouteAggregate | String |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
VendorManufacturingOrderRoute
Return a list of: VendorManufacturingOrderRoute
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
ActualDemand | Decimal | |
BOMCategory | String | |
BOMRevisionLevel | String | |
ComponentCalculation | String | |
DateCompleted | Datetime | |
Description | String | |
DrawFromSite | String | |
EndDate | Datetime | |
EndingQty | Decimal | |
IsArchivedMO | Bool | |
IsQuickMO | Bool | |
ItemId | String | |
LastModifiedDate | Datetime | |
LotNumber | String | |
ManufacturingOrderDocumentId | String | |
Notes | String | |
OrderStatus | String | |
OutSourced | String | |
PickNumber | String | |
PlanName | String | |
PostToSite | String | |
Priority | String | |
RoutingName | String | |
RoutingRevisionLevel | String | |
ScheduleMethod | String | |
SchedulingPreference | String | |
StartDate | Datetime | |
StartingQty | Decimal | |
RouteActualFinishDate | Datetime | |
RouteActualStartDate | Datetime | |
RouteClosedBy | String | |
RouteCycleTime | Decimal | |
RouteDateClosed | Datetime | |
RouteDateCreated | Datetime | |
RouteDrawingNumber | String | |
RouteIsAutoBackFlushLabor | Bool | |
RouteIsAutoBackFlushMachine | Bool | |
RouteIsCapacityRequirementsPlanned | Bool | |
RouteIsDone | Bool | |
RouteIsLastSequenceofTheDay | Bool | |
RouteIsMultiEmployeeOperation | Bool | |
RouteIsPhantomItem | Bool | |
RouteIsQualityAssuranceNeeded | Bool | |
RouteLaborCode1 | String | |
RouteLaborCode2 | String | |
RouteLaborTime | Decimal | |
RouteLastModifiedDate | Datetime | |
RouteMRPAmountCurrency | String | |
RouteMRPAmount | Decimal | |
RouteMachineId | String | |
RouteMachineTime | Decimal | |
RouteManufacturingNote | String | |
RouteManufacturingOrderDocumentId | String | |
RouteMoveTime | Decimal | |
RouteNextRouteNumber | String | |
RouteNotes | String | |
RouteNumberOfCrews | Int | |
RouteNumberOfEmployees | Int | |
RouteNumberOfMachines | Int | |
RouteOperationCode | String | |
RoutePOOffsetDays | Int | |
RoutePercentageComplete | Int | |
RoutePieces | Decimal | |
RouteQuantity | Decimal | |
RouteQueueTime | Decimal | |
RouteRejects | Decimal | |
RouteRouteMachineID | String | |
RouteRoutePartNumber | String | |
RouteRouteSeqDescription | String | |
RouteRouteSequenceNum [KEY] | Int | |
RouteRouteSequenceType | String | |
RouteRouteWorkCenter | String | |
RouteRunTime | Decimal | |
RouteScheduledFinishDate | Datetime | |
RouteScheduledStartDate | Datetime | |
RouteServiceItemDateReleased | Datetime | |
RouteServiceItemManufacturingOrderDocumentId | String | |
RouteServiceItemQtyToOrder | Decimal | |
RouteServiceItemRequiredDate | Datetime | |
RouteServiceItemRouteSequenceNum | Int | |
RouteServiceItemServiceItemId | String | |
RouteServiceItemSuggestedQty | Decimal | |
RouteSetupTime | Decimal | |
RouteUserDef1 | String | |
RouteUserDef2 | String | |
RouteVendorId | String | |
RouteVendorName | String | |
RouteWIPOutputPerMOStartQty | Decimal | |
RouteWaitHours | Int | |
RouteWorkCenter | String |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
VendorPlannedOrder
Return a list of: VendorPlannedOrder
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
DueDate | Datetime | |
IsCRPScheduled | Bool | |
ItemId | String | |
ItemsAggregate | String | |
LLC | Int | |
LocationId | String | |
PlannedOrderId [KEY] | String | |
QuantityToOrder | Decimal | |
ReleaseDate | Datetime | |
Replenishment | String | |
RunNumber | Int | |
Transferred | Bool | |
UnitOfMeasure | String | |
VendorId | String |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
WarehouseBins
Return a list of: WarehouseBins
Columns
Name | Type | Description |
---|---|---|
ExtensionsExtensionAggregate | String | |
AddressExtensionsExtensionAggregate | String | |
AddressCity | String | |
AddressLine1 | String | |
AddressLine2 | String | |
AddressLine3 | String | |
AddressPostalCode | String | |
AddressState | String | |
AddressCountryRegion | String | |
AddressFaxCountryCode | String | |
AddressFaxExtension | String | |
AddressFax | String | |
AddressPhone1CountryCode | String | |
AddressPhone1Extension | String | |
AddressPhone1 | String | |
AddressPhone2CountryCode | String | |
AddressPhone2Extension | String | |
AddressPhone2 | String | |
AddressPhone3CountryCode | String | |
AddressPhone3Extension | String | |
AddressPhone3 | String | |
AddressCountryRegionCodeId | String | |
BinsExtensionsExtensionAggregate | String | |
BinsKeyBin [KEY] | String | |
BinsKeyWarehouseId [KEY] | String | |
Description | String | |
IncludeInPlanning | Bool | |
Id | String | |
PurchaseTaxScheduleId | String | |
SalesTaxScheduleId | String |
Pseudo-Columns
Pseudo-Column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
---|---|---|
PagingColumn | String |
Stored Procedures
Stored procedures are function-like interfaces that extend the functionality of the connector beyond simple SELECT/INSERT/UPDATE/DELETE operations with Microsoft Dynamics GP.
Stored procedures accept a list of parameters, perform their intended function, and then return, if applicable, any relevant response data from Microsoft Dynamics GP, along with an indication of whether the procedure succeeded or failed.
Jitterbit Connector for Microsoft Dynamics GP Stored Procedures
Name | Description |
---|---|
CreateSchema | Creates a schema file for the specified table or view. |
VoidCashReceipt | This stored procedure voids a cash receipt. |
VoidPurchaseOrder | This stored procedure voids a purchase order document. |
VoidReceivablesCreditMemo | This stored procedure voids a receivables credit memo. |
VoidReceivablesReturn | This stored procedure voids a receivables return. |
VoidSalesBackorder | This stored procedure voids a sales backorder. |
VoidSalesInvoice | This stored procedure voids a sales invoice. |
VoidSalesOrder | This stored procedure voids a sales order. |
VoidSalesQuote | This stored procedure voids a sales quote. |
VoidSalesReturn | This stored procedure voids a sales return. |
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. Ex : 'C:\Users\User\Desktop\Filters\Filters.rsd' |
Result Set Columns
Name | Type | Description |
---|---|---|
Result | String | Returns Success or Failure. |
VoidCashReceipt
This stored procedure voids a cash receipt.
Input
Name | Type | Description |
---|---|---|
Id | String | The receivables document key object that specifies the cash receipt to void. |
Result Set Columns
Name | Type | Description |
---|---|---|
Result | String | Returns Success or Failure. |
VoidPurchaseOrder
This stored procedure voids a purchase order document.
Input
Name | Type | Description |
---|---|---|
Id | String | The purchase transaction key object that specifies the purchase order to void. |
Result Set Columns
Name | Type | Description |
---|---|---|
Result | String | Returns Success or Failure. |
VoidReceivablesCreditMemo
This stored procedure voids a receivables credit memo.
Input
Name | Type | Description |
---|---|---|
Id | String | The receivables document key object that specifies the receivables credit memo to void. |
Result Set Columns
Name | Type | Description |
---|---|---|
Result | String | Returns Success or Failure. |
VoidReceivablesReturn
This stored procedure voids a receivables return.
Input
Name | Type | Description |
---|---|---|
Id | String | The receivables document key object that specifies the receivables return to void. |
Result Set Columns
Name | Type | Description |
---|---|---|
Result | String | Returns Success or Failure. |
VoidSalesBackorder
This stored procedure voids a sales backorder.
Input
Name | Type | Description |
---|---|---|
Id | String | The sales document key object that specifies the sales backorder to void. |
Result Set Columns
Name | Type | Description |
---|---|---|
Result | String | Returns Success or Failure. |
VoidSalesInvoice
This stored procedure voids a sales invoice.
Input
Name | Type | Description |
---|---|---|
Id | String | The sales document key object that specifies the sales invoice to void. |
Result Set Columns
Name | Type | Description |
---|---|---|
Result | String | Returns Success or Failure. |
VoidSalesOrder
This stored procedure voids a sales order.
Input
Name | Type | Description |
---|---|---|
Id | String | The sales document key object that specifies the sales order to void. |
Result Set Columns
Name | Type | Description |
---|---|---|
Result | String | Returns Success or Failure. |
VoidSalesQuote
This stored procedure voids a sales quote.
Input
Name | Type | Description |
---|---|---|
Id | String | The sales document key object that specifies the sales quote to void. |
Result Set Columns
Name | Type | Description |
---|---|---|
Result | String | Returns Success or Failure. |
VoidSalesReturn
This stored procedure voids a sales return.
Input
Name | Type | Description |
---|---|---|
Id | String | The sales document key object that specifies the sales return to void. |
Result Set Columns
Name | Type | Description |
---|---|---|
Result | String | Returns Success or Failure. |
System Tables
You can query the system tables described in this section to access schema information, information on data source functionality, and batch operation statistics.
Schema Tables
The following tables return database metadata for Microsoft Dynamics GP:
- 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 Customer table:
SELECT ColumnName, DataTypeName FROM sys_tablecolumns WHERE TableName='Customer'
Columns
Name | Type | Description |
---|---|---|
CatalogName | String | The name of the database containing the table or view. |
SchemaName | String | The schema containing the table or view. |
TableName | String | The name of the table or view containing the column. |
ColumnName | String | The column name. |
DataTypeName | String | The data type name. |
DataType | Int32 | An integer indicating the data type. This value is determined at run time based on the environment. |
Length | Int32 | The storage size of the column. |
DisplaySize | Int32 | The designated column's normal maximum width in characters. |
NumericPrecision | Int32 | The maximum number of digits in numeric data. The column length in characters for character and date-time data. |
NumericScale | Int32 | The column scale or number of digits to the right of the decimal point. |
IsNullable | Boolean | Whether the column can contain null. |
Description | String | A brief description of the column. |
Ordinal | Int32 | The sequence number of the column. |
IsAutoIncrement | String | Whether the column value is assigned in fixed increments. |
IsGeneratedColumn | String | Whether the column is generated. |
IsHidden | Boolean | Whether the column is hidden. |
IsArray | Boolean | Whether the column is an array. |
sys_procedures
Lists the available stored procedures.
The following query retrieves the available stored procedures:
SELECT * FROM sys_procedures
Columns
Name | Type | Description |
---|---|---|
CatalogName | String | The database containing the stored procedure. |
SchemaName | String | The schema containing the stored procedure. |
ProcedureName | String | The name of the stored procedure. |
Description | String | A description of the stored procedure. |
ProcedureType | String | The type of the procedure, such as PROCEDURE or FUNCTION. |
sys_procedureparameters
Describes stored procedure parameters.
The following query returns information about all of the input parameters for the SearchSuppliers stored procedure:
SELECT * FROM sys_procedureparameters WHERE ProcedureName='SearchSuppliers' AND Direction=1 OR Direction=2
Columns
Name | Type | Description |
---|---|---|
CatalogName | String | The name of the database containing the stored procedure. |
SchemaName | String | The name of the schema containing the stored procedure. |
ProcedureName | String | The name of the stored procedure containing the parameter. |
ColumnName | String | The name of the stored procedure parameter. |
Direction | Int32 | An integer corresponding to the type of the parameter: input (1), input/output (2), or output(4). input/output type parameters can be both input and output parameters. |
DataTypeName | String | The name of the data type. |
DataType | Int32 | An integer indicating the data type. This value is determined at run time based on the environment. |
Length | Int32 | The number of characters allowed for character data. The number of digits allowed for numeric data. |
NumericPrecision | Int32 | The maximum precision for numeric data. The column length in characters for character and date-time data. |
NumericScale | Int32 | The number of digits to the right of the decimal point in numeric data. |
IsNullable | Boolean | Whether the parameter can contain null. |
IsRequired | Boolean | Whether the parameter is required for execution of the procedure. |
IsArray | Boolean | Whether the parameter is an array. |
Description | String | The description of the parameter. |
Ordinal | Int32 | The index of the parameter. |
sys_keycolumns
Describes the primary and foreign keys.
The following query retrieves the primary key for the Customer table:
SELECT * FROM sys_keycolumns WHERE IsKey='True' AND TableName='Customer'
Columns
Name | Type | Description |
---|---|---|
CatalogName | String | The name of the database containing the key. |
SchemaName | String | The name of the schema containing the key. |
TableName | String | The name of the table containing the key. |
ColumnName | String | The name of the key column. |
IsKey | Boolean | Whether the column is a primary key in the table referenced in the TableName field. |
IsForeignKey | Boolean | Whether the column is a foreign key referenced in the TableName field. |
PrimaryKeyName | String | The name of the primary key. |
ForeignKeyName | String | The name of the foreign key. |
ReferencedCatalogName | String | The database containing the primary key. |
ReferencedSchemaName | String | The schema containing the primary key. |
ReferencedTableName | String | The table containing the primary key. |
ReferencedColumnName | String | The column name of the primary key. |
sys_foreignkeys
Describes the foreign keys.
The following query retrieves all foreign keys which refer to other tables:
SELECT * FROM sys_foreignkeys WHERE ForeignKeyType = 'FOREIGNKEY_TYPE_IMPORT'
Columns
Name | Type | Description |
---|---|---|
CatalogName | String | The name of the database containing the key. |
SchemaName | String | The name of the schema containing the key. |
TableName | String | The name of the table containing the key. |
ColumnName | String | The name of the key column. |
PrimaryKeyName | String | The name of the primary key. |
ForeignKeyName | String | The name of the foreign key. |
ReferencedCatalogName | String | The database containing the primary key. |
ReferencedSchemaName | String | The schema containing the primary key. |
ReferencedTableName | String | The table containing the primary key. |
ReferencedColumnName | String | The column name of the primary key. |
ForeignKeyType | String | Designates whether the foreign key is an import (points to other tables) or export (referenced from other tables) key. |
sys_primarykeys
Describes the primary keys.
The following query retrieves the primary keys from all tables and views:
SELECT * FROM sys_primarykeys
Columns
Name | Type | Description |
---|---|---|
CatalogName | String | The name of the database containing the key. |
SchemaName | String | The name of the schema containing the key. |
TableName | String | The name of the table containing the key. |
ColumnName | String | The name of the key column. |
KeySeq | String | The sequence number of the primary key. |
KeyName | String | The name of the primary key. |
sys_indexes
Describes the available indexes. By filtering on indexes, you can write more selective queries with faster query response times.
The following query retrieves all indexes that are not primary keys:
SELECT * FROM sys_indexes WHERE IsPrimary='false'
Columns
Name | Type | Description |
---|---|---|
CatalogName | String | The name of the database containing the index. |
SchemaName | String | The name of the schema containing the index. |
TableName | String | The name of the table containing the index. |
IndexName | String | The index name. |
ColumnName | String | The name of the column associated with the index. |
IsUnique | Boolean | True if the index is unique. False otherwise. |
IsPrimary | Boolean | True if the index is a primary key. False otherwise. |
Type | Int16 | An integer value corresponding to the index type: statistic (0), clustered (1), hashed (2), or other (3). |
SortOrder | String | The sort order: A for ascending or D for descending. |
OrdinalPosition | Int16 | The sequence number of the column in the index. |
sys_connection_props
Returns information on the available connection properties and those set in the connection string.
When querying this table, the config connection string should be used:
jdbc:cdata:dynamicsgp:config:
This connection string enables you to query this table without a valid connection.
The following query retrieves all connection properties that have been set in the connection string or set through a default value:
SELECT * FROM sys_connection_props WHERE Value <> ''
Columns
Name | Type | Description |
---|---|---|
Name | String | The name of the connection property. |
ShortDescription | String | A brief description. |
Type | String | The data type of the connection property. |
Default | String | The default value if one is not explicitly set. |
Values | String | A comma-separated list of possible values. A validation error is thrown if another value is specified. |
Value | String | The value you set or a preconfigured default. |
Required | Boolean | Whether the property is required to connect. |
Category | String | The category of the connection property. |
IsSessionProperty | String | Whether the property is a session property, used to save information about the current connection. |
Sensitivity | String | The sensitivity level of the property. This informs whether the property is obfuscated in logging and authentication forms. |
PropertyName | String | A camel-cased truncated form of the connection property name. |
Ordinal | Int32 | The index of the parameter. |
CatOrdinal | Int32 | The index of the parameter category. |
Hierarchy | String | Shows dependent properties associated that need to be set alongside this one. |
Visible | Boolean | Informs whether the property is visible in the connection UI. |
ETC | String | Various miscellaneous information about the property. |
sys_sqlinfo
Describes the SELECT query processing that the connector can offload to the data source.
Discovering the Data Source's SELECT Capabilities
Below is an example data set of SQL capabilities. Some aspects of SELECT functionality are returned in a comma-separated list if supported; otherwise, the column contains NO.
Name | Description | Possible Values |
---|---|---|
AGGREGATE_FUNCTIONS | Supported aggregation functions. | AVG , COUNT , MAX , MIN , SUM , DISTINCT |
COUNT | Whether COUNT function is supported. | YES , NO |
IDENTIFIER_QUOTE_OPEN_CHAR | The opening character used to escape an identifier. | [ |
IDENTIFIER_QUOTE_CLOSE_CHAR | The closing character used to escape an identifier. | ] |
SUPPORTED_OPERATORS | A list of supported SQL operators. | = , > , < , >= , <= , <> , != , LIKE , NOT LIKE , IN , NOT IN , IS NULL , IS NOT NULL , AND , OR |
GROUP_BY | Whether GROUP BY is supported, and, if so, the degree of support. | NO , NO_RELATION , EQUALS_SELECT , SQL_GB_COLLATE |
STRING_FUNCTIONS | Supported string functions. | LENGTH , CHAR , LOCATE , REPLACE , SUBSTRING , RTRIM , LTRIM , RIGHT , LEFT , UCASE , SPACE , SOUNDEX , LCASE , CONCAT , ASCII , REPEAT , OCTET , BIT , POSITION , INSERT , TRIM , UPPER , REGEXP , LOWER , DIFFERENCE , CHARACTER , SUBSTR , STR , REVERSE , PLAN , UUIDTOSTR , TRANSLATE , TRAILING , TO , STUFF , STRTOUUID , STRING , SPLIT , SORTKEY , SIMILAR , REPLICATE , PATINDEX , LPAD , LEN , LEADING , KEY , INSTR , INSERTSTR , HTML , GRAPHICAL , CONVERT , COLLATION , CHARINDEX , BYTE |
NUMERIC_FUNCTIONS | Supported numeric functions. | ABS , ACOS , ASIN , ATAN , ATAN2 , CEILING , COS , COT , EXP , FLOOR , LOG , MOD , SIGN , SIN , SQRT , TAN , PI , RAND , DEGREES , LOG10 , POWER , RADIANS , ROUND , TRUNCATE |
TIMEDATE_FUNCTIONS | Supported date/time functions. | NOW , CURDATE , DAYOFMONTH , DAYOFWEEK , DAYOFYEAR , MONTH , QUARTER , WEEK , YEAR , CURTIME , HOUR , MINUTE , SECOND , TIMESTAMPADD , TIMESTAMPDIFF , DAYNAME , MONTHNAME , CURRENT_DATE , CURRENT_TIME , CURRENT_TIMESTAMP , EXTRACT |
REPLICATION_SKIP_TABLES | Indicates tables skipped during replication. | |
REPLICATION_TIMECHECK_COLUMNS | A string array containing a list of columns which will be used to check for (in the given order) to use as a modified column during replication. | |
IDENTIFIER_PATTERN | String value indicating what string is valid for an identifier. | |
SUPPORT_TRANSACTION | Indicates if the provider supports transactions such as commit and rollback. | YES , NO |
DIALECT | Indicates the SQL dialect to use. | |
KEY_PROPERTIES | Indicates the properties which identify the uniform database. | |
SUPPORTS_MULTIPLE_SCHEMAS | Indicates if multiple schemas may exist for the provider. | YES , NO |
SUPPORTS_MULTIPLE_CATALOGS | Indicates if multiple catalogs may exist for the provider. | YES , NO |
DATASYNCVERSION | The Data Sync version needed to access this driver. | Standard , Starter , Professional , Enterprise |
DATASYNCCATEGORY | The Data Sync category of this driver. | Source , Destination , Cloud Destination |
SUPPORTSENHANCEDSQL | Whether enhanced SQL functionality beyond what is offered by the API is supported. | TRUE , FALSE |
SUPPORTS_BATCH_OPERATIONS | Whether batch operations are supported. | YES , NO |
SQL_CAP | All supported SQL capabilities for this driver. | SELECT , INSERT , DELETE , UPDATE , TRANSACTIONS , ORDERBY , OAUTH , ASSIGNEDID , LIMIT , LIKE , BULKINSERT , COUNT , BULKDELETE , BULKUPDATE , GROUPBY , HAVING , AGGS , OFFSET , REPLICATE , COUNTDISTINCT , JOINS , DROP , CREATE , DISTINCT , INNERJOINS , SUBQUERIES , ALTER , MULTIPLESCHEMAS , GROUPBYNORELATION , OUTERJOINS , UNIONALL , UNION , UPSERT , GETDELETED , CROSSJOINS , GROUPBYCOLLATE , MULTIPLECATS , FULLOUTERJOIN , MERGE , JSONEXTRACT , BULKUPSERT , SUM , SUBQUERIESFULL , MIN , MAX , JOINSFULL , XMLEXTRACT , AVG , MULTISTATEMENTS , FOREIGNKEYS , CASE , LEFTJOINS , COMMAJOINS , WITH , LITERALS , RENAME , NESTEDTABLES , EXECUTE , BATCH , BASIC , INDEX |
PREFERRED_CACHE_OPTIONS | A string value specifies the preferred cacheOptions. | |
ENABLE_EF_ADVANCED_QUERY | Indicates if the driver directly supports advanced queries coming from Entity Framework. If not, queries will be handled client side. | YES , NO |
PSEUDO_COLUMNS | A string array indicating the available pseudo columns. | |
MERGE_ALWAYS | If the value is true, The Merge Mode is forcibly executed in Data Sync. | TRUE , FALSE |
REPLICATION_MIN_DATE_QUERY | A select query to return the replicate start datetime. | |
REPLICATION_MIN_FUNCTION | Allows a provider to specify the formula name to use for executing a server side min. | |
REPLICATION_START_DATE | Allows a provider to specify a replicate startdate. | |
REPLICATION_MAX_DATE_QUERY | A select query to return the replicate end datetime. | |
REPLICATION_MAX_FUNCTION | Allows a provider to specify the formula name to use for executing a server side max. | |
IGNORE_INTERVALS_ON_INITIAL_REPLICATE | A list of tables which will skip dividing the replicate into chunks on the initial replicate. | |
CHECKCACHE_USE_PARENTID | Indicates whether the CheckCache statement should be done against the parent key column. | TRUE , FALSE |
CREATE_SCHEMA_PROCEDURES | Indicates stored procedures that can be used for generating schema files. |
The following query retrieves the operators that can be used in the WHERE clause:
SELECT * FROM sys_sqlinfo WHERE Name = 'SUPPORTED_OPERATORS'
Note that individual tables may have different limitations or requirements on the WHERE clause; refer to the Data Model section for more information.
Columns
Name | Type | Description |
---|---|---|
NAME | String | A component of SQL syntax, or a capability that can be processed on the server. |
VALUE | String | Detail on the supported SQL or SQL syntax. |
sys_identity
Returns information about attempted modifications.
The following query retrieves the Ids of the modified rows in a batch operation:
SELECT * FROM sys_identity
Columns
Name | Type | Description |
---|---|---|
Id | String | The database-generated ID returned from a data modification operation. |
Batch | String | An identifier for the batch. 1 for a single operation. |
Operation | String | The result of the operation in the batch: INSERTED, UPDATED, or DELETED. |
Message | String | SUCCESS or an error message if the update in the batch failed. |
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 NTLM, Basic, Digest, None, and Negotiate. |
URL | The URL of the Dynamics GP server. |
User | The Microsoft Dynamics GP user account used to authenticate. |
Password | The password used to authenticate the user. |
CompanyId | The unique identifier of the company to access as a data source. |
Property | Description |
---|---|
KerberosKDC | The Kerberos Key Distribution Center (KDC) service used to authenticate the user. |
KerberosRealm | The Kerberos Realm used to authenticate the user. |
KerberosSPN | The service principal name (SPN) for the Kerberos Domain Controller. |
KerberosKeytabFile | The Keytab file containing your pairs of Kerberos principals and encrypted keys. |
KerberosServiceRealm | The Kerberos realm of the service. |
KerberosServiceKDC | The Kerberos KDC of the service. |
KerberosTicketCache | The full file path to an MIT Kerberos credential cache file. |
Property | Description |
---|---|
SSLServerCert | The certificate to be accepted from the server when connecting using TLS/SSL. |
Property | Description |
---|---|
Location | A path to the directory that contains the schema files defining tables, views, and stored procedures. |
BrowsableSchemas | This property restricts the schemas reported to a subset of the available schemas. For example, BrowsableSchemas=SchemaA, SchemaB, SchemaC. |
Tables | This property restricts the tables reported to a subset of the available tables. For example, Tables=TableA, TableB, TableC. |
Views | Restricts the views reported to a subset of the available tables. For example, Views=ViewA, ViewB, ViewC. |
Property | Description |
---|---|
IgnoreLookupIdErrors | A boolean indicating if errors on Ids that are looked up should be ignored. |
LookupIds | A boolean indicating if ids should be looked up. |
MaxRows | Limits the number of rows returned when no aggregation or GROUP BY is used in the query. This takes precedence over LIMIT clauses. |
Other | These hidden properties are used only in specific use cases. |
PseudoColumns | This property indicates whether or not to include pseudo columns as columns to the table. |
Timeout | The value in seconds until the timeout error is thrown, canceling the operation. |
UserDefinedViews | A filepath pointing to the JSON configuration file containing your custom views. |
Authentication
This section provides a complete list of authentication properties you can configure.
Property | Description |
---|---|
AuthScheme | The scheme used for authentication. Accepted entries are NTLM, Basic, Digest, None, and Negotiate. |
URL | The URL of the Dynamics GP server. |
User | The Microsoft Dynamics GP user account used to authenticate. |
Password | The password used to authenticate the user. |
CompanyId | The unique identifier of the company to access as a data source. |
AuthScheme
The scheme used for authentication. Accepted entries are NTLM, Basic, Digest, None, and Negotiate.
Possible Values
WSS
, NTLM
, Basic
, Digest
, None
, Negotiate
Data Type
string
Default Value
WSS
Remarks
Together with Password and User, this field is used to authenticate against the server. WSS is the default option. Use the following options to select your authentication scheme:
- None: Set this to use anonymous authentication and connect to the Microsoft Dynamics GP data source without specifying the user credentials.
- WSS: Set this to use WS-SECURITY encryption for SOAP messages.
- NTLM: Set this to use your Windows credentials to authenticate.
- Basic: Set this to use HTTP Basic authentication.
- Negotiate: If
AuthScheme
is set to NEGOTIATE, the connector will negotiate an authentication mechanism with the server. SetAuthScheme
to NEGOTIATE to use Kerberos authentication. - Digest: Set this to use HTTP Digest authentication.
URL
The URL of the Dynamics GP server.
Data Type
string
Default Value
""
Remarks
This property is required to connect. The full path must be specified. A typical service URL follows the pattern : http://{servername}:{port}/Dynamics/GPService
.
User
The Microsoft Dynamics GP user account used to authenticate.
Data Type
string
Default Value
""
Remarks
Together with Password, this field is used to authenticate against the Microsoft Dynamics GP server.
Password
The password used to authenticate the user.
Data Type
string
Default Value
""
Remarks
The User and Password
are together used to authenticate with the server.
CompanyId
The unique identifier of the company to access as a data source.
Data Type
string
Default Value
""
Remarks
This property is required to retrieve data for most of the tables. You can obtain this value by querying the Company table and leaving the property empty at first.
Kerberos
This section provides a complete list of Kerberos properties you can configure.
Property | Description |
---|---|
KerberosKDC | The Kerberos Key Distribution Center (KDC) service used to authenticate the user. |
KerberosRealm | The Kerberos Realm used to authenticate the user. |
KerberosSPN | The service principal name (SPN) for the Kerberos Domain Controller. |
KerberosKeytabFile | The Keytab file containing your pairs of Kerberos principals and encrypted keys. |
KerberosServiceRealm | The Kerberos realm of the service. |
KerberosServiceKDC | The Kerberos KDC of the service. |
KerberosTicketCache | The full file path to an MIT Kerberos credential cache file. |
KerberosKDC
The Kerberos Key Distribution Center (KDC) service used to authenticate the user.
Data Type
string
Default Value
""
Remarks
The Kerberos properties are used when using SPNEGO or Windows Authentication. The connector will request session tickets and temporary session keys from the Kerberos KDC service. The Kerberos KDC service is conventionally colocated with the domain controller.
If Kerberos KDC is not specified, the connector will attempt to detect these properties automatically from the following locations:
KRB5 Config File (krb5.ini/krb5.conf)
: If the KRB5_CONFIG environment variable is set and the file exists, the connector will obtain the KDC from the specified file. Otherwise, it will attempt to read from the default MIT location based on the OS:C:\ProgramData\MIT\Kerberos5\krb5.ini
(Windows) or/etc/krb5.conf
(Linux).Java System Properties
: Using the system propertiesjava.security.krb5.realm
andjava.security.krb5.kdc
.Domain Name and Host
: If the Kerberos Realm and Kerberos KDC could not be inferred from another location, the connector will infer them from the configured domain name and host.
Note
Windows authentication is supported in JRE 1.6 and above only.
KerberosRealm
The Kerberos Realm used to authenticate the user.
Data Type
string
Default Value
""
Remarks
The Kerberos properties are used when using SPNEGO or Windows Authentication. The Kerberos Realm is used to authenticate the user with the Kerberos Key Distribution Service (KDC). The Kerberos Realm can be configured by an administrator to be any string, but conventionally it is based on the domain name.
If Kerberos Realm is not specified, the connector will attempt to detect these properties automatically from the following locations:
KRB5 Config File (krb5.ini/krb5.conf)
: If the KRB5_CONFIG environment variable is set and the file exists, the connector will obtain the default realm from the specified file. Otherwise, it will attempt to read from the default MIT location based on the OS:C:\ProgramData\MIT\Kerberos5\krb5.ini
(Windows) or/etc/krb5.conf
(Linux)Java System Properties
: Using the system propertiesjava.security.krb5.realm
andjava.security.krb5.kdc
.Domain Name and Host
: If the Kerberos Realm and Kerberos KDC could not be inferred from another location, the connector will infer them from the user-configured domain name and host. This might work in some Windows environments.
Note
Kerberos-based authentication is supported in JRE 1.6 and above only.
KerberosSPN
The service principal name (SPN) for the Kerberos Domain Controller.
Data Type
string
Default Value
""
Remarks
If the SPN on the Kerberos Domain Controller is not the same as the URL that you are authenticating to, use this property to set the SPN.
KerberosKeytabFile
The Keytab file containing your pairs of Kerberos principals and encrypted keys.
Data Type
string
Default Value
""
Remarks
The Keytab file containing your pairs of Kerberos principals and encrypted keys.
KerberosServiceRealm
The Kerberos realm of the service.
Data Type
string
Default Value
""
Remarks
The KerberosServiceRealm
is the specify the service Kerberos realm when using cross-realm Kerberos authentication.
In most cases, a single realm and KDC machine are used to perform the Kerberos authentication and this property is not required.
This property is available for complex setups where a different realm and KDC machine are used to obtain an authentication ticket (AS request) and a service ticket (TGS request).
KerberosServiceKDC
The Kerberos KDC of the service.
Data Type
string
Default Value
""
Remarks
The KerberosServiceKDC
is used to specify the service Kerberos KDC when using cross-realm Kerberos authentication.
In most cases, a single realm and KDC machine are used to perform the Kerberos authentication and this property is not required.
This property is available for complex setups where a different realm and KDC machine are used to obtain an authentication ticket (AS request) and a service ticket (TGS request).
KerberosTicketCache
The full file path to an MIT Kerberos credential cache file.
Data Type
string
Default Value
""
Remarks
This property can be set if you wish to use a credential cache file that was created using the MIT Kerberos Ticket Manager or kinit command.
SSL
This section provides a complete list of SSL properties you can configure.
Property | Description |
---|---|
SSLServerCert | The certificate to be accepted from the server when connecting using TLS/SSL. |
SSLServerCert
The certificate to be accepted from the server when connecting using TLS/SSL.
Data Type
string
Default Value
""
Remarks
If using a TLS/SSL connection, this property can be used to specify the TLS/SSL certificate to be accepted from the server. Any other certificate that is not trusted by the machine is rejected.
This property can take the following forms:
Description | Example |
---|---|
A full PEM Certificate (example shortened for brevity) | -----BEGIN CERTIFICATE----- MIIChTCCAe4CAQAwDQYJKoZIhv......Qw== -----END CERTIFICATE----- |
A path to a local file containing the certificate | C:\cert.cer |
The public key (example shortened for brevity) | -----BEGIN RSA PUBLIC KEY----- MIGfMA0GCSq......AQAB -----END RSA PUBLIC KEY----- |
The MD5 Thumbprint (hex values can also be either space or colon separated) | ecadbdda5a1529c58a1e9e09828d70e4 |
The SHA1 Thumbprint (hex values can also be either space or colon separated) | 34a929226ae0819f2ec14b4a3d904f801cbb150d |
If not specified, any certificate trusted by the machine is accepted.
Certificates are validated as trusted by the machine based on the System's trust store. The trust store used is the 'javax.net.ssl.trustStore' value specified for the system. If no value is specified for this property, Java's default trust store is used (for example, JAVA_HOME\lib\security\cacerts).
Use '*' to signify to accept all certificates. Note that this is not recommended due to security concerns.
Schema
This section provides a complete list of schema properties you can configure.
Property | Description |
---|---|
Location | A path to the directory that contains the schema files defining tables, views, and stored procedures. |
BrowsableSchemas | This property restricts the schemas reported to a subset of the available schemas. For example, BrowsableSchemas=SchemaA, SchemaB, SchemaC. |
Tables | This property restricts the tables reported to a subset of the available tables. For example, Tables=TableA, TableB, TableC. |
Views | Restricts the views reported to a subset of the available tables. For example, Views=ViewA, ViewB, ViewC. |
Location
A path to the directory that contains the schema files defining tables, views, and stored procedures.
Data Type
string
Default Value
%APPDATA%\DynamicsGP Data Provider\Schema
Remarks
The path to a directory which contains the schema files for the connector (.rsd files for tables and views, .rsb files for stored procedures). The folder location can be a relative path from the location of the executable. The Location
property is only needed if you want to customize definitions (for example, change a column name, ignore a column, and so on) or extend the data model with new tables, views, or stored procedures.
If left unspecified, the default location is "%APPDATA%\DynamicsGP Data Provider\Schema" with %APPDATA%
being set to the user's configuration directory:
Platform | %APPDATA% |
---|---|
Windows | The value of the APPDATA environment variable |
Mac | ~/Library/Application Support |
Linux | ~/.config |
BrowsableSchemas
This property restricts the schemas reported to a subset of the available schemas. For example, BrowsableSchemas=SchemaA,SchemaB,SchemaC.
Data Type
string
Default Value
""
Remarks
Listing the schemas from databases can be expensive. Providing a list of schemas in the connection string improves the performance.
Tables
This property restricts the tables reported to a subset of the available tables. For example, Tables=TableA,TableB,TableC.
Data Type
string
Default Value
""
Remarks
Listing the tables from some databases can be expensive. Providing a list of tables in the connection string improves the performance of the connector.
This property can also be used as an alternative to automatically listing views if you already know which ones you want to work with and there would otherwise be too many to work with.
Specify the tables you want in a comma-separated list. Each table should be a valid SQL identifier with any special characters escaped using square brackets, double-quotes or backticks. For example, Tables=TableA,[TableB/WithSlash],WithCatalog.WithSchema.`TableC With Space`.
Note that when connecting to a data source with multiple schemas or catalogs, you will need to provide the fully qualified name of the table in this property, as in the last example here, to avoid ambiguity between tables that exist in multiple catalogs or schemas.
Views
Restricts the views reported to a subset of the available tables. For example, Views=ViewA,ViewB,ViewC.
Data Type
string
Default Value
""
Remarks
Listing the views from some databases can be expensive. Providing a list of views in the connection string improves the performance of the connector.
This property can also be used as an alternative to automatically listing views if you already know which ones you want to work with and there would otherwise be too many to work with.
Specify the views you want in a comma-separated list. Each view should be a valid SQL identifier with any special characters escaped using square brackets, double-quotes or backticks. For example, Views=ViewA,[ViewB/WithSlash],WithCatalog.WithSchema.`ViewC With Space`.
Note that when connecting to a data source with multiple schemas or catalogs, you will need to provide the fully qualified name of the table in this property, as in the last example here, to avoid ambiguity between tables that exist in multiple catalogs or schemas.
Miscellaneous
This section provides a complete list of miscellaneous properties you can configure.
Property | Description |
---|---|
IgnoreLookupIdErrors | A boolean indicating if errors on Ids that are looked up should be ignored. |
LookupIds | A boolean indicating if ids should be looked up. |
MaxRows | Limits the number of rows returned when no aggregation or GROUP BY is used in the query. This takes precedence over LIMIT clauses. |
Other | These hidden properties are used only in specific use cases. |
PseudoColumns | This property indicates whether or not to include pseudo columns as columns to the table. |
Timeout | The value in seconds until the timeout error is thrown, canceling the operation. |
UserDefinedViews | A filepath pointing to the JSON configuration file containing your custom views. |
IgnoreLookupIdErrors
A boolean indicating if errors on Ids that are looked up should be ignored.
Data Type
bool
Default Value
true
Remarks
Sometimes Microsoft Dynamics GP will throw exceptions when looking up a specific Id. This can indicate that there is an internal problem with the record, even though it is listed just fine along with all of the rest when it is not looked up by Id. To allow the Jitterbit Connector for Microsoft Dynamics GP to work without interruption, these errors are ignored by default and simply logged. Set this property to false to force the Jitterbit Connector for Microsoft Dynamics GP to return an error when there is a problem.
This property is also used when retrieving data from a child table. Child tables must always be retrieved by ID as they do not come back in the summary responses that list all parent items.
LookupIds
A boolean indicating if ids should be looked up.
Data Type
bool
Default Value
false
Remarks
Most entities are retrieved via a summary from DynamicsGP. However, these summaries are incomplete. To get back more details such as line items, entities must be retrieved one at a time by Id. Setting this value to true will cause the tool to perform this lookup automatically, although it will harm performance.
MaxRows
Limits the number of rows returned when no aggregation or GROUP BY is used in the query. This takes precedence over LIMIT clauses.
Data Type
int
Default Value
-1
Remarks
Limits the number of rows returned when no aggregation or GROUP BY is used in the query. This takes precedence over LIMIT clauses.
Other
These hidden properties are used only in specific use cases.
Data Type
string
Default Value
""
Remarks
The properties listed below are available for specific use cases. Normal driver use cases and functionality should not require these properties.
Specify multiple properties in a semicolon-separated list.
Integration and Formatting
Property | Description |
---|---|
DefaultColumnSize | Sets the default length of string fields when the data source does not provide column length in the metadata. The default value is 2000. |
ConvertDateTimeToGMT | Determines whether to convert date-time values to GMT, instead of the local time of the machine. |
RecordToFile=filename | Records the underlying socket data transfer to the specified file. |
PseudoColumns
This property indicates whether or not to include pseudo columns as columns to the table.
Data Type
string
Default Value
""
Remarks
This setting is particularly helpful in Entity Framework, which does not allow you to set a value for a pseudo column unless it is a table column. The value of this connection setting is of the format "Table1=Column1, Table1=Column2, Table2=Column3". You can use the "*" character to include all tables and all columns; for example, "*=*".
Timeout
The value in seconds until the timeout error is thrown, canceling the operation.
Data Type
int
Default Value
60
Remarks
If Timeout
= 0, operations do not time out. The operations run until they complete successfully or until they encounter an error condition.
If Timeout
expires and the operation is not yet complete, the connector throws an exception.
UserDefinedViews
A filepath pointing to the JSON configuration file containing your custom views.
Data Type
string
Default Value
""
Remarks
User Defined Views are defined in a JSON-formatted configuration file called UserDefinedViews.json
. The connector automatically detects the views specified in this file.
You can also have multiple view definitions and control them using the UserDefinedViews
connection property. When you use this property, only the specified views are seen by the connector.
This User Defined View configuration file is formatted as follows:
- Each root element defines the name of a view.
- Each root element contains a child element, called
query
, which contains the custom SQL query for the view.
For example:
{
"MyView": {
"query": "SELECT * FROM Customer WHERE MyColumn = 'value'"
},
"MyView2": {
"query": "SELECT * FROM MyTable WHERE Id IN (1,2,3)"
}
}
Use the UserDefinedViews
connection property to specify the location of your JSON configuration file. For example:
"UserDefinedViews", "C:\Users\yourusername\Desktop\tmp\UserDefinedViews.json"