The CData Sync App provides a straightforward way to continuously pipeline your Microsoft Dynamics GP data to any database, data lake, or data warehouse, making it easily available for Analytics, Reporting, AI, and Machine Learning.
The Microsoft Dynamics GP connector can be used from the CData Sync application to pull data from Microsoft Dynamics GP and move it to any of the supported destinations.
The Sync App supports read access to Microsoft Dynamics GP 2010, 2013, and 2015 through the Dynamics GP Web services APIs. Web services must be enabled for your instance.
For required properties, see the Settings tab.
For connection properties that are not typically required, see the Advanced tab.
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.
The Microsoft Dynamics GP data source supports the following authentication methods:
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.
Set the User and Password to connect and set AuthScheme to WSS.
Note: WSS Authentication is the default authentication scheme.
Set the User and Password to connect and set AuthScheme to Basic.
Set the Windows User and Password to connect and set AuthScheme to NTLM.
Set the User and Password to connect and set AuthScheme to Digest.
See Using Kerberos for details on how to authenticate with Kerberos.
The Sync App 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.
To authenticate to Microsoft Dynamics GP with Kerberos, set AuthScheme to NEGOTIATE.
Authenticating to Microsoft Dynamics GP via Kerberos requires you to define authentication properties and to choose how Kerberos should retrieve authentication tickets.
The Sync App provides three ways to retrieve the required Kerberos ticket, depending on whether or not the KRB5CCNAME and/or KerberosKeytabFile variables exist in your environment.
MIT Kerberos Credential Cache File
This option enables you to use the MIT Kerberos Ticket Manager or kinit command to get tickets. With this option there is no need to set the User or Password connection properties.
This option requires that KRB5CCNAME has been created in your system.
To enable ticket retrieval via MIT Cerberos Credential Cache Files:
If the ticket is successfully obtained, the ticket information appears in Kerberos Ticket Manager and is stored in the credential cache file.
The Sync App uses the cache file to obtain the Kerberos ticket to connect to Microsoft Dynamics GP.
Note: If you would prefer not to edit KRB5CCNAME, you can use the KerberosTicketCache property to set the file path manually. After this is set, the Sync App uses the specified cache file to obtain the Kerberos ticket to connect to Microsoft Dynamics GP.
Keytab File
If your environment lacks the KRB5CCNAME environment variable, you can retrieve a Kerberos ticket using a Keytab File.
To use this method, 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 your environment lacks the KRB5CCNAME environment variable and the KerberosKeytabFile property has not been set, you can retrieve a ticket using a user and password combination.
To use this method, set the User and Password properties to the user/password combination that you use to authenticate with Microsoft Dynamics GP.
To enable this kind of cross-realm authentication, 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.
This section details a selection of advanced features of the Microsoft Dynamics GP Sync App.
The Sync App 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.
Use SSL Configuration to adjust how Sync App handles TLS/SSL certificate negotiations. You can choose from various certificate formats; see the SSLServerCert property under "Connection String Options" for more information.
Configure the Sync App for compliance with Firewall and Proxy, including Windows proxies and HTTP proxies. You can also set up tunnel connections.
The Sync App 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.
See Logging for an overview of configuration settings that can be used to refine CData logging. For basic logging, you only need to set two connection properties, but there are numerous features that support more refined logging, where you can select subsets of information to be logged using the LogModules connection property.
By default, the Sync App 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.
To connect through the Windows system proxy, you do not need to set any additional connection properties. To connect to other proxies, set ProxyAutoDetect to false.
In addition, to authenticate to an HTTP proxy, set ProxyAuthScheme, ProxyUser, and ProxyPassword, in addition to ProxyServer and ProxyPort.
Set the following properties:
The CData Sync App models Microsoft Dynamics GP entities in relational views, or read-only tables. The tables are determined automatically based on the metadata the Sync App 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.
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')
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');
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'
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'
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'
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.
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'
The Sync App models the data in Microsoft Dynamics GP as a list of tables in a relational database that can be queried using standard SQL statements.
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 |
Return a list of: Applicant
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-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 |
Return a list of: ApplicantEducation
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-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 |
Return a list of: ApplicantInterview
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-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 |
Return a list of: ApplicantReference
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-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 |
Return a list of: ApplicantSkill
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-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 |
Return a list of: ApplicantTest
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-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 |
Return a list of: ApplicantWorkHistory
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-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 |
Return a list of: BackOfficeRoleAssignment
Name | Type | ReadOnly | Description |
ExtensionsExtensionAggregate | String | False | |
KeyRoleId [KEY] | String | False | |
KeyUserId [KEY] | String | False |
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 |
Return a list of: BusinessObjectUserAssignment
Name | Type | ReadOnly | Description |
BusinessObjectKey | String | False | |
BusinessObjectTypeId | String | False | |
User [KEY] | String | False |
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 |
Return a list of: CashReceipt
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-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 |
Return a list of: Customer
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-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 |
Return a list of: CustomerAddress
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-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 |
Return a list of: Employee
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-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 |
Return a list of: EmployeeAddress
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-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 |
Return a list of: EmployeePayCode
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-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 |
Return a list of: Fee
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-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 |
Return a list of: GLFixedAllocationAccount
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-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 |
Return a list of: GLPostingAccount
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-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 |
Return a list of: GLTransaction
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-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 |
Return a list of: GLUnitAccount
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-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 |
Return a list of: GLVariableAllocationAccount
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-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 |
Return a list of: HRRequisition
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-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 |
Return a list of: InventoryAdjustment
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-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 |
Return a list of: InventoryTransfer
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-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 |
Return a list of: InventoryVariance
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-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 |
Return a list of: ItemCurrency
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-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 |
Return a list of: ItemVendor
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-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 |
Return a list of: ItemWarehouse
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-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 |
Return a list of: PayablesCreditMemo
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-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 |
Return a list of: PayablesFinanceCharge
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-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 |
Return a list of: PayablesInvoice
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-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 |
Return a list of: PayablesMiscellaneousCharge
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-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 |
Return a list of: PayablesReturn
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-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 |
Return a list of: Policy
Name | Type | ReadOnly | Description |
BehaviorsAggregate | String | False | |
Id [KEY] | String | False | |
Name | String | False | |
RootBusinessObjectName | String | False |
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 |
Return a list of: Pricing
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-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 |
Return a list of: PurchaseInvoice
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-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 |
Return a list of: PurchaseOrder
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-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 |
Return a list of: PurchaseReceipt
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-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 |
Return a list of: ReceivablesCreditMemo
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-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 |
Return a list of: ReceivablesDebitMemo
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-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 |
Return a list of: ReceivablesFinanceCharge
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-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 |
Return a list of: ReceivablesInvoice
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-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 |
Return a list of: ReceivablesReturn
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-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 |
Return a list of: ReceivablesServiceRepair
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-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 |
Return a list of: ReceivablesWarranty
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-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 |
Return a list of: ReturnMaterialAuthorization
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-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 |
Return a list of: SalesBackorder
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-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 |
Return a list of: SalesFulfillmentOrder
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-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 |
Return a list of: SalesInvoice
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-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 |
Return a list of: SalesOrder
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-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 |
Return a list of: SalesProcessHoldSetup
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-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 |
Return a list of: SalesQuote
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-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 |
Return a list of: SalesReturn
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-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 |
Return a list of: Service
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-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 |
Return a list of: ServiceCall
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-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 |
Return a list of: ServiceEquipment
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-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 |
Return a list of: ServiceQuote
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-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 |
Return a list of: Skill
Name | Type | ReadOnly | Description |
ExtensionsExtensionAggregate | String | False | |
CompensationExtensionsExtensionAggregate | String | False | |
CompensationCompensationAmount | Decimal | False | |
CompensationCompensationPeriod | String | False | |
DeleteOnUpdate | Bool | False | |
SkillId [KEY] | String | False |
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 |
Return a list of: SkillSet
Name | Type | ReadOnly | Description |
ExtensionsExtensionAggregate | String | False | |
AvailableSkills | Int | False | |
SkillSetId [KEY] | String | False | |
SkillsAggregate | String | False |
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 |
Return a list of: Vendor
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-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 |
Return a list of: VendorAddress
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-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 |
Return a list of: Warehouse
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-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 are similar to tables in the way that data is represented; however, views are read-only.
Queries can be executed against a view as if it were a normal table.
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 |
Return a list of: ApplicantApplication
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-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 |
Return a list of: ApplicantApplications
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-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 |
Return a list of: ApplicantInterviewInterviewItems
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-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 |
Return a list of: ApplicantInterviews
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-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 |
Return a list of: ApplicantPreviousEmployers
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-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 |
Return a list of: ApplicantReferences
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-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 |
Return a list of: ApplicantSchools
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-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 |
Return a list of: ApplicantSkills
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-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 |
Return a list of: ApplicantTests
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-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 |
Return a list of: BackOfficeRole
Name | Type | Description |
ExtensionsExtensionAggregate | String | |
Description | String | |
Id [KEY] | String | |
Name | String |
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 |
Return a list of: Bank
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-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 |
Return a list of: CashReceiptDistributions
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-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 |
Return a list of: ChangedCurrencyKey
Name | Type | Description |
Action [KEY] | String | |
LastModifiedBy [KEY] | String | |
LastModifiedDate [KEY] | Datetime | |
ISOCode [KEY] | String |
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 |
Return a list of: ChangedCustomerAddressKey
Name | Type | Description |
Action [KEY] | String | |
LastModifiedBy [KEY] | String | |
LastModifiedDate [KEY] | Datetime | |
CustomerId [KEY] | String | |
Id [KEY] | String |
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 |
Return a list of: ChangedCustomerKey
Name | Type | Description |
Action [KEY] | String | |
LastModifiedBy [KEY] | String | |
LastModifiedDate [KEY] | Datetime | |
Id [KEY] | String |
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 |
Return a list of: ChangedInternetAddressKey
Name | Type | Description |
Action [KEY] | String | |
LastModifiedBy [KEY] | String | |
LastModifiedDate [KEY] | Datetime | |
AddressId [KEY] | String | |
InternetAddressKey [KEY] | String | |
InternetAddressType [KEY] | String |
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 |
Return a list of: ChangedItemKey
Name | Type | Description |
Action [KEY] | String | |
LastModifiedBy [KEY] | String | |
LastModifiedDate [KEY] | Datetime | |
Id [KEY] | String | |
ItemType [KEY] | String |
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 |
Return a list of: ChangedPriceLevelKey
Name | Type | Description |
Action [KEY] | String | |
LastModifiedBy [KEY] | String | |
LastModifiedDate [KEY] | Datetime | |
Id [KEY] | String |
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 |
Return a list of: ChangedPricingKey
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-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 |
Return a list of: ChangedSalesInvoiceKey
Name | Type | Description |
Action [KEY] | String | |
LastModifiedBy [KEY] | String | |
LastModifiedDate [KEY] | Datetime | |
SalesDocumentTypeId [KEY] | String | |
SalesDocumentTypeKeyType [KEY] | String |
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 |
Return a list of: ChangedSalesOrderKey
Name | Type | Description |
Action [KEY] | String | |
LastModifiedBy [KEY] | String | |
LastModifiedDate [KEY] | Datetime | |
SalesDocumentTypeId [KEY] | String | |
SalesDocumentTypeKeyType [KEY] | String |
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 |
Return a list of: ChangedSalespersonKey
Name | Type | Description |
Action [KEY] | String | |
LastModifiedBy [KEY] | String | |
LastModifiedDate [KEY] | Datetime | |
Id [KEY] | String |
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 |
Return a list of: ChangedUofMScheduleKey
Name | Type | Description |
Action [KEY] | String | |
LastModifiedBy [KEY] | String | |
LastModifiedDate [KEY] | Datetime | |
Id [KEY] | String |
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 |
Return a list of: Company
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-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 |
Return a list of: CompanyAddress
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-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 |
Return a list of: CountryRegionCode
Name | Type | Description |
ExtensionsExtensionAggregate | String | |
Description | String | |
IsEuropeanUnionMember | Bool | |
Id [KEY] | String |
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 |
Return a list of: Currency
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-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 |
Return a list of: CurrencyAccess
Name | Type | Description |
ExtensionsExtensionAggregate | String | |
IsActive | Bool | |
KeyCurrencyKeyISOCode [KEY] | String |
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 |
Return a list of: CurrencyPostingAccount
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-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 |
Return a list of: CustomerAddresses
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-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 |
Return a list of: CustomerReceivablesSummary
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-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 |
Return a list of: EmployeeAddresses
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-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 |
Return a list of: GLAccount
Name | Type | Description |
ExtensionsExtensionAggregate | String | |
Alias | String | |
CreatedDate | Datetime | |
Description | String | |
IsActive | Bool | |
Id [KEY] | String | |
KeyIsEncrypted [KEY] | Bool | |
ModifiedDate | Datetime | |
Type | String |
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 |
Return a list of: GLAccountCategory
Name | Type | Description |
Id [KEY] | String |
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 |
Return a list of: GLAccountFormat
Name | Type | Description |
ExtensionsExtensionAggregate | String | |
IsMainSegment | Bool | |
Id [KEY] | Int | |
MaximumSegmentLength | Int | |
SegmentLength | Int | |
SegmentName | String | |
UserDefinedSegment | Int |
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 |
Return a list of: GLFixedAllocationAccountDistributions
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-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 |
Return a list of: GLPostingAccountCurrencies
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-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 |
Return a list of: GLTransactionLines
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-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 |
Return a list of: GLVariableAllocationAccountDistributions
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-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 |
Return a list of: InventoriedItem
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-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 |
Return a list of: InventoryAdjustmentLines
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-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 |
Return a list of: InventoryTransferLines
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-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 |
Return a list of: InventoryVarianceLines
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-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 |
Return a list of: Item
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-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 |
Return a list of: ItemClass
Name | Type | Description |
ExtensionsExtensionAggregate | String | |
Description | String | |
Id [KEY] | String | |
Type | String |
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 |
Return a list of: ManufacturingOrder
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-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 |
Return a list of: ManufacturingOrderPickList
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-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 |
Return a list of: ManufacturingOrderRoute
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-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 |
Return a list of: MulticurrencySetup
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-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 |
Return a list of: PayablesDocument
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-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 |
The DynamicsGP table PayablesDocumentDistributions.
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. |
The DynamicsGP table PayablesDocumentTaxes.
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. |
Return a list of: PaymentCardType
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-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 |
Return a list of: PaymentTerms
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-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 |
Return a list of: PlannedOrder
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-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 |
Return a list of: PlannedOrderItems
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-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 |
Return a list of: PolicyBehaviors
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-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 |
Return a list of: PriceLevel
Name | Type | Description |
ExtensionsExtensionAggregate | String | |
CreatedDate | Datetime | |
Description | String | |
Id [KEY] | String | |
LastModifiedBy | String | |
LastModifiedDate | Datetime | |
ModifiedDate | Datetime |
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 |
Return a list of: PricingDetails
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-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 |
Return a list of: Project
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-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 |
Return a list of: ProjectAccounts
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-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 |
Return a list of: ProjectBillingCycles
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-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 |
Return a list of: ProjectBudget
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-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 |
Return a list of: ProjectBudgets
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-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 |
Return a list of: ProjectChangeOrder
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-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 |
Return a list of: ProjectChangeOrderBudgets
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-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 |
Return a list of: ProjectChangeOrderFees
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-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 |
Return a list of: ProjectContract
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-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 |
Return a list of: ProjectContractAccounts
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-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 |
Return a list of: ProjectContractBillingCycles
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-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 |
Return a list of: ProjectEmployeeExpense
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-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 |
Return a list of: ProjectEmployeeExpenseDistributions
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-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 |
Return a list of: ProjectEmployeeExpenseLines
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-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 |
Return a list of: ProjectEquipmentList
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-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 |
Return a list of: ProjectFees
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-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 |
Return a list of: ProjectMiscellaneousLog
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-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 |
Return a list of: ProjectMiscellaneousLogDistributions
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-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 |
Return a list of: ProjectMiscellaneousLogLines
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-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 |
Return a list of: ProjectTimesheet
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-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 |
Return a list of: ProjectTimesheetDistributions
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-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 |
Return a list of: ProjectTimesheetLines
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-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 |
Return a list of: PurchaseInvoiceDistributions
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-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 |
Return a list of: PurchaseInvoiceFreightTaxes
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-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 |
Return a list of: PurchaseInvoiceLines
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-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 |
Return a list of: PurchaseInvoiceMiscellaneousTaxes
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-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 |
Return a list of: PurchaseInvoiceTaxes
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-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 |
Return a list of: PurchaseOrderFreightTaxes
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-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 |
Return a list of: PurchaseOrderLines
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-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 |
Return a list of: PurchaseOrderMiscellaneousTaxes
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-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 |
Return a list of: PurchaseOrderTaxes
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-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 |
Return a list of: PurchaseReceiptDistributions
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-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 |
Return a list of: PurchaseReceiptLines
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-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 |
Return a list of: PurchaseReceiptUserDefined
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-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 |
Return a list of: ReceivablesDebitMemoCommissions
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-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 |
Return a list of: ReceivablesDocument
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-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 |
The DynamicsGP table ReceivablesDocumentDistributions.
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. |
The DynamicsGP table ReceivablesDocumentTaxes.
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. |
Return a list of: ReceivablesInvoiceCommissions
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-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 |
Return a list of: ReceivablesReturnCommissions
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-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 |
Return a list of: ReceivablesServiceRepairCommissions
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-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 |
Return a list of: ReturnMaterialAuthorizationAudits
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-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 |
Return a list of: ReturnMaterialAuthorizationLines
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-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 |
Return a list of: SalesBackorderLines
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-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 |
Return a list of: SalesBackorderPayments
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-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 |
Return a list of: SalesDocument
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-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 |
The DynamicsGP table SalesDocumentCommissions.
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. |
The DynamicsGP table SalesDocumentFreightTaxes.
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. |
The DynamicsGP table SalesDocumentMiscellaneousTaxes.
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. |
The DynamicsGP table SalesDocumentProcessHolds.
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. |
The DynamicsGP table SalesDocumentTaxes.
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. |
The DynamicsGP table SalesDocumentTrackingNumbers.
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. |
Return a list of: SalesFulfillmentOrderDistributions
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-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 |
Return a list of: SalesFulfillmentOrderLines
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-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 |
Return a list of: SalesFulfillmentOrderPayments
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-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 |
Return a list of: SalesInvoiceDistributions
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-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 |
Return a list of: SalesInvoiceLines
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-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 |
Return a list of: SalesInvoicePayments
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-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 |
Return a list of: SalesOrderLines
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-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 |
Return a list of: SalesOrderPayments
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-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 |
Return a list of: Salesperson
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-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 |
Return a list of: SalespersonCommissions
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-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 |
Return a list of: SalespersonSalesHistory
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-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 |
Return a list of: SalesQuoteLines
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-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 |
Return a list of: SalesReturnDistributions
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-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 |
Return a list of: SalesReturnLines
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-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 |
Return a list of: SalesReturnPayments
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-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 |
Return a list of: SalesTerritory
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-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 |
Return a list of: SalesTerritorySalesHistory
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-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 |
Return a list of: ServiceCallAdditionalCharges
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-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 |
Return a list of: ServiceCallEquipmentCodes
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-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 |
Return a list of: ServiceCallExpenses
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-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 |
Return a list of: ServiceCallLabor
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-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 |
Return a list of: ServiceCallParts
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-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 |
Return a list of: ServiceEquipmentReadings
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-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 |
Return a list of: ServiceQuoteAdditionalCharges
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-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 |
Return a list of: ServiceQuoteEquipmentCodes
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-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 |
Return a list of: ServiceQuoteExpenses
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-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 |
Return a list of: ServiceQuoteLabor
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-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 |
Return a list of: ServiceQuoteParts
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-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 |
Return a list of: ShippingMethod
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-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 |
Return a list of: SkillSetSkills
Name | Type | Description |
ExtensionsExtensionAggregate | String | |
AvailableSkills | Int | |
SkillSetId | String | |
SkillsExtensionsExtensionAggregate | String | |
SkillsCompensationExtensionsExtensionAggregate | String | |
SkillsCompensationCompensationAmount | Decimal | |
SkillsCompensationCompensationPeriod | String | |
SkillsDeleteOnUpdate | Bool | |
SkillsSkillId [KEY] | String |
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 |
Return a list of: UofMSchedule
Name | Type | Description |
ExtensionsExtensionAggregate | String | |
BaseUofM | String | |
Description | String | |
DetailsAggregate | String | |
Id [KEY] | String | |
LastModifiedBy | String | |
LastModifiedDate | Datetime | |
UofMDecimalPlacesQuantities | String |
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 |
Return a list of: UofMScheduleDetails
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-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 |
Return a list of: UserAssignableBusinessObject
Name | Type | Description |
BusinessObjectTypeDisplayName | String | |
BusinessObjectTypeId [KEY] | String | |
IsKeyEqualToDisplayId | Bool | |
SupportedContainment | String |
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 |
Return a list of: VendorAddresses
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-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 |
Return a list of: VendorManufacturingOrder
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-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 |
Return a list of: VendorManufacturingOrderRoute
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-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 |
Return a list of: VendorPlannedOrder
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-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 |
Return a list of: WarehouseBins
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-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 |
The connection string 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 in the connection string for this provider. Click the links for further details.
For more information on establishing a connection, see Establishing a Connection.
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 |
FirewallType | The protocol used by a proxy-based firewall. |
FirewallServer | The name or IP address of a proxy-based firewall. |
FirewallPort | The TCP port for a proxy-based firewall. |
FirewallUser | The user name to use to authenticate with a proxy-based firewall. |
FirewallPassword | A password used to authenticate to a proxy-based firewall. |
Property | Description |
ProxyAutoDetect | This indicates whether to use the system proxy settings or not. |
ProxyServer | The hostname or IP address of a proxy to route HTTP traffic through. |
ProxyPort | The TCP port the ProxyServer proxy is running on. |
ProxyAuthScheme | The authentication type to use to authenticate to the ProxyServer proxy. |
ProxyUser | A user name to be used to authenticate to the ProxyServer proxy. |
ProxyPassword | A password to be used to authenticate to the ProxyServer proxy. |
ProxySSLType | The SSL type to use when connecting to the ProxyServer proxy. |
ProxyExceptions | A semicolon separated list of destination hostnames or IPs that are exempt from connecting through the ProxyServer . |
Property | Description |
LogModules | Core modules to be included in the log file. |
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. |
This section provides a complete list of the Authentication properties you can configure in the connection string for this provider.
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. |
The scheme used for authentication. Accepted entries are NTLM, Basic, Digest, None, and Negotiate.
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:
The URL of the Dynamics GP server.
This property is required to connect. The full path must be specified. A typical service URL follows the pattern : http://{servername}:{port}/Dynamics/GPService.
The Microsoft Dynamics GP user account used to authenticate.
Together with Password, this field is used to authenticate against the Microsoft Dynamics GP server.
The password used to authenticate the user.
The User and Password are together used to authenticate with the server.
The unique identifier of the company to access as a data source.
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.
This section provides a complete list of the Kerberos properties you can configure in the connection string for this provider.
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. |
The Kerberos Key Distribution Center (KDC) service used to authenticate the user.
The Kerberos properties are used when using SPNEGO or Windows Authentication. The Sync App 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 Sync App will attempt to detect these properties automatically from the following locations:
The Kerberos Realm used to authenticate the user.
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 Sync App will attempt to detect these properties automatically from the following locations:
The service principal name (SPN) for the Kerberos Domain Controller.
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.
The Keytab file containing your pairs of Kerberos principals and encrypted keys.
The Keytab file containing your pairs of Kerberos principals and encrypted keys.
The Kerberos realm of the service.
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).
The Kerberos KDC of the service.
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).
The full file path to an MIT Kerberos credential cache file.
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.
This section provides a complete list of the SSL properties you can configure in the connection string for this provider.
Property | Description |
SSLServerCert | The certificate to be accepted from the server when connecting using TLS/SSL. |
The certificate to be accepted from the server when connecting using TLS/SSL.
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.
Use '*' to signify to accept all certificates. Note that this is not recommended due to security concerns.
This section provides a complete list of the Firewall properties you can configure in the connection string for this provider.
Property | Description |
FirewallType | The protocol used by a proxy-based firewall. |
FirewallServer | The name or IP address of a proxy-based firewall. |
FirewallPort | The TCP port for a proxy-based firewall. |
FirewallUser | The user name to use to authenticate with a proxy-based firewall. |
FirewallPassword | A password used to authenticate to a proxy-based firewall. |
The protocol used by a proxy-based firewall.
This property specifies the protocol that the Sync App will use to tunnel traffic through the FirewallServer proxy. Note that by default, the Sync App connects to the system proxy; to disable this behavior and connect to one of the following proxy types, set ProxyAutoDetect to false.
Type | Default Port | Description |
TUNNEL | 80 | When this is set, the Sync App opens a connection to Microsoft Dynamics GP and traffic flows back and forth through the proxy. |
SOCKS4 | 1080 | When this is set, the Sync App sends data through the SOCKS 4 proxy specified by FirewallServer and FirewallPort and passes the FirewallUser value to the proxy, which determines if the connection request should be granted. |
SOCKS5 | 1080 | When this is set, the Sync App sends data through the SOCKS 5 proxy specified by FirewallServer and FirewallPort. If your proxy requires authentication, set FirewallUser and FirewallPassword to credentials the proxy recognizes. |
To connect to HTTP proxies, use ProxyServer and ProxyPort. To authenticate to HTTP proxies, use ProxyAuthScheme, ProxyUser, and ProxyPassword.
The name or IP address of a proxy-based firewall.
This property specifies the IP address, DNS name, or host name of a proxy allowing traversal of a firewall. The protocol is specified by FirewallType: Use FirewallServer with this property to connect through SOCKS or do tunneling. Use ProxyServer to connect to an HTTP proxy.
Note that the Sync App uses the system proxy by default. To use a different proxy, set ProxyAutoDetect to false.
The TCP port for a proxy-based firewall.
This specifies the TCP port for a proxy allowing traversal of a firewall. Use FirewallServer to specify the name or IP address. Specify the protocol with FirewallType.
The user name to use to authenticate with a proxy-based firewall.
The FirewallUser and FirewallPassword properties are used to authenticate against the proxy specified in FirewallServer and FirewallPort, following the authentication method specified in FirewallType.
A password used to authenticate to a proxy-based firewall.
This property is passed to the proxy specified by FirewallServer and FirewallPort, following the authentication method specified by FirewallType.
This section provides a complete list of the Proxy properties you can configure in the connection string for this provider.
Property | Description |
ProxyAutoDetect | This indicates whether to use the system proxy settings or not. |
ProxyServer | The hostname or IP address of a proxy to route HTTP traffic through. |
ProxyPort | The TCP port the ProxyServer proxy is running on. |
ProxyAuthScheme | The authentication type to use to authenticate to the ProxyServer proxy. |
ProxyUser | A user name to be used to authenticate to the ProxyServer proxy. |
ProxyPassword | A password to be used to authenticate to the ProxyServer proxy. |
ProxySSLType | The SSL type to use when connecting to the ProxyServer proxy. |
ProxyExceptions | A semicolon separated list of destination hostnames or IPs that are exempt from connecting through the ProxyServer . |
This indicates whether to use the system proxy settings or not.
This takes precedence over other proxy settings, so you'll need to set ProxyAutoDetect to FALSE in order use custom proxy settings.
To connect to an HTTP proxy, see ProxyServer. For other proxies, such as SOCKS or tunneling, see FirewallType.
The hostname or IP address of a proxy to route HTTP traffic through.
The hostname or IP address of a proxy to route HTTP traffic through. The Sync App can use the HTTP, Windows (NTLM), or Kerberos authentication types to authenticate to an HTTP proxy.
If you need to connect through a SOCKS proxy or tunnel the connection, see FirewallType.
By default, the Sync App uses the system proxy. If you need to use another proxy, set ProxyAutoDetect to false.
The TCP port the ProxyServer proxy is running on.
The port the HTTP proxy is running on that you want to redirect HTTP traffic through. Specify the HTTP proxy in ProxyServer. For other proxy types, see FirewallType.
The authentication type to use to authenticate to the ProxyServer proxy.
This value specifies the authentication type to use to authenticate to the HTTP proxy specified by ProxyServer and ProxyPort.
Note that the Sync App will use the system proxy settings by default, without further configuration needed; if you want to connect to another proxy, you will need to set ProxyAutoDetect to false, in addition to ProxyServer and ProxyPort. To authenticate, set ProxyAuthScheme and set ProxyUser and ProxyPassword, if needed.
The authentication type can be one of the following:
If you need to use another authentication type, such as SOCKS 5 authentication, see FirewallType.
A user name to be used to authenticate to the ProxyServer proxy.
The ProxyUser and ProxyPassword options are used to connect and authenticate against the HTTP proxy specified in ProxyServer.
You can select one of the available authentication types in ProxyAuthScheme. If you are using HTTP authentication, set this to the user name of a user recognized by the HTTP proxy. If you are using Windows or Kerberos authentication, set this property to a user name in one of the following formats:
user@domain domain\user
A password to be used to authenticate to the ProxyServer proxy.
This property is used to authenticate to an HTTP proxy server that supports NTLM (Windows), Kerberos, or HTTP authentication. To specify the HTTP proxy, you can set ProxyServer and ProxyPort. To specify the authentication type, set ProxyAuthScheme.
If you are using HTTP authentication, additionally set ProxyUser and ProxyPassword to HTTP proxy.
If you are using NTLM authentication, set ProxyUser and ProxyPassword to your Windows password. You may also need these to complete Kerberos authentication.
For SOCKS 5 authentication or tunneling, see FirewallType.
By default, the Sync App uses the system proxy. If you want to connect to another proxy, set ProxyAutoDetect to false.
The SSL type to use when connecting to the ProxyServer proxy.
This property determines when to use SSL for the connection to an HTTP proxy specified by ProxyServer. This value can be AUTO, ALWAYS, NEVER, or TUNNEL. The applicable values are the following:
AUTO | Default setting. If the URL is an HTTPS URL, the Sync App will use the TUNNEL option. If the URL is an HTTP URL, the component will use the NEVER option. |
ALWAYS | The connection is always SSL enabled. |
NEVER | The connection is not SSL enabled. |
TUNNEL | The connection is through a tunneling proxy. The proxy server opens a connection to the remote host and traffic flows back and forth through the proxy. |
A semicolon separated list of destination hostnames or IPs that are exempt from connecting through the ProxyServer .
The ProxyServer is used for all addresses, except for addresses defined in this property. Use semicolons to separate entries.
Note that the Sync App uses the system proxy settings by default, without further configuration needed; if you want to explicitly configure proxy exceptions for this connection, you need to set ProxyAutoDetect = false, and configure ProxyServer and ProxyPort. To authenticate, set ProxyAuthScheme and set ProxyUser and ProxyPassword, if needed.
This section provides a complete list of the Logging properties you can configure in the connection string for this provider.
Property | Description |
LogModules | Core modules to be included in the log file. |
Core modules to be included in the log file.
Only the modules specified (separated by ';') will be included in the log file. By default all modules are included.
See the Logging page for an overview.
This section provides a complete list of the Schema properties you can configure in the connection string for this provider.
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. |
A path to the directory that contains the schema files defining tables, views, and stored procedures.
The path to a directory which contains the schema files for the Sync App (.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%\\CData\\DynamicsGP Data Provider\\Schema" with %APPDATA% being set to the user's configuration directory:
Platform | %APPDATA% |
Windows | The value of the APPDATA environment variable |
Linux | ~/.config |
This property restricts the schemas reported to a subset of the available schemas. For example, BrowsableSchemas=SchemaA,SchemaB,SchemaC.
Listing the schemas from databases can be expensive. Providing a list of schemas in the connection string improves the performance.
This property restricts the tables reported to a subset of the available tables. For example, Tables=TableA,TableB,TableC.
Listing the tables from some databases can be expensive. Providing a list of tables in the connection string improves the performance of the Sync App.
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.
Restricts the views reported to a subset of the available tables. For example, Views=ViewA,ViewB,ViewC.
Listing the views from some databases can be expensive. Providing a list of views in the connection string improves the performance of the Sync App.
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.
This section provides a complete list of the Miscellaneous properties you can configure in the connection string for this provider.
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. |
A boolean indicating if errors on Ids that are looked up should be ignored.
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 CData Sync App to work without interruption, these errors are ignored by default and simply logged. Set this property to false to force the CData Sync App 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.
A boolean indicating if ids should be looked up.
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.
Limits the number of rows returned when no aggregation or GROUP BY is used in the query. This takes precedence over LIMIT clauses.
Limits the number of rows returned when no aggregation or GROUP BY is used in the query. This takes precedence over LIMIT clauses.
These hidden properties are used only in specific use cases.
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.
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. |
This property indicates whether or not to include pseudo columns as columns to the table.
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, "*=*".
The value in seconds until the timeout error is thrown, canceling the operation.
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 Sync App throws an exception.
A filepath pointing to the JSON configuration file containing your custom views.
User Defined Views are defined in a JSON-formatted configuration file called UserDefinedViews.json. The Sync App 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 Sync App.
This User Defined View configuration file is formatted as follows:
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.jsonNote that the specified path is not embedded in quotation marks.