Exact Online Connection Details
Introduction
Connector Version
This documentation is based on version 23.0.8803 of the connector.
Get Started
Exact Online Version Support
The Exact Online connector connects with V1 of the REST API.
Establish a Connection
Authenticate via OAuth Authentication
You can connect after setting required connection properties for your user credentials and obtaining required access tokens using a tool such as Postman.
Division
: Set to the division of the Exact Online administration.Region
: Set to the region of the Exact Online service you want to connect to.
See Using OAuth Authentication for details of the OAuth authentication flow.
Create a Custom OAuth Application
Create a Custom OAuth Application
embeds OAuth Application Credentials with branding that can be used when connecting to Exact Online via a desktop application or a headless machine. If you want to use the embedded OAuth application, all you need to do to connect is to:
- set
AuthScheme
toOAuth
, - get and set the
OAuthAccessToken
, and - set the necessary configuration parameters.
(For information on getting and setting the OAuthAccessToken
and other configuration parameters, see the Desktop Authentication section of "Connecting to Exact Online".)
However, you must create a custom OAuth application to connect to Exact Online via the Web. And since custom OAuth applications seamlessly support all three commonly-used auth flows, you might want to create custom OAuth applications (use your own OAuth Application Credentials) for those auth flows anyway.
Custom OAuth applications are useful if you want to:
- control branding of the authentication dialog;
- control the redirect URI that the application redirects the user to after the user authenticates; or
- customize the permissions that you are requesting from the user.
Procedure
To create a custom OAuth application for use in a Desktop, Web, or Headless Machine auth flow, and obtain the appropriate connection properties:
-
If you have not already done so, create an Exact Online developer account.
-
Log into the App Center.
-
Navigate to
Manage Apps > Add a New Application
. -
Enter a name for the application. This name will be displayed to users when they are prompted to grant permissions to connect.
-
Set the Redirect URI:
- For connecting via either a Desktop or a Headless Machine, set the Redirect URI to
https://oauth.cdata.com/oauth/
. - For connecting via the Web, set the Redirect URI to a page where you would like the user to be returned after they have granted your application permission to connect.
- For connecting via either a Desktop or a Headless Machine, set the Redirect URI to
-
Click
Edit
. The App Center displays your new application's client credentials,client Id, and client secret.
Set these OAuth credentials, plus Division
and Region
, before you connect.
Important Notes
Configuration Files and Their Paths
- All references to adding configuration files and their paths refer to files and locations on the Jitterbit agent where the connector is installed. These paths are to be adjusted as appropriate depending on the agent and the operating system. If multiple agents are used in an agent group, identical files will be required on each agent.
Advanced Features
This section details a selection of advanced features of the Exact Online connector.
User Defined Views
The connector allows you to define virtual tables, called user defined views, whose contents are decided by a pre-configured query. These views are useful when you cannot directly control queries being issued to the drivers. See User Defined Views for an overview of creating and configuring custom views.
SSL Configuration
Use SSL Configuration to adjust how connector handles TLS/SSL certificate negotiations. You can choose from various certificate formats; see the SSLServerCert
property under "Connection String Options" for more information.
Proxy
To configure the connector using private agent proxy settings, select the Use Proxy Settings
checkbox on the connection configuration screen.
Query Processing
The connector offloads as much of the SELECT statement processing as possible to Exact Online and then processes the rest of the query in memory (client-side).
User Defined Views
The Exact Online connector allows you to define a virtual table whose contents are decided by a pre-configured query. These are called User Defined Views, which are useful in situations where you cannot directly control the query being issued to the driver, e.g. when using the driver from Jitterbit. The User Defined Views can be used to define predicates that are always applied. If you specify additional predicates in the query to the view, they are combined with the query already defined as part of the view.
There are two ways to create user defined views:
- Create a JSON-formatted configuration file defining the views you want.
- DDL statements.
Define Views Using a Configuration File
User Defined Views are defined in a JSON-formatted configuration file called UserDefinedViews.json
. The connector automatically detects the views specified in this file.
You can also have multiple view definitions and control them using the UserDefinedViews
connection property. When you use this property, only the specified views are seen by the connector.
This User Defined View configuration file is formatted as follows:
- Each root element defines the name of a view.
- Each root element contains a child element, called
query
, which contains the custom SQL query for the view.
For example:
{
"MyView": {
"query": "SELECT * FROM Accounts WHERE MyColumn = 'value'"
},
"MyView2": {
"query": "SELECT * FROM MyTable WHERE Id IN (1,2,3)"
}
}
Use the UserDefinedViews
connection property to specify the location of your JSON configuration file. For example:
"UserDefinedViews", "C:\Users\yourusername\Desktop\tmp\UserDefinedViews.json"
Define Views Using DDL Statements
The connector is also capable of creating and altering the schema via DDL Statements such as CREATE LOCAL VIEW, ALTER LOCAL VIEW, and DROP LOCAL VIEW.
Create a View
To create a new view using DDL statements, provide the view name and query as follows:
CREATE LOCAL VIEW [MyViewName] AS SELECT * FROM Customers LIMIT 20;
If no JSON file exists, the above code creates one. The view is then created in the JSON configuration file and is now discoverable. The JSON file location is specified by the UserDefinedViews
connection property.
Alter a View
To alter an existing view, provide the name of an existing view alongside the new query you would like to use instead:
ALTER LOCAL VIEW [MyViewName] AS SELECT * FROM Customers WHERE TimeModified > '3/1/2020';
The view is then updated in the JSON configuration file.
Drop a View
To drop an existing view, provide the name of an existing schema alongside the new query you would like to use instead.
DROP LOCAL VIEW [MyViewName]
This removes the view from the JSON configuration file. It can no longer be queried.
Schema for User Defined Views
User Defined Views are exposed in the UserViews
schema by default. This is done to avoid the view's name clashing with an actual entity in the data model. You can change the name of the schema used for UserViews by setting the UserViewsSchemaName
property.
Work with User Defined Views
For example, a SQL statement with a User Defined View called UserViews.RCustomers
only lists customers in Raleigh:
SELECT * FROM Customers WHERE City = 'Raleigh';
An example of a query to the driver:
SELECT * FROM UserViews.RCustomers WHERE Status = 'Active';
Resulting in the effective query to the source:
SELECT * FROM Customers WHERE City = 'Raleigh' AND Status = 'Active';
That is a very simple example of a query to a User Defined View that is effectively a combination of the view query and the view definition. It is possible to compose these queries in much more complex patterns. All SQL operations are allowed in both queries and are combined when appropriate.
SSL Configuration
Customize the SSL Configuration
By default, the connector attempts to negotiate SSL/TLS by checking the server's certificate against the system's trusted certificate store.
To specify another certificate, see the SSLServerCert
property for the available formats to do so.
Data Model
The Exact Online connector models entities from the Exact Online API as relational tables and stored procedures. The Exact Online connector dynamically retrieves the table definitions. When you connect, the connector gets the list of tables and the metadata for the tables by calling the appropriate Web services.
Tables
Tables allow access to the data from the data source.
Stored Procedures
Stored Procedures are function-like interfaces to Exact Online. They can be used to search, update, and modify information
in Exact Online.
Tables
The connector models the data in Exact Online as a list of tables in a relational database that can be queried using standard SQL statements.
Exact Online Connector Tables
Name | Description |
---|---|
AcceptQuotation | Usage information for the operation AcceptQuotation.rsd. |
AccountInvolvedAccounts | Usage information for the operation AccountInvolvedAccounts.rsd. |
AccountOwners | Usage information for the operation AccountOwners.rsd. |
Accounts | Usage information for the operation Accounts.rsd. |
Addresses | Usage information for the operation Addresses.rsd. |
BankAccounts | Usage information for the operation BankAccounts.rsd. |
BankEntries | Usage information for the operation BankEntries.rsd. |
BankEntryLines | Usage information for the operation BankEntryLines.rsd. |
BillOfMaterialRoutings | Use this endpoint to create, read, update and delete routings in a bill of material version linked to a make item. |
ByProductReceipts | Usage information for the operation ByProductReceipts.rsd. |
ByProductReversals | Usage information for the operation ByProductReversals.rsd. |
CashEntries | Usage information for the operation CashEntries.rsd. |
CashEntryLines | Usage information for the operation CashEntryLines.rsd. |
CommunicationNotes | Usage information for the operation CommunicationNotes.rsd. |
Complaints | Usage information for the operation Complaints.rsd. |
Contacts | Usage information for the operation Contacts.rsd. |
Costcenters | Usage information for the operation Costcenters.rsd. |
CostTransactions | Usage information for the operation CostTransactions.rsd. |
Costunits | Usage information for the operation Costunits.rsd. |
DepreciationMethods | Usage information for the operation DepreciationMethods.rsd. |
DirectDebitMandates | Usage information for the operation DirectDebitMandates.rsd. |
DocumentAttachments | Usage information for the operation DocumentAttachments.rsd. |
DocumentFolders | Usage information for the operation DocumentFolders.rsd. |
Documents | Usage information for the operation Documents.rsd. |
DocumentTypeFolders | Usage information for the operation DocumentTypeFolders.rsd. |
DropShipmentLines | To List, Create and Update DropShipmentLines. |
DropShipments | To List, Create and Update DropShipments. |
Events | Usage information for the operation Events.rsd. |
ExchangeRates | Usage information for the operation ExchangeRates.rsd. |
GeneralJournalEntries | Usage information for the operation GeneralJournalEntries.rsd. |
GeneralJournalEntryLines | Usage information for the operation GeneralJournalEntryLines.rsd. |
GLAccounts | Usage information for the operation GLAccounts.rsd. |
GoodsDeliveries | Usage information for the operation GoodsDeliveries.rsd. |
GoodsDeliveryLines | Usage information for the operation GoodsDeliveryLines.rsd. |
GoodsReceiptLines | Usage information for the operation GoodsReceiptLines.rsd. |
GoodsReceipts | Usage information for the operation GoodsReceipts.rsd. |
InvoiceSalesOrders | Usage information for the operation InvoiceSalesOrders.rsd. |
InvoiceTerms | Usage information for the operation InvoiceTerms.rsd. |
InvolvedUserRoles | Usage information for the operation InvolvedUserRoles.rsd. |
InvolvedUsers | Usage information for the operation InvolvedUsers.rsd. |
Items | Usage information for the operation Items.rsd. |
ItemWarehouses | Usage information for the operation ItemWarehouses.rsd. |
Journals | Usage information for the operation Journals.rsd. |
Mailboxes | Usage information for the operation Mailboxes.rsd. |
MailMessageAttachments | Usage information for the operation MailMessageAttachments.rsd. |
MailMessages | Usage information for the operation MailMessages.rsd. |
MailMessagesSent | Usage information for the operation MailMessagesSent.rsd. |
MaterialIssues | Usage information for the operation MaterialIssues.rsd. |
MaterialReversals | Usage information for the operation MaterialReversals.rsd. |
OperationResources | Usage information for the operation OperationResources.rsd. |
Operations | Usage information for the operation Operations.rsd. |
Opportunities | Usage information for the operation Opportunities.rsd. |
PaymentConditions | Usage information for the operation PaymentConditions.rsd. |
PrintedSalesInvoices | Usage information for the operation PrintedSalesInvoices.rsd. |
PrintedSalesOrders | Usage information for the operation PrintedSalesOrders.rsd. |
PrintQuotation | Usage information for the operation PrintQuotation.rsd. |
ProcessPayments | Usage information for the operation ProcessPayments.rsd. |
ProcessStockCount | Usage information for the operation ProcessStockCount.rsd. |
ProductionAreas | Usage information for the operation ProductionAreas.rsd. |
ProjectHourBudgets | Usage information for the operation ProjectHourBudgets.rsd. |
ProjectPlanning | Usage information for the operation ProjectPlanning.rsd. |
ProjectPlanningRecurring | Usage information for the operation ProjectPlanningRecurring.rsd. |
ProjectRestrictionEmployees | Usage information for the operation ProjectRestrictionEmployees.rsd. |
ProjectRestrictionItems | Usage information for the operation ProjectRestrictionItems.rsd. |
ProjectRestrictionRebillings | Usage information for the operation ProjectRestrictionRebillings.rsd. |
Projects | Usage information for the operation Projects.rsd. |
ProjectTimeTransactions | Usage information for the operation ProjectTimeTransactions.rsd. |
PurchaseEntries | Usage information for the operation PurchaseEntries.rsd. |
PurchaseEntryLines | Usage information for the operation PurchaseEntryLines.rsd. |
PurchaseInvoiceLines | Usage information for the operation PurchaseInvoiceLines.rsd. |
PurchaseInvoices | Usage information for the operation PurchaseInvoices.rsd. |
PurchaseReturnLines | Use this endpoint to create a new purchase return line, retrieve an existing purchase return line and update an existing purchase return line |
QuotationLines | Usage information for the operation QuotationLines.rsd. |
QuotationOrderChargeLines | Use this endpoint to create, read, update and delete quotation's order charge lines. |
Quotations | Usage information for the operation Quotations.rsd. |
RejectQuotation | Usage information for the operation RejectQuotation.rsd. |
ReopenQuotation | Usage information for the operation ReopenQuotation.rsd. |
ReviewQuotation | Usage information for the operation ReviewQuotation.rsd. |
SalesEntries | Usage information for the operation SalesEntries.rsd. |
SalesEntryLines | Usage information for the operation SalesEntryLines.rsd. |
SalesInvoiceLines | Usage information for the operation SalesInvoiceLines.rsd. |
SalesInvoiceOrderChargeLines | Use this endpoint to create, read, update and delete sales invoice shipping cost and order charge lines. |
SalesInvoices | Usage information for the operation SalesInvoices.rsd. |
SalesItemPrices | Usage information for the operation SalesItemPrices.rsd. |
SalesOrderHeaders | Usage information for the operation SalesOrderHeaders.rsd. |
SalesOrderID | Usage information for the operation SalesOrderID.rsd. |
SalesOrderLines | Usage information for the operation SalesOrderLines.rsd. |
SalesOrderOrderChargeLines | Use this endpoint to create, read, update and delete sales order shipping cost and order charge lines. |
SalesOrders | Usage information for the operation SalesOrders.rsd. |
ServiceRequests | Usage information for the operation ServiceRequests.rsd. |
ShopOrderMaterialPlans | Usage information for the operation ShopOrderMaterialPlans.rsd. |
ShopOrderReceipts | Usage information for the operation ShopOrderReceipts.rsd. |
ShopOrderReversals | Usage information for the operation ShopOrderReversals.rsd. |
ShopOrderRoutingStepPlans | Usage information for the operation ShopOrderRoutingStepPlans.rsd. |
ShopOrders | Usage information for the operation ShopOrders.rsd. |
SolutionLinks | Usage information for the operation SolutionLinks.rsd. |
StockCountLines | Usage information for the operation StockCountLines.rsd. |
StockCounts | Usage information for the operation StockCounts.rsd. |
SubOrderReceipts | Usage information for the operation SubOrderReceipts.rsd. |
SubOrderReversals | Usage information for the operation SubOrderReversals.rsd. |
SubscriptionLines | Usage information for the operation SubscriptionLines.rsd. |
SubscriptionRestrictionEmployees | Usage information for the operation SubscriptionRestrictionEmployees.rsd. |
SubscriptionRestrictionItems | Usage information for the operation SubscriptionRestrictionItems.rsd. |
Subscriptions | Usage information for the operation Subscriptions.rsd. |
SupplierItem | Usage information for the operation SupplierItem.rsd. |
Tasks | Usage information for the operation Tasks.rsd. |
TaskTypes | Usage information for the operation TaskTypes.rsd. |
TimeCorrections | Usage information for the operation TimeCorrections.rsd. |
TimeTransactions | Usage information for the operation TimeTransactions.rsd. |
VATCodes | Usage information for the operation VATCodes.rsd. |
Warehouses | Usage information for the operation Warehouses.rsd. |
Workcenters | Usage information for the operation Workcenters.rsd. |
AcceptQuotation
Usage information for the operation AcceptQuotation.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
QuotationID [KEY] | String | True | The QuotationID column for the table AcceptQuotation. |
Action | Int | False | The Action column for the table AcceptQuotation. |
CreateProjectWBS | Bool | False | The CreateProjectWBS column for the table AcceptQuotation. |
Division | Int | False | The Division column for the table AcceptQuotation. |
ErrorMessage | String | False | The ErrorMessage column for the table AcceptQuotation. |
InvoiceJournal | Int | False | The InvoiceJournal column for the table AcceptQuotation. |
ProjectBudgetType | Int | False | The ProjectBudgetType column for the table AcceptQuotation. |
ProjectCode | String | False | The ProjectCode column for the table AcceptQuotation. |
ProjectDescription | String | False | The ProjectDescription column for the table AcceptQuotation. |
ProjectInvoiceDate | Datetime | False | The ProjectInvoiceDate column for the table AcceptQuotation. |
ProjectInvoicingAction | Int | False | The ProjectInvoicingAction column for the table AcceptQuotation. |
ProjectPrepaindTypes | Int | False | The ProjectPrepaindTypes column for the table AcceptQuotation. |
ProjectPriceAgreement | Double | False | The ProjectPriceAgreement column for the table AcceptQuotation. |
ProjectSuccess | String | False | The ProjectSuccess column for the table AcceptQuotation. |
ProjectType | Int | False | The ProjectType column for the table AcceptQuotation. |
ReasonCode | String | False | The ReasonCode column for the table AcceptQuotation. |
SalesInvoiceSuccess | String | False | The SalesInvoiceSuccess column for the table AcceptQuotation. |
SalesOrderSuccess | String | False | The SalesOrderSuccess column for the table AcceptQuotation. |
SuccessMessage | String | False | The SuccessMessage column for the table AcceptQuotation. |
AccountInvolvedAccounts
Usage information for the operation AccountInvolvedAccounts.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ID [KEY] | String | True | The ID column for the table AccountInvolvedAccounts. |
Account | String | False | The Account column for the table AccountInvolvedAccounts. |
AccountName | String | False | The AccountName column for the table AccountInvolvedAccounts. |
Created | Datetime | False | The Created column for the table AccountInvolvedAccounts. |
Creator | String | False | The Creator column for the table AccountInvolvedAccounts. |
CreatorFullName | String | False | The CreatorFullName column for the table AccountInvolvedAccounts. |
Division | Int | False | The Division column for the table AccountInvolvedAccounts. |
InvolvedAccount | String | False | The InvolvedAccount column for the table AccountInvolvedAccounts. |
InvolvedAccountRelationTypeDescription | String | False | The InvolvedAccountRelationTypeDescription column for the table AccountInvolvedAccounts. |
InvolvedAccountRelationTypeDescriptionTermId | Int | False | The InvolvedAccountRelationTypeDescriptionTermId column for the table AccountInvolvedAccounts. |
InvolvedAccountRelationTypeId | Int | False | The InvolvedAccountRelationTypeId column for the table AccountInvolvedAccounts. |
Modified | Datetime | False | The Modified column for the table AccountInvolvedAccounts. |
Modifier | String | False | The Modifier column for the table AccountInvolvedAccounts. |
ModifierFullName | String | False | The ModifierFullName column for the table AccountInvolvedAccounts. |
Notes | String | False | The Notes column for the table AccountInvolvedAccounts. |
AccountOwners
Usage information for the operation AccountOwners.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ID [KEY] | String | True | The ID column for the table AccountOwners. |
Account | String | False | The Account column for the table AccountOwners. |
AccountCode | String | False | The AccountCode column for the table AccountOwners. |
AccountName | String | False | The AccountName column for the table AccountOwners. |
Created | Datetime | False | The Created column for the table AccountOwners. |
Creator | String | False | The Creator column for the table AccountOwners. |
CreatorFullName | String | False | The CreatorFullName column for the table AccountOwners. |
Division | Int | False | The Division column for the table AccountOwners. |
Modified | Datetime | False | The Modified column for the table AccountOwners. |
Modifier | String | False | The Modifier column for the table AccountOwners. |
ModifierFullName | String | False | The ModifierFullName column for the table AccountOwners. |
OwnerAccount | String | False | The OwnerAccount column for the table AccountOwners. |
OwnerAccountCode | String | False | The OwnerAccountCode column for the table AccountOwners. |
OwnerAccountName | String | False | The OwnerAccountName column for the table AccountOwners. |
Shares | Double | False | The Shares column for the table AccountOwners. |
Accounts
Usage information for the operation Accounts.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ID [KEY] | String | True | The ID column for the table Accounts. |
Accountant | String | False | The Accountant column for the table Accounts. |
AccountManager | String | False | The AccountManager column for the table Accounts. |
AccountManagerFullName | String | False | The AccountManagerFullName column for the table Accounts. |
AccountManagerHID | Int | False | The AccountManagerHID column for the table Accounts. |
ActivitySector | String | False | The ActivitySector column for the table Accounts. |
ActivitySubSector | String | False | The ActivitySubSector column for the table Accounts. |
AddressLine1 | String | False | The AddressLine1 column for the table Accounts. |
AddressLine2 | String | False | The AddressLine2 column for the table Accounts. |
AddressLine3 | String | False | The AddressLine3 column for the table Accounts. |
Blocked | Bool | False | The Blocked column for the table Accounts. |
BRIN | String | False | The BRIN column for the table Accounts. |
BusinessType | String | False | The BusinessType column for the table Accounts. |
CanDropShip | Bool | False | The CanDropShip column for the table Accounts. |
ChamberOfCommerce | String | False | The ChamberOfCommerce column for the table Accounts. |
City | String | False | The City column for the table Accounts. |
Classification | String | False | The Classification column for the table Accounts. |
Classification1 | String | False | The Classification1 column for the table Accounts. |
Classification2 | String | False | The Classification2 column for the table Accounts. |
Classification3 | String | False | The Classification3 column for the table Accounts. |
Classification4 | String | False | The Classification4 column for the table Accounts. |
Classification5 | String | False | The Classification5 column for the table Accounts. |
Classification6 | String | False | The Classification6 column for the table Accounts. |
Classification7 | String | False | The Classification7 column for the table Accounts. |
Classification8 | String | False | The Classification8 column for the table Accounts. |
ClassificationDescription | String | False | The ClassificationDescription column for the table Accounts. |
Code | String | False | The Code column for the table Accounts. |
CodeAtSupplier | String | False | The CodeAtSupplier column for the table Accounts. |
CompanySize | String | False | The CompanySize column for the table Accounts. |
ConsolidationScenario | Int | False | The ConsolidationScenario column for the table Accounts. |
ControlledDate | Datetime | False | The ControlledDate column for the table Accounts. |
Costcenter | String | False | The Costcenter column for the table Accounts. |
CostcenterDescription | String | False | The CostcenterDescription column for the table Accounts. |
CostPaid | Int | False | The CostPaid column for the table Accounts. |
Country | String | False | The Country column for the table Accounts. |
CountryName | String | False | The CountryName column for the table Accounts. |
Created | Datetime | False | The Created column for the table Accounts. |
Creator | String | False | The Creator column for the table Accounts. |
CreatorFullName | String | False | The CreatorFullName column for the table Accounts. |
CreditLinePurchase | Double | False | The CreditLinePurchase column for the table Accounts. |
CreditLineSales | Double | False | The CreditLineSales column for the table Accounts. |
Currency | String | False | The Currency column for the table Accounts. |
CustomerSince | Datetime | False | The CustomerSince column for the table Accounts. |
DatevCreditorCode | String | False | The DatevCreditorCode column for the table Accounts. |
DatevDebtorCode | String | False | The DatevDebtorCode column for the table Accounts. |
DiscountPurchase | Double | False | The DiscountPurchase column for the table Accounts. |
DiscountSales | Double | False | The DiscountSales column for the table Accounts. |
Division | Int | False | The Division column for the table Accounts. |
Document | String | False | The Document column for the table Accounts. |
DunsNumber | String | False | The DunsNumber column for the table Accounts. |
Email | String | False | The Email column for the table Accounts. |
EndDate | Datetime | False | The EndDate column for the table Accounts. |
EstablishedDate | Datetime | False | The EstablishedDate column for the table Accounts. |
Fax | String | False | The Fax column for the table Accounts. |
GLAccountPurchase | String | False | The GLAccountPurchase column for the table Accounts. |
GLAccountSales | String | False | The GLAccountSales column for the table Accounts. |
GLAP | String | False | The GLAP column for the table Accounts. |
GLAR | String | False | The GLAR column for the table Accounts. |
HasWithholdingTaxSales | Bool | False | The HasWithholdingTaxSales column for the table Accounts. |
IgnoreDatevWarningMessage | Bool | False | The IgnoreDatevWarningMessage column for the table Accounts. |
IntraStatArea | String | False | The IntraStatArea column for the table Accounts. |
IntraStatDeliveryTerm | String | False | The IntraStatDeliveryTerm column for the table Accounts. |
IntraStatSystem | String | False | The IntraStatSystem column for the table Accounts. |
IntraStatTransactionA | String | False | The IntraStatTransactionA column for the table Accounts. |
IntraStatTransactionB | String | False | The IntraStatTransactionB column for the table Accounts. |
IntraStatTransportMethod | String | False | The IntraStatTransportMethod column for the table Accounts. |
InvoiceAccount | String | False | The InvoiceAccount column for the table Accounts. |
InvoiceAccountCode | String | False | The InvoiceAccountCode column for the table Accounts. |
InvoiceAccountName | String | False | The InvoiceAccountName column for the table Accounts. |
InvoiceAttachmentType | Int | False | The InvoiceAttachmentType column for the table Accounts. |
InvoicingMethod | Int | False | The InvoicingMethod column for the table Accounts. |
IsAccountant | Int | False | The IsAccountant column for the table Accounts. |
IsAgency | Int | False | The IsAgency column for the table Accounts. |
IsBank | Bool | False | The IsBank column for the table Accounts. |
IsCompetitor | Int | False | The IsCompetitor column for the table Accounts. |
IsExtraDuty | Bool | False | The IsExtraDuty column for the table Accounts. |
IsMailing | Int | False | The IsMailing column for the table Accounts. |
IsMember | Bool | False | The IsMember column for the table Accounts. |
IsPilot | Bool | False | The IsPilot column for the table Accounts. |
IsPurchase | Bool | False | The IsPurchase column for the table Accounts. |
IsReseller | Bool | False | The IsReseller column for the table Accounts. |
IsSales | Bool | False | The IsSales column for the table Accounts. |
IsSupplier | Bool | False | The IsSupplier column for the table Accounts. |
Language | String | False | The Language column for the table Accounts. |
LanguageDescription | String | False | The LanguageDescription column for the table Accounts. |
Latitude | Double | False | The Latitude column for the table Accounts. |
LeadPurpose | String | False | The LeadPurpose column for the table Accounts. |
LeadSource | String | False | The LeadSource column for the table Accounts. |
Logo | Binary | False | The Logo column for the table Accounts. |
LogoFileName | String | False | The LogoFileName column for the table Accounts. |
LogoThumbnailUrl | String | False | The LogoThumbnailUrl column for the table Accounts. |
LogoUrl | String | False | The LogoUrl column for the table Accounts. |
Longitude | Double | False | The Longitude column for the table Accounts. |
MainContact | String | False | The MainContact column for the table Accounts. |
Modified | Datetime | False | The Modified column for the table Accounts. |
Modifier | String | False | The Modifier column for the table Accounts. |
ModifierFullName | String | False | The ModifierFullName column for the table Accounts. |
Name | String | False | The Name column for the table Accounts. |
OINNumber | String | False | The OINNumber column for the table Accounts. |
Parent | String | False | The Parent column for the table Accounts. |
PayAsYouEarn | String | False | The PayAsYouEarn column for the table Accounts. |
PaymentConditionPurchase | String | False | The PaymentConditionPurchase column for the table Accounts. |
PaymentConditionPurchaseDescription | String | False | The PaymentConditionPurchaseDescription column for the table Accounts. |
PaymentConditionSales | String | False | The PaymentConditionSales column for the table Accounts. |
PaymentConditionSalesDescription | String | False | The PaymentConditionSalesDescription column for the table Accounts. |
Phone | String | False | The Phone column for the table Accounts. |
PhoneExtension | String | False | The PhoneExtension column for the table Accounts. |
Postcode | String | False | The Postcode column for the table Accounts. |
PriceList | String | False | The PriceList column for the table Accounts. |
PurchaseCurrency | String | False | The PurchaseCurrency column for the table Accounts. |
PurchaseCurrencyDescription | String | False | The PurchaseCurrencyDescription column for the table Accounts. |
PurchaseLeadDays | Int | False | The PurchaseLeadDays column for the table Accounts. |
PurchaseVATCode | String | False | The PurchaseVATCode column for the table Accounts. |
PurchaseVATCodeDescription | String | False | The PurchaseVATCodeDescription column for the table Accounts. |
RecepientOfCommissions | Bool | False | The RecepientOfCommissions column for the table Accounts. |
Remarks | String | False | The Remarks column for the table Accounts. |
Reseller | String | False | The Reseller column for the table Accounts. |
ResellerCode | String | False | The ResellerCode column for the table Accounts. |
ResellerName | String | False | The ResellerName column for the table Accounts. |
RSIN | String | False | The RSIN column for the table Accounts. |
SalesCurrency | String | False | The SalesCurrency column for the table Accounts. |
SalesCurrencyDescription | String | False | The SalesCurrencyDescription column for the table Accounts. |
SalesTaxSchedule | String | False | The SalesTaxSchedule column for the table Accounts. |
SalesTaxScheduleCode | String | False | The SalesTaxScheduleCode column for the table Accounts. |
SalesTaxScheduleDescription | String | False | The SalesTaxScheduleDescription column for the table Accounts. |
SalesVATCode | String | False | The SalesVATCode column for the table Accounts. |
SalesVATCodeDescription | String | False | The SalesVATCodeDescription column for the table Accounts. |
SearchCode | String | False | The SearchCode column for the table Accounts. |
SecurityLevel | Int | False | The SecurityLevel column for the table Accounts. |
SeparateInvPerProject | Int | False | The SeparateInvPerProject column for the table Accounts. |
SeparateInvPerSubscription | Int | False | The SeparateInvPerSubscription column for the table Accounts. |
ShippingLeadDays | Int | False | The ShippingLeadDays column for the table Accounts. |
ShippingMethod | String | False | The ShippingMethod column for the table Accounts. |
StartDate | Datetime | False | The StartDate column for the table Accounts. |
State | String | False | The State column for the table Accounts. |
StateName | String | False | The StateName column for the table Accounts. |
Status | String | False | The Status column for the table Accounts. |
StatusSince | Datetime | False | The StatusSince column for the table Accounts. |
TradeName | String | False | The TradeName column for the table Accounts. |
Type | String | False | The Type column for the table Accounts. |
UniqueTaxpayerReference | String | False | The UniqueTaxpayerReference column for the table Accounts. |
VATLiability | String | False | The VATLiability column for the table Accounts. |
VATNumber | String | False | The VATNumber column for the table Accounts. |
Website | String | False | The Website column for the table Accounts. |
LinkedBankAccounts | String | False | The LinkedBankAccounts column for the table Accounts. |
Addresses
Usage information for the operation Addresses.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ID [KEY] | String | True | The ID column for the table Addresses. |
Account | String | False | The Account column for the table Addresses. |
AccountIsSupplier | Bool | False | The AccountIsSupplier column for the table Addresses. |
AccountName | String | False | The AccountName column for the table Addresses. |
AddressLine1 | String | False | The AddressLine1 column for the table Addresses. |
AddressLine2 | String | False | The AddressLine2 column for the table Addresses. |
AddressLine3 | String | False | The AddressLine3 column for the table Addresses. |
City | String | False | The City column for the table Addresses. |
Contact | String | False | The Contact column for the table Addresses. |
ContactName | String | False | The ContactName column for the table Addresses. |
Country | String | False | The Country column for the table Addresses. |
CountryName | String | False | The CountryName column for the table Addresses. |
Created | Datetime | False | The Created column for the table Addresses. |
Creator | String | False | The Creator column for the table Addresses. |
CreatorFullName | String | False | The CreatorFullName column for the table Addresses. |
Division | Int | False | The Division column for the table Addresses. |
Fax | String | False | The Fax column for the table Addresses. |
FreeBoolField_01 | Bool | False | The FreeBoolField_01 column for the table Addresses. |
FreeBoolField_02 | Bool | False | The FreeBoolField_02 column for the table Addresses. |
FreeBoolField_03 | Bool | False | The FreeBoolField_03 column for the table Addresses. |
FreeBoolField_04 | Bool | False | The FreeBoolField_04 column for the table Addresses. |
FreeBoolField_05 | Bool | False | The FreeBoolField_05 column for the table Addresses. |
FreeDateField_01 | Datetime | False | The FreeDateField_01 column for the table Addresses. |
FreeDateField_02 | Datetime | False | The FreeDateField_02 column for the table Addresses. |
FreeDateField_03 | Datetime | False | The FreeDateField_03 column for the table Addresses. |
FreeDateField_04 | Datetime | False | The FreeDateField_04 column for the table Addresses. |
FreeDateField_05 | Datetime | False | The FreeDateField_05 column for the table Addresses. |
FreeNumberField_01 | Double | False | The FreeNumberField_01 column for the table Addresses. |
FreeNumberField_02 | Double | False | The FreeNumberField_02 column for the table Addresses. |
FreeNumberField_03 | Double | False | The FreeNumberField_03 column for the table Addresses. |
FreeNumberField_04 | Double | False | The FreeNumberField_04 column for the table Addresses. |
FreeNumberField_05 | Double | False | The FreeNumberField_05 column for the table Addresses. |
FreeTextField_01 | String | False | The FreeTextField_01 column for the table Addresses. |
FreeTextField_02 | String | False | The FreeTextField_02 column for the table Addresses. |
FreeTextField_03 | String | False | The FreeTextField_03 column for the table Addresses. |
FreeTextField_04 | String | False | The FreeTextField_04 column for the table Addresses. |
FreeTextField_05 | String | False | The FreeTextField_05 column for the table Addresses. |
Mailbox | String | False | The Mailbox column for the table Addresses. |
Main | Bool | False | The Main column for the table Addresses. |
Modified | Datetime | False | The Modified column for the table Addresses. |
Modifier | String | False | The Modifier column for the table Addresses. |
ModifierFullName | String | False | The ModifierFullName column for the table Addresses. |
NicNumber | String | False | The NicNumber column for the table Addresses. |
Notes | String | False | The Notes column for the table Addresses. |
Phone | String | False | The Phone column for the table Addresses. |
PhoneExtension | String | False | The PhoneExtension column for the table Addresses. |
Postcode | String | False | The Postcode column for the table Addresses. |
State | String | False | The State column for the table Addresses. |
StateDescription | String | False | The StateDescription column for the table Addresses. |
Type | Int | False | The Type column for the table Addresses. |
Warehouse | String | False | The Warehouse column for the table Addresses. |
WarehouseCode | String | False | The WarehouseCode column for the table Addresses. |
WarehouseDescription | String | False | The WarehouseDescription column for the table Addresses. |
BankAccounts
Usage information for the operation BankAccounts.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ID [KEY] | String | True | The ID column for the table BankAccounts. |
Account | String | False | The Account column for the table BankAccounts. |
AccountName | String | False | The AccountName column for the table BankAccounts. |
Bank | String | False | The Bank column for the table BankAccounts. |
BankAccount | String | False | The BankAccount column for the table BankAccounts. |
BankAccountHolderName | String | False | The BankAccountHolderName column for the table BankAccounts. |
BankDescription | String | False | The BankDescription column for the table BankAccounts. |
BankName | String | False | The BankName column for the table BankAccounts. |
BICCode | String | False | The BICCode column for the table BankAccounts. |
Created | Datetime | False | The Created column for the table BankAccounts. |
Creator | String | False | The Creator column for the table BankAccounts. |
CreatorFullName | String | False | The CreatorFullName column for the table BankAccounts. |
Description | String | False | The Description column for the table BankAccounts. |
Division | Int | False | The Division column for the table BankAccounts. |
Format | String | False | The Format column for the table BankAccounts. |
IBAN | String | False | The IBAN column for the table BankAccounts. |
Main | Bool | False | The Main column for the table BankAccounts. |
Modified | Datetime | False | The Modified column for the table BankAccounts. |
Modifier | String | False | The Modifier column for the table BankAccounts. |
ModifierFullName | String | False | The ModifierFullName column for the table BankAccounts. |
PaymentServiceAccount | String | False | The PaymentServiceAccount column for the table BankAccounts. |
Type | String | False | The Type column for the table BankAccounts. |
TypeDescription | String | False | The TypeDescription column for the table BankAccounts. |
BankEntries
Usage information for the operation BankEntries.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
EntryID [KEY] | String | True | The EntryID column for the table BankEntries. |
ClosingBalanceFC | Double | False | The ClosingBalanceFC column for the table BankEntries. |
Created | Datetime | False | The Created column for the table BankEntries. |
Currency | String | False | The Currency column for the table BankEntries. |
Division | Int | False | The Division column for the table BankEntries. |
EntryNumber | Int | False | The EntryNumber column for the table BankEntries. |
FinancialPeriod | Int | False | The FinancialPeriod column for the table BankEntries. |
FinancialYear | Int | False | The FinancialYear column for the table BankEntries. |
JournalCode | String | False | The JournalCode column for the table BankEntries. |
JournalDescription | String | False | The JournalDescription column for the table BankEntries. |
Modified | Datetime | False | The Modified column for the table BankEntries. |
OpeningBalanceFC | Double | False | The OpeningBalanceFC column for the table BankEntries. |
Status | Int | False | The Status column for the table BankEntries. |
StatusDescription | String | False | The StatusDescription column for the table BankEntries. |
BankStatementDocument | String | False | The BankStatementDocument column for the table BankEntries. |
BankStatementDocumentNumber | Int | False | The BankStatementDocumentNumber column for the table BankEntries. |
BankStatementDocumentSubject | String | False | The BankStatementDocumentSubject column for the table BankEntries. |
LinkedBankEntryLines | String | False | The LinkedBankEntryLines column for the table BankEntries. |
BankEntryLines
Usage information for the operation BankEntryLines.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ID [KEY] | String | True | The ID column for the table BankEntryLines. |
Account | String | False | The Account column for the table BankEntryLines. |
AccountCode | String | False | The AccountCode column for the table BankEntryLines. |
AccountName | String | False | The AccountName column for the table BankEntryLines. |
AmountDC | Double | False | The AmountDC column for the table BankEntryLines. |
AmountFC | Double | False | The AmountFC column for the table BankEntryLines. |
AmountVATFC | Double | False | The AmountVATFC column for the table BankEntryLines. |
Asset | String | False | The Asset column for the table BankEntryLines. |
AssetCode | String | False | The AssetCode column for the table BankEntryLines. |
AssetDescription | String | False | The AssetDescription column for the table BankEntryLines. |
CostCenter | String | False | The CostCenter column for the table BankEntryLines. |
CostCenterDescription | String | False | The CostCenterDescription column for the table BankEntryLines. |
CostUnit | String | False | The CostUnit column for the table BankEntryLines. |
CostUnitDescription | String | False | The CostUnitDescription column for the table BankEntryLines. |
Created | Datetime | False | The Created column for the table BankEntryLines. |
Creator | String | False | The Creator column for the table BankEntryLines. |
CreatorFullName | String | False | The CreatorFullName column for the table BankEntryLines. |
Date | Datetime | False | The Date column for the table BankEntryLines. |
Description | String | False | The Description column for the table BankEntryLines. |
Division | Int | False | The Division column for the table BankEntryLines. |
Document | String | False | The Document column for the table BankEntryLines. |
DocumentNumber | Int | False | The DocumentNumber column for the table BankEntryLines. |
DocumentSubject | String | False | The DocumentSubject column for the table BankEntryLines. |
EntryID | String | False | The EntryID column for the table BankEntryLines. |
EntryNumber | Int | False | The EntryNumber column for the table BankEntryLines. |
ExchangeRate | Double | False | The ExchangeRate column for the table BankEntryLines. |
GLAccount | String | False | The GLAccount column for the table BankEntryLines. |
GLAccountCode | String | False | The GLAccountCode column for the table BankEntryLines. |
GLAccountDescription | String | False | The GLAccountDescription column for the table BankEntryLines. |
LineNumber | Int | False | The LineNumber column for the table BankEntryLines. |
Modified | Datetime | False | The Modified column for the table BankEntryLines. |
Modifier | String | False | The Modifier column for the table BankEntryLines. |
ModifierFullName | String | False | The ModifierFullName column for the table BankEntryLines. |
Notes | String | False | The Notes column for the table BankEntryLines. |
OffsetID | String | False | The OffsetID column for the table BankEntryLines. |
OurRef | Int | False | The OurRef column for the table BankEntryLines. |
Project | String | False | The Project column for the table BankEntryLines. |
ProjectCode | String | False | The ProjectCode column for the table BankEntryLines. |
ProjectDescription | String | False | The ProjectDescription column for the table BankEntryLines. |
Quantity | Double | False | The Quantity column for the table BankEntryLines. |
VATCode | String | False | The VATCode column for the table BankEntryLines. |
VATCodeDescription | String | False | The VATCodeDescription column for the table BankEntryLines. |
VATPercentage | Double | False | The VATPercentage column for the table BankEntryLines. |
VATType | String | False | The VATType column for the table BankEntryLines. |
BillOfMaterialRoutings
Use this endpoint to create, read, update and delete routings in a bill of material version linked to a make item.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ID [KEY] | String | True | Id for BillOfMaterialRoutings |
Account | String | False | Reference to Account providing the Outsourced item |
AttendedPercentage | Double | False | Attended Percentage |
Backflush | Int | False | Indicates if this is a backflush step |
CostPerItem | Double | False | Total cost / Batch quantity |
CreatedBy | String | False | User ID of creator |
CreatedDate | Datetime | False | Creation date |
CreatorFullName | String | False | Name of creator |
Currency | String | False | Name of creator |
Division | Int | False | Division code |
EfficiencyPercentage | Double | False | Efficiency Percentage |
FactorType | Int | False | Conversion factor type between produced item and Subcontract purchase Unit |
GeneralBurden | Double | False | General Burden |
Item | String | False | Reference to Items |
ItemVersion | String | False | Reference to Item versions |
LineNumber | Int | False | Sequential order of the operation |
MachineBurden | Double | False | Machine Burden |
ModifiedBy | String | False | User ID of modifier |
ModifiedDate | Datetime | False | Modification date |
ModifierFullName | String | False | Modification date |
Notes | String | False | Notes |
Operation | String | False | Reference to Operations |
OperationDescription | String | False | Description of the operation step |
OperationResource | String | False | Reference to OperationResources |
PurchaseUnit | String | False | Reference to Units |
PurchaseUnitFactor | Double | False | Purchase Unit Factor |
PurchaseUnitPriceFC | Double | False | Purchase Unit Price in the currency of the transaction |
PurchaseUnitQuantity | Double | False | Purchase unit quantity of the plan |
RateFC | Double | False | Rate FC |
ResourceDescription | String | False | Resource Description |
RoutingStepType | Int | False | Reference to RoutingStepTypes |
Run | Double | False | Used in conjunction with RunMethod, and EfficiencyPercentage to determine PlannedRunHours |
RunLabor | Double | False | Run Labor |
RunLaborBurden | Double | False | Run Labor Burden |
RunMethod | Int | False | Reference to OperationMethod |
Setup | Double | False | Used in conjunction with SetupCount and Setup Unit to determine PlannedSetupHours |
SetupLabor | Double | False | Setup Labor |
SetupLaborBurden | Double | False | Setup Labor Burden |
SetupUnit | String | False | Reference to TimeUnits |
SubcontractedLeadDays | Int | False | Subcontracted lead days |
TotalCostDC | Double | False | Total cost of the routing line |
Workcenter | String | False | Reference to Workcenters |
ByProductReceipts
Usage information for the operation ByProductReceipts.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
StockTransactionId [KEY] | String | True | The StockTransactionId column for the table ByProductReceipts. |
CreatedBy | String | False | The CreatedBy column for the table ByProductReceipts. |
CreatedByFullName | String | False | The CreatedByFullName column for the table ByProductReceipts. |
CreatedDate | Datetime | False | The CreatedDate column for the table ByProductReceipts. |
DraftStockTransactionID | String | False | The DraftStockTransactionID column for the table ByProductReceipts. |
HasReversibleQuantity | Bool | False | The HasReversibleQuantity column for the table ByProductReceipts. |
IsBackflush | Bool | False | The IsBackflush column for the table ByProductReceipts. |
IsBatch | Int | False | The IsBatch column for the table ByProductReceipts. |
IsFractionAllowedItem | Int | False | The IsFractionAllowedItem column for the table ByProductReceipts. |
IsSerial | Int | False | The IsSerial column for the table ByProductReceipts. |
Item | String | False | The Item column for the table ByProductReceipts. |
ItemCode | String | False | The ItemCode column for the table ByProductReceipts. |
ItemDescription | String | False | The ItemDescription column for the table ByProductReceipts. |
ItemPictureUrl | String | False | The ItemPictureUrl column for the table ByProductReceipts. |
Quantity | Double | False | The Quantity column for the table ByProductReceipts. |
ShopOrder | String | False | The ShopOrder column for the table ByProductReceipts. |
ShopOrderMaterialPlan | String | False | The ShopOrderMaterialPlan column for the table ByProductReceipts. |
ShopOrderNumber | Int | False | The ShopOrderNumber column for the table ByProductReceipts. |
StorageLocation | String | False | The StorageLocation column for the table ByProductReceipts. |
StorageLocationCode | String | False | The StorageLocationCode column for the table ByProductReceipts. |
StorageLocationDescription | String | False | The StorageLocationDescription column for the table ByProductReceipts. |
TransactionDate | Datetime | False | The TransactionDate column for the table ByProductReceipts. |
Unit | String | False | The Unit column for the table ByProductReceipts. |
UnitDescription | String | False | The UnitDescription column for the table ByProductReceipts. |
Warehouse | String | False | The Warehouse column for the table ByProductReceipts. |
WarehouseCode | String | False | The WarehouseCode column for the table ByProductReceipts. |
WarehouseDescription | String | False | The WarehouseDescription column for the table ByProductReceipts. |
ByProductReversals
Usage information for the operation ByProductReversals.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ReversalStockTransactionId [KEY] | String | True | The ReversalStockTransactionId column for the table ByProductReversals. |
CreatedBy | String | False | The CreatedBy column for the table ByProductReversals. |
CreatedByFullName | String | False | The CreatedByFullName column for the table ByProductReversals. |
CreatedDate | Datetime | False | The CreatedDate column for the table ByProductReversals. |
IsBackflush | Bool | False | The IsBackflush column for the table ByProductReversals. |
IsBatch | Int | False | The IsBatch column for the table ByProductReversals. |
IsFractionAllowedItem | Int | False | The IsFractionAllowedItem column for the table ByProductReversals. |
IsSerial | Int | False | The IsSerial column for the table ByProductReversals. |
Item | String | False | The Item column for the table ByProductReversals. |
ItemCode | String | False | The ItemCode column for the table ByProductReversals. |
ItemDescription | String | False | The ItemDescription column for the table ByProductReversals. |
ItemPictureUrl | String | False | The ItemPictureUrl column for the table ByProductReversals. |
Note | String | False | The Note column for the table ByProductReversals. |
OriginalStockTransactionId | String | False | The OriginalStockTransactionId column for the table ByProductReversals. |
Quantity | Double | False | The Quantity column for the table ByProductReversals. |
ShopOrder | String | False | The ShopOrder column for the table ByProductReversals. |
ShopOrderMaterialPlan | String | False | The ShopOrderMaterialPlan column for the table ByProductReversals. |
ShopOrderNumber | Int | False | The ShopOrderNumber column for the table ByProductReversals. |
StorageLocation | String | False | The StorageLocation column for the table ByProductReversals. |
StorageLocationCode | String | False | The StorageLocationCode column for the table ByProductReversals. |
StorageLocationDescription | String | False | The StorageLocationDescription column for the table ByProductReversals. |
TransactionDate | Datetime | False | The TransactionDate column for the table ByProductReversals. |
Unit | String | False | The Unit column for the table ByProductReversals. |
UnitDescription | String | False | The UnitDescription column for the table ByProductReversals. |
Warehouse | String | False | The Warehouse column for the table ByProductReversals. |
WarehouseCode | String | False | The WarehouseCode column for the table ByProductReversals. |
WarehouseDescription | String | False | The WarehouseDescription column for the table ByProductReversals. |
CashEntries
Usage information for the operation CashEntries.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
EntryID [KEY] | String | True | The EntryID column for the table CashEntries. |
ClosingBalanceFC | Double | False | The ClosingBalanceFC column for the table CashEntries. |
Created | Datetime | False | The Created column for the table CashEntries. |
Currency | String | False | The Currency column for the table CashEntries. |
Division | Int | False | The Division column for the table CashEntries. |
EntryNumber | Int | False | The EntryNumber column for the table CashEntries. |
FinancialPeriod | Int | False | The FinancialPeriod column for the table CashEntries. |
FinancialYear | Int | False | The FinancialYear column for the table CashEntries. |
JournalCode | String | False | The JournalCode column for the table CashEntries. |
JournalDescription | String | False | The JournalDescription column for the table CashEntries. |
Modified | Datetime | False | The Modified column for the table CashEntries. |
OpeningBalanceFC | Double | False | The OpeningBalanceFC column for the table CashEntries. |
Status | Int | False | The Status column for the table CashEntries. |
StatusDescription | String | False | The StatusDescription column for the table CashEntries. |
LinkedCashEntryLines | String | False | The LinkedCashEntryLines column for the table CashEntries. |
CashEntryLines
Usage information for the operation CashEntryLines.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ID [KEY] | String | True | The ID column for the table CashEntryLines. |
Account | String | False | The Account column for the table CashEntryLines. |
AccountCode | String | False | The AccountCode column for the table CashEntryLines. |
AccountName | String | False | The AccountName column for the table CashEntryLines. |
AmountDC | Double | False | The AmountDC column for the table CashEntryLines. |
AmountFC | Double | False | The AmountFC column for the table CashEntryLines. |
AmountVATFC | Double | False | The AmountVATFC column for the table CashEntryLines. |
Asset | String | False | The Asset column for the table CashEntryLines. |
AssetCode | String | False | The AssetCode column for the table CashEntryLines. |
AssetDescription | String | False | The AssetDescription column for the table CashEntryLines. |
CostCenter | String | False | The CostCenter column for the table CashEntryLines. |
CostCenterDescription | String | False | The CostCenterDescription column for the table CashEntryLines. |
CostUnit | String | False | The CostUnit column for the table CashEntryLines. |
CostUnitDescription | String | False | The CostUnitDescription column for the table CashEntryLines. |
Created | Datetime | False | The Created column for the table CashEntryLines. |
Creator | String | False | The Creator column for the table CashEntryLines. |
CreatorFullName | String | False | The CreatorFullName column for the table CashEntryLines. |
Date | Datetime | False | The Date column for the table CashEntryLines. |
Description | String | False | The Description column for the table CashEntryLines. |
Division | Int | False | The Division column for the table CashEntryLines. |
Document | String | False | The Document column for the table CashEntryLines. |
DocumentNumber | Int | False | The DocumentNumber column for the table CashEntryLines. |
DocumentSubject | String | False | The DocumentSubject column for the table CashEntryLines. |
EntryID | String | False | The EntryID column for the table CashEntryLines. |
EntryNumber | Int | False | The EntryNumber column for the table CashEntryLines. |
ExchangeRate | Double | False | The ExchangeRate column for the table CashEntryLines. |
GLAccount | String | False | The GLAccount column for the table CashEntryLines. |
GLAccountCode | String | False | The GLAccountCode column for the table CashEntryLines. |
GLAccountDescription | String | False | The GLAccountDescription column for the table CashEntryLines. |
LineNumber | Int | False | The LineNumber column for the table CashEntryLines. |
Modified | Datetime | False | The Modified column for the table CashEntryLines. |
Modifier | String | False | The Modifier column for the table CashEntryLines. |
ModifierFullName | String | False | The ModifierFullName column for the table CashEntryLines. |
Notes | String | False | The Notes column for the table CashEntryLines. |
OffsetID | String | False | The OffsetID column for the table CashEntryLines. |
OurRef | Int | False | The OurRef column for the table CashEntryLines. |
Project | String | False | The Project column for the table CashEntryLines. |
ProjectCode | String | False | The ProjectCode column for the table CashEntryLines. |
ProjectDescription | String | False | The ProjectDescription column for the table CashEntryLines. |
Quantity | Double | False | The Quantity column for the table CashEntryLines. |
VATCode | String | False | The VATCode column for the table CashEntryLines. |
VATCodeDescription | String | False | The VATCodeDescription column for the table CashEntryLines. |
VATPercentage | Double | False | The VATPercentage column for the table CashEntryLines. |
VATType | String | False | The VATType column for the table CashEntryLines. |
CommunicationNotes
Usage information for the operation CommunicationNotes.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ID [KEY] | String | True | The ID column for the table CommunicationNotes. |
Account | String | False | The Account column for the table CommunicationNotes. |
AccountName | String | False | The AccountName column for the table CommunicationNotes. |
Campaign | String | False | The Campaign column for the table CommunicationNotes. |
CampaignDescription | String | False | The CampaignDescription column for the table CommunicationNotes. |
Contact | String | False | The Contact column for the table CommunicationNotes. |
ContactFullName | String | False | The ContactFullName column for the table CommunicationNotes. |
Created | Datetime | False | The Created column for the table CommunicationNotes. |
Creator | String | False | The Creator column for the table CommunicationNotes. |
CreatorFullName | String | False | The CreatorFullName column for the table CommunicationNotes. |
Date | Datetime | False | The Date column for the table CommunicationNotes. |
Division | Int | False | The Division column for the table CommunicationNotes. |
Document | String | False | The Document column for the table CommunicationNotes. |
DocumentSubject | String | False | The DocumentSubject column for the table CommunicationNotes. |
HID | Int | False | The HID column for the table CommunicationNotes. |
Modified | Datetime | False | The Modified column for the table CommunicationNotes. |
Modifier | String | False | The Modifier column for the table CommunicationNotes. |
ModifierFullName | String | False | The ModifierFullName column for the table CommunicationNotes. |
Notes | String | False | The Notes column for the table CommunicationNotes. |
Opportunity | String | False | The Opportunity column for the table CommunicationNotes. |
OpportunityName | String | False | The OpportunityName column for the table CommunicationNotes. |
Status | Int | False | The Status column for the table CommunicationNotes. |
StatusDescription | String | False | The StatusDescription column for the table CommunicationNotes. |
Subject | String | False | The Subject column for the table CommunicationNotes. |
User | String | False | The User column for the table CommunicationNotes. |
UserFullName | String | False | The UserFullName column for the table CommunicationNotes. |
Complaints
Usage information for the operation Complaints.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ID [KEY] | String | True | The ID column for the table Complaints. |
Account | String | False | The Account column for the table Complaints. |
AccountName | String | False | The AccountName column for the table Complaints. |
AssignedTo | String | False | The AssignedTo column for the table Complaints. |
AssignedToFullName | String | False | The AssignedToFullName column for the table Complaints. |
Complaint | String | False | The Complaint column for the table Complaints. |
Contact | String | False | The Contact column for the table Complaints. |
ContactFullName | String | False | The ContactFullName column for the table Complaints. |
Created | Datetime | False | The Created column for the table Complaints. |
Creator | String | False | The Creator column for the table Complaints. |
CreatorFullName | String | False | The CreatorFullName column for the table Complaints. |
Division | Int | False | The Division column for the table Complaints. |
Document | String | False | The Document column for the table Complaints. |
DocumentSubject | String | False | The DocumentSubject column for the table Complaints. |
HID | Int | False | The HID column for the table Complaints. |
Modified | Datetime | False | The Modified column for the table Complaints. |
Modifier | String | False | The Modifier column for the table Complaints. |
ModifierFullName | String | False | The ModifierFullName column for the table Complaints. |
NextAction | Datetime | False | The NextAction column for the table Complaints. |
Notes | String | False | The Notes column for the table Complaints. |
ReceiptDate | Datetime | False | The ReceiptDate column for the table Complaints. |
Status | Int | False | The Status column for the table Complaints. |
StatusDescription | String | False | The StatusDescription column for the table Complaints. |
Contacts
Usage information for the operation Contacts.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ID [KEY] | String | True | The ID column for the table Contacts. |
Account | String | False | The Account column for the table Contacts. |
AccountIsCustomer | Bool | False | The AccountIsCustomer column for the table Contacts. |
AccountIsSupplier | Bool | False | The AccountIsSupplier column for the table Contacts. |
AccountMainContact | String | False | The AccountMainContact column for the table Contacts. |
AccountName | String | False | The AccountName column for the table Contacts. |
AddressLine2 | String | False | The AddressLine2 column for the table Contacts. |
AddressStreet | String | False | The AddressStreet column for the table Contacts. |
AddressStreetNumber | String | False | The AddressStreetNumber column for the table Contacts. |
AddressStreetNumberSuffix | String | False | The AddressStreetNumberSuffix column for the table Contacts. |
AllowMailing | Int | False | The AllowMailing column for the table Contacts. |
BirthDate | Datetime | False | The BirthDate column for the table Contacts. |
BirthName | String | False | The BirthName column for the table Contacts. |
BirthNamePrefix | String | False | The BirthNamePrefix column for the table Contacts. |
BirthPlace | String | False | The BirthPlace column for the table Contacts. |
BusinessEmail | String | False | The BusinessEmail column for the table Contacts. |
BusinessFax | String | False | The BusinessFax column for the table Contacts. |
BusinessMobile | String | False | The BusinessMobile column for the table Contacts. |
BusinessPhone | String | False | The BusinessPhone column for the table Contacts. |
BusinessPhoneExtension | String | False | The BusinessPhoneExtension column for the table Contacts. |
City | String | False | The City column for the table Contacts. |
Code | String | False | The Code column for the table Contacts. |
Country | String | False | The Country column for the table Contacts. |
Created | Datetime | False | The Created column for the table Contacts. |
Creator | String | False | The Creator column for the table Contacts. |
CreatorFullName | String | False | The CreatorFullName column for the table Contacts. |
Division | Int | False | The Division column for the table Contacts. |
Email | String | False | The Email column for the table Contacts. |
EndDate | Datetime | False | The EndDate column for the table Contacts. |
FirstName | String | False | The FirstName column for the table Contacts. |
FullName | String | False | The FullName column for the table Contacts. |
Gender | String | False | The Gender column for the table Contacts. |
HID | Int | False | The HID column for the table Contacts. |
IdentificationDate | Datetime | False | The IdentificationDate column for the table Contacts. |
IdentificationDocument | String | False | The IdentificationDocument column for the table Contacts. |
IdentificationUser | String | False | The IdentificationUser column for the table Contacts. |
Initials | String | False | The Initials column for the table Contacts. |
IsMailingExcluded | Bool | False | The IsMailingExcluded column for the table Contacts. |
IsMainContact | Bool | False | The IsMainContact column for the table Contacts. |
JobTitleDescription | String | False | The JobTitleDescription column for the table Contacts. |
Language | String | False | The Language column for the table Contacts. |
LastName | String | False | The LastName column for the table Contacts. |
MarketingNotes | String | False | The MarketingNotes column for the table Contacts. |
MiddleName | String | False | The MiddleName column for the table Contacts. |
Mobile | String | False | The Mobile column for the table Contacts. |
Modified | Datetime | False | The Modified column for the table Contacts. |
Modifier | String | False | The Modifier column for the table Contacts. |
ModifierFullName | String | False | The ModifierFullName column for the table Contacts. |
Nationality | String | False | The Nationality column for the table Contacts. |
Notes | String | False | The Notes column for the table Contacts. |
PartnerName | String | False | The PartnerName column for the table Contacts. |
PartnerNamePrefix | String | False | The PartnerNamePrefix column for the table Contacts. |
Person | String | False | The Person column for the table Contacts. |
Phone | String | False | The Phone column for the table Contacts. |
PhoneExtension | String | False | The PhoneExtension column for the table Contacts. |
Picture | Binary | False | The Picture column for the table Contacts. |
PictureName | String | False | The PictureName column for the table Contacts. |
PictureThumbnailUrl | String | False | The PictureThumbnailUrl column for the table Contacts. |
PictureUrl | String | False | The PictureUrl column for the table Contacts. |
Postcode | String | False | The Postcode column for the table Contacts. |
SocialSecurityNumber | String | False | The SocialSecurityNumber column for the table Contacts. |
StartDate | Datetime | False | The StartDate column for the table Contacts. |
State | String | False | The State column for the table Contacts. |
Title | String | False | The Title column for the table Contacts. |
LeadPurpose | String | False | The LeadPurpose column for the table Contacts. |
LeadSource | String | False | The LeadSource column for the table Contacts. |
Costcenters
Usage information for the operation Costcenters.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ID [KEY] | String | True | The ID column for the table Costcenters. |
Active | Bool | False | The Active column for the table Costcenters. |
Code | String | False | The Code column for the table Costcenters. |
Created | Datetime | False | The Created column for the table Costcenters. |
Creator | String | False | The Creator column for the table Costcenters. |
CreatorFullName | String | False | The CreatorFullName column for the table Costcenters. |
Description | String | False | The Description column for the table Costcenters. |
Division | Int | False | The Division column for the table Costcenters. |
EndDate | Datetime | False | The EndDate column for the table Costcenters. |
Modified | Datetime | False | The Modified column for the table Costcenters. |
Modifier | String | False | The Modifier column for the table Costcenters. |
ModifierFullName | String | False | The ModifierFullName column for the table Costcenters. |
CostTransactions
Usage information for the operation CostTransactions.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ID [KEY] | String | True | The ID column for the table CostTransactions. |
Account | String | False | The Account column for the table CostTransactions. |
AccountName | String | False | The AccountName column for the table CostTransactions. |
Amount | Double | False | The Amount column for the table CostTransactions. |
AmountFC | Double | False | The AmountFC column for the table CostTransactions. |
Attachment | String | False | The Attachment column for the table CostTransactions. |
Created | Datetime | False | The Created column for the table CostTransactions. |
Creator | String | False | The Creator column for the table CostTransactions. |
CreatorFullName | String | False | The CreatorFullName column for the table CostTransactions. |
Currency | String | False | The Currency column for the table CostTransactions. |
Date | Datetime | False | The Date column for the table CostTransactions. |
Division | Int | False | The Division column for the table CostTransactions. |
DivisionDescription | String | False | The DivisionDescription column for the table CostTransactions. |
Employee | String | False | The Employee column for the table CostTransactions. |
EntryNumber | Int | False | The EntryNumber column for the table CostTransactions. |
ErrorText | String | False | The ErrorText column for the table CostTransactions. |
Expense | String | False | The Expense column for the table CostTransactions. |
ExpenseDescription | String | False | The ExpenseDescription column for the table CostTransactions. |
HourStatus | Int | False | The HourStatus column for the table CostTransactions. |
Item | String | False | The Item column for the table CostTransactions. |
ItemDescription | String | False | The ItemDescription column for the table CostTransactions. |
ItemDivisable | Bool | False | The ItemDivisable column for the table CostTransactions. |
Modified | Datetime | False | The Modified column for the table CostTransactions. |
Modifier | String | False | The Modifier column for the table CostTransactions. |
ModifierFullName | String | False | The ModifierFullName column for the table CostTransactions. |
Notes | String | False | The Notes column for the table CostTransactions. |
Price | Double | False | The Price column for the table CostTransactions. |
PriceFC | Double | False | The PriceFC column for the table CostTransactions. |
Project | String | False | The Project column for the table CostTransactions. |
ProjectAccount | String | False | The ProjectAccount column for the table CostTransactions. |
ProjectAccountCode | String | False | The ProjectAccountCode column for the table CostTransactions. |
ProjectAccountName | String | False | The ProjectAccountName column for the table CostTransactions. |
ProjectDescription | String | False | The ProjectDescription column for the table CostTransactions. |
Quantity | Double | False | The Quantity column for the table CostTransactions. |
SkipValidation | Bool | False | The SkipValidation column for the table CostTransactions. |
Subscription | String | False | The Subscription column for the table CostTransactions. |
SubscriptionAccount | String | False | The SubscriptionAccount column for the table CostTransactions. |
SubscriptionAccountCode | String | False | The SubscriptionAccountCode column for the table CostTransactions. |
SubscriptionAccountName | String | False | The SubscriptionAccountName column for the table CostTransactions. |
SubscriptionDescription | String | False | The SubscriptionDescription column for the table CostTransactions. |
SubscriptionNumber | Int | False | The SubscriptionNumber column for the table CostTransactions. |
Type | Int | False | The Type column for the table CostTransactions. |
Costunits
Usage information for the operation Costunits.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ID [KEY] | String | True | The ID column for the table Costunits. |
Code | String | False | The Code column for the table Costunits. |
Created | Datetime | False | The Created column for the table Costunits. |
Creator | String | False | The Creator column for the table Costunits. |
CreatorFullName | String | False | The CreatorFullName column for the table Costunits. |
Description | String | False | The Description column for the table Costunits. |
Division | Int | False | The Division column for the table Costunits. |
EndDate | Datetime | False | The EndDate column for the table Costunits. |
Modified | Datetime | False | The Modified column for the table Costunits. |
Modifier | String | False | The Modifier column for the table Costunits. |
ModifierFullName | String | False | The ModifierFullName column for the table Costunits. |
DepreciationMethods
Usage information for the operation DepreciationMethods.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ID [KEY] | String | True | The ID column for the table DepreciationMethods. |
Amount | Double | False | The Amount column for the table DepreciationMethods. |
Code | String | False | The Code column for the table DepreciationMethods. |
Created | Datetime | False | The Created column for the table DepreciationMethods. |
Creator | String | False | The Creator column for the table DepreciationMethods. |
CreatorFullName | String | False | The CreatorFullName column for the table DepreciationMethods. |
DepreciationInterval | String | False | The DepreciationInterval column for the table DepreciationMethods. |
Description | String | False | The Description column for the table DepreciationMethods. |
Division | Int | False | The Division column for the table DepreciationMethods. |
MaxPercentage | Double | False | The MaxPercentage column for the table DepreciationMethods. |
Modified | Datetime | False | The Modified column for the table DepreciationMethods. |
Modifier | String | False | The Modifier column for the table DepreciationMethods. |
ModifierFullName | String | False | The ModifierFullName column for the table DepreciationMethods. |
Percentage | Double | False | The Percentage column for the table DepreciationMethods. |
Percentage2 | Double | False | The Percentage2 column for the table DepreciationMethods. |
Periods | Int | False | The Periods column for the table DepreciationMethods. |
Type | Int | False | The Type column for the table DepreciationMethods. |
TypeDescription | String | False | The TypeDescription column for the table DepreciationMethods. |
Years | Int | False | The Years column for the table DepreciationMethods. |
DirectDebitMandates
Usage information for the operation DirectDebitMandates.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ID [KEY] | String | True | The ID column for the table DirectDebitMandates. |
Account | String | False | The Account column for the table DirectDebitMandates. |
BankAccount | String | False | The BankAccount column for the table DirectDebitMandates. |
CancellationDate | Datetime | False | The CancellationDate column for the table DirectDebitMandates. |
Created | Datetime | False | The Created column for the table DirectDebitMandates. |
Creator | String | False | The Creator column for the table DirectDebitMandates. |
CreatorFullName | String | False | The CreatorFullName column for the table DirectDebitMandates. |
Description | String | False | The Description column for the table DirectDebitMandates. |
Division | Int | False | The Division column for the table DirectDebitMandates. |
FirstSend | Int | False | The FirstSend column for the table DirectDebitMandates. |
Main | Int | False | The Main column for the table DirectDebitMandates. |
Modified | Datetime | False | The Modified column for the table DirectDebitMandates. |
Modifier | String | False | The Modifier column for the table DirectDebitMandates. |
ModifierFullName | String | False | The ModifierFullName column for the table DirectDebitMandates. |
PaymentType | Int | False | The PaymentType column for the table DirectDebitMandates. |
Reference | String | False | The Reference column for the table DirectDebitMandates. |
SignatureDate | Datetime | False | The SignatureDate column for the table DirectDebitMandates. |
Type | Int | False | The Type column for the table DirectDebitMandates. |
DocumentAttachments
Usage information for the operation DocumentAttachments.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ID [KEY] | String | True | The ID column for the table DocumentAttachments. |
Attachment | Binary | False | The Attachment column for the table DocumentAttachments. This is only used for inserting attachments. To download an attachment, navigate to the Url provided via the Url field. |
Document | String | False | The Document column for the table DocumentAttachments. |
FileName | String | False | The FileName column for the table DocumentAttachments. |
FileSize | Double | False | The FileSize column for the table DocumentAttachments. |
Url | String | False | The Url column for the table DocumentAttachments. Used for downloading the attachment. |
DocumentFolders
Usage information for the operation DocumentFolders.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ID [KEY] | String | True | The ID column for the table DocumentFolders. |
Code | String | False | The Code column for the table DocumentFolders. |
Created | Datetime | False | The Created column for the table DocumentFolders. |
Creator | String | False | The Creator column for the table DocumentFolders. |
CreatorFullName | String | False | The CreatorFullName column for the table DocumentFolders. |
Description | String | False | The Description column for the table DocumentFolders. |
Division | Int | False | The Division column for the table DocumentFolders. |
Modified | Datetime | False | The Modified column for the table DocumentFolders. |
Modifier | String | False | The Modifier column for the table DocumentFolders. |
ModifierFullName | String | False | The ModifierFullName column for the table DocumentFolders. |
ParentFolder | String | False | The ParentFolder column for the table DocumentFolders. |
Documents
Usage information for the operation Documents.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ID [KEY] | String | True | The ID column for the table Documents. |
Account | String | False | The Account column for the table Documents. |
AccountCode | String | False | The AccountCode column for the table Documents. |
AccountName | String | False | The AccountName column for the table Documents. |
AmountFC | Double | False | The AmountFC column for the table Documents. |
Body | String | False | The Body column for the table Documents. |
Category | String | False | The Category column for the table Documents. |
CategoryDescription | String | False | The CategoryDescription column for the table Documents. |
Contact | String | False | The Contact column for the table Documents. |
ContactFullName | String | False | The ContactFullName column for the table Documents. |
Created | Datetime | False | The Created column for the table Documents. |
Creator | String | False | The Creator column for the table Documents. |
CreatorFullName | String | False | The CreatorFullName column for the table Documents. |
Currency | String | False | The Currency column for the table Documents. |
Division | Int | False | The Division column for the table Documents. |
DocumentDate | Datetime | False | The DocumentDate column for the table Documents. |
DocumentFolder | String | False | The DocumentFolder column for the table Documents. |
DocumentFolderCode | String | False | The DocumentFolderCode column for the table Documents. |
DocumentFolderDescription | String | False | The DocumentFolderDescription column for the table Documents. |
DocumentViewUrl | String | False | The DocumentViewUrl column for the table Documents. |
FinancialTransactionEntryID | String | False | The FinancialTransactionEntryID column for the table Documents. |
HasEmptyBody | Bool | False | The HasEmptyBody column for the table Documents. |
HID | Int | False | The HID column for the table Documents. |
Language | String | False | The Language column for the table Documents. |
Modified | Datetime | False | The Modified column for the table Documents. |
Modifier | String | False | The Modifier column for the table Documents. |
ModifierFullName | String | False | The ModifierFullName column for the table Documents. |
Opportunity | String | False | The Opportunity column for the table Documents. |
Project | String | False | The Project column for the table Documents. |
ProjectCode | String | False | The ProjectCode column for the table Documents. |
ProjectDescription | String | False | The ProjectDescription column for the table Documents. |
SalesInvoiceNumber | Int | False | The SalesInvoiceNumber column for the table Documents. |
SalesOrderNumber | Int | False | The SalesOrderNumber column for the table Documents. |
SendMethod | Int | False | The SendMethod column for the table Documents. |
ShopOrderNumber | Int | False | The ShopOrderNumber column for the table Documents. |
Subject | String | False | The Subject column for the table Documents. |
Type | Int | False | The Type column for the table Documents. |
TypeDescription | String | False | The TypeDescription column for the table Documents. |
DocumentTypeFolders
Usage information for the operation DocumentTypeFolders.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ID [KEY] | String | True | The ID column for the table DocumentTypeFolders. |
Created | Datetime | False | The Created column for the table DocumentTypeFolders. |
Creator | String | False | The Creator column for the table DocumentTypeFolders. |
Division | Int | False | The Division column for the table DocumentTypeFolders. |
DocumentFolder | String | False | The DocumentFolder column for the table DocumentTypeFolders. |
DocumentType | Int | False | The DocumentType column for the table DocumentTypeFolders. |
Modified | Datetime | False | The Modified column for the table DocumentTypeFolders. |
Modifier | String | False | The Modifier column for the table DocumentTypeFolders. |
DropShipmentLines
To List, Create and Update DropShipmentLines.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ID [KEY] | String | True | |
Created | Datetime | False | |
Creator | String | False | |
CreatorFullName | String | False | |
CustomerItemCode | String | False | |
DeliveryDate | Datetime | False | |
Description | String | False | |
Division | Int | False | |
EntryID | String | False | |
Item | String | False | |
ItemCode | String | False | |
ItemDescription | String | False | |
LineNumber | Int | False | |
Modified | Datetime | False | |
Modifier | String | False | |
ModifierFullName | String | False | |
Notes | String | False | |
PurchaseOrderLineID | String | False | |
QuantityDelivered | Double | False | |
QuantityOrdered | Double | False | |
SalesOrderLineID | String | False | |
SalesOrderLineNumber | Int | False | |
SalesOrderNumber | Int | False | |
TrackingNumber | String | False | |
Unitcode | String | False |
DropShipments
To List, Create and Update DropShipments.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
EntryID [KEY] | String | True | |
Created | Datetime | False | |
Creator | String | False | |
CreatorFullName | String | False | |
DeliveryAccount | String | False | |
DeliveryAccountCode | String | False | |
DeliveryAccountName | String | False | |
DeliveryAddress | String | False | |
DeliveryContact | String | False | |
DeliveryContactPersonFullName | String | False | |
DeliveryDate | Datetime | False | |
DeliveryNumber | Int | False | |
Description | String | False | |
Division | Int | False | |
Document | String | False | |
DocumentSubject | String | False | |
EntryNumber | Int | False | |
Modified | Datetime | False | |
Modifier | String | False | |
ModifierFullName | String | False | |
Remarks | String | False | |
ShippingMethod | String | False | |
ShippingMethodCode | String | False | |
ShippingMethodDescription | String | False | |
TrackingNumber | String | False | |
LinkedDropShipmentLines | String | False |
Events
Usage information for the operation Events.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ID [KEY] | String | True | The ID column for the table Events. |
Account | String | False | The Account column for the table Events. |
AccountName | String | False | The AccountName column for the table Events. |
Campaign | String | False | The Campaign column for the table Events. |
CampaignDescription | String | False | The CampaignDescription column for the table Events. |
Contact | String | False | The Contact column for the table Events. |
ContactFullName | String | False | The ContactFullName column for the table Events. |
Created | Datetime | False | The Created column for the table Events. |
Creator | String | False | The Creator column for the table Events. |
CreatorFullName | String | False | The CreatorFullName column for the table Events. |
Description | String | False | The Description column for the table Events. |
Division | Int | False | The Division column for the table Events. |
Document | String | False | The Document column for the table Events. |
DocumentSubject | String | False | The DocumentSubject column for the table Events. |
EndDate | Datetime | False | The EndDate column for the table Events. |
HID | Int | False | The HID column for the table Events. |
Modified | Datetime | False | The Modified column for the table Events. |
Modifier | String | False | The Modifier column for the table Events. |
ModifierFullName | String | False | The ModifierFullName column for the table Events. |
Notes | String | False | The Notes column for the table Events. |
Opportunity | String | False | The Opportunity column for the table Events. |
OpportunityName | String | False | The OpportunityName column for the table Events. |
Project | String | False | The Project column for the table Events. |
ProjectDescription | String | False | The ProjectDescription column for the table Events. |
StartDate | Datetime | False | The StartDate column for the table Events. |
Status | Int | False | The Status column for the table Events. |
StatusDescription | String | False | The StatusDescription column for the table Events. |
User | String | False | The User column for the table Events. |
UserFullName | String | False | The UserFullName column for the table Events. |
ExchangeRates
Usage information for the operation ExchangeRates.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ID [KEY] | String | True | The ID column for the table ExchangeRates. |
Created | Datetime | False | The Created column for the table ExchangeRates. |
Creator | String | False | The Creator column for the table ExchangeRates. |
CreatorFullName | String | False | The CreatorFullName column for the table ExchangeRates. |
Division | Int | False | The Division column for the table ExchangeRates. |
Modified | Datetime | False | The Modified column for the table ExchangeRates. |
Modifier | String | False | The Modifier column for the table ExchangeRates. |
ModifierFullName | String | False | The ModifierFullName column for the table ExchangeRates. |
Rate | Double | False | The Rate column for the table ExchangeRates. |
SourceCurrency | String | False | The SourceCurrency column for the table ExchangeRates. |
SourceCurrencyDescription | String | False | The SourceCurrencyDescription column for the table ExchangeRates. |
StartDate | Datetime | False | The StartDate column for the table ExchangeRates. |
TargetCurrency | String | False | The TargetCurrency column for the table ExchangeRates. |
TargetCurrencyDescription | String | False | The TargetCurrencyDescription column for the table ExchangeRates. |
GeneralJournalEntries
Usage information for the operation GeneralJournalEntries.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
EntryID [KEY] | String | True | The EntryID column for the table GeneralJournalEntries. |
Created | Datetime | False | The Created column for the table GeneralJournalEntries. |
Currency | String | False | The Currency column for the table GeneralJournalEntries. |
Division | Int | False | The Division column for the table GeneralJournalEntries. |
EntryNumber | Int | False | The EntryNumber column for the table GeneralJournalEntries. |
ExchangeRate | Double | False | The ExchangeRate column for the table GeneralJournalEntries. |
FinancialPeriod | Int | False | The FinancialPeriod column for the table GeneralJournalEntries. |
FinancialYear | Int | False | The FinancialYear column for the table GeneralJournalEntries. |
JournalCode | String | False | The JournalCode column for the table GeneralJournalEntries. |
JournalDescription | String | False | The JournalDescription column for the table GeneralJournalEntries. |
Modified | Datetime | False | The Modified column for the table GeneralJournalEntries. |
Reversal | Bool | False | The Reversal column for the table GeneralJournalEntries. |
Status | Int | False | The Status column for the table GeneralJournalEntries. |
StatusDescription | String | False | The StatusDescription column for the table GeneralJournalEntries. |
Type | Int | False | The Type column for the table GeneralJournalEntries. |
TypeDescription | String | False | The TypeDescription column for the table GeneralJournalEntries. |
LinkedGeneralJournalEntryLines | String | False | The LinkedGeneralJournalEntryLines column for the table GeneralJournalEntries. |
GeneralJournalEntryLines
Usage information for the operation GeneralJournalEntryLines.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ID [KEY] | String | True | The ID column for the table GeneralJournalEntryLines. |
Account | String | False | The Account column for the table GeneralJournalEntryLines. |
AccountCode | String | False | The AccountCode column for the table GeneralJournalEntryLines. |
AccountName | String | False | The AccountName column for the table GeneralJournalEntryLines. |
AmountDC | Double | False | The AmountDC column for the table GeneralJournalEntryLines. |
AmountFC | Double | False | The AmountFC column for the table GeneralJournalEntryLines. |
AmountVATDC | Double | False | The AmountVATDC column for the table GeneralJournalEntryLines. |
AmountVATFC | Double | False | The AmountVATFC column for the table GeneralJournalEntryLines. |
Asset | String | False | The Asset column for the table GeneralJournalEntryLines. |
AssetCode | String | False | The AssetCode column for the table GeneralJournalEntryLines. |
AssetDescription | String | False | The AssetDescription column for the table GeneralJournalEntryLines. |
CostCenter | String | False | The CostCenter column for the table GeneralJournalEntryLines. |
CostCenterDescription | String | False | The CostCenterDescription column for the table GeneralJournalEntryLines. |
CostUnit | String | False | The CostUnit column for the table GeneralJournalEntryLines. |
CostUnitDescription | String | False | The CostUnitDescription column for the table GeneralJournalEntryLines. |
Created | Datetime | False | The Created column for the table GeneralJournalEntryLines. |
Creator | String | False | The Creator column for the table GeneralJournalEntryLines. |
CreatorFullName | String | False | The CreatorFullName column for the table GeneralJournalEntryLines. |
Date | Datetime | False | The Date column for the table GeneralJournalEntryLines. |
Description | String | False | The Description column for the table GeneralJournalEntryLines. |
Division | Int | False | The Division column for the table GeneralJournalEntryLines. |
Document | String | False | The Document column for the table GeneralJournalEntryLines. |
DocumentNumber | Int | False | The DocumentNumber column for the table GeneralJournalEntryLines. |
DocumentSubject | String | False | The DocumentSubject column for the table GeneralJournalEntryLines. |
EntryID | String | False | The EntryID column for the table GeneralJournalEntryLines. |
EntryNumber | Int | False | The EntryNumber column for the table GeneralJournalEntryLines. |
GLAccount | String | False | The GLAccount column for the table GeneralJournalEntryLines. |
GLAccountCode | String | False | The GLAccountCode column for the table GeneralJournalEntryLines. |
GLAccountDescription | String | False | The GLAccountDescription column for the table GeneralJournalEntryLines. |
LineNumber | Int | False | The LineNumber column for the table GeneralJournalEntryLines. |
Modified | Datetime | False | The Modified column for the table GeneralJournalEntryLines. |
Modifier | String | False | The Modifier column for the table GeneralJournalEntryLines. |
ModifierFullName | String | False | The ModifierFullName column for the table GeneralJournalEntryLines. |
Notes | String | False | The Notes column for the table GeneralJournalEntryLines. |
OffsetID | String | False | The OffsetID column for the table GeneralJournalEntryLines. |
OurRef | Int | False | The OurRef column for the table GeneralJournalEntryLines. |
Project | String | False | The Project column for the table GeneralJournalEntryLines. |
ProjectCode | String | False | The ProjectCode column for the table GeneralJournalEntryLines. |
ProjectDescription | String | False | The ProjectDescription column for the table GeneralJournalEntryLines. |
Quantity | Double | False | The Quantity column for the table GeneralJournalEntryLines. |
VATBaseAmountDC | Double | False | The VATBaseAmountDC column for the table GeneralJournalEntryLines. |
VATBaseAmountFC | Double | False | The VATBaseAmountFC column for the table GeneralJournalEntryLines. |
VATCode | String | False | The VATCode column for the table GeneralJournalEntryLines. |
VATCodeDescription | String | False | The VATCodeDescription column for the table GeneralJournalEntryLines. |
VATPercentage | Double | False | The VATPercentage column for the table GeneralJournalEntryLines. |
VATType | String | False | The VATType column for the table GeneralJournalEntryLines. |
GLAccounts
Usage information for the operation GLAccounts.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ID [KEY] | String | True | The ID column for the table GLAccounts. |
AssimilatedVATBox | Int | False | The AssimilatedVATBox column for the table GLAccounts. |
BalanceSide | String | False | The BalanceSide column for the table GLAccounts. |
BalanceType | String | False | The BalanceType column for the table GLAccounts. |
BelcotaxType | Int | False | The BelcotaxType column for the table GLAccounts. |
Code | String | False | The Code column for the table GLAccounts. |
Compress | Bool | False | The Compress column for the table GLAccounts. |
Costcenter | String | False | The Costcenter column for the table GLAccounts. |
CostcenterDescription | String | False | The CostcenterDescription column for the table GLAccounts. |
Costunit | String | False | The Costunit column for the table GLAccounts. |
CostunitDescription | String | False | The CostunitDescription column for the table GLAccounts. |
Created | Datetime | False | The Created column for the table GLAccounts. |
Creator | String | False | The Creator column for the table GLAccounts. |
CreatorFullName | String | False | The CreatorFullName column for the table GLAccounts. |
Description | String | False | The Description column for the table GLAccounts. |
Division | Int | False | The Division column for the table GLAccounts. |
ExcludeVATListing | Int | False | The ExcludeVATListing column for the table GLAccounts. |
ExpenseNonDeductiblePercentage | Double | False | The ExpenseNonDeductiblePercentage column for the table GLAccounts. |
IsBlocked | Bool | False | The IsBlocked column for the table GLAccounts. |
Matching | Bool | False | The Matching column for the table GLAccounts. |
Modified | Datetime | False | The Modified column for the table GLAccounts. |
Modifier | String | False | The Modifier column for the table GLAccounts. |
ModifierFullName | String | False | The ModifierFullName column for the table GLAccounts. |
PrivateGLAccount | String | False | The PrivateGLAccount column for the table GLAccounts. |
PrivatePercentage | Double | False | The PrivatePercentage column for the table GLAccounts. |
ReportingCode | String | False | The ReportingCode column for the table GLAccounts. |
RevalueCurrency | Bool | False | The RevalueCurrency column for the table GLAccounts. |
SearchCode | String | False | The SearchCode column for the table GLAccounts. |
Type | Int | False | The Type column for the table GLAccounts. |
TypeDescription | String | False | The TypeDescription column for the table GLAccounts. |
UseCostcenter | Int | False | The UseCostcenter column for the table GLAccounts. |
UseCostunit | Int | False | The UseCostunit column for the table GLAccounts. |
VATCode | String | False | The VATCode column for the table GLAccounts. |
VATDescription | String | False | The VATDescription column for the table GLAccounts. |
VATGLAccountType | String | False | The VATGLAccountType column for the table GLAccounts. |
VATNonDeductibleGLAccount | String | False | The VATNonDeductibleGLAccount column for the table GLAccounts. |
VATNonDeductiblePercentage | Double | False | The VATNonDeductiblePercentage column for the table GLAccounts. |
VATSystem | String | False | The VATSystem column for the table GLAccounts. |
YearEndCostGLAccount | String | False | The YearEndCostGLAccount column for the table GLAccounts. |
YearEndReflectionGLAccount | String | False | The YearEndReflectionGLAccount column for the table GLAccounts. |
GoodsDeliveries
Usage information for the operation GoodsDeliveries.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
EntryID [KEY] | String | True | The EntryID column for the table GoodsDeliveries. |
Created | Datetime | False | The Created column for the table GoodsDeliveries. |
Creator | String | False | The Creator column for the table GoodsDeliveries. |
CreatorFullName | String | False | The CreatorFullName column for the table GoodsDeliveries. |
DeliveryAccount | String | False | The DeliveryAccount column for the table GoodsDeliveries. |
DeliveryAccountCode | String | False | The DeliveryAccountCode column for the table GoodsDeliveries. |
DeliveryAccountName | String | False | The DeliveryAccountName column for the table GoodsDeliveries. |
DeliveryAddress | String | False | The DeliveryAddress column for the table GoodsDeliveries. |
DeliveryContact | String | False | The DeliveryContact column for the table GoodsDeliveries. |
DeliveryContactPersonFullName | String | False | The DeliveryContactPersonFullName column for the table GoodsDeliveries. |
DeliveryDate | Datetime | False | The DeliveryDate column for the table GoodsDeliveries. |
DeliveryNumber | Int | False | The DeliveryNumber column for the table GoodsDeliveries. |
Description | String | False | The Description column for the table GoodsDeliveries. |
Division | Int | False | The Division column for the table GoodsDeliveries. |
Document | String | False | The Document column for the table GoodsDeliveries. |
DocumentSubject | String | False | The DocumentSubject column for the table GoodsDeliveries. |
EntryNumber | Int | False | The EntryNumber column for the table GoodsDeliveries. |
Modified | Datetime | False | The Modified column for the table GoodsDeliveries. |
Modifier | String | False | The Modifier column for the table GoodsDeliveries. |
ModifierFullName | String | False | The ModifierFullName column for the table GoodsDeliveries. |
Remarks | String | False | The Remarks column for the table GoodsDeliveries. |
ShippingMethod | String | False | The ShippingMethod column for the table GoodsDeliveries. |
ShippingMethodCode | String | False | The ShippingMethodCode column for the table GoodsDeliveries. |
ShippingMethodDescription | String | False | The ShippingMethodDescription column for the table GoodsDeliveries. |
TrackingNumber | String | False | The TrackingNumber column for the table GoodsDeliveries. |
Warehouse | String | False | The Warehouse column for the table GoodsDeliveries. |
WarehouseCode | String | False | The WarehouseCode column for the table GoodsDeliveries. |
WarehouseDescription | String | False | The WarehouseDescription column for the table GoodsDeliveries. |
LinkedGoodsDeliveryLines | String | False | The LinkedGoodsDeliveryLines column for the table GoodsDeliveries. |
GoodsDeliveryLines
Usage information for the operation GoodsDeliveryLines.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ID [KEY] | String | True | The ID column for the table GoodsDeliveryLines. |
Created | Datetime | False | The Created column for the table GoodsDeliveryLines. |
Creator | String | False | The Creator column for the table GoodsDeliveryLines. |
CreatorFullName | String | False | The CreatorFullName column for the table GoodsDeliveryLines. |
DeliveryDate | Datetime | False | The DeliveryDate column for the table GoodsDeliveryLines. |
Description | String | False | The Description column for the table GoodsDeliveryLines. |
Division | Int | False | The Division column for the table GoodsDeliveryLines. |
EntryID | String | False | The EntryID column for the table GoodsDeliveryLines. |
Item | String | False | The Item column for the table GoodsDeliveryLines. |
ItemCode | String | False | The ItemCode column for the table GoodsDeliveryLines. |
ItemDescription | String | False | The ItemDescription column for the table GoodsDeliveryLines. |
LineNumber | Int | False | The LineNumber column for the table GoodsDeliveryLines. |
Modified | Datetime | False | The Modified column for the table GoodsDeliveryLines. |
Modifier | String | False | The Modifier column for the table GoodsDeliveryLines. |
ModifierFullName | String | False | The ModifierFullName column for the table GoodsDeliveryLines. |
Notes | String | False | The Notes column for the table GoodsDeliveryLines. |
QuantityDelivered | Double | False | The QuantityDelivered column for the table GoodsDeliveryLines. |
QuantityOrdered | Double | False | The QuantityOrdered column for the table GoodsDeliveryLines. |
SalesOrderLineID | String | False | The SalesOrderLineID column for the table GoodsDeliveryLines. |
SalesOrderLineNumber | Int | False | The SalesOrderLineNumber column for the table GoodsDeliveryLines. |
SalesOrderNumber | Int | False | The SalesOrderNumber column for the table GoodsDeliveryLines. |
StorageLocation | String | False | The StorageLocation column for the table GoodsDeliveryLines. |
StorageLocationCode | String | False | The StorageLocationCode column for the table GoodsDeliveryLines. |
StorageLocationDescription | String | False | The StorageLocationDescription column for the table GoodsDeliveryLines. |
TrackingNumber | String | False | The TrackingNumber column for the table GoodsDeliveryLines. |
Unitcode | String | False | The Unitcode column for the table GoodsDeliveryLines. |
GoodsReceiptLines
Usage information for the operation GoodsReceiptLines.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ID [KEY] | String | True | The ID column for the table GoodsReceiptLines. |
Created | Datetime | False | The Created column for the table GoodsReceiptLines. |
Creator | String | False | The Creator column for the table GoodsReceiptLines. |
CreatorFullName | String | False | The CreatorFullName column for the table GoodsReceiptLines. |
Description | String | False | The Description column for the table GoodsReceiptLines. |
Division | Int | False | The Division column for the table GoodsReceiptLines. |
GoodsReceiptID | String | False | The GoodsReceiptID column for the table GoodsReceiptLines. |
Item | String | False | The Item column for the table GoodsReceiptLines. |
ItemCode | String | False | The ItemCode column for the table GoodsReceiptLines. |
ItemDescription | String | False | The ItemDescription column for the table GoodsReceiptLines. |
ItemUnitCode | String | False | The ItemUnitCode column for the table GoodsReceiptLines. |
LineNumber | Int | False | The LineNumber column for the table GoodsReceiptLines. |
Location | String | False | The Location column for the table GoodsReceiptLines. |
LocationCode | String | False | The LocationCode column for the table GoodsReceiptLines. |
LocationDescription | String | False | The LocationDescription column for the table GoodsReceiptLines. |
Modified | Datetime | False | The Modified column for the table GoodsReceiptLines. |
Modifier | String | False | The Modifier column for the table GoodsReceiptLines. |
ModifierFullName | String | False | The ModifierFullName column for the table GoodsReceiptLines. |
Notes | String | False | The Notes column for the table GoodsReceiptLines. |
Project | String | False | The Project column for the table GoodsReceiptLines. |
ProjectCode | String | False | The ProjectCode column for the table GoodsReceiptLines. |
ProjectDescription | String | False | The ProjectDescription column for the table GoodsReceiptLines. |
PurchaseOrderID | String | False | The PurchaseOrderID column for the table GoodsReceiptLines. |
PurchaseOrderLineID | String | False | The PurchaseOrderLineID column for the table GoodsReceiptLines. |
PurchaseOrderNumber | Int | False | The PurchaseOrderNumber column for the table GoodsReceiptLines. |
QuantityOrdered | Double | False | The QuantityOrdered column for the table GoodsReceiptLines. |
QuantityReceived | Double | False | The QuantityReceived column for the table GoodsReceiptLines. |
SupplierItemCode | String | False | The SupplierItemCode column for the table GoodsReceiptLines. |
GoodsReceipts
Usage information for the operation GoodsReceipts.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ID [KEY] | String | True | The ID column for the table GoodsReceipts. |
Created | Datetime | False | The Created column for the table GoodsReceipts. |
Creator | String | False | The Creator column for the table GoodsReceipts. |
CreatorFullName | String | False | The CreatorFullName column for the table GoodsReceipts. |
Description | String | False | The Description column for the table GoodsReceipts. |
Division | Int | False | The Division column for the table GoodsReceipts. |
Document | String | False | The Document column for the table GoodsReceipts. |
DocumentSubject | String | False | The DocumentSubject column for the table GoodsReceipts. |
EntryNumber | Int | False | The EntryNumber column for the table GoodsReceipts. |
Modified | Datetime | False | The Modified column for the table GoodsReceipts. |
Modifier | String | False | The Modifier column for the table GoodsReceipts. |
ModifierFullName | String | False | The ModifierFullName column for the table GoodsReceipts. |
ReceiptDate | Datetime | False | The ReceiptDate column for the table GoodsReceipts. |
ReceiptNumber | Int | False | The ReceiptNumber column for the table GoodsReceipts. |
Remarks | String | False | The Remarks column for the table GoodsReceipts. |
Supplier | String | False | The Supplier column for the table GoodsReceipts. |
SupplierCode | String | False | The SupplierCode column for the table GoodsReceipts. |
SupplierContact | String | False | The SupplierContact column for the table GoodsReceipts. |
SupplierContactFullName | String | False | The SupplierContactFullName column for the table GoodsReceipts. |
SupplierName | String | False | The SupplierName column for the table GoodsReceipts. |
Warehouse | String | False | The Warehouse column for the table GoodsReceipts. |
WarehouseCode | String | False | The WarehouseCode column for the table GoodsReceipts. |
WarehouseDescription | String | False | The WarehouseDescription column for the table GoodsReceipts. |
YourRef | String | False | The YourRef column for the table GoodsReceipts. |
LinkedGoodsReceiptLines | String | False | The LinkedGoodsReceiptLines column for the table GoodsReceipts. |
InvoiceSalesOrders
Usage information for the operation InvoiceSalesOrders.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ID [KEY] | String | True | The ID column for the table InvoiceSalesOrders. |
CreateMode | Int | False | The CreateMode column for the table InvoiceSalesOrders. |
DeliveryNumber | Int | False | The DeliveryNumber column for the table InvoiceSalesOrders. |
EndDate | Datetime | False | The EndDate column for the table InvoiceSalesOrders. |
Errors | String | False | The Errors column for the table InvoiceSalesOrders. |
InvoiceMode | Int | False | The InvoiceMode column for the table InvoiceSalesOrders. |
JournalCode | String | False | The JournalCode column for the table InvoiceSalesOrders. |
NumberOfCreatedInvoices | Int | False | The NumberOfCreatedInvoices column for the table InvoiceSalesOrders. |
NumberOfFailedInvoices | Int | False | The NumberOfFailedInvoices column for the table InvoiceSalesOrders. |
StartDate | Datetime | False | The StartDate column for the table InvoiceSalesOrders. |
UserInvoiceDate | Datetime | False | The UserInvoiceDate column for the table InvoiceSalesOrders. |
LinkedSalesOrderIDs | String | False | The LinkedSalesOrderIDs column for the table InvoiceSalesOrders. |
InvoiceTerms
Usage information for the operation InvoiceTerms.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ID [KEY] | String | True | The ID column for the table InvoiceTerms. |
Amount | Double | False | The Amount column for the table InvoiceTerms. |
Created | Datetime | False | The Created column for the table InvoiceTerms. |
Creator | String | False | The Creator column for the table InvoiceTerms. |
CreatorFullName | String | False | The CreatorFullName column for the table InvoiceTerms. |
Deliverable | String | False | The Deliverable column for the table InvoiceTerms. |
Description | String | False | The Description column for the table InvoiceTerms. |
Division | Int | False | The Division column for the table InvoiceTerms. |
ExecutionFromDate | Datetime | False | The ExecutionFromDate column for the table InvoiceTerms. |
ExecutionToDate | Datetime | False | The ExecutionToDate column for the table InvoiceTerms. |
InvoiceDate | Datetime | False | The InvoiceDate column for the table InvoiceTerms. |
Item | String | False | The Item column for the table InvoiceTerms. |
ItemDescription | String | False | The ItemDescription column for the table InvoiceTerms. |
Modified | Datetime | False | The Modified column for the table InvoiceTerms. |
Modifier | String | False | The Modifier column for the table InvoiceTerms. |
ModifierFullName | String | False | The ModifierFullName column for the table InvoiceTerms. |
Notes | String | False | The Notes column for the table InvoiceTerms. |
Percentage | Double | False | The Percentage column for the table InvoiceTerms. |
Project | String | False | The Project column for the table InvoiceTerms. |
ProjectDescription | String | False | The ProjectDescription column for the table InvoiceTerms. |
VATCode | String | False | The VATCode column for the table InvoiceTerms. |
VATCodeDescription | String | False | The VATCodeDescription column for the table InvoiceTerms. |
VATPercentage | Double | False | The VATPercentage column for the table InvoiceTerms. |
InvolvedUserRoles
Usage information for the operation InvolvedUserRoles.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ID [KEY] | String | True | The ID column for the table InvolvedUserRoles. |
Code | String | False | The Code column for the table InvolvedUserRoles. |
Created | Datetime | False | The Created column for the table InvolvedUserRoles. |
Creator | String | False | The Creator column for the table InvolvedUserRoles. |
CreatorFullName | String | False | The CreatorFullName column for the table InvolvedUserRoles. |
Description | String | False | The Description column for the table InvolvedUserRoles. |
DescriptionTermID | Int | False | The DescriptionTermID column for the table InvolvedUserRoles. |
Division | Int | False | The Division column for the table InvolvedUserRoles. |
Modified | Datetime | False | The Modified column for the table InvolvedUserRoles. |
Modifier | String | False | The Modifier column for the table InvolvedUserRoles. |
ModifierFullName | String | False | The ModifierFullName column for the table InvolvedUserRoles. |
InvolvedUsers
Usage information for the operation InvolvedUsers.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ID [KEY] | String | True | The ID column for the table InvolvedUsers. |
Account | String | False | The Account column for the table InvolvedUsers. |
AccountCity | String | False | The AccountCity column for the table InvolvedUsers. |
AccountCode | String | False | The AccountCode column for the table InvolvedUsers. |
AccountIsSupplier | Bool | False | The AccountIsSupplier column for the table InvolvedUsers. |
AccountLogoThumbnailUrl | String | False | The AccountLogoThumbnailUrl column for the table InvolvedUsers. |
AccountName | String | False | The AccountName column for the table InvolvedUsers. |
AccountStatus | String | False | The AccountStatus column for the table InvolvedUsers. |
Created | Datetime | False | The Created column for the table InvolvedUsers. |
Creator | String | False | The Creator column for the table InvolvedUsers. |
CreatorFullName | String | False | The CreatorFullName column for the table InvolvedUsers. |
Division | Int | False | The Division column for the table InvolvedUsers. |
InvolvedUserRole | String | False | The InvolvedUserRole column for the table InvolvedUsers. |
InvolvedUserRoleDescription | String | False | The InvolvedUserRoleDescription column for the table InvolvedUsers. |
IsMainContact | Bool | False | The IsMainContact column for the table InvolvedUsers. |
Modified | Datetime | False | The Modified column for the table InvolvedUsers. |
Modifier | String | False | The Modifier column for the table InvolvedUsers. |
ModifierFullName | String | False | The ModifierFullName column for the table InvolvedUsers. |
PersonEmail | String | False | The PersonEmail column for the table InvolvedUsers. |
PersonPhone | String | False | The PersonPhone column for the table InvolvedUsers. |
PersonPhoneExtension | String | False | The PersonPhoneExtension column for the table InvolvedUsers. |
PersonPictureThumbnailUrl | String | False | The PersonPictureThumbnailUrl column for the table InvolvedUsers. |
User | String | False | The User column for the table InvolvedUsers. |
UserFullName | String | False | The UserFullName column for the table InvolvedUsers. |
Items
Usage information for the operation Items.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ID [KEY] | String | True | The ID column for the table Items. |
Barcode | String | False | The Barcode column for the table Items. |
Class_01 | String | False | The Class_01 column for the table Items. |
Class_02 | String | False | The Class_02 column for the table Items. |
Class_03 | String | False | The Class_03 column for the table Items. |
Class_04 | String | False | The Class_04 column for the table Items. |
Class_05 | String | False | The Class_05 column for the table Items. |
Class_06 | String | False | The Class_06 column for the table Items. |
Class_07 | String | False | The Class_07 column for the table Items. |
Class_08 | String | False | The Class_08 column for the table Items. |
Class_09 | String | False | The Class_09 column for the table Items. |
Class_10 | String | False | The Class_10 column for the table Items. |
Code | String | False | The Code column for the table Items. |
CopyRemarks | Int | False | The CopyRemarks column for the table Items. |
CostPriceCurrency | String | False | The CostPriceCurrency column for the table Items. |
CostPriceNew | Double | False | The CostPriceNew column for the table Items. |
CostPriceStandard | Double | False | The CostPriceStandard column for the table Items. |
Created | Datetime | False | The Created column for the table Items. |
Creator | String | False | The Creator column for the table Items. |
CreatorFullName | String | False | The CreatorFullName column for the table Items. |
Description | String | False | The Description column for the table Items. |
Division | Int | False | The Division column for the table Items. |
EndDate | Datetime | False | The EndDate column for the table Items. |
ExtraDescription | String | False | The ExtraDescription column for the table Items. |
FreeBoolField_01 | Bool | False | The FreeBoolField_01 column for the table Items. |
FreeBoolField_02 | Bool | False | The FreeBoolField_02 column for the table Items. |
FreeBoolField_03 | Bool | False | The FreeBoolField_03 column for the table Items. |
FreeBoolField_04 | Bool | False | The FreeBoolField_04 column for the table Items. |
FreeBoolField_05 | Bool | False | The FreeBoolField_05 column for the table Items. |
FreeDateField_01 | Datetime | False | The FreeDateField_01 column for the table Items. |
FreeDateField_02 | Datetime | False | The FreeDateField_02 column for the table Items. |
FreeDateField_03 | Datetime | False | The FreeDateField_03 column for the table Items. |
FreeDateField_04 | Datetime | False | The FreeDateField_04 column for the table Items. |
FreeDateField_05 | Datetime | False | The FreeDateField_05 column for the table Items. |
FreeNumberField_01 | Double | False | The FreeNumberField_01 column for the table Items. |
FreeNumberField_02 | Double | False | The FreeNumberField_02 column for the table Items. |
FreeNumberField_03 | Double | False | The FreeNumberField_03 column for the table Items. |
FreeNumberField_04 | Double | False | The FreeNumberField_04 column for the table Items. |
FreeNumberField_05 | Double | False | The FreeNumberField_05 column for the table Items. |
FreeNumberField_06 | Double | False | The FreeNumberField_06 column for the table Items. |
FreeNumberField_07 | Double | False | The FreeNumberField_07 column for the table Items. |
FreeNumberField_08 | Double | False | The FreeNumberField_08 column for the table Items. |
FreeTextField_01 | String | False | The FreeTextField_01 column for the table Items. |
FreeTextField_02 | String | False | The FreeTextField_02 column for the table Items. |
FreeTextField_03 | String | False | The FreeTextField_03 column for the table Items. |
FreeTextField_04 | String | False | The FreeTextField_04 column for the table Items. |
FreeTextField_05 | String | False | The FreeTextField_05 column for the table Items. |
FreeTextField_06 | String | False | The FreeTextField_06 column for the table Items. |
FreeTextField_07 | String | False | The FreeTextField_07 column for the table Items. |
FreeTextField_08 | String | False | The FreeTextField_08 column for the table Items. |
FreeTextField_09 | String | False | The FreeTextField_09 column for the table Items. |
FreeTextField_10 | String | False | The FreeTextField_10 column for the table Items. |
GLCosts | String | False | The GLCosts column for the table Items. |
GLCostsCode | String | False | The GLCostsCode column for the table Items. |
GLCostsDescription | String | False | The GLCostsDescription column for the table Items. |
GLRevenue | String | False | The GLRevenue column for the table Items. |
GLRevenueCode | String | False | The GLRevenueCode column for the table Items. |
GLRevenueDescription | String | False | The GLRevenueDescription column for the table Items. |
GLStock | String | False | The GLStock column for the table Items. |
GLStockCode | String | False | The GLStockCode column for the table Items. |
GLStockDescription | String | False | The GLStockDescription column for the table Items. |
GrossWeight | Double | False | The GrossWeight column for the table Items. |
IsBatchItem | Int | False | The IsBatchItem column for the table Items. |
IsBatchNumberItem | Int | False | The IsBatchNumberItem column for the table Items. |
IsFractionAllowedItem | Bool | False | The IsFractionAllowedItem column for the table Items. |
IsMakeItem | Int | False | The IsMakeItem column for the table Items. |
IsNewContract | Int | False | The IsNewContract column for the table Items. |
IsOnDemandItem | Int | False | The IsOnDemandItem column for the table Items. |
IsPackageItem | Bool | False | The IsPackageItem column for the table Items. |
IsPurchaseItem | Bool | False | The IsPurchaseItem column for the table Items. |
IsRegistrationCodeItem | Int | False | The IsRegistrationCodeItem column for the table Items. |
IsSalesItem | Bool | False | The IsSalesItem column for the table Items. |
IsSerialItem | Bool | False | The IsSerialItem column for the table Items. |
IsSerialNumberItem | Bool | False | The IsSerialNumberItem column for the table Items. |
IsStockItem | Bool | False | The IsStockItem column for the table Items. |
IsSubcontractedItem | Bool | False | The IsSubcontractedItem column for the table Items. |
IsTaxableItem | Int | False | The IsTaxableItem column for the table Items. |
IsTime | Int | False | The IsTime column for the table Items. |
IsWebshopItem | Int | False | The IsWebshopItem column for the table Items. |
ItemGroup | String | False | The ItemGroup column for the table Items. |
ItemGroupCode | String | False | The ItemGroupCode column for the table Items. |
ItemGroupDescription | String | False | The ItemGroupDescription column for the table Items. |
Modified | Datetime | False | The Modified column for the table Items. |
Modifier | String | False | The Modifier column for the table Items. |
ModifierFullName | String | False | The ModifierFullName column for the table Items. |
NetWeight | Double | False | The NetWeight column for the table Items. |
NetWeightUnit | String | False | The NetWeightUnit column for the table Items. |
Notes | String | False | The Notes column for the table Items. |
PictureName | String | False | The PictureName column for the table Items. |
PictureThumbnailUrl | String | False | The PictureThumbnailUrl column for the table Items. |
PictureUrl | String | False | The PictureUrl column for the table Items. |
SalesVatCode | String | False | The SalesVatCode column for the table Items. |
SalesVatCodeDescription | String | False | The SalesVatCodeDescription column for the table Items. |
SearchCode | String | False | The SearchCode column for the table Items. |
SecurityLevel | Int | False | The SecurityLevel column for the table Items. |
StartDate | Datetime | False | The StartDate column for the table Items. |
Stock | Double | False | The Stock column for the table Items. |
Unit | String | False | The Unit column for the table Items. |
UnitDescription | String | False | The UnitDescription column for the table Items. |
UnitType | String | False | The UnitType column for the table Items. |
ItemWarehouses
Usage information for the operation ItemWarehouses.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ID [KEY] | String | True | The ID column for the table ItemWarehouses. |
Created | Datetime | False | The Created column for the table ItemWarehouses. |
Creator | String | False | The Creator column for the table ItemWarehouses. |
CreatorFullName | String | False | The CreatorFullName column for the table ItemWarehouses. |
CurrentStock | Double | False | The CurrentStock column for the table ItemWarehouses. |
DefaultStorageLocation | String | False | The DefaultStorageLocation column for the table ItemWarehouses. |
DefaultStorageLocationCode | String | False | The DefaultStorageLocationCode column for the table ItemWarehouses. |
DefaultStorageLocationDescription | String | False | The DefaultStorageLocationDescription column for the table ItemWarehouses. |
Division | Int | False | The Division column for the table ItemWarehouses. |
Item | String | False | The Item column for the table ItemWarehouses. |
ItemCode | String | False | The ItemCode column for the table ItemWarehouses. |
ItemDescription | String | False | The ItemDescription column for the table ItemWarehouses. |
ItemIsFractionAllowedItem | Bool | False | The ItemIsFractionAllowedItem column for the table ItemWarehouses. |
ItemUnit | String | False | The ItemUnit column for the table ItemWarehouses. |
ItemUnitDescription | String | False | The ItemUnitDescription column for the table ItemWarehouses. |
MaximumStock | Double | False | The MaximumStock column for the table ItemWarehouses. |
Modified | Datetime | False | The Modified column for the table ItemWarehouses. |
Modifier | String | False | The Modifier column for the table ItemWarehouses. |
ModifierFullName | String | False | The ModifierFullName column for the table ItemWarehouses. |
PlannedStockIn | Double | False | The PlannedStockIn column for the table ItemWarehouses. |
PlannedStockOut | Double | False | The PlannedStockOut column for the table ItemWarehouses. |
PlanningDetailsUrl | String | False | The PlanningDetailsUrl column for the table ItemWarehouses. |
ProjectedStock | Double | False | The ProjectedStock column for the table ItemWarehouses. |
ReorderPoint | Double | False | The ReorderPoint column for the table ItemWarehouses. |
ReservedStock | Double | False | The ReservedStock column for the table ItemWarehouses. |
SafetyStock | Double | False | The SafetyStock column for the table ItemWarehouses. |
StorageLocationUrl | String | False | The StorageLocationUrl column for the table ItemWarehouses. |
Warehouse | String | False | The Warehouse column for the table ItemWarehouses. |
WarehouseCode | String | False | The WarehouseCode column for the table ItemWarehouses. |
WarehouseDescription | String | False | The WarehouseDescription column for the table ItemWarehouses. |
Journals
Usage information for the operation Journals.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ID [KEY] | String | True | The ID column for the table Journals. |
AllowVariableCurrency | Bool | False | The AllowVariableCurrency column for the table Journals. |
AllowVariableExchangeRate | Bool | False | The AllowVariableExchangeRate column for the table Journals. |
AllowVAT | Bool | False | The AllowVAT column for the table Journals. |
AutoSave | Bool | False | The AutoSave column for the table Journals. |
Bank | String | False | The Bank column for the table Journals. |
BankAccountBICCode | String | False | The BankAccountBICCode column for the table Journals. |
BankAccountCountry | String | False | The BankAccountCountry column for the table Journals. |
BankAccountDescription | String | False | The BankAccountDescription column for the table Journals. |
BankAccountIBAN | String | False | The BankAccountIBAN column for the table Journals. |
BankAccountID | String | False | The BankAccountID column for the table Journals. |
BankAccountIncludingMask | String | False | The BankAccountIncludingMask column for the table Journals. |
BankAccountUseSEPA | Bool | False | The BankAccountUseSEPA column for the table Journals. |
BankAccountUseSepaDirectDebit | Bool | False | The BankAccountUseSepaDirectDebit column for the table Journals. |
BankName | String | False | The BankName column for the table Journals. |
Code | String | False | The Code column for the table Journals. |
Created | Datetime | False | The Created column for the table Journals. |
Creator | String | False | The Creator column for the table Journals. |
CreatorFullName | String | False | The CreatorFullName column for the table Journals. |
Currency | String | False | The Currency column for the table Journals. |
CurrencyDescription | String | False | The CurrencyDescription column for the table Journals. |
Description | String | False | The Description column for the table Journals. |
Division | Int | False | The Division column for the table Journals. |
GLAccount | String | False | The GLAccount column for the table Journals. |
GLAccountCode | String | False | The GLAccountCode column for the table Journals. |
GLAccountDescription | String | False | The GLAccountDescription column for the table Journals. |
GLAccountType | Int | False | The GLAccountType column for the table Journals. |
Modified | Datetime | False | The Modified column for the table Journals. |
Modifier | String | False | The Modifier column for the table Journals. |
ModifierFullName | String | False | The ModifierFullName column for the table Journals. |
PaymentInTransitAccount | String | False | The PaymentInTransitAccount column for the table Journals. |
PaymentServiceAccountIdentifier | String | False | The PaymentServiceAccountIdentifier column for the table Journals. |
PaymentServiceProvider | Int | False | The PaymentServiceProvider column for the table Journals. |
PaymentServiceProviderName | String | False | The PaymentServiceProviderName column for the table Journals. |
Type | Int | False | The Type column for the table Journals. |
Mailboxes
Usage information for the operation Mailboxes.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ID [KEY] | String | True | The ID column for the table Mailboxes. |
Account | String | False | The Account column for the table Mailboxes. |
AccountName | String | False | The AccountName column for the table Mailboxes. |
Created | Datetime | False | The Created column for the table Mailboxes. |
Creator | String | False | The Creator column for the table Mailboxes. |
CreatorFullName | String | False | The CreatorFullName column for the table Mailboxes. |
Description | String | False | The Description column for the table Mailboxes. |
ForDivision | Int | False | The ForDivision column for the table Mailboxes. |
ForDivisionDescription | String | False | The ForDivisionDescription column for the table Mailboxes. |
Mailbox | String | False | The Mailbox column for the table Mailboxes. |
Modified | Datetime | False | The Modified column for the table Mailboxes. |
Modifier | String | False | The Modifier column for the table Mailboxes. |
ModifierFullName | String | False | The ModifierFullName column for the table Mailboxes. |
Publish | Int | False | The Publish column for the table Mailboxes. |
Type | Int | False | The Type column for the table Mailboxes. |
ValidFrom | Datetime | False | The ValidFrom column for the table Mailboxes. |
ValidTo | Datetime | False | The ValidTo column for the table Mailboxes. |
MailMessageAttachments
Usage information for the operation MailMessageAttachments.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ID [KEY] | String | True | The ID column for the table MailMessageAttachments. |
Attachment | Binary | False | The Attachment column for the table MailMessageAttachments. |
AttachmentFileExtension | String | False | The AttachmentFileExtension column for the table MailMessageAttachments. |
AttachmentFileName | String | False | The AttachmentFileName column for the table MailMessageAttachments. |
FileSize | Long | False | The FileSize column for the table MailMessageAttachments. |
MailMessageID | String | False | The MailMessageID column for the table MailMessageAttachments. |
RecipientAccount | String | False | The RecipientAccount column for the table MailMessageAttachments. |
SenderAccount | String | False | The SenderAccount column for the table MailMessageAttachments. |
Type | Int | False | The Type column for the table MailMessageAttachments. |
TypeDescription | String | False | The TypeDescription column for the table MailMessageAttachments. |
Url | String | False | The Url column for the table MailMessageAttachments. |
MailMessages
Usage information for the operation MailMessages.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ID [KEY] | String | True | The ID column for the table MailMessages. |
Bank | String | False | The Bank column for the table MailMessages. |
BankAccount | String | False | The BankAccount column for the table MailMessages. |
Created | Datetime | False | The Created column for the table MailMessages. |
Creator | String | False | The Creator column for the table MailMessages. |
CreatorFullName | String | False | The CreatorFullName column for the table MailMessages. |
ForDivision | Int | False | The ForDivision column for the table MailMessages. |
Modified | Datetime | False | The Modified column for the table MailMessages. |
Modifier | String | False | The Modifier column for the table MailMessages. |
ModifierFullName | String | False | The ModifierFullName column for the table MailMessages. |
Operation | Int | False | The Operation column for the table MailMessages. |
OriginalMessage | String | False | The OriginalMessage column for the table MailMessages. |
OriginalMessageSubject | String | False | The OriginalMessageSubject column for the table MailMessages. |
PartnerKey | String | False | The PartnerKey column for the table MailMessages. |
Quantity | Double | False | The Quantity column for the table MailMessages. |
RecipientAccount | String | False | The RecipientAccount column for the table MailMessages. |
RecipientDeleted | Int | False | The RecipientDeleted column for the table MailMessages. |
RecipientMailbox | String | False | The RecipientMailbox column for the table MailMessages. |
RecipientMailboxDescription | String | False | The RecipientMailboxDescription column for the table MailMessages. |
RecipientMailboxID | String | False | The RecipientMailboxID column for the table MailMessages. |
RecipientStatus | Int | False | The RecipientStatus column for the table MailMessages. |
RecipientStatusDescription | String | False | The RecipientStatusDescription column for the table MailMessages. |
SenderAccount | String | False | The SenderAccount column for the table MailMessages. |
SenderDateSent | Datetime | False | The SenderDateSent column for the table MailMessages. |
SenderDeleted | Int | False | The SenderDeleted column for the table MailMessages. |
SenderIPAddress | String | False | The SenderIPAddress column for the table MailMessages. |
SenderMailbox | String | False | The SenderMailbox column for the table MailMessages. |
SenderMailboxDescription | String | False | The SenderMailboxDescription column for the table MailMessages. |
SenderMailboxID | String | False | The SenderMailboxID column for the table MailMessages. |
Subject | String | False | The Subject column for the table MailMessages. |
SynchronizationCode | String | False | The SynchronizationCode column for the table MailMessages. |
Type | Int | False | The Type column for the table MailMessages. |
MailMessagesSent
Usage information for the operation MailMessagesSent.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ID [KEY] | String | True | The ID column for the table MailMessagesSent. |
Bank | String | False | The Bank column for the table MailMessagesSent. |
BankAccount | String | False | The BankAccount column for the table MailMessagesSent. |
Created | Datetime | False | The Created column for the table MailMessagesSent. |
Creator | String | False | The Creator column for the table MailMessagesSent. |
CreatorFullName | String | False | The CreatorFullName column for the table MailMessagesSent. |
ForDivision | Int | False | The ForDivision column for the table MailMessagesSent. |
Modified | Datetime | False | The Modified column for the table MailMessagesSent. |
Modifier | String | False | The Modifier column for the table MailMessagesSent. |
ModifierFullName | String | False | The ModifierFullName column for the table MailMessagesSent. |
Operation | Int | False | The Operation column for the table MailMessagesSent. |
OriginalMessage | String | False | The OriginalMessage column for the table MailMessagesSent. |
OriginalMessageSubject | String | False | The OriginalMessageSubject column for the table MailMessagesSent. |
PartnerKey | String | False | The PartnerKey column for the table MailMessagesSent. |
Quantity | Double | False | The Quantity column for the table MailMessagesSent. |
RecipientAccount | String | False | The RecipientAccount column for the table MailMessagesSent. |
RecipientDeleted | Int | False | The RecipientDeleted column for the table MailMessagesSent. |
RecipientMailbox | String | False | The RecipientMailbox column for the table MailMessagesSent. |
RecipientMailboxDescription | String | False | The RecipientMailboxDescription column for the table MailMessagesSent. |
RecipientMailboxID | String | False | The RecipientMailboxID column for the table MailMessagesSent. |
RecipientStatus | Int | False | The RecipientStatus column for the table MailMessagesSent. |
RecipientStatusDescription | String | False | The RecipientStatusDescription column for the table MailMessagesSent. |
SenderAccount | String | False | The SenderAccount column for the table MailMessagesSent. |
SenderDateSent | Datetime | False | The SenderDateSent column for the table MailMessagesSent. |
SenderDeleted | Int | False | The SenderDeleted column for the table MailMessagesSent. |
SenderIPAddress | String | False | The SenderIPAddress column for the table MailMessagesSent. |
SenderMailbox | String | False | The SenderMailbox column for the table MailMessagesSent. |
SenderMailboxDescription | String | False | The SenderMailboxDescription column for the table MailMessagesSent. |
SenderMailboxID | String | False | The SenderMailboxID column for the table MailMessagesSent. |
Subject | String | False | The Subject column for the table MailMessagesSent. |
SynchronizationCode | String | False | The SynchronizationCode column for the table MailMessagesSent. |
Type | Int | False | The Type column for the table MailMessagesSent. |
MaterialIssues
Usage information for the operation MaterialIssues.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
StockTransactionId [KEY] | String | True | The StockTransactionId column for the table MaterialIssues. |
CreatedBy | String | False | The CreatedBy column for the table MaterialIssues. |
CreatedByFullName | String | False | The CreatedByFullName column for the table MaterialIssues. |
CreatedDate | Datetime | False | The CreatedDate column for the table MaterialIssues. |
DraftStockTransactionID | String | False | The DraftStockTransactionID column for the table MaterialIssues. |
HasReversibleQuantity | Bool | False | The HasReversibleQuantity column for the table MaterialIssues. |
IsBackflush | Int | False | The IsBackflush column for the table MaterialIssues. |
IsBatch | Int | False | The IsBatch column for the table MaterialIssues. |
IsFractionAllowedItem | Int | False | The IsFractionAllowedItem column for the table MaterialIssues. |
IsIssueFromChild | Int | False | The IsIssueFromChild column for the table MaterialIssues. |
IsSerial | Int | False | The IsSerial column for the table MaterialIssues. |
Item | String | False | The Item column for the table MaterialIssues. |
ItemCode | String | False | The ItemCode column for the table MaterialIssues. |
ItemDescription | String | False | The ItemDescription column for the table MaterialIssues. |
ItemPictureUrl | String | False | The ItemPictureUrl column for the table MaterialIssues. |
Note | String | False | The Note column for the table MaterialIssues. |
Quantity | Double | False | The Quantity column for the table MaterialIssues. |
RelatedStockTransaction | String | False | The RelatedStockTransaction column for the table MaterialIssues. |
ShopOrder | String | False | The ShopOrder column for the table MaterialIssues. |
ShopOrderMaterialPlan | String | False | The ShopOrderMaterialPlan column for the table MaterialIssues. |
ShopOrderNumber | Int | False | The ShopOrderNumber column for the table MaterialIssues. |
StorageLocation | String | False | The StorageLocation column for the table MaterialIssues. |
StorageLocationCode | String | False | The StorageLocationCode column for the table MaterialIssues. |
StorageLocationDescription | String | False | The StorageLocationDescription column for the table MaterialIssues. |
TransactionDate | Datetime | False | The TransactionDate column for the table MaterialIssues. |
Unit | String | False | The Unit column for the table MaterialIssues. |
UnitDescription | String | False | The UnitDescription column for the table MaterialIssues. |
Warehouse | String | False | The Warehouse column for the table MaterialIssues. |
WarehouseCode | String | False | The WarehouseCode column for the table MaterialIssues. |
WarehouseDescription | String | False | The WarehouseDescription column for the table MaterialIssues. |
MaterialReversals
Usage information for the operation MaterialReversals.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ReversalStockTransactionId [KEY] | String | True | The ReversalStockTransactionId column for the table MaterialReversals. |
CreatedBy | String | False | The CreatedBy column for the table MaterialReversals. |
CreatedByFullName | String | False | The CreatedByFullName column for the table MaterialReversals. |
CreatedDate | Datetime | False | The CreatedDate column for the table MaterialReversals. |
IsBackflush | Bool | False | The IsBackflush column for the table MaterialReversals. |
IsBatch | Int | False | The IsBatch column for the table MaterialReversals. |
IsFractionAllowedItem | Int | False | The IsFractionAllowedItem column for the table MaterialReversals. |
IsSerial | Int | False | The IsSerial column for the table MaterialReversals. |
Item | String | False | The Item column for the table MaterialReversals. |
ItemCode | String | False | The ItemCode column for the table MaterialReversals. |
ItemDescription | String | False | The ItemDescription column for the table MaterialReversals. |
ItemPictureUrl | String | False | The ItemPictureUrl column for the table MaterialReversals. |
Note | String | False | The Note column for the table MaterialReversals. |
OriginalStockTransactionId | String | False | The OriginalStockTransactionId column for the table MaterialReversals. |
Quantity | Double | False | The Quantity column for the table MaterialReversals. |
ShopOrder | String | False | The ShopOrder column for the table MaterialReversals. |
ShopOrderMaterialPlan | String | False | The ShopOrderMaterialPlan column for the table MaterialReversals. |
ShopOrderNumber | Int | False | The ShopOrderNumber column for the table MaterialReversals. |
StorageLocation | String | False | The StorageLocation column for the table MaterialReversals. |
StorageLocationCode | String | False | The StorageLocationCode column for the table MaterialReversals. |
StorageLocationDescription | String | False | The StorageLocationDescription column for the table MaterialReversals. |
TransactionDate | Datetime | False | The TransactionDate column for the table MaterialReversals. |
Unit | String | False | The Unit column for the table MaterialReversals. |
UnitDescription | String | False | The UnitDescription column for the table MaterialReversals. |
Warehouse | String | False | The Warehouse column for the table MaterialReversals. |
WarehouseCode | String | False | The WarehouseCode column for the table MaterialReversals. |
WarehouseDescription | String | False | The WarehouseDescription column for the table MaterialReversals. |
OperationResources
Usage information for the operation OperationResources.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ID [KEY] | String | True | The ID column for the table OperationResources. |
Account | String | False | The Account column for the table OperationResources. |
AttendedPercentage | Double | False | The AttendedPercentage column for the table OperationResources. |
Created | Datetime | False | The Created column for the table OperationResources. |
Creator | String | False | The Creator column for the table OperationResources. |
CreatorFullName | String | False | The CreatorFullName column for the table OperationResources. |
Currency | String | False | The Currency column for the table OperationResources. |
Division | Int | False | The Division column for the table OperationResources. |
EfficiencyPercentage | Double | False | The EfficiencyPercentage column for the table OperationResources. |
IsPrimary | Int | False | The IsPrimary column for the table OperationResources. |
Modified | Datetime | False | The Modified column for the table OperationResources. |
Modifier | String | False | The Modifier column for the table OperationResources. |
ModifierFullName | String | False | The ModifierFullName column for the table OperationResources. |
Operation | String | False | The Operation column for the table OperationResources. |
OperationDescription | String | False | The OperationDescription column for the table OperationResources. |
PurchaseLeadDays | Int | False | The PurchaseLeadDays column for the table OperationResources. |
PurchaseUnit | String | False | The PurchaseUnit column for the table OperationResources. |
PurchaseVATCode | String | False | The PurchaseVATCode column for the table OperationResources. |
Run | Double | False | The Run column for the table OperationResources. |
RunMethod | Int | False | The RunMethod column for the table OperationResources. |
Setup | Double | False | The Setup column for the table OperationResources. |
SetupUnit | String | False | The SetupUnit column for the table OperationResources. |
Type | Int | False | The Type column for the table OperationResources. |
Workcenter | String | False | The Workcenter column for the table OperationResources. |
WorkcenterDescription | String | False | The WorkcenterDescription column for the table OperationResources. |
Operations
Usage information for the operation Operations.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ID [KEY] | String | True | The ID column for the table Operations. |
Code | String | False | The Code column for the table Operations. |
Created | Datetime | False | The Created column for the table Operations. |
Creator | String | False | The Creator column for the table Operations. |
CreatorFullName | String | False | The CreatorFullName column for the table Operations. |
Description | String | False | The Description column for the table Operations. |
Division | Int | False | The Division column for the table Operations. |
HasSuppliers | Int | False | The HasSuppliers column for the table Operations. |
Item | String | False | The Item column for the table Operations. |
ItemDescription | String | False | The ItemDescription column for the table Operations. |
Modified | Datetime | False | The Modified column for the table Operations. |
Modifier | String | False | The Modifier column for the table Operations. |
ModifierFullName | String | False | The ModifierFullName column for the table Operations. |
Notes | String | False | The Notes column for the table Operations. |
Searchcode | String | False | The Searchcode column for the table Operations. |
Status | Int | False | The Status column for the table Operations. |
Opportunities
Usage information for the operation Opportunities.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ID [KEY] | String | True | The ID column for the table Opportunities. |
Account | String | False | The Account column for the table Opportunities. |
Accountant | String | False | The Accountant column for the table Opportunities. |
AccountantCode | String | False | The AccountantCode column for the table Opportunities. |
AccountantName | String | False | The AccountantName column for the table Opportunities. |
AccountCode | String | False | The AccountCode column for the table Opportunities. |
AccountName | String | False | The AccountName column for the table Opportunities. |
ActionDate | Datetime | False | The ActionDate column for the table Opportunities. |
AmountDC | Double | False | The AmountDC column for the table Opportunities. |
AmountFC | Double | False | The AmountFC column for the table Opportunities. |
Campaign | String | False | The Campaign column for the table Opportunities. |
CampaignDescription | String | False | The CampaignDescription column for the table Opportunities. |
Channel | Int | False | The Channel column for the table Opportunities. |
ChannelDescription | String | False | The ChannelDescription column for the table Opportunities. |
CloseDate | Datetime | False | The CloseDate column for the table Opportunities. |
Created | Datetime | False | The Created column for the table Opportunities. |
Creator | String | False | The Creator column for the table Opportunities. |
CreatorFullName | String | False | The CreatorFullName column for the table Opportunities. |
Currency | String | False | The Currency column for the table Opportunities. |
Division | Int | False | The Division column for the table Opportunities. |
LeadSource | String | False | The LeadSource column for the table Opportunities. |
LeadSourceDescription | String | False | The LeadSourceDescription column for the table Opportunities. |
Modified | Datetime | False | The Modified column for the table Opportunities. |
Modifier | String | False | The Modifier column for the table Opportunities. |
ModifierFullName | String | False | The ModifierFullName column for the table Opportunities. |
Name | String | False | The Name column for the table Opportunities. |
NextAction | String | False | The NextAction column for the table Opportunities. |
Notes | String | False | The Notes column for the table Opportunities. |
OpportunityDepartmentCode | Int | False | The OpportunityDepartmentCode column for the table Opportunities. |
OpportunityDepartmentDescription | String | False | The OpportunityDepartmentDescription column for the table Opportunities. |
OpportunityStage | String | False | The OpportunityStage column for the table Opportunities. |
OpportunityStageDescription | String | False | The OpportunityStageDescription column for the table Opportunities. |
OpportunityStatus | Int | False | The OpportunityStatus column for the table Opportunities. |
OpportunityType | Int | False | The OpportunityType column for the table Opportunities. |
OpportunityTypeDescription | String | False | The OpportunityTypeDescription column for the table Opportunities. |
Owner | String | False | The Owner column for the table Opportunities. |
OwnerFullName | String | False | The OwnerFullName column for the table Opportunities. |
Probability | Double | False | The Probability column for the table Opportunities. |
Project | String | False | The Project column for the table Opportunities. |
ProjectCode | String | False | The ProjectCode column for the table Opportunities. |
ProjectDescription | String | False | The ProjectDescription column for the table Opportunities. |
RateFC | Double | False | The RateFC column for the table Opportunities. |
ReasonCode | String | False | The ReasonCode column for the table Opportunities. |
ReasonCodeDescription | String | False | The ReasonCodeDescription column for the table Opportunities. |
Reseller | String | False | The Reseller column for the table Opportunities. |
ResellerCode | String | False | The ResellerCode column for the table Opportunities. |
ResellerName | String | False | The ResellerName column for the table Opportunities. |
SalesType | String | False | The SalesType column for the table Opportunities. |
SalesTypeDescription | String | False | The SalesTypeDescription column for the table Opportunities. |
PaymentConditions
Usage information for the operation PaymentConditions.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ID [KEY] | String | True | The ID column for the table PaymentConditions. |
Code | String | False | The Code column for the table PaymentConditions. |
Created | Datetime | False | The Created column for the table PaymentConditions. |
Creator | String | False | The Creator column for the table PaymentConditions. |
CreatorFullName | String | False | The CreatorFullName column for the table PaymentConditions. |
CreditManagementScenario | String | False | The CreditManagementScenario column for the table PaymentConditions. |
CreditManagementScenarioCode | String | False | The CreditManagementScenarioCode column for the table PaymentConditions. |
CreditManagementScenarioDescription | String | False | The CreditManagementScenarioDescription column for the table PaymentConditions. |
Description | String | False | The Description column for the table PaymentConditions. |
DiscountCalculation | String | False | The DiscountCalculation column for the table PaymentConditions. |
DiscountPaymentDays | Int | False | The DiscountPaymentDays column for the table PaymentConditions. |
DiscountPercentage | Double | False | The DiscountPercentage column for the table PaymentConditions. |
Division | Int | False | The Division column for the table PaymentConditions. |
Modified | Datetime | False | The Modified column for the table PaymentConditions. |
Modifier | String | False | The Modifier column for the table PaymentConditions. |
ModifierFullName | String | False | The ModifierFullName column for the table PaymentConditions. |
PaymentDays | Int | False | The PaymentDays column for the table PaymentConditions. |
PaymentDiscountType | String | False | The PaymentDiscountType column for the table PaymentConditions. |
PaymentEndOfMonths | Int | False | The PaymentEndOfMonths column for the table PaymentConditions. |
PaymentMethod | String | False | The PaymentMethod column for the table PaymentConditions. |
Percentage | Double | False | The Percentage column for the table PaymentConditions. |
VATCalculation | String | False | The VATCalculation column for the table PaymentConditions. |
PrintedSalesInvoices
Usage information for the operation PrintedSalesInvoices.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
InvoiceID [KEY] | String | True | The InvoiceID column for the table PrintedSalesInvoices. |
Division | Int | False | The Division column for the table PrintedSalesInvoices. |
Document | String | False | The Document column for the table PrintedSalesInvoices. |
DocumentCreationError | String | False | The DocumentCreationError column for the table PrintedSalesInvoices. |
DocumentCreationSuccess | String | False | The DocumentCreationSuccess column for the table PrintedSalesInvoices. |
DocumentLayout | String | False | The DocumentLayout column for the table PrintedSalesInvoices. |
EmailCreationError | String | False | The EmailCreationError column for the table PrintedSalesInvoices. |
EmailCreationSuccess | String | False | The EmailCreationSuccess column for the table PrintedSalesInvoices. |
EmailLayout | String | False | The EmailLayout column for the table PrintedSalesInvoices. |
ExtraText | String | False | The ExtraText column for the table PrintedSalesInvoices. |
InvoiceDate | Datetime | False | The InvoiceDate column for the table PrintedSalesInvoices. |
PostboxMessageCreationError | String | False | The PostboxMessageCreationError column for the table PrintedSalesInvoices. |
PostboxMessageCreationSuccess | String | False | The PostboxMessageCreationSuccess column for the table PrintedSalesInvoices. |
PostboxSender | String | False | The PostboxSender column for the table PrintedSalesInvoices. |
ReportingPeriod | Int | False | The ReportingPeriod column for the table PrintedSalesInvoices. |
ReportingYear | Int | False | The ReportingYear column for the table PrintedSalesInvoices. |
SendEmailToCustomer | Bool | False | The SendEmailToCustomer column for the table PrintedSalesInvoices. |
SenderEmailAddress | String | False | The SenderEmailAddress column for the table PrintedSalesInvoices. |
SendInvoiceToCustomerPostbox | Bool | False | The SendInvoiceToCustomerPostbox column for the table PrintedSalesInvoices. |
SendOutputBasedOnAccount | Bool | False | The SendOutputBasedOnAccount column for the table PrintedSalesInvoices. |
PrintedSalesOrders
Usage information for the operation PrintedSalesOrders.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
OrderId [KEY] | String | True | The OrderId column for the table PrintedSalesOrders. |
Division | Int | False | The Division column for the table PrintedSalesOrders. |
Document | String | False | The Document column for the table PrintedSalesOrders. |
DocumentCreationError | String | False | The DocumentCreationError column for the table PrintedSalesOrders. |
DocumentCreationSuccess | String | False | The DocumentCreationSuccess column for the table PrintedSalesOrders. |
DocumentLayout | String | False | The DocumentLayout column for the table PrintedSalesOrders. |
EmailCreationError | String | False | The EmailCreationError column for the table PrintedSalesOrders. |
EmailCreationSuccess | String | False | The EmailCreationSuccess column for the table PrintedSalesOrders. |
EmailLayout | String | False | The EmailLayout column for the table PrintedSalesOrders. |
ExtraText | String | False | The ExtraText column for the table PrintedSalesOrders. |
SendEmailToCustomer | Bool | False | The SendEmailToCustomer column for the table PrintedSalesOrders. |
SenderEmailAddress | String | False | The SenderEmailAddress column for the table PrintedSalesOrders. |
PrintQuotation
Usage information for the operation PrintQuotation.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
QuotationID [KEY] | String | True | The QuotationID column for the table PrintQuotation. |
Division | Int | False | The Division column for the table PrintQuotation. |
Document | String | False | The Document column for the table PrintQuotation. |
DocumentCreationError | String | False | The DocumentCreationError column for the table PrintQuotation. |
DocumentCreationSuccess | String | False | The DocumentCreationSuccess column for the table PrintQuotation. |
DocumentLayout | String | False | The DocumentLayout column for the table PrintQuotation. |
EmailCreationError | String | False | The EmailCreationError column for the table PrintQuotation. |
EmailLayout | String | False | The EmailLayout column for the table PrintQuotation. |
ExtraText | String | False | The ExtraText column for the table PrintQuotation. |
QuotationDate | Datetime | False | The QuotationDate column for the table PrintQuotation. |
SendEmailToCustomer | Bool | False | The SendEmailToCustomer column for the table PrintQuotation. |
SenderEmailAddress | String | False | The SenderEmailAddress column for the table PrintQuotation. |
ProcessPayments
Usage information for the operation ProcessPayments.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ID [KEY] | String | True | The ID column for the table ProcessPayments. |
BankExportDocumentsUrl | String | False | The BankExportDocumentsUrl column for the table ProcessPayments. |
Division | Int | False | The Division column for the table ProcessPayments. |
ErrorMessage | String | False | The ErrorMessage column for the table ProcessPayments. |
SuccessMessage | String | False | The SuccessMessage column for the table ProcessPayments. |
LinkedPaymentIDs | String | False | The LinkedPaymentIDs column for the table ProcessPayments. |
ProcessStockCount
Usage information for the operation ProcessStockCount.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
StockCountID [KEY] | String | True | The StockCountID column for the table ProcessStockCount. |
Division | Int | False | The Division column for the table ProcessStockCount. |
ErrorMessage | String | False | The ErrorMessage column for the table ProcessStockCount. |
SuccessMessage | String | False | The SuccessMessage column for the table ProcessStockCount. |
ProductionAreas
Usage information for the operation ProductionAreas.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ID [KEY] | String | True | The ID column for the table ProductionAreas. |
Code | String | False | The Code column for the table ProductionAreas. |
Costcenter | String | False | The Costcenter column for the table ProductionAreas. |
CostcenterDescription | String | False | The CostcenterDescription column for the table ProductionAreas. |
Costunit | String | False | The Costunit column for the table ProductionAreas. |
CostunitDescription | String | False | The CostunitDescription column for the table ProductionAreas. |
Created | Datetime | False | The Created column for the table ProductionAreas. |
Creator | String | False | The Creator column for the table ProductionAreas. |
CreatorFullName | String | False | The CreatorFullName column for the table ProductionAreas. |
Description | String | False | The Description column for the table ProductionAreas. |
Division | Int | False | The Division column for the table ProductionAreas. |
IsDefault | Int | False | The IsDefault column for the table ProductionAreas. |
Modified | Datetime | False | The Modified column for the table ProductionAreas. |
Modifier | String | False | The Modifier column for the table ProductionAreas. |
ModifierFullName | String | False | The ModifierFullName column for the table ProductionAreas. |
Notes | String | False | The Notes column for the table ProductionAreas. |
ProjectHourBudgets
Usage information for the operation ProjectHourBudgets.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ID [KEY] | String | True | The ID column for the table ProjectHourBudgets. |
Budget | Double | False | The Budget column for the table ProjectHourBudgets. |
Created | Datetime | False | The Created column for the table ProjectHourBudgets. |
Creator | String | False | The Creator column for the table ProjectHourBudgets. |
CreatorFullName | String | False | The CreatorFullName column for the table ProjectHourBudgets. |
Division | Int | False | The Division column for the table ProjectHourBudgets. |
Item | String | False | The Item column for the table ProjectHourBudgets. |
ItemCode | String | False | The ItemCode column for the table ProjectHourBudgets. |
ItemDescription | String | False | The ItemDescription column for the table ProjectHourBudgets. |
Modified | Datetime | False | The Modified column for the table ProjectHourBudgets. |
Modifier | String | False | The Modifier column for the table ProjectHourBudgets. |
ModifierFullName | String | False | The ModifierFullName column for the table ProjectHourBudgets. |
Project | String | False | The Project column for the table ProjectHourBudgets. |
ProjectCode | String | False | The ProjectCode column for the table ProjectHourBudgets. |
ProjectDescription | String | False | The ProjectDescription column for the table ProjectHourBudgets. |
ProjectPlanning
Usage information for the operation ProjectPlanning.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ID [KEY] | String | True | The ID column for the table ProjectPlanning. |
Account | String | False | The Account column for the table ProjectPlanning. |
AccountCode | String | False | The AccountCode column for the table ProjectPlanning. |
AccountName | String | False | The AccountName column for the table ProjectPlanning. |
BGTStatus | Int | False | The BGTStatus column for the table ProjectPlanning. |
CommunicationErrorStatus | Int | False | The CommunicationErrorStatus column for the table ProjectPlanning. |
Created | Datetime | False | The Created column for the table ProjectPlanning. |
Creator | String | False | The Creator column for the table ProjectPlanning. |
CreatorFullName | String | False | The CreatorFullName column for the table ProjectPlanning. |
Description | String | False | The Description column for the table ProjectPlanning. |
Division | Int | False | The Division column for the table ProjectPlanning. |
Employee | String | False | The Employee column for the table ProjectPlanning. |
EmployeeCode | String | False | The EmployeeCode column for the table ProjectPlanning. |
EmployeeHID | Int | False | The EmployeeHID column for the table ProjectPlanning. |
EndDate | Datetime | False | The EndDate column for the table ProjectPlanning. |
Hours | Double | False | The Hours column for the table ProjectPlanning. |
HourType | String | False | The HourType column for the table ProjectPlanning. |
HourTypeCode | String | False | The HourTypeCode column for the table ProjectPlanning. |
HourTypeDescription | String | False | The HourTypeDescription column for the table ProjectPlanning. |
IsBrokenRecurrence | Bool | False | The IsBrokenRecurrence column for the table ProjectPlanning. |
Modified | Datetime | False | The Modified column for the table ProjectPlanning. |
Modifier | String | False | The Modifier column for the table ProjectPlanning. |
ModifierFullName | String | False | The ModifierFullName column for the table ProjectPlanning. |
Notes | String | False | The Notes column for the table ProjectPlanning. |
OverAllocate | Bool | False | The OverAllocate column for the table ProjectPlanning. |
Project | String | False | The Project column for the table ProjectPlanning. |
ProjectCode | String | False | The ProjectCode column for the table ProjectPlanning. |
ProjectDescription | String | False | The ProjectDescription column for the table ProjectPlanning. |
ProjectPlanningRecurring | String | False | The ProjectPlanningRecurring column for the table ProjectPlanning. |
ProjectWBS | String | False | The ProjectWBS column for the table ProjectPlanning. |
ProjectWBSDescription | String | False | The ProjectWBSDescription column for the table ProjectPlanning. |
StartDate | Datetime | False | The StartDate column for the table ProjectPlanning. |
Status | Int | False | The Status column for the table ProjectPlanning. |
Type | Int | False | The Type column for the table ProjectPlanning. |
ProjectPlanningRecurring
Usage information for the operation ProjectPlanningRecurring.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ID [KEY] | String | True | The ID column for the table ProjectPlanningRecurring. |
Account | String | False | The Account column for the table ProjectPlanningRecurring. |
AccountCode | String | False | The AccountCode column for the table ProjectPlanningRecurring. |
AccountName | String | False | The AccountName column for the table ProjectPlanningRecurring. |
BGTStatus | Int | False | The BGTStatus column for the table ProjectPlanningRecurring. |
Created | Datetime | False | The Created column for the table ProjectPlanningRecurring. |
Creator | String | False | The Creator column for the table ProjectPlanningRecurring. |
CreatorFullName | String | False | The CreatorFullName column for the table ProjectPlanningRecurring. |
DayOrThe | Int | False | The DayOrThe column for the table ProjectPlanningRecurring. |
Description | String | False | The Description column for the table ProjectPlanningRecurring. |
Division | Int | False | The Division column for the table ProjectPlanningRecurring. |
Employee | String | False | The Employee column for the table ProjectPlanningRecurring. |
EmployeeCode | String | False | The EmployeeCode column for the table ProjectPlanningRecurring. |
EmployeeHID | Int | False | The EmployeeHID column for the table ProjectPlanningRecurring. |
EndDate | Datetime | False | The EndDate column for the table ProjectPlanningRecurring. |
EndDateOrAfter | Int | False | The EndDateOrAfter column for the table ProjectPlanningRecurring. |
EndTime | Datetime | False | The EndTime column for the table ProjectPlanningRecurring. |
Hours | Double | False | The Hours column for the table ProjectPlanningRecurring. |
HourType | String | False | The HourType column for the table ProjectPlanningRecurring. |
HourTypeCode | String | False | The HourTypeCode column for the table ProjectPlanningRecurring. |
HourTypeDescription | String | False | The HourTypeDescription column for the table ProjectPlanningRecurring. |
Modified | Datetime | False | The Modified column for the table ProjectPlanningRecurring. |
Modifier | String | False | The Modifier column for the table ProjectPlanningRecurring. |
ModifierFullName | String | False | The ModifierFullName column for the table ProjectPlanningRecurring. |
MonthPatternDay | Int | False | The MonthPatternDay column for the table ProjectPlanningRecurring. |
MonthPatternOrdinalDay | Int | False | The MonthPatternOrdinalDay column for the table ProjectPlanningRecurring. |
MonthPatternOrdinalWeek | Int | False | The MonthPatternOrdinalWeek column for the table ProjectPlanningRecurring. |
Notes | String | False | The Notes column for the table ProjectPlanningRecurring. |
NumberOfRecurrences | Int | False | The NumberOfRecurrences column for the table ProjectPlanningRecurring. |
OverAllocate | Bool | False | The OverAllocate column for the table ProjectPlanningRecurring. |
PatternFrequency | Int | False | The PatternFrequency column for the table ProjectPlanningRecurring. |
Project | String | False | The Project column for the table ProjectPlanningRecurring. |
ProjectCode | String | False | The ProjectCode column for the table ProjectPlanningRecurring. |
ProjectDescription | String | False | The ProjectDescription column for the table ProjectPlanningRecurring. |
ProjectPlanningRecurringType | Int | False | The ProjectPlanningRecurringType column for the table ProjectPlanningRecurring. |
ProjectWBS | String | False | The ProjectWBS column for the table ProjectPlanningRecurring. |
ProjectWBSDescription | String | False | The ProjectWBSDescription column for the table ProjectPlanningRecurring. |
StartDate | Datetime | False | The StartDate column for the table ProjectPlanningRecurring. |
StartTime | Datetime | False | The StartTime column for the table ProjectPlanningRecurring. |
Status | Int | False | The Status column for the table ProjectPlanningRecurring. |
WeekPatternDay | Int | False | The WeekPatternDay column for the table ProjectPlanningRecurring. |
WeekPatternFriday | Bool | False | The WeekPatternFriday column for the table ProjectPlanningRecurring. |
WeekPatternMonday | Bool | False | The WeekPatternMonday column for the table ProjectPlanningRecurring. |
WeekPatternSaturday | Bool | False | The WeekPatternSaturday column for the table ProjectPlanningRecurring. |
WeekPatternSunday | Bool | False | The WeekPatternSunday column for the table ProjectPlanningRecurring. |
WeekPatternThursday | Bool | False | The WeekPatternThursday column for the table ProjectPlanningRecurring. |
WeekPatternTuesday | Bool | False | The WeekPatternTuesday column for the table ProjectPlanningRecurring. |
WeekPatternWednesday | Bool | False | The WeekPatternWednesday column for the table ProjectPlanningRecurring. |
ProjectRestrictionEmployees
Usage information for the operation ProjectRestrictionEmployees.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ID [KEY] | String | True | The ID column for the table ProjectRestrictionEmployees. |
Created | Datetime | False | The Created column for the table ProjectRestrictionEmployees. |
Creator | String | False | The Creator column for the table ProjectRestrictionEmployees. |
CreatorFullName | String | False | The CreatorFullName column for the table ProjectRestrictionEmployees. |
Division | Int | False | The Division column for the table ProjectRestrictionEmployees. |
Modified | Datetime | False | The Modified column for the table ProjectRestrictionEmployees. |
Modifier | String | False | The Modifier column for the table ProjectRestrictionEmployees. |
ModifierFullName | String | False | The ModifierFullName column for the table ProjectRestrictionEmployees. |
Project | String | False | The Project column for the table ProjectRestrictionEmployees. |
ProjectCode | String | False | The ProjectCode column for the table ProjectRestrictionEmployees. |
ProjectDescription | String | False | The ProjectDescription column for the table ProjectRestrictionEmployees. |
Employee | String | False | The Employee column for the table ProjectRestrictionEmployees. |
EmployeeFullName | String | False | The EmployeeFullName column for the table ProjectRestrictionEmployees. |
EmployeeHID | Int | False | The EmployeeHID column for the table ProjectRestrictionEmployees. |
ProjectRestrictionItems
Usage information for the operation ProjectRestrictionItems.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ID [KEY] | String | True | The ID column for the table ProjectRestrictionItems. |
Created | Datetime | False | The Created column for the table ProjectRestrictionItems. |
Creator | String | False | The Creator column for the table ProjectRestrictionItems. |
CreatorFullName | String | False | The CreatorFullName column for the table ProjectRestrictionItems. |
Division | Int | False | The Division column for the table ProjectRestrictionItems. |
Modified | Datetime | False | The Modified column for the table ProjectRestrictionItems. |
Modifier | String | False | The Modifier column for the table ProjectRestrictionItems. |
ModifierFullName | String | False | The ModifierFullName column for the table ProjectRestrictionItems. |
Project | String | False | The Project column for the table ProjectRestrictionItems. |
ProjectCode | String | False | The ProjectCode column for the table ProjectRestrictionItems. |
ProjectDescription | String | False | The ProjectDescription column for the table ProjectRestrictionItems. |
Item | String | False | The Item column for the table ProjectRestrictionItems. |
ItemCode | String | False | The ItemCode column for the table ProjectRestrictionItems. |
ItemDescription | String | False | The ItemDescription column for the table ProjectRestrictionItems. |
ItemIsTime | Int | False | The ItemIsTime column for the table ProjectRestrictionItems. |
ProjectRestrictionRebillings
Usage information for the operation ProjectRestrictionRebillings.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ID [KEY] | String | True | The ID column for the table ProjectRestrictionRebillings. |
Created | Datetime | False | The Created column for the table ProjectRestrictionRebillings. |
Creator | String | False | The Creator column for the table ProjectRestrictionRebillings. |
CreatorFullName | String | False | The CreatorFullName column for the table ProjectRestrictionRebillings. |
Division | Int | False | The Division column for the table ProjectRestrictionRebillings. |
Modified | Datetime | False | The Modified column for the table ProjectRestrictionRebillings. |
Modifier | String | False | The Modifier column for the table ProjectRestrictionRebillings. |
ModifierFullName | String | False | The ModifierFullName column for the table ProjectRestrictionRebillings. |
Project | String | False | The Project column for the table ProjectRestrictionRebillings. |
ProjectCode | String | False | The ProjectCode column for the table ProjectRestrictionRebillings. |
ProjectDescription | String | False | The ProjectDescription column for the table ProjectRestrictionRebillings. |
CostTypeRebill | String | False | The CostTypeRebill column for the table ProjectRestrictionRebillings. |
CostTypeRebillCode | String | False | The CostTypeRebillCode column for the table ProjectRestrictionRebillings. |
CostTypeRebillDescription | String | False | The CostTypeRebillDescription column for the table ProjectRestrictionRebillings. |
Projects
Usage information for the operation Projects.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ID [KEY] | String | True | The ID column for the table Projects. |
Account | String | False | The Account column for the table Projects. |
AccountCode | String | False | The AccountCode column for the table Projects. |
AccountContact | String | False | The AccountContact column for the table Projects. |
AccountName | String | False | The AccountName column for the table Projects. |
AllowAdditionalInvoicing | Bool | False | The AllowAdditionalInvoicing column for the table Projects. |
BlockEntry | Bool | False | The BlockEntry column for the table Projects. |
BlockRebilling | Bool | False | The BlockRebilling column for the table Projects. |
BudgetedAmount | Double | False | The BudgetedAmount column for the table Projects. |
BudgetedCosts | Double | False | The BudgetedCosts column for the table Projects. |
BudgetedRevenue | Double | False | The BudgetedRevenue column for the table Projects. |
BudgetOverrunHours | Int | False | The BudgetOverrunHours column for the table Projects. |
BudgetType | Int | False | The BudgetType column for the table Projects. |
BudgetTypeDescription | String | False | The BudgetTypeDescription column for the table Projects. |
Classification | String | False | The Classification column for the table Projects. |
ClassificationDescription | String | False | The ClassificationDescription column for the table Projects. |
Code | String | False | The Code column for the table Projects. |
CostsAmountFC | Double | False | The CostsAmountFC column for the table Projects. |
Created | Datetime | False | The Created column for the table Projects. |
Creator | String | False | The Creator column for the table Projects. |
CreatorFullName | String | False | The CreatorFullName column for the table Projects. |
CustomerPOnumber | String | False | The CustomerPOnumber column for the table Projects. |
Description | String | False | The Description column for the table Projects. |
Division | Int | False | The Division column for the table Projects. |
DivisionName | String | False | The DivisionName column for the table Projects. |
EndDate | Datetime | False | The EndDate column for the table Projects. |
FixedPriceItem | String | False | The FixedPriceItem column for the table Projects. |
FixedPriceItemDescription | String | False | The FixedPriceItemDescription column for the table Projects. |
InternalNotes | String | False | The InternalNotes column for the table Projects. |
InvoiceAsQuoted | Bool | False | The InvoiceAsQuoted column for the table Projects. |
Manager | String | False | The Manager column for the table Projects. |
ManagerFullname | String | False | The ManagerFullname column for the table Projects. |
MarkupPercentage | Double | False | The MarkupPercentage column for the table Projects. |
Modified | Datetime | False | The Modified column for the table Projects. |
Modifier | String | False | The Modifier column for the table Projects. |
ModifierFullName | String | False | The ModifierFullName column for the table Projects. |
Notes | String | False | The Notes column for the table Projects. |
PrepaidItem | String | False | The PrepaidItem column for the table Projects. |
PrepaidItemDescription | String | False | The PrepaidItemDescription column for the table Projects. |
PrepaidType | Int | False | The PrepaidType column for the table Projects. |
PrepaidTypeDescription | String | False | The PrepaidTypeDescription column for the table Projects. |
SalesTimeQuantity | Double | False | The SalesTimeQuantity column for the table Projects. |
SourceQuotation | String | False | The SourceQuotation column for the table Projects. |
StartDate | Datetime | False | The StartDate column for the table Projects. |
TimeQuantityToAlert | Double | False | The TimeQuantityToAlert column for the table Projects. |
Type | Int | False | The Type column for the table Projects. |
TypeDescription | String | False | The TypeDescription column for the table Projects. |
UseBillingMilestones | Bool | False | The UseBillingMilestones column for the table Projects. |
LinkedBudgetedHoursPerHourType | String | False | The LinkedBudgetedHoursPerHourType column for the table Projects. |
LinkedInvoiceTerms | String | False | The LinkedInvoiceTerms column for the table Projects. |
LinkedProjectRestrictionEmployees | String | False | The LinkedProjectRestrictionEmployees column for the table Projects. |
LinkedProjectRestrictionItems | String | False | The LinkedProjectRestrictionItems column for the table Projects. |
LinkedProjectRestrictionRebillings | String | False | The LinkedProjectRestrictionRebillings column for the table Projects. |
ProjectTimeTransactions
Usage information for the operation ProjectTimeTransactions.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ID [KEY] | String | True | The ID column for the table TimeTransactions. |
Account | String | False | The Account column for the table TimeTransactions. |
AccountName | String | False | The AccountName column for the table TimeTransactions. |
Activity | String | False | The Activity column for the table TimeTransactions. |
ActivityDescription | String | False | The ActivityDescription column for the table TimeTransactions. |
Amount | Double | False | The Amount column for the table TimeTransactions. |
AmountFC | Double | False | The AmountFC column for the table TimeTransactions. |
Attachment | String | False | The Attachment column for the table TimeTransactions. |
Created | Datetime | False | The Created column for the table TimeTransactions. |
Creator | String | False | The Creator column for the table TimeTransactions. |
CreatorFullName | String | False | The CreatorFullName column for the table TimeTransactions. |
Currency | String | False | The Currency column for the table TimeTransactions. |
Date | Datetime | False | The Date column for the table TimeTransactions. |
Division | Int | False | The Division column for the table TimeTransactions. |
DivisionDescription | String | False | The DivisionDescription column for the table TimeTransactions. |
Employee | String | False | The Employee column for the table TimeTransactions. |
EndTime | Datetime | False | The EndTime column for the table TimeTransactions. |
EntryNumber | Int | False | The EntryNumber column for the table TimeTransactions. |
ErrorText | String | False | The ErrorText column for the table TimeTransactions. |
HourStatus | Int | False | The HourStatus column for the table TimeTransactions. |
Item | String | False | The Item column for the table TimeTransactions. |
ItemDescription | String | False | The ItemDescription column for the table TimeTransactions. |
ItemDivisable | Bool | False | The ItemDivisable column for the table TimeTransactions. |
Modified | Datetime | False | The Modified column for the table TimeTransactions. |
Modifier | String | False | The Modifier column for the table TimeTransactions. |
ModifierFullName | String | False | The ModifierFullName column for the table TimeTransactions. |
Notes | String | False | The Notes column for the table TimeTransactions. |
Price | Double | False | The Price column for the table TimeTransactions. |
PriceFC | Double | False | The PriceFC column for the table TimeTransactions. |
Project | String | False | The Project column for the table TimeTransactions. |
ProjectAccount | String | False | The ProjectAccount column for the table TimeTransactions. |
ProjectAccountCode | String | False | The ProjectAccountCode column for the table TimeTransactions. |
ProjectAccountName | String | False | The ProjectAccountName column for the table TimeTransactions. |
ProjectCode | String | False | The ProjectCode column for the table TimeTransactions. |
ProjectDescription | String | False | The ProjectDescription column for the table TimeTransactions. |
Quantity | Double | False | The Quantity column for the table TimeTransactions. |
SkipValidation | Bool | False | The SkipValidation column for the table TimeTransactions. |
StartTime | Datetime | False | The StartTime column for the table TimeTransactions. |
Subscription | String | False | The Subscription column for the table TimeTransactions. |
SubscriptionAccount | String | False | The SubscriptionAccount column for the table TimeTransactions. |
SubscriptionAccountCode | String | False | The SubscriptionAccountCode column for the table TimeTransactions. |
SubscriptionAccountName | String | False | The SubscriptionAccountName column for the table TimeTransactions. |
SubscriptionDescription | String | False | The SubscriptionDescription column for the table TimeTransactions. |
SubscriptionNumber | Int | False | The SubscriptionNumber column for the table TimeTransactions. |
Type | Int | False | The Type column for the table TimeTransactions. |
PurchaseEntries
Usage information for the operation PurchaseEntries.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
EntryID [KEY] | String | True | The EntryID column for the table PurchaseEntries. |
AmountDC | Double | False | The AmountDC column for the table PurchaseEntries. |
AmountFC | Double | False | The AmountFC column for the table PurchaseEntries. |
BatchNumber | Int | False | The BatchNumber column for the table PurchaseEntries. |
Created | Datetime | False | The Created column for the table PurchaseEntries. |
Creator | String | False | The Creator column for the table PurchaseEntries. |
CreatorFullName | String | False | The CreatorFullName column for the table PurchaseEntries. |
Currency | String | False | The Currency column for the table PurchaseEntries. |
Description | String | False | The Description column for the table PurchaseEntries. |
Division | Int | False | The Division column for the table PurchaseEntries. |
Document | String | False | The Document column for the table PurchaseEntries. |
DocumentNumber | Int | False | The DocumentNumber column for the table PurchaseEntries. |
DocumentSubject | String | False | The DocumentSubject column for the table PurchaseEntries. |
DueDate | Datetime | False | The DueDate column for the table PurchaseEntries. |
EntryDate | Datetime | False | The EntryDate column for the table PurchaseEntries. |
EntryNumber | Int | False | The EntryNumber column for the table PurchaseEntries. |
ExternalLinkDescription | String | False | The ExternalLinkDescription column for the table PurchaseEntries. |
ExternalLinkReference | String | False | The ExternalLinkReference column for the table PurchaseEntries. |
GAccountAmountFC | Double | False | The GAccountAmountFC column for the table PurchaseEntries. |
InvoiceNumber | Int | False | The InvoiceNumber column for the table PurchaseEntries. |
Journal | String | False | The Journal column for the table PurchaseEntries. |
JournalDescription | String | False | The JournalDescription column for the table PurchaseEntries. |
Modified | Datetime | False | The Modified column for the table PurchaseEntries. |
Modifier | String | False | The Modifier column for the table PurchaseEntries. |
ModifierFullName | String | False | The ModifierFullName column for the table PurchaseEntries. |
OrderNumber | Int | False | The OrderNumber column for the table PurchaseEntries. |
PaymentCondition | String | False | The PaymentCondition column for the table PurchaseEntries. |
PaymentConditionDescription | String | False | The PaymentConditionDescription column for the table PurchaseEntries. |
PaymentReference | String | False | The PaymentReference column for the table PurchaseEntries. |
ProcessNumber | Int | False | The ProcessNumber column for the table PurchaseEntries. |
Rate | Double | False | The Rate column for the table PurchaseEntries. |
ReportingPeriod | Int | False | The ReportingPeriod column for the table PurchaseEntries. |
ReportingYear | Int | False | The ReportingYear column for the table PurchaseEntries. |
Reversal | Bool | False | The Reversal column for the table PurchaseEntries. |
Status | Int | False | The Status column for the table PurchaseEntries. |
StatusDescription | String | False | The StatusDescription column for the table PurchaseEntries. |
Supplier | String | False | The Supplier column for the table PurchaseEntries. |
SupplierName | String | False | The SupplierName column for the table PurchaseEntries. |
Type | Int | False | The Type column for the table PurchaseEntries. |
TypeDescription | String | False | The TypeDescription column for the table PurchaseEntries. |
VATAmountDC | Double | False | The VATAmountDC column for the table PurchaseEntries. |
VATAmountFC | Double | False | The VATAmountFC column for the table PurchaseEntries. |
YourRef | String | False | The YourRef column for the table PurchaseEntries. |
LinkedPurchaseEntryLines | String | False | The LinkedPurchaseEntryLines column for the table PurchaseEntries. |
PurchaseEntryLines
Usage information for the operation PurchaseEntryLines.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ID [KEY] | String | True | The ID column for the table PurchaseEntryLines. |
AmountDC | Double | False | The AmountDC column for the table PurchaseEntryLines. |
AmountFC | Double | False | The AmountFC column for the table PurchaseEntryLines. |
Asset | String | False | The Asset column for the table PurchaseEntryLines. |
AssetDescription | String | False | The AssetDescription column for the table PurchaseEntryLines. |
CostCenter | String | False | The CostCenter column for the table PurchaseEntryLines. |
CostCenterDescription | String | False | The CostCenterDescription column for the table PurchaseEntryLines. |
CostUnit | String | False | The CostUnit column for the table PurchaseEntryLines. |
CostUnitDescription | String | False | The CostUnitDescription column for the table PurchaseEntryLines. |
Description | String | False | The Description column for the table PurchaseEntryLines. |
Division | Int | False | The Division column for the table PurchaseEntryLines. |
EntryID | String | False | The EntryID column for the table PurchaseEntryLines. |
From | Datetime | False | The From column for the table PurchaseEntryLines. |
GLAccount | String | False | The GLAccount column for the table PurchaseEntryLines. |
GLAccountCode | String | False | The GLAccountCode column for the table PurchaseEntryLines. |
GLAccountDescription | String | False | The GLAccountDescription column for the table PurchaseEntryLines. |
IntraStatArea | String | False | The IntraStatArea column for the table PurchaseEntryLines. |
IntraStatCountry | String | False | The IntraStatCountry column for the table PurchaseEntryLines. |
IntraStatDeliveryTerm | String | False | The IntraStatDeliveryTerm column for the table PurchaseEntryLines. |
IntraStatTransactionA | String | False | The IntraStatTransactionA column for the table PurchaseEntryLines. |
IntraStatTransportMethod | String | False | The IntraStatTransportMethod column for the table PurchaseEntryLines. |
LineNumber | Int | False | The LineNumber column for the table PurchaseEntryLines. |
Notes | String | False | The Notes column for the table PurchaseEntryLines. |
PrivateUsePercentage | Double | False | The PrivateUsePercentage column for the table PurchaseEntryLines. |
Project | String | False | The Project column for the table PurchaseEntryLines. |
ProjectDescription | String | False | The ProjectDescription column for the table PurchaseEntryLines. |
Quantity | Double | False | The Quantity column for the table PurchaseEntryLines. |
SerialNumber | String | False | The SerialNumber column for the table PurchaseEntryLines. |
StatisticalNetWeight | Double | False | The StatisticalNetWeight column for the table PurchaseEntryLines. |
StatisticalNumber | String | False | The StatisticalNumber column for the table PurchaseEntryLines. |
StatisticalQuantity | Double | False | The StatisticalQuantity column for the table PurchaseEntryLines. |
StatisticalValue | Double | False | The StatisticalValue column for the table PurchaseEntryLines. |
Subscription | String | False | The Subscription column for the table PurchaseEntryLines. |
SubscriptionDescription | String | False | The SubscriptionDescription column for the table PurchaseEntryLines. |
To | Datetime | False | The To column for the table PurchaseEntryLines. |
TrackingNumber | String | False | The TrackingNumber column for the table PurchaseEntryLines. |
TrackingNumberDescription | String | False | The TrackingNumberDescription column for the table PurchaseEntryLines. |
Type | Int | False | The Type column for the table PurchaseEntryLines. |
VATAmountDC | Double | False | The VATAmountDC column for the table PurchaseEntryLines. |
VATAmountFC | Double | False | The VATAmountFC column for the table PurchaseEntryLines. |
VATBaseAmountDC | Double | False | The VATBaseAmountDC column for the table PurchaseEntryLines. |
VATBaseAmountFC | Double | False | The VATBaseAmountFC column for the table PurchaseEntryLines. |
VATCode | String | False | The VATCode column for the table PurchaseEntryLines. |
VATCodeDescription | String | False | The VATCodeDescription column for the table PurchaseEntryLines. |
VATNonDeductiblePercentage | Double | False | The VATNonDeductiblePercentage column for the table PurchaseEntryLines. |
VATPercentage | Double | False | The VATPercentage column for the table PurchaseEntryLines. |
WithholdingAmountDC | Double | False | The WithholdingAmountDC column for the table PurchaseEntryLines. |
WithholdingTax | String | False | The WithholdingTax column for the table PurchaseEntryLines. |
PurchaseInvoiceLines
Usage information for the operation PurchaseInvoiceLines.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ID [KEY] | String | True | The ID column for the table PurchaseInvoiceLines. |
Amount | Double | False | The Amount column for the table PurchaseInvoiceLines. |
CostCenter | String | False | The CostCenter column for the table PurchaseInvoiceLines. |
CostUnit | String | False | The CostUnit column for the table PurchaseInvoiceLines. |
Currency | String | False | The Currency column for the table PurchaseInvoiceLines. |
Description | String | False | The Description column for the table PurchaseInvoiceLines. |
Discount | Double | False | The Discount column for the table PurchaseInvoiceLines. |
Expense | String | False | The Expense column for the table PurchaseInvoiceLines. |
ExpenseDescription | String | False | The ExpenseDescription column for the table PurchaseInvoiceLines. |
InvoiceID | String | False | The InvoiceID column for the table PurchaseInvoiceLines. |
InvoiceType | Int | False | The InvoiceType column for the table PurchaseInvoiceLines. |
Item | String | False | The Item column for the table PurchaseInvoiceLines. |
ItemUnit | String | False | The ItemUnit column for the table PurchaseInvoiceLines. |
LineNumber | Int | False | The LineNumber column for the table PurchaseInvoiceLines. |
Modified | Datetime | False | The Modified column for the table PurchaseInvoiceLines. |
NetPrice | Double | False | The NetPrice column for the table PurchaseInvoiceLines. |
Notes | String | False | The Notes column for the table PurchaseInvoiceLines. |
Project | String | False | The Project column for the table PurchaseInvoiceLines. |
PurchaseOrderLine | String | False | The PurchaseOrderLine column for the table PurchaseInvoiceLines. |
Quantity | Double | False | The Quantity column for the table PurchaseInvoiceLines. |
QuantityInDefaultUnits | Double | False | The QuantityInDefaultUnits column for the table PurchaseInvoiceLines. |
Rebill | Bool | False | The Rebill column for the table PurchaseInvoiceLines. |
Unit | String | False | The Unit column for the table PurchaseInvoiceLines. |
UnitPrice | Double | False | The UnitPrice column for the table PurchaseInvoiceLines. |
VATAmount | Double | False | The VATAmount column for the table PurchaseInvoiceLines. |
VATCode | String | False | The VATCode column for the table PurchaseInvoiceLines. |
VATPercentage | Double | False | The VATPercentage column for the table PurchaseInvoiceLines. |
PurchaseInvoices
Usage information for the operation PurchaseInvoices.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ID [KEY] | String | True | The ID column for the table PurchaseInvoices. |
Amount | Double | False | The Amount column for the table PurchaseInvoices. |
ContactPerson | String | False | The ContactPerson column for the table PurchaseInvoices. |
Currency | String | False | The Currency column for the table PurchaseInvoices. |
Description | String | False | The Description column for the table PurchaseInvoices. |
Document | String | False | The Document column for the table PurchaseInvoices. |
DueDate | Datetime | False | The DueDate column for the table PurchaseInvoices. |
EntryNumber | Int | False | The EntryNumber column for the table PurchaseInvoices. |
ExchangeRate | Double | False | The ExchangeRate column for the table PurchaseInvoices. |
FinancialPeriod | Int | False | The FinancialPeriod column for the table PurchaseInvoices. |
FinancialYear | Int | False | The FinancialYear column for the table PurchaseInvoices. |
InvoiceDate | Datetime | False | The InvoiceDate column for the table PurchaseInvoices. |
Journal | String | False | The Journal column for the table PurchaseInvoices. |
Modified | Datetime | False | The Modified column for the table PurchaseInvoices. |
PaymentCondition | String | False | The PaymentCondition column for the table PurchaseInvoices. |
PaymentReference | String | False | The PaymentReference column for the table PurchaseInvoices. |
Remarks | String | False | The Remarks column for the table PurchaseInvoices. |
Source | Int | False | The Source column for the table PurchaseInvoices. |
Status | Int | False | The Status column for the table PurchaseInvoices. |
Supplier | String | False | The Supplier column for the table PurchaseInvoices. |
Type | Int | False | The Type column for the table PurchaseInvoices. |
VATAmount | Double | False | The VATAmount column for the table PurchaseInvoices. |
Warehouse | String | False | The Warehouse column for the table PurchaseInvoices. |
YourRef | String | False | The YourRef column for the table PurchaseInvoices. |
LinkedPurchaseInvoiceLines | String | False | The LinkedPurchaseInvoiceLines column for the table PurchaseInvoices. |
PurchaseReturnLines
Use this endpoint to create a new purchase return line, retrieve an existing purchase return line and update an existing purchase return line
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ID [KEY] | String | True | ID of PurchaseReturnLines |
CreateCredit | Bool | False | Credit NOte |
Created | Datetime | False | Creation Date |
Creator | String | False | User ID of the creator |
CreatorFullName | String | False | Name of the creator |
Division | Int | False | Division Code |
EntryID | String | False | EntryID identifies the purchase return. |
Expense | String | False | Expense related to the Work Breakdown Structure of the selected project. |
ExpenseDescription | String | False | Description of expense. |
GoodsReceiptLineID | String | False | ID of the goods receipts line |
Item | String | False | The unique identifier of the item being returned |
ItemCode | String | False | Code of the returned item |
ItemDescription | String | False | Item Description |
LineNumber | Int | False | LineNumber |
Location | String | False | ID of the storage location in the warehouse where the item is returned |
LocationCode | String | False | Code of the storage location in the warehouse where the item is returned |
LocationDescription | String | False | Description of the storage location in the warehouse where the item is returned |
Modified | Datetime | False | Last modified date |
Modifier | String | False | User ID of the last modifier |
ModifierFullName | String | False | Name of the last modifier |
Notes | String | False | Notes related to the return |
Project | String | False | Reference to project. |
ProjectCode | String | False | Project Code |
ProjectDescription | String | False | Description of the project. |
PurchaseOrderLineID | String | False | ID of the purchase order line that is returned |
PurchaseOrderNumber | Int | False | Order number of the purchase order that is returned |
Rebill | Bool | False | Indicates whether the purchase order line needs to be rebilled. |
ReceiptNumber | Int | False | Receipt number of the return |
ReceivedQuantity | Double | False | Quantity received |
ReturnQuantity | Double | False | Quantity returned |
ReturnReasonCodeDescription | String | False | Description of ReasonCode |
ReturnReasonCodeID | String | False | Indicates the reason why the purchase was returned |
SupplierItemCode | String | False | Supplier item code |
UnitCode | String | False | Unit code of the purchase |
QuotationLines
Usage information for the operation QuotationLines.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ID [KEY] | String | True | The ID column for the table QuotationLines. |
AmountDC | Double | False | The AmountDC column for the table QuotationLines. |
AmountFC | Double | False | The AmountFC column for the table QuotationLines. |
Description | String | False | The Description column for the table QuotationLines. |
Discount | Double | False | The Discount column for the table QuotationLines. |
Division | Int | False | The Division column for the table QuotationLines. |
Item | String | False | The Item column for the table QuotationLines. |
ItemDescription | String | False | The ItemDescription column for the table QuotationLines. |
LineNumber | Int | False | The LineNumber column for the table QuotationLines. |
NetPrice | Double | False | The NetPrice column for the table QuotationLines. |
Notes | String | False | The Notes column for the table QuotationLines. |
Quantity | Double | False | The Quantity column for the table QuotationLines. |
QuotationID | String | False | The QuotationID column for the table QuotationLines. |
QuotationNumber | Int | False | The QuotationNumber column for the table QuotationLines. |
UnitCode | String | False | The UnitCode column for the table QuotationLines. |
UnitDescription | String | False | The UnitDescription column for the table QuotationLines. |
UnitPrice | Double | False | The UnitPrice column for the table QuotationLines. |
VATAmountFC | Double | False | The VATAmountFC column for the table QuotationLines. |
VATCode | String | False | The VATCode column for the table QuotationLines. |
VATDescription | String | False | The VATDescription column for the table QuotationLines. |
VATPercentage | Double | False | The VATPercentage column for the table QuotationLines. |
VersionNumber | Int | False | The VersionNumber column for the table QuotationLines. |
QuotationOrderChargeLines
Use this endpoint to create, read, update and delete quotation's order charge lines.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ID [KEY] | String | True | Line ID of shipping method or order charges |
AmountDC | Double | False | Amount excluded VAT in reporting currency for shipping cost or order charges |
AmountFCExclVAT | Double | False | Amount excluded VAT in trading currency for shipping cost or order charges |
AmountFCInclVAT | Double | False | Amount included VAT in trading currency for shipping cost or order charges |
AmountVATFC | Double | False | VAT amount in trading currency for shipping cost or order charges |
Division | Int | False | Division code |
IsShippingCost | Bool | False | Indicates whether the order charge line is shipping cost |
LineNumber | Int | False | Line number of shipping cost and order charges |
OrderCharge | String | False | ID of order charges is mandatory for order charge. |
OrderChargeCode | String | False | Code of shipping method or order charges |
OrderChargeDescription | String | False | Description from shipping method or order charges master |
OrderChargesLineDescription | String | False | Line description of shipping cost or order charges (only available in WD Premium packages) |
QuotationID | String | False | The OrderID identifies the quotation. All the lines of aquotation have the same QuotationID |
VATCode | String | False | VAT code that is used for shipping cost or order charges |
VATDescription | String | False | VAT description for shipping cost or order charges |
VATPercentage | Double | False | The vat percentage of the VAT code |
Quotations
Usage information for the operation Quotations.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
QuotationID [KEY] | String | True | The QuotationID column for the table Quotations. |
AmountDC | Double | False | The AmountDC column for the table Quotations. |
AmountFC | Double | False | The AmountFC column for the table Quotations. |
CloseDate | Datetime | False | The CloseDate column for the table Quotations. |
ClosingDate | Datetime | False | The ClosingDate column for the table Quotations. |
Created | Datetime | False | The Created column for the table Quotations. |
Creator | String | False | The Creator column for the table Quotations. |
CreatorFullName | String | False | The CreatorFullName column for the table Quotations. |
Currency | String | False | The Currency column for the table Quotations. |
DeliveryAccount | String | False | The DeliveryAccount column for the table Quotations. |
DeliveryAccountCode | String | False | The DeliveryAccountCode column for the table Quotations. |
DeliveryAccountContact | String | False | The DeliveryAccountContact column for the table Quotations. |
DeliveryAccountContactFullName | String | False | The DeliveryAccountContactFullName column for the table Quotations. |
DeliveryAccountName | String | False | The DeliveryAccountName column for the table Quotations. |
DeliveryAddress | String | False | The DeliveryAddress column for the table Quotations. |
Description | String | False | The Description column for the table Quotations. |
Division | Int | False | The Division column for the table Quotations. |
Document | String | False | The Document column for the table Quotations. |
DocumentSubject | String | False | The DocumentSubject column for the table Quotations. |
DueDate | Datetime | False | The DueDate column for the table Quotations. |
InvoiceAccount | String | False | The InvoiceAccount column for the table Quotations. |
InvoiceAccountCode | String | False | The InvoiceAccountCode column for the table Quotations. |
InvoiceAccountContact | String | False | The InvoiceAccountContact column for the table Quotations. |
InvoiceAccountContactFullName | String | False | The InvoiceAccountContactFullName column for the table Quotations. |
InvoiceAccountName | String | False | The InvoiceAccountName column for the table Quotations. |
Modified | Datetime | False | The Modified column for the table Quotations. |
Modifier | String | False | The Modifier column for the table Quotations. |
ModifierFullName | String | False | The ModifierFullName column for the table Quotations. |
Opportunity | String | False | The Opportunity column for the table Quotations. |
OpportunityName | String | False | The OpportunityName column for the table Quotations. |
OrderAccount | String | False | The OrderAccount column for the table Quotations. |
OrderAccountCode | String | False | The OrderAccountCode column for the table Quotations. |
OrderAccountContact | String | False | The OrderAccountContact column for the table Quotations. |
OrderAccountContactFullName | String | False | The OrderAccountContactFullName column for the table Quotations. |
OrderAccountName | String | False | The OrderAccountName column for the table Quotations. |
Project | String | False | The Project column for the table Quotations. |
ProjectCode | String | False | The ProjectCode column for the table Quotations. |
ProjectDescription | String | False | The ProjectDescription column for the table Quotations. |
QuotationDate | Datetime | False | The QuotationDate column for the table Quotations. |
QuotationNumber | Int | False | The QuotationNumber column for the table Quotations. |
Remarks | String | False | The Remarks column for the table Quotations. |
SalesPerson | String | False | The SalesPerson column for the table Quotations. |
SalesPersonFullName | String | False | The SalesPersonFullName column for the table Quotations. |
Status | Int | False | The Status column for the table Quotations. |
StatusDescription | String | False | The StatusDescription column for the table Quotations. |
VATAmountFC | Double | False | The VATAmountFC column for the table Quotations. |
VersionNumber | Int | False | The VersionNumber column for the table Quotations. |
YourRef | String | False | The YourRef column for the table Quotations. |
LinkedQuotationLines | String | False | The LinkedQuotationLines column for the table Quotations. |
RejectQuotation
Usage information for the operation RejectQuotation.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
QuotationID [KEY] | String | True | The QuotationID column for the table RejectQuotation. |
Division | Int | False | The Division column for the table RejectQuotation. |
ErrorMessage | String | False | The ErrorMessage column for the table RejectQuotation. |
ReasonCode | String | False | The ReasonCode column for the table RejectQuotation. |
SuccessMessage | String | False | The SuccessMessage column for the table RejectQuotation. |
ReopenQuotation
Usage information for the operation ReopenQuotation.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
QuotationID [KEY] | String | True | The QuotationID column for the table ReopenQuotation. |
Division | Int | False | The Division column for the table ReopenQuotation. |
ErrorMessage | String | False | The ErrorMessage column for the table ReopenQuotation. |
SuccessMessage | String | False | The SuccessMessage column for the table ReopenQuotation. |
ReviewQuotation
Usage information for the operation ReviewQuotation.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
QuotationID [KEY] | String | True | The QuotationID column for the table ReviewQuotation. |
CopyItemPrices | Bool | False | The CopyItemPrices column for the table ReviewQuotation. |
Description | String | False | The Description column for the table ReviewQuotation. |
Division | Int | False | The Division column for the table ReviewQuotation. |
Document | String | False | The Document column for the table ReviewQuotation. |
ErrorMessage | String | False | The ErrorMessage column for the table ReviewQuotation. |
NewQuotationID | String | False | The NewQuotationID column for the table ReviewQuotation. |
OrderAccount | String | False | The OrderAccount column for the table ReviewQuotation. |
OrderAccountContact | String | False | The OrderAccountContact column for the table ReviewQuotation. |
PaymentCondition | String | False | The PaymentCondition column for the table ReviewQuotation. |
QuotationDate | Datetime | False | The QuotationDate column for the table ReviewQuotation. |
SuccessMessage | String | False | The SuccessMessage column for the table ReviewQuotation. |
SalesEntries
Usage information for the operation SalesEntries.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
EntryID [KEY] | String | True | The EntryID column for the table SalesEntries. |
AmountDC | Double | False | The AmountDC column for the table SalesEntries. |
AmountFC | Double | False | The AmountFC column for the table SalesEntries. |
BatchNumber | Int | False | The BatchNumber column for the table SalesEntries. |
Created | Datetime | False | The Created column for the table SalesEntries. |
Creator | String | False | The Creator column for the table SalesEntries. |
CreatorFullName | String | False | The CreatorFullName column for the table SalesEntries. |
Currency | String | False | The Currency column for the table SalesEntries. |
Customer | String | False | The Customer column for the table SalesEntries. |
CustomerName | String | False | The CustomerName column for the table SalesEntries. |
Description | String | False | The Description column for the table SalesEntries. |
Division | Int | False | The Division column for the table SalesEntries. |
Document | String | False | The Document column for the table SalesEntries. |
DocumentNumber | Int | False | The DocumentNumber column for the table SalesEntries. |
DocumentSubject | String | False | The DocumentSubject column for the table SalesEntries. |
DueDate | Datetime | False | The DueDate column for the table SalesEntries. |
EntryDate | Datetime | False | The EntryDate column for the table SalesEntries. |
EntryNumber | Int | False | The EntryNumber column for the table SalesEntries. |
ExternalLinkDescription | String | False | The ExternalLinkDescription column for the table SalesEntries. |
ExternalLinkReference | String | False | The ExternalLinkReference column for the table SalesEntries. |
GAccountAmountFC | Double | False | The GAccountAmountFC column for the table SalesEntries. |
InvoiceNumber | Int | False | The InvoiceNumber column for the table SalesEntries. |
IsExtraDuty | Bool | False | The IsExtraDuty column for the table SalesEntries. |
Journal | String | False | The Journal column for the table SalesEntries. |
JournalDescription | String | False | The JournalDescription column for the table SalesEntries. |
Modified | Datetime | False | The Modified column for the table SalesEntries. |
Modifier | String | False | The Modifier column for the table SalesEntries. |
ModifierFullName | String | False | The ModifierFullName column for the table SalesEntries. |
OrderNumber | Int | False | The OrderNumber column for the table SalesEntries. |
PaymentCondition | String | False | The PaymentCondition column for the table SalesEntries. |
PaymentConditionDescription | String | False | The PaymentConditionDescription column for the table SalesEntries. |
PaymentReference | String | False | The PaymentReference column for the table SalesEntries. |
ProcessNumber | Int | False | The ProcessNumber column for the table SalesEntries. |
Rate | Double | False | The Rate column for the table SalesEntries. |
ReportingPeriod | Int | False | The ReportingPeriod column for the table SalesEntries. |
ReportingYear | Int | False | The ReportingYear column for the table SalesEntries. |
Reversal | Bool | False | The Reversal column for the table SalesEntries. |
Status | Int | False | The Status column for the table SalesEntries. |
StatusDescription | String | False | The StatusDescription column for the table SalesEntries. |
Type | Int | False | The Type column for the table SalesEntries. |
TypeDescription | String | False | The TypeDescription column for the table SalesEntries. |
VATAmountDC | Double | False | The VATAmountDC column for the table SalesEntries. |
VATAmountFC | Double | False | The VATAmountFC column for the table SalesEntries. |
WithholdingTaxAmountDC | Double | False | The WithholdingTaxAmountDC column for the table SalesEntries. |
WithholdingTaxBaseAmount | Double | False | The WithholdingTaxBaseAmount column for the table SalesEntries. |
WithholdingTaxPercentage | Double | False | The WithholdingTaxPercentage column for the table SalesEntries. |
YourRef | String | False | The YourRef column for the table SalesEntries. |
LinkedSalesEntryLines | String | False | The LinkedSalesEntryLines column for the table SalesEntries. |
SalesEntryLines
Usage information for the operation SalesEntryLines.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ID [KEY] | String | True | The ID column for the table SalesEntryLines. |
AmountDC | Double | False | The AmountDC column for the table SalesEntryLines. |
AmountFC | Double | False | The AmountFC column for the table SalesEntryLines. |
Asset | String | False | The Asset column for the table SalesEntryLines. |
AssetDescription | String | False | The AssetDescription column for the table SalesEntryLines. |
CostCenter | String | False | The CostCenter column for the table SalesEntryLines. |
CostCenterDescription | String | False | The CostCenterDescription column for the table SalesEntryLines. |
CostUnit | String | False | The CostUnit column for the table SalesEntryLines. |
CostUnitDescription | String | False | The CostUnitDescription column for the table SalesEntryLines. |
Description | String | False | The Description column for the table SalesEntryLines. |
Division | Int | False | The Division column for the table SalesEntryLines. |
EntryID | String | False | The EntryID column for the table SalesEntryLines. |
ExtraDutyAmountFC | Double | False | The ExtraDutyAmountFC column for the table SalesEntryLines. |
ExtraDutyPercentage | Double | False | The ExtraDutyPercentage column for the table SalesEntryLines. |
From | Datetime | False | The From column for the table SalesEntryLines. |
GLAccount | String | False | The GLAccount column for the table SalesEntryLines. |
GLAccountCode | String | False | The GLAccountCode column for the table SalesEntryLines. |
GLAccountDescription | String | False | The GLAccountDescription column for the table SalesEntryLines. |
IntraStatArea | String | False | The IntraStatArea column for the table SalesEntryLines. |
IntraStatCountry | String | False | The IntraStatCountry column for the table SalesEntryLines. |
IntraStatDeliveryTerm | String | False | The IntraStatDeliveryTerm column for the table SalesEntryLines. |
IntraStatTransactionA | String | False | The IntraStatTransactionA column for the table SalesEntryLines. |
IntraStatTransportMethod | String | False | The IntraStatTransportMethod column for the table SalesEntryLines. |
LineNumber | Int | False | The LineNumber column for the table SalesEntryLines. |
Notes | String | False | The Notes column for the table SalesEntryLines. |
Project | String | False | The Project column for the table SalesEntryLines. |
ProjectDescription | String | False | The ProjectDescription column for the table SalesEntryLines. |
Quantity | Double | False | The Quantity column for the table SalesEntryLines. |
SerialNumber | String | False | The SerialNumber column for the table SalesEntryLines. |
StatisticalNetWeight | Double | False | The StatisticalNetWeight column for the table SalesEntryLines. |
StatisticalNumber | String | False | The StatisticalNumber column for the table SalesEntryLines. |
StatisticalQuantity | Double | False | The StatisticalQuantity column for the table SalesEntryLines. |
StatisticalValue | Double | False | The StatisticalValue column for the table SalesEntryLines. |
Subscription | String | False | The Subscription column for the table SalesEntryLines. |
SubscriptionDescription | String | False | The SubscriptionDescription column for the table SalesEntryLines. |
TaxSchedule | String | False | The TaxSchedule column for the table SalesEntryLines. |
To | Datetime | False | The To column for the table SalesEntryLines. |
TrackingNumber | String | False | The TrackingNumber column for the table SalesEntryLines. |
TrackingNumberDescription | String | False | The TrackingNumberDescription column for the table SalesEntryLines. |
Type | Int | False | The Type column for the table SalesEntryLines. |
VATAmountDC | Double | False | The VATAmountDC column for the table SalesEntryLines. |
VATAmountFC | Double | False | The VATAmountFC column for the table SalesEntryLines. |
VATBaseAmountDC | Double | False | The VATBaseAmountDC column for the table SalesEntryLines. |
VATBaseAmountFC | Double | False | The VATBaseAmountFC column for the table SalesEntryLines. |
VATCode | String | False | The VATCode column for the table SalesEntryLines. |
VATCodeDescription | String | False | The VATCodeDescription column for the table SalesEntryLines. |
VATPercentage | Double | False | The VATPercentage column for the table SalesEntryLines. |
SalesInvoiceLines
Usage information for the operation SalesInvoiceLines.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ID [KEY] | String | True | The ID column for the table SalesInvoiceLines. |
AmountDC | Double | False | The AmountDC column for the table SalesInvoiceLines. |
AmountFC | Double | False | The AmountFC column for the table SalesInvoiceLines. |
CostCenter | String | False | The CostCenter column for the table SalesInvoiceLines. |
CostCenterDescription | String | False | The CostCenterDescription column for the table SalesInvoiceLines. |
CostUnit | String | False | The CostUnit column for the table SalesInvoiceLines. |
CostUnitDescription | String | False | The CostUnitDescription column for the table SalesInvoiceLines. |
DeliveryDate | Datetime | False | The DeliveryDate column for the table SalesInvoiceLines. |
Description | String | False | The Description column for the table SalesInvoiceLines. |
Discount | Double | False | The Discount column for the table SalesInvoiceLines. |
Division | Int | False | The Division column for the table SalesInvoiceLines. |
Employee | String | False | The Employee column for the table SalesInvoiceLines. |
EmployeeFullName | String | False | The EmployeeFullName column for the table SalesInvoiceLines. |
EndTime | Datetime | False | The EndTime column for the table SalesInvoiceLines. |
ExtraDutyAmountFC | Double | False | The ExtraDutyAmountFC column for the table SalesInvoiceLines. |
ExtraDutyPercentage | Double | False | The ExtraDutyPercentage column for the table SalesInvoiceLines. |
GLAccount | String | False | The GLAccount column for the table SalesInvoiceLines. |
GLAccountDescription | String | False | The GLAccountDescription column for the table SalesInvoiceLines. |
InvoiceID | String | False | The InvoiceID column for the table SalesInvoiceLines. |
Item | String | False | The Item column for the table SalesInvoiceLines. |
ItemCode | String | False | The ItemCode column for the table SalesInvoiceLines. |
ItemDescription | String | False | The ItemDescription column for the table SalesInvoiceLines. |
LineNumber | Int | False | The LineNumber column for the table SalesInvoiceLines. |
NetPrice | Double | False | The NetPrice column for the table SalesInvoiceLines. |
Notes | String | False | The Notes column for the table SalesInvoiceLines. |
Pricelist | String | False | The Pricelist column for the table SalesInvoiceLines. |
PricelistDescription | String | False | The PricelistDescription column for the table SalesInvoiceLines. |
Project | String | False | The Project column for the table SalesInvoiceLines. |
ProjectDescription | String | False | The ProjectDescription column for the table SalesInvoiceLines. |
ProjectWBS | String | False | The ProjectWBS column for the table SalesInvoiceLines. |
ProjectWBSDescription | String | False | The ProjectWBSDescription column for the table SalesInvoiceLines. |
Quantity | Double | False | The Quantity column for the table SalesInvoiceLines. |
SalesOrder | String | False | The SalesOrder column for the table SalesInvoiceLines. |
SalesOrderLine | String | False | The SalesOrderLine column for the table SalesInvoiceLines. |
SalesOrderLineNumber | Int | False | The SalesOrderLineNumber column for the table SalesInvoiceLines. |
SalesOrderNumber | Int | False | The SalesOrderNumber column for the table SalesInvoiceLines. |
StartTime | Datetime | False | The StartTime column for the table SalesInvoiceLines. |
Subscription | String | False | The Subscription column for the table SalesInvoiceLines. |
SubscriptionDescription | String | False | The SubscriptionDescription column for the table SalesInvoiceLines. |
TaxSchedule | String | False | The TaxSchedule column for the table SalesInvoiceLines. |
TaxScheduleCode | String | False | The TaxScheduleCode column for the table SalesInvoiceLines. |
TaxScheduleDescription | String | False | The TaxScheduleDescription column for the table SalesInvoiceLines. |
UnitCode | String | False | The UnitCode column for the table SalesInvoiceLines. |
UnitDescription | String | False | The UnitDescription column for the table SalesInvoiceLines. |
UnitPrice | Double | False | The UnitPrice column for the table SalesInvoiceLines. |
VATAmountDC | Double | False | The VATAmountDC column for the table SalesInvoiceLines. |
VATAmountFC | Double | False | The VATAmountFC column for the table SalesInvoiceLines. |
VATCode | String | False | The VATCode column for the table SalesInvoiceLines. |
VATCodeDescription | String | False | The VATCodeDescription column for the table SalesInvoiceLines. |
VATPercentage | Double | False | The VATPercentage column for the table SalesInvoiceLines. |
Pseudo-Columns
Name | Type | Description |
---|---|---|
Modified | Datetime | The Modified column for the table SalesInvoiceLines. |
SalesInvoiceOrderChargeLines
Use this endpoint to create, read, update and delete sales invoice shipping cost and order charge lines.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ID [KEY] | String | True | Line ID of shipping method or order charges |
AmountDC | Double | False | Amount excluded VAT in reporting currency for shipping cost or order charges |
AmountFCExclVAT | Double | False | Amount excluded VAT in trading currency for shipping cost or order charges |
AmountFCInclVAT | Double | False | Amount included VAT in trading currency for shipping cost or order charges |
AmountVATFC | Double | False | VAT amount in trading currency for shipping cost or order charges |
Division | Int | False | Division code |
GLAccount | String | False | The GL Account of the sales invoice order charge line. |
GLAccountCode | String | False | GL account code of shipping cost or order charges |
GLAccountDescription | String | False | GL account description of shipping cost or order charges |
InvoiceID | String | False | The InvoiceID identifies the sales invoice |
IsShippingCost | Bool | False | Indicates whether the order charge line is shipping cost |
LineNumber | Int | False | Line number of shipping cost and order charges |
OrderCharge | String | False | ID of order charges is mandatory for order charge. |
OrderChargeCode | String | False | Code of shipping method or order charges |
OrderChargeDescription | String | False | Description from shipping method or order charges master |
OrderChargesLineDescription | String | False | Line description of shipping cost or order charges (only available in WD Premium packages) |
VATCode | String | False | VAT code that is used for shipping cost or order charges |
VATDescription | String | False | VAT description for shipping cost or order charges |
VATPercentage | Double | False | The vat percentage of the VAT code. |
SalesInvoices
Usage information for the operation SalesInvoices.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
InvoiceID [KEY] | String | True | The InvoiceID column for the table SalesInvoices. |
AmountDC | Double | False | The AmountDC column for the table SalesInvoices. |
AmountDiscount | Double | False | The AmountDiscount column for the table SalesInvoices. |
AmountDiscountExclVat | Double | False | The AmountDiscountExclVat column for the table SalesInvoices. |
AmountFC | Double | False | The AmountFC column for the table SalesInvoices. |
AmountFCExclVat | Double | False | The AmountFCExclVat column for the table SalesInvoices. |
Created | Datetime | False | The Created column for the table SalesInvoices. |
Creator | String | False | The Creator column for the table SalesInvoices. |
CreatorFullName | String | False | The CreatorFullName column for the table SalesInvoices. |
Currency | String | False | The Currency column for the table SalesInvoices. |
DeliverTo | String | False | The DeliverTo column for the table SalesInvoices. |
DeliverToAddress | String | False | The DeliverToAddress column for the table SalesInvoices. |
DeliverToContactPerson | String | False | The DeliverToContactPerson column for the table SalesInvoices. |
DeliverToContactPersonFullName | String | False | The DeliverToContactPersonFullName column for the table SalesInvoices. |
DeliverToName | String | False | The DeliverToName column for the table SalesInvoices. |
Description | String | False | The Description column for the table SalesInvoices. |
Discount | Double | False | The Discount column for the table SalesInvoices. |
Division | Int | False | The Division column for the table SalesInvoices. |
Document | String | False | The Document column for the table SalesInvoices. |
DocumentNumber | Int | False | The DocumentNumber column for the table SalesInvoices. |
DocumentSubject | String | False | The DocumentSubject column for the table SalesInvoices. |
DueDate | Datetime | False | The DueDate column for the table SalesInvoices. |
ExtraDutyAmountFC | Double | False | The ExtraDutyAmountFC column for the table SalesInvoices. |
GAccountAmountFC | Double | False | The GAccountAmountFC column for the table SalesInvoices. |
InvoiceDate | Datetime | False | The InvoiceDate column for the table SalesInvoices. |
InvoiceNumber | Int | False | The InvoiceNumber column for the table SalesInvoices. |
InvoiceTo | String | False | The InvoiceTo column for the table SalesInvoices. |
InvoiceToContactPerson | String | False | The InvoiceToContactPerson column for the table SalesInvoices. |
InvoiceToContactPersonFullName | String | False | The InvoiceToContactPersonFullName column for the table SalesInvoices. |
InvoiceToName | String | False | The InvoiceToName column for the table SalesInvoices. |
IsExtraDuty | Bool | False | The IsExtraDuty column for the table SalesInvoices. |
Journal | String | False | The Journal column for the table SalesInvoices. |
JournalDescription | String | False | The JournalDescription column for the table SalesInvoices. |
Modified | Datetime | False | The Modified column for the table SalesInvoices. |
Modifier | String | False | The Modifier column for the table SalesInvoices. |
ModifierFullName | String | False | The ModifierFullName column for the table SalesInvoices. |
OrderDate | Datetime | False | The OrderDate column for the table SalesInvoices. |
OrderedBy | String | False | The OrderedBy column for the table SalesInvoices. |
OrderedByContactPerson | String | False | The OrderedByContactPerson column for the table SalesInvoices. |
OrderedByContactPersonFullName | String | False | The OrderedByContactPersonFullName column for the table SalesInvoices. |
OrderedByName | String | False | The OrderedByName column for the table SalesInvoices. |
OrderNumber | Int | False | The OrderNumber column for the table SalesInvoices. |
PaymentCondition | String | False | The PaymentCondition column for the table SalesInvoices. |
PaymentConditionDescription | String | False | The PaymentConditionDescription column for the table SalesInvoices. |
PaymentReference | String | False | The PaymentReference column for the table SalesInvoices. |
Remarks | String | False | The Remarks column for the table SalesInvoices. |
Salesperson | String | False | The Salesperson column for the table SalesInvoices. |
SalespersonFullName | String | False | The SalespersonFullName column for the table SalesInvoices. |
StarterSalesInvoiceStatus | Int | False | The StarterSalesInvoiceStatus column for the table SalesInvoices. |
StarterSalesInvoiceStatusDescription | String | False | The StarterSalesInvoiceStatusDescription column for the table SalesInvoices. |
Status | Int | False | The Status column for the table SalesInvoices. |
StatusDescription | String | False | The StatusDescription column for the table SalesInvoices. |
TaxSchedule | String | False | The TaxSchedule column for the table SalesInvoices. |
TaxScheduleCode | String | False | The TaxScheduleCode column for the table SalesInvoices. |
TaxScheduleDescription | String | False | The TaxScheduleDescription column for the table SalesInvoices. |
Type | Int | False | The Type column for the table SalesInvoices. |
TypeDescription | String | False | The TypeDescription column for the table SalesInvoices. |
VATAmountDC | Double | False | The VATAmountDC column for the table SalesInvoices. |
VATAmountFC | Double | False | The VATAmountFC column for the table SalesInvoices. |
WithholdingTaxAmountFC | Double | False | The WithholdingTaxAmountFC column for the table SalesInvoices. |
WithholdingTaxBaseAmount | Double | False | The WithholdingTaxBaseAmount column for the table SalesInvoices. |
WithholdingTaxPercentage | Double | False | The WithholdingTaxPercentage column for the table SalesInvoices. |
YourRef | String | False | The YourRef column for the table SalesInvoices. |
LinkedSalesInvoiceLines | String | False | The LinkedSalesInvoiceLines column for the table SalesInvoices. |
SalesItemPrices
Usage information for the operation SalesItemPrices.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ID [KEY] | String | True | The ID column for the table SalesItemPrices. |
Account | String | False | The Account column for the table SalesItemPrices. |
AccountName | String | False | The AccountName column for the table SalesItemPrices. |
Created | Datetime | False | The Created column for the table SalesItemPrices. |
Creator | String | False | The Creator column for the table SalesItemPrices. |
CreatorFullName | String | False | The CreatorFullName column for the table SalesItemPrices. |
Currency | String | False | The Currency column for the table SalesItemPrices. |
DefaultItemUnit | String | False | The DefaultItemUnit column for the table SalesItemPrices. |
DefaultItemUnitDescription | String | False | The DefaultItemUnitDescription column for the table SalesItemPrices. |
Division | Int | False | The Division column for the table SalesItemPrices. |
EndDate | Datetime | False | The EndDate column for the table SalesItemPrices. |
Item | String | False | The Item column for the table SalesItemPrices. |
ItemCode | String | False | The ItemCode column for the table SalesItemPrices. |
ItemDescription | String | False | The ItemDescription column for the table SalesItemPrices. |
Modified | Datetime | False | The Modified column for the table SalesItemPrices. |
Modifier | String | False | The Modifier column for the table SalesItemPrices. |
ModifierFullName | String | False | The ModifierFullName column for the table SalesItemPrices. |
NumberOfItemsPerUnit | Double | False | The NumberOfItemsPerUnit column for the table SalesItemPrices. |
Price | Double | False | The Price column for the table SalesItemPrices. |
Quantity | Double | False | The Quantity column for the table SalesItemPrices. |
StartDate | Datetime | False | The StartDate column for the table SalesItemPrices. |
Unit | String | False | The Unit column for the table SalesItemPrices. |
UnitDescription | String | False | The UnitDescription column for the table SalesItemPrices. |
SalesOrderHeaders
Usage information for the operation SalesOrderHeaders.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
Timestamp | Long | False | |
AmountDC | Double | False | |
AmountDiscount | Double | False | |
AmountDiscountExclVat | Double | False | |
AmountFC | Double | False | |
AmountFCExclVat | Double | False | |
ApprovalStatus | Int | False | |
ApprovalStatusDescription | String | False | |
Approved | Datetime | False | |
Approver | String | False | |
ApproverFullName | String | False | |
Created | Datetime | False | |
Creator | String | False | |
CreatorFullName | String | False | |
Currency | String | False | |
DeliverTo | String | False | |
DeliverToContactPerson | String | False | |
DeliverToContactPersonFullName | String | False | |
DeliverToName | String | False | |
DeliveryAddress | String | False | |
DeliveryDate | Datetime | False | |
DeliveryStatus | Int | False | |
DeliveryStatusDescription | String | False | |
Description | String | False | |
Discount | Double | False | |
Division | Int | False | |
Document | String | False | |
DocumentNumber | Int | False | |
DocumentSubject | String | False | |
ID [KEY] | String | True | |
IncotermAddress | String | False | |
IncotermCode | String | False | |
IncotermVersion | Int | False | |
InvoiceStatus | Int | False | |
InvoiceStatusDescription | String | False | |
InvoiceTo | String | False | |
InvoiceToContactPerson | String | False | |
InvoiceToContactPersonFullName | String | False | |
InvoiceToName | String | False | |
Modified | Datetime | False | |
Modifier | String | False | |
ModifierFullName | String | False | |
Notes | String | False | |
OrderDate | Datetime | False | |
OrderedBy | String | False | |
OrderedByContactPerson | String | False | |
OrderedByContactPersonFullName | String | False | |
OrderedByName | String | False | |
OrderID | String | False | |
OrderNumber | Int | False | |
PaymentCondition | String | False | |
PaymentConditionDescription | String | False | |
PaymentReference | String | False | |
Project | String | False | |
ProjectCode | String | False | |
ProjectDescription | String | False | |
Remarks | String | False | |
SalesChannel | String | False | |
SalesChannelCode | String | False | |
SalesChannelDescription | String | False | |
Salesperson | String | False | |
SalespersonFullName | String | False | |
SelectionCode | String | False | |
SelectionCodeCode | String | False | |
SelectionCodeDescription | String | False | |
ShippingMethod | String | False | |
ShippingMethodCode | String | False | |
ShippingMethodDescription | String | False | |
Status | Int | False | |
StatusDescription | String | False | |
VATAmount | Double | False | |
VATCode | String | False | |
VATCodeDescription | String | False | |
WarehouseCode | String | False | |
WarehouseDescription | String | False | |
WarehouseID | String | False | |
YourRef | String | False |
SalesOrderID
Usage information for the operation SalesOrderID.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ID [KEY] | String | True | The ID column for the table SalesOrderID. |
SalesOrderLines
Usage information for the operation SalesOrderLines.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ID [KEY] | String | True | The ID column for the table SalesOrderlines. |
AmountDC | Double | False | The AmountDC column for the table SalesOrderlines. |
AmountFC | Double | False | The AmountFC column for the table SalesOrderlines. |
CostCenter | String | False | The CostCenter column for the table SalesOrderlines. |
CostCenterDescription | String | False | The CostCenterDescription column for the table SalesOrderlines. |
CostPriceFC | Double | False | The CostPriceFC column for the table SalesOrderlines. |
CostUnit | String | False | The CostUnit column for the table SalesOrderlines. |
CostUnitDescription | String | False | The CostUnitDescription column for the table SalesOrderlines. |
DeliveryDate | Datetime | False | The DeliveryDate column for the table SalesOrderlines. |
Description | String | False | The Description column for the table SalesOrderlines. |
Discount | Double | False | The Discount column for the table SalesOrderlines. |
Division | Int | False | The Division column for the table SalesOrderlines. |
Item | String | False | The Item column for the table SalesOrderlines. |
ItemCode | String | False | The ItemCode column for the table SalesOrderlines. |
ItemDescription | String | False | The ItemDescription column for the table SalesOrderlines. |
ItemVersion | String | False | The ItemVersion column for the table SalesOrderlines. |
ItemVersionDescription | String | False | The ItemVersionDescription column for the table SalesOrderlines. |
LineNumber | Int | False | The LineNumber column for the table SalesOrderlines. |
Margin | Double | False | The Margin column for the table SalesOrderlines. |
NetPrice | Double | False | The NetPrice column for the table SalesOrderlines. |
Notes | String | False | The Notes column for the table SalesOrderlines. |
OrderID | String | False | The OrderID column for the table SalesOrderlines. |
OrderNumber | Int | False | The OrderNumber column for the table SalesOrderlines. |
Pricelist | String | False | The Pricelist column for the table SalesOrderlines. |
PricelistDescription | String | False | The PricelistDescription column for the table SalesOrderlines. |
Project | String | False | The Project column for the table SalesOrderlines. |
ProjectDescription | String | False | The ProjectDescription column for the table SalesOrderlines. |
PurchaseOrder | String | False | The PurchaseOrder column for the table SalesOrderlines. |
PurchaseOrderLine | String | False | The PurchaseOrderLine column for the table SalesOrderlines. |
PurchaseOrderLineNumber | Int | False | The PurchaseOrderLineNumber column for the table SalesOrderlines. |
PurchaseOrderNumber | Int | False | The PurchaseOrderNumber column for the table SalesOrderlines. |
Quantity | Double | False | The Quantity column for the table SalesOrderlines. |
QuantityDelivered | Double | False | The QuantityDelivered column for the table SalesOrderlines. |
QuantityInvoiced | Double | False | The QuantityInvoiced column for the table SalesOrderlines. |
ShopOrder | String | False | The ShopOrder column for the table SalesOrderlines. |
TaxSchedule | String | False | The TaxSchedule column for the table SalesOrderlines. |
TaxScheduleCode | String | False | The TaxScheduleCode column for the table SalesOrderlines. |
TaxScheduleDescription | String | False | The TaxScheduleDescription column for the table SalesOrderlines. |
UnitCode | String | False | The UnitCode column for the table SalesOrderlines. |
UnitDescription | String | False | The UnitDescription column for the table SalesOrderlines. |
UnitPrice | Double | False | The UnitPrice column for the table SalesOrderlines. |
UseDropShipment | Int | False | The UseDropShipment column for the table SalesOrderlines. |
VATAmount | Double | False | The VATAmount column for the table SalesOrderlines. |
VATCode | String | False | The VATCode column for the table SalesOrderlines. |
VATCodeDescription | String | False | The VATCodeDescription column for the table SalesOrderlines. |
VATPercentage | Double | False | The VATPercentage column for the table SalesOrderlines. |
SalesOrderOrderChargeLines
Use this endpoint to create, read, update and delete sales order shipping cost and order charge lines.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ID [KEY] | String | True | Line ID of shipping method or order charges |
AmountDC | Double | False | Amount excluded VAT in reporting currency for shipping cost or order charges |
AmountFCExclVAT | Double | False | Amount excluded VAT in trading currency for shipping cost or order charges |
AmountFCInclVAT | Double | False | Amount included VAT in trading currency for shipping cost or order charges |
AmountVATFC | Double | False | VAT amount in trading currency for shipping cost or order charges |
Division | Int | False | Division code |
IsShippingCost | Bool | False | Indicates whether the order charge line is shipping cost |
LineNumber | Int | False | Line number of shipping cost and order charges |
OrderCharge | String | False | ID of order charges is mandatory for order charge. |
OrderChargeCode | String | False | Code of shipping method or order charges |
OrderChargeDescription | String | False | Description from shipping method or order charges master |
OrderChargesLineDescription | String | False | Line description of shipping cost or order charges (only available in WD Premium packages) |
OrderID | String | False | The OrderID identifies the sales order. All the lines of a sales order have the same OrderID |
VATCode | String | False | VAT code that is used for shipping cost or order charges |
VATDescription | String | False | VAT description for shipping cost or order charges |
VATPercentage | Double | False | The vat percentage of the VAT code. |
SalesOrders
Usage information for the operation SalesOrders.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
OrderID [KEY] | String | True | The OrderID column for the table SalesOrders. |
AmountDC | Double | False | The AmountDC column for the table SalesOrders. |
AmountDiscount | Double | False | The AmountDiscount column for the table SalesOrders. |
AmountDiscountExclVat | Double | False | The AmountDiscountExclVat column for the table SalesOrders. |
AmountFC | Double | False | The AmountFC column for the table SalesOrders. |
AmountFCExclVat | Double | False | The AmountFCExclVat column for the table SalesOrders. |
ApprovalStatus | Int | False | The ApprovalStatus column for the table SalesOrders. |
ApprovalStatusDescription | String | False | The ApprovalStatusDescription column for the table SalesOrders. |
Approved | Datetime | False | The Approved column for the table SalesOrders. |
Approver | String | False | The Approver column for the table SalesOrders. |
ApproverFullName | String | False | The ApproverFullName column for the table SalesOrders. |
Created | Datetime | False | The Created column for the table SalesOrders. |
Creator | String | False | The Creator column for the table SalesOrders. |
CreatorFullName | String | False | The CreatorFullName column for the table SalesOrders. |
Currency | String | False | The Currency column for the table SalesOrders. |
DeliverTo | String | False | The DeliverTo column for the table SalesOrders. |
DeliverToContactPerson | String | False | The DeliverToContactPerson column for the table SalesOrders. |
DeliverToContactPersonFullName | String | False | The DeliverToContactPersonFullName column for the table SalesOrders. |
DeliverToName | String | False | The DeliverToName column for the table SalesOrders. |
DeliveryAddress | String | False | The DeliveryAddress column for the table SalesOrders. |
DeliveryDate | Datetime | False | The DeliveryDate column for the table SalesOrders. |
DeliveryStatus | Int | False | The DeliveryStatus column for the table SalesOrders. |
DeliveryStatusDescription | String | False | The DeliveryStatusDescription column for the table SalesOrders. |
Description | String | False | The Description column for the table SalesOrders. |
Discount | Double | False | The Discount column for the table SalesOrders. |
Division | Int | False | The Division column for the table SalesOrders. |
Document | String | False | The Document column for the table SalesOrders. |
DocumentNumber | Int | False | The DocumentNumber column for the table SalesOrders. |
DocumentSubject | String | False | The DocumentSubject column for the table SalesOrders. |
InvoiceStatus | Int | False | The InvoiceStatus column for the table SalesOrders. |
InvoiceStatusDescription | String | False | The InvoiceStatusDescription column for the table SalesOrders. |
InvoiceTo | String | False | The InvoiceTo column for the table SalesOrders. |
InvoiceToContactPerson | String | False | The InvoiceToContactPerson column for the table SalesOrders. |
InvoiceToContactPersonFullName | String | False | The InvoiceToContactPersonFullName column for the table SalesOrders. |
InvoiceToName | String | False | The InvoiceToName column for the table SalesOrders. |
Modified | Datetime | False | The Modified column for the table SalesOrders. |
Modifier | String | False | The Modifier column for the table SalesOrders. |
ModifierFullName | String | False | The ModifierFullName column for the table SalesOrders. |
OrderDate | Datetime | False | The OrderDate column for the table SalesOrders. |
OrderedBy | String | False | The OrderedBy column for the table SalesOrders. |
OrderedByContactPerson | String | False | The OrderedByContactPerson column for the table SalesOrders. |
OrderedByContactPersonFullName | String | False | The OrderedByContactPersonFullName column for the table SalesOrders. |
OrderedByName | String | False | The OrderedByName column for the table SalesOrders. |
OrderNumber | Int | False | The OrderNumber column for the table SalesOrders. |
PaymentCondition | String | False | The PaymentCondition column for the table SalesOrders. |
PaymentConditionDescription | String | False | The PaymentConditionDescription column for the table SalesOrders. |
PaymentReference | String | False | The PaymentReference column for the table SalesOrders. |
Remarks | String | False | The Remarks column for the table SalesOrders. |
Salesperson | String | False | The Salesperson column for the table SalesOrders. |
SalespersonFullName | String | False | The SalespersonFullName column for the table SalesOrders. |
ShippingMethod | String | False | The ShippingMethod column for the table SalesOrders. |
ShippingMethodDescription | String | False | The ShippingMethodDescription column for the table SalesOrders. |
Status | Int | False | The Status column for the table SalesOrders. |
StatusDescription | String | False | The StatusDescription column for the table SalesOrders. |
TaxSchedule | String | False | The TaxSchedule column for the table SalesOrders. |
TaxScheduleCode | String | False | The TaxScheduleCode column for the table SalesOrders. |
TaxScheduleDescription | String | False | The TaxScheduleDescription column for the table SalesOrders. |
WarehouseCode | String | False | The WarehouseCode column for the table SalesOrders. |
WarehouseDescription | String | False | The WarehouseDescription column for the table SalesOrders. |
WarehouseID | String | False | The WarehouseID column for the table SalesOrders. |
YourRef | String | False | The YourRef column for the table SalesOrders. |
LinkedSalesOrderLines | String | False | The LinkedSalesOrderLines column for the table SalesOrders. |
ServiceRequests
Usage information for the operation ServiceRequests.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ID [KEY] | String | True | The ID column for the table ServiceRequests. |
Account | String | False | The Account column for the table ServiceRequests. |
AccountName | String | False | The AccountName column for the table ServiceRequests. |
AssignedTo | String | False | The AssignedTo column for the table ServiceRequests. |
AssignedToFullName | String | False | The AssignedToFullName column for the table ServiceRequests. |
Contact | String | False | The Contact column for the table ServiceRequests. |
ContactFullName | String | False | The ContactFullName column for the table ServiceRequests. |
Created | Datetime | False | The Created column for the table ServiceRequests. |
Creator | String | False | The Creator column for the table ServiceRequests. |
CreatorFullName | String | False | The CreatorFullName column for the table ServiceRequests. |
Description | String | False | The Description column for the table ServiceRequests. |
Division | Int | False | The Division column for the table ServiceRequests. |
Document | String | False | The Document column for the table ServiceRequests. |
DocumentSubject | String | False | The DocumentSubject column for the table ServiceRequests. |
HID | Int | False | The HID column for the table ServiceRequests. |
Modified | Datetime | False | The Modified column for the table ServiceRequests. |
Modifier | String | False | The Modifier column for the table ServiceRequests. |
ModifierFullName | String | False | The ModifierFullName column for the table ServiceRequests. |
NextAction | Datetime | False | The NextAction column for the table ServiceRequests. |
Notes | String | False | The Notes column for the table ServiceRequests. |
ReceiptDate | Datetime | False | The ReceiptDate column for the table ServiceRequests. |
Status | Int | False | The Status column for the table ServiceRequests. |
StatusDescription | String | False | The StatusDescription column for the table ServiceRequests. |
ShopOrderMaterialPlans
Usage information for the operation ShopOrderMaterialPlans.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ID [KEY] | String | True | The ID column for the table ShopOrderMaterialPlans. |
Backflush | Int | False | The Backflush column for the table ShopOrderMaterialPlans. |
CalculatorType | Int | False | The CalculatorType column for the table ShopOrderMaterialPlans. |
Created | Datetime | False | The Created column for the table ShopOrderMaterialPlans. |
Creator | String | False | The Creator column for the table ShopOrderMaterialPlans. |
CreatorFullName | String | False | The CreatorFullName column for the table ShopOrderMaterialPlans. |
Description | String | False | The Description column for the table ShopOrderMaterialPlans. |
DetailDrawing | String | False | The DetailDrawing column for the table ShopOrderMaterialPlans. |
Division | Int | False | The Division column for the table ShopOrderMaterialPlans. |
Item | String | False | The Item column for the table ShopOrderMaterialPlans. |
ItemCode | String | False | The ItemCode column for the table ShopOrderMaterialPlans. |
ItemDescription | String | False | The ItemDescription column for the table ShopOrderMaterialPlans. |
ItemPictureUrl | String | False | The ItemPictureUrl column for the table ShopOrderMaterialPlans. |
LineNumber | Int | False | The LineNumber column for the table ShopOrderMaterialPlans. |
Modified | Datetime | False | The Modified column for the table ShopOrderMaterialPlans. |
Modifier | String | False | The Modifier column for the table ShopOrderMaterialPlans. |
ModifierFullName | String | False | The ModifierFullName column for the table ShopOrderMaterialPlans. |
Notes | String | False | The Notes column for the table ShopOrderMaterialPlans. |
PlannedAmountFC | Double | False | The PlannedAmountFC column for the table ShopOrderMaterialPlans. |
PlannedDate | Datetime | False | The PlannedDate column for the table ShopOrderMaterialPlans. |
PlannedPriceFC | Double | False | The PlannedPriceFC column for the table ShopOrderMaterialPlans. |
PlannedQuantity | Double | False | The PlannedQuantity column for the table ShopOrderMaterialPlans. |
PlannedQuantityFactor | Double | False | The PlannedQuantityFactor column for the table ShopOrderMaterialPlans. |
ShopOrder | String | False | The ShopOrder column for the table ShopOrderMaterialPlans. |
Status | Int | False | The Status column for the table ShopOrderMaterialPlans. |
StatusDescription | String | False | The StatusDescription column for the table ShopOrderMaterialPlans. |
Type | Int | False | The Type column for the table ShopOrderMaterialPlans. |
Unit | String | False | The Unit column for the table ShopOrderMaterialPlans. |
UnitDescription | String | False | The UnitDescription column for the table ShopOrderMaterialPlans. |
ShopOrderReceipts
Usage information for the operation ShopOrderReceipts.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
StockTransactionId [KEY] | String | True | The StockTransactionId column for the table ShopOrderReceipts. |
CreatedBy | String | False | The CreatedBy column for the table ShopOrderReceipts. |
CreatedByFullName | String | False | The CreatedByFullName column for the table ShopOrderReceipts. |
CreatedDate | Datetime | False | The CreatedDate column for the table ShopOrderReceipts. |
DraftStockTransactionID | String | False | The DraftStockTransactionID column for the table ShopOrderReceipts. |
HasReversibleQuantity | Bool | False | The HasReversibleQuantity column for the table ShopOrderReceipts. |
IsBatch | Int | False | The IsBatch column for the table ShopOrderReceipts. |
IsFractionAllowedItem | Int | False | The IsFractionAllowedItem column for the table ShopOrderReceipts. |
IsIssueToParent | Bool | False | The IsIssueToParent column for the table ShopOrderReceipts. |
IsSerial | Int | False | The IsSerial column for the table ShopOrderReceipts. |
Item | String | False | The Item column for the table ShopOrderReceipts. |
ItemCode | String | False | The ItemCode column for the table ShopOrderReceipts. |
ItemDescription | String | False | The ItemDescription column for the table ShopOrderReceipts. |
ItemPictureUrl | String | False | The ItemPictureUrl column for the table ShopOrderReceipts. |
ParentShopOrder | String | False | The ParentShopOrder column for the table ShopOrderReceipts. |
ParentShopOrderNumber | Int | False | The ParentShopOrderNumber column for the table ShopOrderReceipts. |
Quantity | Double | False | The Quantity column for the table ShopOrderReceipts. |
RelatedStockTransaction | String | False | The RelatedStockTransaction column for the table ShopOrderReceipts. |
ShopOrder | String | False | The ShopOrder column for the table ShopOrderReceipts. |
ShopOrderNumber | Int | False | The ShopOrderNumber column for the table ShopOrderReceipts. |
StorageLocation | String | False | The StorageLocation column for the table ShopOrderReceipts. |
StorageLocationCode | String | False | The StorageLocationCode column for the table ShopOrderReceipts. |
StorageLocationDescription | String | False | The StorageLocationDescription column for the table ShopOrderReceipts. |
TransactionDate | Datetime | False | The TransactionDate column for the table ShopOrderReceipts. |
Unit | String | False | The Unit column for the table ShopOrderReceipts. |
UnitDescription | String | False | The UnitDescription column for the table ShopOrderReceipts. |
Warehouse | String | False | The Warehouse column for the table ShopOrderReceipts. |
WarehouseCode | String | False | The WarehouseCode column for the table ShopOrderReceipts. |
WarehouseDescription | String | False | The WarehouseDescription column for the table ShopOrderReceipts. |
ShopOrderReversals
Usage information for the operation ShopOrderReversals.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ReversalStockTransactionId [KEY] | String | True | The ReversalStockTransactionId column for the table ShopOrderReversals. |
CreatedBy | String | False | The CreatedBy column for the table ShopOrderReversals. |
CreatedByFullName | String | False | The CreatedByFullName column for the table ShopOrderReversals. |
CreatedDate | Datetime | False | The CreatedDate column for the table ShopOrderReversals. |
IsBatch | Int | False | The IsBatch column for the table ShopOrderReversals. |
IsFractionAllowedItem | Int | False | The IsFractionAllowedItem column for the table ShopOrderReversals. |
IsSerial | Int | False | The IsSerial column for the table ShopOrderReversals. |
Item | String | False | The Item column for the table ShopOrderReversals. |
ItemCode | String | False | The ItemCode column for the table ShopOrderReversals. |
ItemDescription | String | False | The ItemDescription column for the table ShopOrderReversals. |
ItemPictureUrl | String | False | The ItemPictureUrl column for the table ShopOrderReversals. |
Note | String | False | The Note column for the table ShopOrderReversals. |
OriginalStockTransactionId | String | False | The OriginalStockTransactionId column for the table ShopOrderReversals. |
Quantity | Double | False | The Quantity column for the table ShopOrderReversals. |
ShopOrder | String | False | The ShopOrder column for the table ShopOrderReversals. |
ShopOrderNumber | Int | False | The ShopOrderNumber column for the table ShopOrderReversals. |
StorageLocation | String | False | The StorageLocation column for the table ShopOrderReversals. |
StorageLocationCode | String | False | The StorageLocationCode column for the table ShopOrderReversals. |
StorageLocationDescription | String | False | The StorageLocationDescription column for the table ShopOrderReversals. |
TransactionDate | Datetime | False | The TransactionDate column for the table ShopOrderReversals. |
Unit | String | False | The Unit column for the table ShopOrderReversals. |
UnitDescription | String | False | The UnitDescription column for the table ShopOrderReversals. |
Warehouse | String | False | The Warehouse column for the table ShopOrderReversals. |
WarehouseCode | String | False | The WarehouseCode column for the table ShopOrderReversals. |
WarehouseDescription | String | False | The WarehouseDescription column for the table ShopOrderReversals. |
ShopOrderRoutingStepPlans
Usage information for the operation ShopOrderRoutingStepPlans.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ID [KEY] | String | True | The ID column for the table ShopOrderRoutingStepPlans. |
Account | String | False | The Account column for the table ShopOrderRoutingStepPlans. |
AccountName | String | False | The AccountName column for the table ShopOrderRoutingStepPlans. |
AccountNumber | String | False | The AccountNumber column for the table ShopOrderRoutingStepPlans. |
AttendedPercentage | Double | False | The AttendedPercentage column for the table ShopOrderRoutingStepPlans. |
Backflush | Int | False | The Backflush column for the table ShopOrderRoutingStepPlans. |
CostPerItem | Double | False | The CostPerItem column for the table ShopOrderRoutingStepPlans. |
Created | Datetime | False | The Created column for the table ShopOrderRoutingStepPlans. |
Creator | String | False | The Creator column for the table ShopOrderRoutingStepPlans. |
CreatorFullName | String | False | The CreatorFullName column for the table ShopOrderRoutingStepPlans. |
Description | String | False | The Description column for the table ShopOrderRoutingStepPlans. |
Division | Int | False | The Division column for the table ShopOrderRoutingStepPlans. |
EfficiencyPercentage | Double | False | The EfficiencyPercentage column for the table ShopOrderRoutingStepPlans. |
FactorType | Int | False | The FactorType column for the table ShopOrderRoutingStepPlans. |
LineNumber | Int | False | The LineNumber column for the table ShopOrderRoutingStepPlans. |
Modified | Datetime | False | The Modified column for the table ShopOrderRoutingStepPlans. |
Modifier | String | False | The Modifier column for the table ShopOrderRoutingStepPlans. |
ModifierFullName | String | False | The ModifierFullName column for the table ShopOrderRoutingStepPlans. |
Notes | String | False | The Notes column for the table ShopOrderRoutingStepPlans. |
Operation | String | False | The Operation column for the table ShopOrderRoutingStepPlans. |
OperationCode | String | False | The OperationCode column for the table ShopOrderRoutingStepPlans. |
OperationDescription | String | False | The OperationDescription column for the table ShopOrderRoutingStepPlans. |
OperationResource | String | False | The OperationResource column for the table ShopOrderRoutingStepPlans. |
PlannedEndDate | Datetime | False | The PlannedEndDate column for the table ShopOrderRoutingStepPlans. |
PlannedRunHours | Double | False | The PlannedRunHours column for the table ShopOrderRoutingStepPlans. |
PlannedSetupHours | Double | False | The PlannedSetupHours column for the table ShopOrderRoutingStepPlans. |
PlannedStartDate | Datetime | False | The PlannedStartDate column for the table ShopOrderRoutingStepPlans. |
PlannedTotalHours | Double | False | The PlannedTotalHours column for the table ShopOrderRoutingStepPlans. |
PurchaseUnit | String | False | The PurchaseUnit column for the table ShopOrderRoutingStepPlans. |
PurchaseUnitFactor | Double | False | The PurchaseUnitFactor column for the table ShopOrderRoutingStepPlans. |
PurchaseUnitPriceFC | Double | False | The PurchaseUnitPriceFC column for the table ShopOrderRoutingStepPlans. |
PurchaseUnitQuantity | Double | False | The PurchaseUnitQuantity column for the table ShopOrderRoutingStepPlans. |
RoutingStepType | Int | False | The RoutingStepType column for the table ShopOrderRoutingStepPlans. |
Run | Double | False | The Run column for the table ShopOrderRoutingStepPlans. |
RunMethod | Int | False | The RunMethod column for the table ShopOrderRoutingStepPlans. |
RunMethodDescription | String | False | The RunMethodDescription column for the table ShopOrderRoutingStepPlans. |
Setup | Double | False | The Setup column for the table ShopOrderRoutingStepPlans. |
SetupUnit | String | False | The SetupUnit column for the table ShopOrderRoutingStepPlans. |
ShopOrder | String | False | The ShopOrder column for the table ShopOrderRoutingStepPlans. |
Status | Int | False | The Status column for the table ShopOrderRoutingStepPlans. |
StatusDescription | String | False | The StatusDescription column for the table ShopOrderRoutingStepPlans. |
SubcontractedLeadDays | Int | False | The SubcontractedLeadDays column for the table ShopOrderRoutingStepPlans. |
TotalCostDC | Double | False | The TotalCostDC column for the table ShopOrderRoutingStepPlans. |
Workcenter | String | False | The Workcenter column for the table ShopOrderRoutingStepPlans. |
WorkcenterCode | String | False | The WorkcenterCode column for the table ShopOrderRoutingStepPlans. |
WorkcenterDescription | String | False | The WorkcenterDescription column for the table ShopOrderRoutingStepPlans. |
LinkedTimeTransactions | String | False | The LinkedTimeTransactions column for the table ShopOrderRoutingStepPlans. |
ShopOrders
Usage information for the operation ShopOrders.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ID [KEY] | String | True | The ID column for the table ShopOrders. |
CADDrawingURL | String | False | The CADDrawingURL column for the table ShopOrders. |
Costcenter | String | False | The Costcenter column for the table ShopOrders. |
CostcenterDescription | String | False | The CostcenterDescription column for the table ShopOrders. |
Costunit | String | False | The Costunit column for the table ShopOrders. |
CostunitDescription | String | False | The CostunitDescription column for the table ShopOrders. |
Created | Datetime | False | The Created column for the table ShopOrders. |
Creator | String | False | The Creator column for the table ShopOrders. |
CreatorFullName | String | False | The CreatorFullName column for the table ShopOrders. |
Description | String | False | The Description column for the table ShopOrders. |
Division | Int | False | The Division column for the table ShopOrders. |
EntryDate | Datetime | False | The EntryDate column for the table ShopOrders. |
IsBatch | Int | False | The IsBatch column for the table ShopOrders. |
IsFractionAllowedItem | Int | False | The IsFractionAllowedItem column for the table ShopOrders. |
IsInPlanning | Int | False | The IsInPlanning column for the table ShopOrders. |
IsOnHold | Int | False | The IsOnHold column for the table ShopOrders. |
IsReleased | Int | False | The IsReleased column for the table ShopOrders. |
IsSerial | Int | False | The IsSerial column for the table ShopOrders. |
Item | String | False | The Item column for the table ShopOrders. |
ItemCode | String | False | The ItemCode column for the table ShopOrders. |
ItemDescription | String | False | The ItemDescription column for the table ShopOrders. |
ItemPictureUrl | String | False | The ItemPictureUrl column for the table ShopOrders. |
ItemVersion | String | False | The ItemVersion column for the table ShopOrders. |
ItemVersionDescription | String | False | The ItemVersionDescription column for the table ShopOrders. |
Modified | Datetime | False | The Modified column for the table ShopOrders. |
Modifier | String | False | The Modifier column for the table ShopOrders. |
ModifierFullName | String | False | The ModifierFullName column for the table ShopOrders. |
Notes | String | False | The Notes column for the table ShopOrders. |
PlannedDate | Datetime | False | The PlannedDate column for the table ShopOrders. |
PlannedQuantity | Double | False | The PlannedQuantity column for the table ShopOrders. |
PlannedStartDate | Datetime | False | The PlannedStartDate column for the table ShopOrders. |
ProducedQuantity | Double | False | The ProducedQuantity column for the table ShopOrders. |
ProductionLeadDays | Int | False | The ProductionLeadDays column for the table ShopOrders. |
Project | String | False | The Project column for the table ShopOrders. |
ProjectDescription | String | False | The ProjectDescription column for the table ShopOrders. |
ReadyToShipQuantity | Double | False | The ReadyToShipQuantity column for the table ShopOrders. |
SalesOrderLineCount | Int | False | The SalesOrderLineCount column for the table ShopOrders. |
ShopOrderByProductPlanBackflushCount | Int | False | The ShopOrderByProductPlanBackflushCount column for the table ShopOrders. |
ShopOrderByProductPlanCount | Int | False | The ShopOrderByProductPlanCount column for the table ShopOrders. |
ShopOrderMain | String | False | The ShopOrderMain column for the table ShopOrders. |
ShopOrderMainNumber | Int | False | The ShopOrderMainNumber column for the table ShopOrders. |
ShopOrderMaterialPlanBackflushCount | Int | False | The ShopOrderMaterialPlanBackflushCount column for the table ShopOrders. |
ShopOrderMaterialPlanCount | Int | False | The ShopOrderMaterialPlanCount column for the table ShopOrders. |
ShopOrderNumber | Int | False | The ShopOrderNumber column for the table ShopOrders. |
ShopOrderNumberString | String | False | The ShopOrderNumberString column for the table ShopOrders. |
ShopOrderParent | String | False | The ShopOrderParent column for the table ShopOrders. |
ShopOrderParentNumber | Int | False | The ShopOrderParentNumber column for the table ShopOrders. |
ShopOrderRoutingStepPlanCount | Int | False | The ShopOrderRoutingStepPlanCount column for the table ShopOrders. |
Status | Int | False | The Status column for the table ShopOrders. |
SubShopOrderCount | Int | False | The SubShopOrderCount column for the table ShopOrders. |
Type | Int | False | The Type column for the table ShopOrders. |
Unit | String | False | The Unit column for the table ShopOrders. |
UnitDescription | String | False | The UnitDescription column for the table ShopOrders. |
Warehouse | String | False | The Warehouse column for the table ShopOrders. |
YourRef | String | False | The YourRef column for the table ShopOrders. |
LinkedShopOrderMaterialPlans | String | False | The LinkedShopOrderMaterialPlans column for the table ShopOrders. |
LinkedShopOrderRoutingStepPlans | String | False | The LinkedShopOrderRoutingStepPlans column for the table ShopOrders. |
SolutionLinks
Usage information for the operation SolutionLinks.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ID [KEY] | String | True | The ID column for the table SolutionLinks. |
Account | String | False | The Account column for the table SolutionLinks. |
Created | Datetime | False | The Created column for the table SolutionLinks. |
Creator | String | False | The Creator column for the table SolutionLinks. |
Division | Int | False | The Division column for the table SolutionLinks. |
ExternalSolutionCode | Int | False | The ExternalSolutionCode column for the table SolutionLinks. |
ExternalSolutionName | String | False | The ExternalSolutionName column for the table SolutionLinks. |
ExternalSolutionUrl | String | False | The ExternalSolutionUrl column for the table SolutionLinks. |
InternalSolutionDivision | Int | False | The InternalSolutionDivision column for the table SolutionLinks. |
Modified | Datetime | False | The Modified column for the table SolutionLinks. |
Modifier | String | False | The Modifier column for the table SolutionLinks. |
Name | String | False | The Name column for the table SolutionLinks. |
OtherExternalSolutionName | String | False | The OtherExternalSolutionName column for the table SolutionLinks. |
SolutionType | Int | False | The SolutionType column for the table SolutionLinks. |
Status | Int | False | The Status column for the table SolutionLinks. |
StockCountLines
Usage information for the operation StockCountLines.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ID [KEY] | String | True | The ID column for the table StockCountLines. |
CostPrice | Double | False | The CostPrice column for the table StockCountLines. |
CountedBy | String | False | The CountedBy column for the table StockCountLines. |
Created | Datetime | False | The Created column for the table StockCountLines. |
Creator | String | False | The Creator column for the table StockCountLines. |
CreatorFullName | String | False | The CreatorFullName column for the table StockCountLines. |
Division | Int | False | The Division column for the table StockCountLines. |
Item | String | False | The Item column for the table StockCountLines. |
ItemCode | String | False | The ItemCode column for the table StockCountLines. |
ItemCostPrice | Double | False | The ItemCostPrice column for the table StockCountLines. |
ItemDescription | String | False | The ItemDescription column for the table StockCountLines. |
ItemDivisable | Bool | False | The ItemDivisable column for the table StockCountLines. |
LineNumber | Int | False | The LineNumber column for the table StockCountLines. |
Modified | Datetime | False | The Modified column for the table StockCountLines. |
Modifier | String | False | The Modifier column for the table StockCountLines. |
ModifierFullName | String | False | The ModifierFullName column for the table StockCountLines. |
QuantityDifference | Double | False | The QuantityDifference column for the table StockCountLines. |
QuantityInStock | Double | False | The QuantityInStock column for the table StockCountLines. |
QuantityNew | Double | False | The QuantityNew column for the table StockCountLines. |
StockCountID | String | False | The StockCountID column for the table StockCountLines. |
StockKeepingUnit | String | False | The StockKeepingUnit column for the table StockCountLines. |
StorageLocation | String | False | The StorageLocation column for the table StockCountLines. |
StorageLocationCode | String | False | The StorageLocationCode column for the table StockCountLines. |
StorageLocationDescription | String | False | The StorageLocationDescription column for the table StockCountLines. |
LinkedBatchNumbers | String | False | The LinkedBatchNumbers column for the table StockCountLines. |
LinkedSerialNumbers | String | False | The LinkedSerialNumbers column for the table StockCountLines. |
StockCounts
Usage information for the operation StockCounts.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
StockCountID [KEY] | String | True | The StockCountID column for the table StockCounts. |
CountedBy | String | False | The CountedBy column for the table StockCounts. |
Created | Datetime | False | The Created column for the table StockCounts. |
Creator | String | False | The Creator column for the table StockCounts. |
CreatorFullName | String | False | The CreatorFullName column for the table StockCounts. |
Description | String | False | The Description column for the table StockCounts. |
Division | Int | False | The Division column for the table StockCounts. |
EntryNumber | Int | False | The EntryNumber column for the table StockCounts. |
Modified | Datetime | False | The Modified column for the table StockCounts. |
Modifier | String | False | The Modifier column for the table StockCounts. |
ModifierFullName | String | False | The ModifierFullName column for the table StockCounts. |
OffsetGLInventory | String | False | The OffsetGLInventory column for the table StockCounts. |
OffsetGLInventoryCode | String | False | The OffsetGLInventoryCode column for the table StockCounts. |
OffsetGLInventoryDescription | String | False | The OffsetGLInventoryDescription column for the table StockCounts. |
Source | Int | False | The Source column for the table StockCounts. |
Status | Int | False | The Status column for the table StockCounts. |
StockCountDate | Datetime | False | The StockCountDate column for the table StockCounts. |
StockCountNumber | Int | False | The StockCountNumber column for the table StockCounts. |
Warehouse | String | False | The Warehouse column for the table StockCounts. |
WarehouseCode | String | False | The WarehouseCode column for the table StockCounts. |
WarehouseDescription | String | False | The WarehouseDescription column for the table StockCounts. |
LinkedStockCountLines | String | False | The LinkedStockCountLines column for the table StockCounts. |
SubOrderReceipts
Usage information for the operation SubOrderReceipts.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ShopOrderReceiptStockTransactionId [KEY] | String | True | The ShopOrderReceiptStockTransactionId column for the table SubOrderReceipts. |
CreatedBy | String | False | The CreatedBy column for the table SubOrderReceipts. |
CreatedByFullName | String | False | The CreatedByFullName column for the table SubOrderReceipts. |
CreatedDate | Datetime | False | The CreatedDate column for the table SubOrderReceipts. |
DraftStockTransactionID | String | False | The DraftStockTransactionID column for the table SubOrderReceipts. |
HasReversibleQuantity | Bool | False | The HasReversibleQuantity column for the table SubOrderReceipts. |
IsBatch | Int | False | The IsBatch column for the table SubOrderReceipts. |
IsFractionAllowedItem | Int | False | The IsFractionAllowedItem column for the table SubOrderReceipts. |
IsSerial | Int | False | The IsSerial column for the table SubOrderReceipts. |
Item | String | False | The Item column for the table SubOrderReceipts. |
ItemCode | String | False | The ItemCode column for the table SubOrderReceipts. |
ItemDescription | String | False | The ItemDescription column for the table SubOrderReceipts. |
ItemPictureUrl | String | False | The ItemPictureUrl column for the table SubOrderReceipts. |
MaterialIssueStockTransactionId | String | False | The MaterialIssueStockTransactionId column for the table SubOrderReceipts. |
ParentShopOrder | String | False | The ParentShopOrder column for the table SubOrderReceipts. |
ParentShopOrderMaterialPlan | String | False | The ParentShopOrderMaterialPlan column for the table SubOrderReceipts. |
ParentShopOrderNumber | Int | False | The ParentShopOrderNumber column for the table SubOrderReceipts. |
Quantity | Double | False | The Quantity column for the table SubOrderReceipts. |
SubShopOrder | String | False | The SubShopOrder column for the table SubOrderReceipts. |
SubShopOrderNumber | Int | False | The SubShopOrderNumber column for the table SubOrderReceipts. |
TransactionDate | Datetime | False | The TransactionDate column for the table SubOrderReceipts. |
Unit | String | False | The Unit column for the table SubOrderReceipts. |
UnitDescription | String | False | The UnitDescription column for the table SubOrderReceipts. |
Warehouse | String | False | The Warehouse column for the table SubOrderReceipts. |
WarehouseCode | String | False | The WarehouseCode column for the table SubOrderReceipts. |
WarehouseDescription | String | False | The WarehouseDescription column for the table SubOrderReceipts. |
SubOrderReversals
Usage information for the operation SubOrderReversals.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
MaterialReversalStockTransactionId [KEY] | String | True | The MaterialReversalStockTransactionId column for the table SubOrderReversals. |
CreatedBy | String | False | The CreatedBy column for the table SubOrderReversals. |
CreatedByFullName | String | False | The CreatedByFullName column for the table SubOrderReversals. |
CreatedDate | Datetime | False | The CreatedDate column for the table SubOrderReversals. |
IsBatch | Int | False | The IsBatch column for the table SubOrderReversals. |
IsFractionAllowedItem | Int | False | The IsFractionAllowedItem column for the table SubOrderReversals. |
IsSerial | Int | False | The IsSerial column for the table SubOrderReversals. |
Item | String | False | The Item column for the table SubOrderReversals. |
ItemCode | String | False | The ItemCode column for the table SubOrderReversals. |
ItemDescription | String | False | The ItemDescription column for the table SubOrderReversals. |
ItemPictureUrl | String | False | The ItemPictureUrl column for the table SubOrderReversals. |
Note | String | False | The Note column for the table SubOrderReversals. |
OriginalMaterialIssueStockTransactionId | String | False | The OriginalMaterialIssueStockTransactionId column for the table SubOrderReversals. |
OriginalShopOrderReceiptStockTransactionId | String | False | The OriginalShopOrderReceiptStockTransactionId column for the table SubOrderReversals. |
ParentShopOrder | String | False | The ParentShopOrder column for the table SubOrderReversals. |
ParentShopOrderNumber | Int | False | The ParentShopOrderNumber column for the table SubOrderReversals. |
Quantity | Double | False | The Quantity column for the table SubOrderReversals. |
ShopOrderReversalStockTransactionId | String | False | The ShopOrderReversalStockTransactionId column for the table SubOrderReversals. |
SubShopOrder | String | False | The SubShopOrder column for the table SubOrderReversals. |
SubShopOrderNumber | Int | False | The SubShopOrderNumber column for the table SubOrderReversals. |
TransactionDate | Datetime | False | The TransactionDate column for the table SubOrderReversals. |
Unit | String | False | The Unit column for the table SubOrderReversals. |
UnitDescription | String | False | The UnitDescription column for the table SubOrderReversals. |
Warehouse | String | False | The Warehouse column for the table SubOrderReversals. |
WarehouseCode | String | False | The WarehouseCode column for the table SubOrderReversals. |
WarehouseDescription | String | False | The WarehouseDescription column for the table SubOrderReversals. |
SubscriptionLines
Usage information for the operation SubscriptionLines.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ID [KEY] | String | True | The ID column for the table SubscriptionLines. |
AmountDC | Double | False | The AmountDC column for the table SubscriptionLines. |
AmountFC | Double | False | The AmountFC column for the table SubscriptionLines. |
Costcenter | String | False | The Costcenter column for the table SubscriptionLines. |
Costunit | String | False | The Costunit column for the table SubscriptionLines. |
Description | String | False | The Description column for the table SubscriptionLines. |
Discount | Double | False | The Discount column for the table SubscriptionLines. |
Division | Int | False | The Division column for the table SubscriptionLines. |
EntryID | String | False | The EntryID column for the table SubscriptionLines. |
FromDate | Datetime | False | The FromDate column for the table SubscriptionLines. |
Item | String | False | The Item column for the table SubscriptionLines. |
ItemDescription | String | False | The ItemDescription column for the table SubscriptionLines. |
LineNumber | Int | False | The LineNumber column for the table SubscriptionLines. |
LineType | Int | False | The LineType column for the table SubscriptionLines. |
LineTypeDescription | String | False | The LineTypeDescription column for the table SubscriptionLines. |
NetPrice | Double | False | The NetPrice column for the table SubscriptionLines. |
Notes | String | False | The Notes column for the table SubscriptionLines. |
Quantity | Double | False | The Quantity column for the table SubscriptionLines. |
ToDate | Datetime | False | The ToDate column for the table SubscriptionLines. |
UnitCode | String | False | The UnitCode column for the table SubscriptionLines. |
UnitDescription | String | False | The UnitDescription column for the table SubscriptionLines. |
UnitPrice | Double | False | The UnitPrice column for the table SubscriptionLines. |
VATAmountFC | Double | False | The VATAmountFC column for the table SubscriptionLines. |
VATCode | String | False | The VATCode column for the table SubscriptionLines. |
VATCodeDescription | String | False | The VATCodeDescription column for the table SubscriptionLines. |
SubscriptionRestrictionEmployees
Usage information for the operation SubscriptionRestrictionEmployees.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ID [KEY] | String | True | The ID column for the table SubscriptionRestrictionEmployees. |
Created | Datetime | False | The Created column for the table SubscriptionRestrictionEmployees. |
Creator | String | False | The Creator column for the table SubscriptionRestrictionEmployees. |
CreatorFullName | String | False | The CreatorFullName column for the table SubscriptionRestrictionEmployees. |
Division | Int | False | The Division column for the table SubscriptionRestrictionEmployees. |
Modified | Datetime | False | The Modified column for the table SubscriptionRestrictionEmployees. |
Modifier | String | False | The Modifier column for the table SubscriptionRestrictionEmployees. |
ModifierFullName | String | False | The ModifierFullName column for the table SubscriptionRestrictionEmployees. |
Subscription | String | False | The Subscription column for the table SubscriptionRestrictionEmployees. |
SubscriptionDescription | String | False | The SubscriptionDescription column for the table SubscriptionRestrictionEmployees. |
SubscriptionNumber | Int | False | The SubscriptionNumber column for the table SubscriptionRestrictionEmployees. |
Employee | String | False | The Employee column for the table SubscriptionRestrictionEmployees. |
EmployeeFullName | String | False | The EmployeeFullName column for the table SubscriptionRestrictionEmployees. |
EmployeeHID | Int | False | The EmployeeHID column for the table SubscriptionRestrictionEmployees. |
SubscriptionRestrictionItems
Usage information for the operation SubscriptionRestrictionItems.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ID [KEY] | String | True | The ID column for the table SubscriptionRestrictionItems. |
Created | Datetime | False | The Created column for the table SubscriptionRestrictionItems. |
Creator | String | False | The Creator column for the table SubscriptionRestrictionItems. |
CreatorFullName | String | False | The CreatorFullName column for the table SubscriptionRestrictionItems. |
Division | Int | False | The Division column for the table SubscriptionRestrictionItems. |
Modified | Datetime | False | The Modified column for the table SubscriptionRestrictionItems. |
Modifier | String | False | The Modifier column for the table SubscriptionRestrictionItems. |
ModifierFullName | String | False | The ModifierFullName column for the table SubscriptionRestrictionItems. |
Subscription | String | False | The Subscription column for the table SubscriptionRestrictionItems. |
SubscriptionDescription | String | False | The SubscriptionDescription column for the table SubscriptionRestrictionItems. |
SubscriptionNumber | Int | False | The SubscriptionNumber column for the table SubscriptionRestrictionItems. |
Item | String | False | The Item column for the table SubscriptionRestrictionItems. |
ItemCode | String | False | The ItemCode column for the table SubscriptionRestrictionItems. |
ItemDescription | String | False | The ItemDescription column for the table SubscriptionRestrictionItems. |
Subscriptions
Usage information for the operation Subscriptions.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
EntryID [KEY] | String | True | The EntryID column for the table Subscriptions. |
BlockEntry | Bool | False | The BlockEntry column for the table Subscriptions. |
CancellationDate | Datetime | False | The CancellationDate column for the table Subscriptions. |
Classification | String | False | The Classification column for the table Subscriptions. |
ClassificationCode | String | False | The ClassificationCode column for the table Subscriptions. |
ClassificationDescription | String | False | The ClassificationDescription column for the table Subscriptions. |
Created | Datetime | False | The Created column for the table Subscriptions. |
Creator | String | False | The Creator column for the table Subscriptions. |
CreatorFullName | String | False | The CreatorFullName column for the table Subscriptions. |
Currency | String | False | The Currency column for the table Subscriptions. |
CustomerPONumber | String | False | The CustomerPONumber column for the table Subscriptions. |
Description | String | False | The Description column for the table Subscriptions. |
Division | Int | False | The Division column for the table Subscriptions. |
EndDate | Datetime | False | The EndDate column for the table Subscriptions. |
InvoiceDay | Int | False | The InvoiceDay column for the table Subscriptions. |
InvoicedTo | Datetime | False | The InvoicedTo column for the table Subscriptions. |
InvoiceTo | String | False | The InvoiceTo column for the table Subscriptions. |
InvoiceToContactPerson | String | False | The InvoiceToContactPerson column for the table Subscriptions. |
InvoiceToContactPersonFullName | String | False | The InvoiceToContactPersonFullName column for the table Subscriptions. |
InvoiceToName | String | False | The InvoiceToName column for the table Subscriptions. |
InvoicingStartDate | Datetime | False | The InvoicingStartDate column for the table Subscriptions. |
Modified | Datetime | False | The Modified column for the table Subscriptions. |
Modifier | String | False | The Modifier column for the table Subscriptions. |
ModifierFullName | String | False | The ModifierFullName column for the table Subscriptions. |
Notes | String | False | The Notes column for the table Subscriptions. |
Number | Int | False | The Number column for the table Subscriptions. |
OrderedBy | String | False | The OrderedBy column for the table Subscriptions. |
OrderedByContactPerson | String | False | The OrderedByContactPerson column for the table Subscriptions. |
OrderedByContactPersonFullName | String | False | The OrderedByContactPersonFullName column for the table Subscriptions. |
OrderedByName | String | False | The OrderedByName column for the table Subscriptions. |
PaymentCondition | String | False | The PaymentCondition column for the table Subscriptions. |
PaymentConditionDescription | String | False | The PaymentConditionDescription column for the table Subscriptions. |
Printed | Bool | False | The Printed column for the table Subscriptions. |
ReasonCancelled | String | False | The ReasonCancelled column for the table Subscriptions. |
ReasonCancelledCode | String | False | The ReasonCancelledCode column for the table Subscriptions. |
ReasonCancelledDescription | String | False | The ReasonCancelledDescription column for the table Subscriptions. |
StartDate | Datetime | False | The StartDate column for the table Subscriptions. |
SubscriptionType | String | False | The SubscriptionType column for the table Subscriptions. |
SubscriptionTypeCode | String | False | The SubscriptionTypeCode column for the table Subscriptions. |
SubscriptionTypeDescription | String | False | The SubscriptionTypeDescription column for the table Subscriptions. |
LinkedSubscriptionLines | String | False | The LinkedSubscriptionLines column for the table Subscriptions. |
LinkedSubscriptionRestrictionEmployees | String | False | The LinkedSubscriptionRestrictionEmployees column for the table Subscriptions. |
LinkedSubscriptionRestrictionItems | String | False | The LinkedSubscriptionRestrictionItems column for the table Subscriptions. |
SupplierItem
Usage information for the operation SupplierItem.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ID [KEY] | String | True | The ID column for the table SupplierItem. |
CopyRemarks | Int | False | The CopyRemarks column for the table SupplierItem. |
CountryOfOrigin | String | False | The CountryOfOrigin column for the table SupplierItem. |
CountryOfOriginDescription | String | False | The CountryOfOriginDescription column for the table SupplierItem. |
Created | Datetime | False | The Created column for the table SupplierItem. |
Creator | String | False | The Creator column for the table SupplierItem. |
CreatorFullName | String | False | The CreatorFullName column for the table SupplierItem. |
Currency | String | False | The Currency column for the table SupplierItem. |
CurrencyDescription | String | False | The CurrencyDescription column for the table SupplierItem. |
Division | Int | False | The Division column for the table SupplierItem. |
DropShipment | Int | False | The DropShipment column for the table SupplierItem. |
Item | String | False | The Item column for the table SupplierItem. |
ItemCode | String | False | The ItemCode column for the table SupplierItem. |
ItemDescription | String | False | The ItemDescription column for the table SupplierItem. |
MainSupplier | Bool | False | The MainSupplier column for the table SupplierItem. |
MinimumQuantity | Double | False | The MinimumQuantity column for the table SupplierItem. |
Modified | Datetime | False | The Modified column for the table SupplierItem. |
Modifier | String | False | The Modifier column for the table SupplierItem. |
ModifierFullName | String | False | The ModifierFullName column for the table SupplierItem. |
Notes | String | False | The Notes column for the table SupplierItem. |
PurchaseLeadTime | Int | False | The PurchaseLeadTime column for the table SupplierItem. |
PurchasePrice | Double | False | The PurchasePrice column for the table SupplierItem. |
PurchaseUnit | String | False | The PurchaseUnit column for the table SupplierItem. |
PurchaseUnitDescription | String | False | The PurchaseUnitDescription column for the table SupplierItem. |
PurchaseUnitFactor | Double | False | The PurchaseUnitFactor column for the table SupplierItem. |
PurchaseVATCode | String | False | The PurchaseVATCode column for the table SupplierItem. |
PurchaseVATCodeDescription | String | False | The PurchaseVATCodeDescription column for the table SupplierItem. |
Supplier | String | False | The Supplier column for the table SupplierItem. |
SupplierCode | String | False | The SupplierCode column for the table SupplierItem. |
SupplierDescription | String | False | The SupplierDescription column for the table SupplierItem. |
SupplierItemCode | String | False | The SupplierItemCode column for the table SupplierItem. |
Tasks
Usage information for the operation Tasks.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ID [KEY] | String | True | The ID column for the table Tasks. |
Account | String | False | The Account column for the table Tasks. |
AccountName | String | False | The AccountName column for the table Tasks. |
ActionDate | Datetime | False | The ActionDate column for the table Tasks. |
Contact | String | False | The Contact column for the table Tasks. |
ContactFullName | String | False | The ContactFullName column for the table Tasks. |
Created | Datetime | False | The Created column for the table Tasks. |
Creator | String | False | The Creator column for the table Tasks. |
CreatorFullName | String | False | The CreatorFullName column for the table Tasks. |
CustomTaskType | String | False | The CustomTaskType column for the table Tasks. |
Description | String | False | The Description column for the table Tasks. |
Division | Int | False | The Division column for the table Tasks. |
Document | String | False | The Document column for the table Tasks. |
DocumentSubject | String | False | The DocumentSubject column for the table Tasks. |
HID | Int | False | The HID column for the table Tasks. |
Modified | Datetime | False | The Modified column for the table Tasks. |
Modifier | String | False | The Modifier column for the table Tasks. |
ModifierFullName | String | False | The ModifierFullName column for the table Tasks. |
Notes | String | False | The Notes column for the table Tasks. |
Opportunity | String | False | The Opportunity column for the table Tasks. |
OpportunityName | String | False | The OpportunityName column for the table Tasks. |
Project | String | False | The Project column for the table Tasks. |
ProjectDescription | String | False | The ProjectDescription column for the table Tasks. |
Status | Int | False | The Status column for the table Tasks. |
StatusDescription | String | False | The StatusDescription column for the table Tasks. |
TaskType | Int | False | The TaskType column for the table Tasks. |
TaskTypeDescription | String | False | The TaskTypeDescription column for the table Tasks. |
User | String | False | The User column for the table Tasks. |
UserFullName | String | False | The UserFullName column for the table Tasks. |
TaskTypes
Usage information for the operation TaskTypes.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ID [KEY] | String | True | The ID column for the table TaskTypes. |
Created | Datetime | False | The Created column for the table TaskTypes. |
Creator | String | False | The Creator column for the table TaskTypes. |
CreatorFullName | String | False | The CreatorFullName column for the table TaskTypes. |
Description | String | False | The Description column for the table TaskTypes. |
DescriptionTermID | Int | False | The DescriptionTermID column for the table TaskTypes. |
Division | Int | False | The Division column for the table TaskTypes. |
Modified | Datetime | False | The Modified column for the table TaskTypes. |
Modifier | String | False | The Modifier column for the table TaskTypes. |
ModifierFullName | String | False | The ModifierFullName column for the table TaskTypes. |
TimeCorrections
Usage information for the operation TimeCorrections.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ID [KEY] | String | True | The ID column for the table TimeCorrections. |
Created | Datetime | False | The Created column for the table TimeCorrections. |
Creator | String | False | The Creator column for the table TimeCorrections. |
CreatorFullName | String | False | The CreatorFullName column for the table TimeCorrections. |
Division | Int | False | The Division column for the table TimeCorrections. |
Modified | Datetime | False | The Modified column for the table TimeCorrections. |
Modifier | String | False | The Modifier column for the table TimeCorrections. |
ModifierFullName | String | False | The ModifierFullName column for the table TimeCorrections. |
Notes | String | False | The Notes column for the table TimeCorrections. |
OriginalEntryId | String | False | The OriginalEntryId column for the table TimeCorrections. |
Quantity | Double | False | The Quantity column for the table TimeCorrections. |
TimeTransactions
Usage information for the operation TimeTransactions.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ID [KEY] | String | True | The ID column for the table TimeTransactions. |
Activity | Int | False | The Activity column for the table TimeTransactions. |
Created | Datetime | False | The Created column for the table TimeTransactions. |
Creator | String | False | The Creator column for the table TimeTransactions. |
CreatorFullName | String | False | The CreatorFullName column for the table TimeTransactions. |
Date | Datetime | False | The Date column for the table TimeTransactions. |
Division | Int | False | The Division column for the table TimeTransactions. |
Employee | String | False | The Employee column for the table TimeTransactions. |
Hours | Double | False | The Hours column for the table TimeTransactions. |
IsOperationFinished | Int | False | The IsOperationFinished column for the table TimeTransactions. |
LaborHours | Double | False | The LaborHours column for the table TimeTransactions. |
Modified | Datetime | False | The Modified column for the table TimeTransactions. |
Modifier | String | False | The Modifier column for the table TimeTransactions. |
ModifierFullName | String | False | The ModifierFullName column for the table TimeTransactions. |
Notes | String | False | The Notes column for the table TimeTransactions. |
PercentComplete | Double | False | The PercentComplete column for the table TimeTransactions. |
Quantity | Double | False | The Quantity column for the table TimeTransactions. |
RoutingStepPlan | String | False | The RoutingStepPlan column for the table TimeTransactions. |
ShopOrder | String | False | The ShopOrder column for the table TimeTransactions. |
Status | Int | False | The Status column for the table TimeTransactions. |
TimedTimeTransaction | String | False | The TimedTimeTransaction column for the table TimeTransactions. |
WorkCenter | String | False | The WorkCenter column for the table TimeTransactions. |
VATCodes
Usage information for the operation VATCodes.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ID [KEY] | String | True | The ID column for the table VATCodes. |
Account | String | False | The Account column for the table VATCodes. |
AccountCode | String | False | The AccountCode column for the table VATCodes. |
AccountName | String | False | The AccountName column for the table VATCodes. |
CalculationBasis | Int | False | The CalculationBasis column for the table VATCodes. |
Charged | Bool | False | The Charged column for the table VATCodes. |
Code | String | False | The Code column for the table VATCodes. |
Country | String | False | The Country column for the table VATCodes. |
Created | Datetime | False | The Created column for the table VATCodes. |
Creator | String | False | The Creator column for the table VATCodes. |
CreatorFullName | String | False | The CreatorFullName column for the table VATCodes. |
Description | String | False | The Description column for the table VATCodes. |
Division | Int | False | The Division column for the table VATCodes. |
EUSalesListing | String | False | The EUSalesListing column for the table VATCodes. |
GLDiscountPurchase | String | False | The GLDiscountPurchase column for the table VATCodes. |
GLDiscountPurchaseCode | String | False | The GLDiscountPurchaseCode column for the table VATCodes. |
GLDiscountPurchaseDescription | String | False | The GLDiscountPurchaseDescription column for the table VATCodes. |
GLDiscountSales | String | False | The GLDiscountSales column for the table VATCodes. |
GLDiscountSalesCode | String | False | The GLDiscountSalesCode column for the table VATCodes. |
GLDiscountSalesDescription | String | False | The GLDiscountSalesDescription column for the table VATCodes. |
GLToClaim | String | False | The GLToClaim column for the table VATCodes. |
GLToClaimCode | String | False | The GLToClaimCode column for the table VATCodes. |
GLToClaimDescription | String | False | The GLToClaimDescription column for the table VATCodes. |
GLToPay | String | False | The GLToPay column for the table VATCodes. |
GLToPayCode | String | False | The GLToPayCode column for the table VATCodes. |
GLToPayDescription | String | False | The GLToPayDescription column for the table VATCodes. |
IntraStat | Bool | False | The IntraStat column for the table VATCodes. |
IntrastatType | String | False | The IntrastatType column for the table VATCodes. |
IsBlocked | Bool | False | The IsBlocked column for the table VATCodes. |
LegalText | String | False | The LegalText column for the table VATCodes. |
Modified | Datetime | False | The Modified column for the table VATCodes. |
Modifier | String | False | The Modifier column for the table VATCodes. |
ModifierFullName | String | False | The ModifierFullName column for the table VATCodes. |
Percentage | Double | False | The Percentage column for the table VATCodes. |
TaxReturnType | Int | False | The TaxReturnType column for the table VATCodes. |
Type | String | False | The Type column for the table VATCodes. |
VatDocType | String | False | The VatDocType column for the table VATCodes. |
VatMargin | Int | False | The VatMargin column for the table VATCodes. |
VATPartialRatio | Int | False | The VATPartialRatio column for the table VATCodes. |
VATTransactionType | String | False | The VATTransactionType column for the table VATCodes. |
LinkedVATPercentages | String | False | The LinkedVATPercentages column for the table VATCodes. |
Warehouses
Usage information for the operation Warehouses.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ID [KEY] | String | True | The ID column for the table Warehouses. |
Code | String | False | The Code column for the table Warehouses. |
Created | Datetime | False | The Created column for the table Warehouses. |
Creator | String | False | The Creator column for the table Warehouses. |
CreatorFullName | String | False | The CreatorFullName column for the table Warehouses. |
DefaultStorageLocation | String | False | The DefaultStorageLocation column for the table Warehouses. |
DefaultStorageLocationCode | String | False | The DefaultStorageLocationCode column for the table Warehouses. |
DefaultStorageLocationDescription | String | False | The DefaultStorageLocationDescription column for the table Warehouses. |
Description | String | False | The Description column for the table Warehouses. |
Division | Int | False | The Division column for the table Warehouses. |
EMail | String | False | The EMail column for the table Warehouses. |
Main | Int | False | The Main column for the table Warehouses. |
ManagerUser | String | False | The ManagerUser column for the table Warehouses. |
Modified | Datetime | False | The Modified column for the table Warehouses. |
Modifier | String | False | The Modifier column for the table Warehouses. |
ModifierFullName | String | False | The ModifierFullName column for the table Warehouses. |
UseStorageLocations | Int | False | The UseStorageLocations column for the table Warehouses. |
Workcenters
Usage information for the operation Workcenters.rsd.
Columns
Name | Type | ReadOnly | Description |
---|---|---|---|
ID [KEY] | String | True | The ID column for the table Workcenters. |
Capacity | Int | False | The Capacity column for the table Workcenters. |
Code | String | False | The Code column for the table Workcenters. |
Costcenter | String | False | The Costcenter column for the table Workcenters. |
CostcenterDescription | String | False | The CostcenterDescription column for the table Workcenters. |
Costunit | String | False | The Costunit column for the table Workcenters. |
CostunitDescription | String | False | The CostunitDescription column for the table Workcenters. |
Created | Datetime | False | The Created column for the table Workcenters. |
Creator | String | False | The Creator column for the table Workcenters. |
CreatorFullName | String | False | The CreatorFullName column for the table Workcenters. |
Description | String | False | The Description column for the table Workcenters. |
Division | Int | False | The Division column for the table Workcenters. |
GeneralBurdenRate | Double | False | The GeneralBurdenRate column for the table Workcenters. |
IsLaborBurdenPercent | Int | False | The IsLaborBurdenPercent column for the table Workcenters. |
LaborBurdenRate | Double | False | The LaborBurdenRate column for the table Workcenters. |
MachineBurdenRate | Double | False | The MachineBurdenRate column for the table Workcenters. |
Modified | Datetime | False | The Modified column for the table Workcenters. |
Modifier | String | False | The Modifier column for the table Workcenters. |
ModifierFullName | String | False | The ModifierFullName column for the table Workcenters. |
Notes | String | False | The Notes column for the table Workcenters. |
ProductionArea | String | False | The ProductionArea column for the table Workcenters. |
RunLaborRate | Double | False | The RunLaborRate column for the table Workcenters. |
SearchCode | String | False | The SearchCode column for the table Workcenters. |
SetupLaborRate | Double | False | The SetupLaborRate column for the table Workcenters. |
Status | Int | False | The Status column for the table Workcenters. |
Type | Int | False | The Type column for the table Workcenters. |
Views
Views are similar to tables in the way that data is represented; however, views are read-only.
Queries can be executed against a view as if it were a normal table.
Exact Online Connector Views
Name | Description |
---|---|
AbsenceRegistrations | Usage information for the operation AbsenceRegistrations.rsd. |
AbsenceRegistrationTransactions | Usage information for the operation AbsenceRegistrationTransactions.rsd. |
AccountantInfo | Usage information for the operation AccountantInfo.rsd. |
AccountClasses | Usage information for the operation AccountClasses.rsd. |
AccountClassificationNames | Usage information for the operation AccountClassificationNames.rsd. |
AccountClassifications | Usage information for the operation AccountClassifications.rsd. |
ActiveEmployments | Usage information for the operation ActiveEmployments.rsd. |
AddressStates | Usage information for the operation AddressStates.rsd. |
AgingOverview | Usage information for the operation AgingOverview.rsd. |
AgingPayablesList | Usage information for the operation AgingPayablesList.rsd. |
AgingReceivablesList | Usage information for the operation AgingReceivablesList.rsd. |
AssetGroups | Usage information for the operation AssetGroups.rsd. |
Assets | Usage information for the operation Assets.rsd. |
AvailableFeatures | Usage information for the operation AvailableFeatures.rsd. |
Banks | Usage information for the operation Banks.rsd. |
BatchNumbers | Usage information for the operation BatchNumbers.rsd. |
Budgets | Usage information for the operation Budgets.rsd. |
CRMDocuments | Usage information for the operation CRMDocuments.rsd. |
Currencies | Usage information for the operation Currencies.rsd. |
CurrentYear_AfterEntry | Usage information for the operation CurrentYear_AfterEntry.rsd. |
CurrentYear_Processed | Usage information for the operation CurrentYear_Processed.rsd. |
DefaultMailbox | Usage information for the operation DefaultMailbox.rsd. |
Departments | Usage information for the operation Departments.rsd. |
Divisions | Usage information for the operation Divisions.rsd. |
DocumentCategories | Usage information for the operation DocumentCategories.rsd. |
DocumentsAttachments | Usage information for the operation DocumentsAttachments.rsd. |
DocumentTypeCategories | Usage information for the operation DocumentTypeCategories.rsd. |
DocumentTypes | Usage information for the operation DocumentTypes.rsd. |
Employees | Usage information for the operation Employees.rsd. |
EmploymentContractFlexPhases | Usage information for the operation EmploymentContractFlexPhases.rsd. |
EmploymentContracts | Usage information for the operation EmploymentContracts.rsd. |
EmploymentEndReasons | Usage information for the operation EmploymentEndReasons.rsd. |
EmploymentOrganizations | Usage information for the operation EmploymentOrganizations.rsd. |
Employments | Usage information for the operation Employments.rsd. |
EmploymentSalaries | Usage information for the operation EmploymentSalaries.rsd. |
FinancialPeriods | Usage information for the operation FinancialPeriods.rsd. |
GLAccountClassificationMappings | Usage information for the operation GLAccountClassificationMappings.rsd. |
GLClassifications | Usage information for the operation GLClassifications.rsd. |
GLSchemes | Usage information for the operation GLSchemes.rsd. |
GLTransactionTypes | Usage information for the operation GLTransactionTypes.rsd. |
HourCostTypes | Usage information for the operation HourCostTypes.rsd. |
ItemChargeRelation | Usage information for the operation ItemChargeRelation.rsd. |
ItemGroups | Usage information for the operation ItemGroups.rsd. |
ItemsExtraFields | Get the values of extra fields (custom fields) for Items. |
ItemVersions | Usage information for the operation ItemVersions.rsd. |
ItemWarehousePlanningDetails | Usage information for the operation ItemWarehousePlanningDetails.rsd. |
ItemWarehouseStorageLocations | Usage information for the operation ItemWarehouseStorageLocations.rsd. |
JobGroups | Usage information for the operation JobGroups.rsd. |
JobTitles | Usage information for the operation JobTitles.rsd. |
JournalStatusList | Usage information for the operation JournalStatusList.rsd. |
Layouts | Usage information for the operation Layouts.rsd. |
LeadSources | Usage information for the operation LeadSources.rsd. |
LeaveAbsenceHoursByDay | Use this endpoint to read employee's leave and absence hours by day. |
LeaveBuildUpRegistrations | Usage information for the operation LeaveBuildUpRegistrations.rsd. |
LeaveRegistrations | Usage information for the operation LeaveRegistrations.rsd. |
MailMessagesReceived | Usage information for the operation MailMessagesReceived.rsd. |
Me | Usage information for the operation Me.rsd. |
OpportunityContacts | Usage information for the operation OpportunityContacts.rsd. |
OutstandingInvoicesOverview | Usage information for the operation OutstandingInvoicesOverview.rsd. |
PayablesList | Usage information for the operation PayablesList.rsd. |
Payments | Usage information for the operation Payments.rsd. |
PaymentTerms | Usage information for the operation PaymentTerms.rsd. |
PayrollComponents | Usage information for the operation PayrollComponents.rsd. |
PayrollTransactions | Usage information for the operation PayrollTransactions.rsd. |
PreferredMailbox | Usage information for the operation PreferredMailbox.rsd. |
PreviousYear_AfterEntry | Usage information for the operation PreviousYear_AfterEntry.rsd. |
PreviousYear_Processed | Usage information for the operation PreviousYear_Processed.rsd. |
PriceListPeriods | Usage information for the operation PriceListPeriods.rsd. |
PriceLists | Usage information for the operation PriceLists.rsd. |
PriceListsLinkedAccounts | Usage information for the operation PriceListsLinkedAccounts.rsd. |
PriceListVolumeDiscounts | Usage information for the operation PriceListVolumeDiscounts.rsd. |
ProfitLossOverview | Usage information for the operation ProfitLossOverview.rsd. |
ProjectBudgetTypes | Usage information for the operation ProjectBudgetTypes.rsd. |
ProjectWBS | Usage information for the operation ProjectWBS.rsd. |
PurchaseItemPrices | Purchase Item Prices |
PurchaseOrderLines | Usage information for the operation PurchaseOrderLines.rsd. |
PurchaseOrders | Usage information for the operation PurchaseOrders.rsd. |
QuotationHeaders | Usage information for the operation QuotationHeaders.rsd. |
ReasonCodes | Usage information for the operation ReasonCodes.rsd. |
Receivables | Usage information for the operation Receivables.rsd. |
ReceivablesList | Usage information for the operation ReceivablesList.rsd. |
RecentCosts | Usage information for the operation RecentCosts.rsd. |
RecentHours | Usage information for the operation RecentHours.rsd. |
ReportingBalance | Usage information for the operation ReportingBalance.rsd. |
Returns | Usage information for the operation Returns.rsd. |
RevenueList | Usage information for the operation RevenueList.rsd. |
ScheduleEntries | ScheduleEntries |
Schedules | Usage information for the operation Schedules.rsd. |
SerialNumbers | Usage information for the operation SerialNumbers.rsd. |
ShippingMethods | Usage information for the operation ShippingMethods.rsd. |
StockBatchNumbers | Usage information for the operation StockBatchNumbers.rsd. |
StockPositions | Usage information for the operation StockPositions.rsd. |
StockSerialNumbers | Usage information for the operation StockSerialNumbers.rsd. |
StorageLocations | Usage information for the operation StorageLocations.rsd. |
StorageLocationStockPositions | Usage information for the operation StorageLocationStockPositions.rsd. |
SubscriptionLineTypes | Usage information for the operation SubscriptionLineTypes.rsd. |
SubscriptionReasonCodes | Usage information for the operation SubscriptionReasonCodes.rsd. |
SubscriptionTypes | Usage information for the operation SubscriptionTypes.rsd. |
TaxComponentRates | Usage information for the operation TaxComponentRates.rsd. |
TaxEmploymentEndFlexCodes | Usage information for the operation TaxEmploymentEndFlexCodes.rsd. |
TaxScheduleComponents | Usage information for the operation TaxScheduleComponents.rsd. |
TaxSchedules | Usage information for the operation TaxSchedules.rsd. |
TimeAndBillingAccountDetails | Usage information for the operation TimeAndBillingAccountDetails.rsd. |
TimeAndBillingActivitiesAndExpenses | Usage information for the operation TimeAndBillingActivitiesAndExpenses.rsd. |
TimeAndBillingEntryAccounts | Usage information for the operation TimeAndBillingEntryAccounts.rsd. |
TimeAndBillingEntryProjects | Usage information for the operation TimeAndBillingEntryProjects.rsd. |
TimeAndBillingEntryRecentAccounts | Usage information for the operation TimeAndBillingEntryRecentAccounts.rsd. |
TimeAndBillingEntryRecentActivitiesAndExpenses | Usage information for the operation TimeAndBillingEntryRecentActivitiesAndExpenses.rsd. |
TimeAndBillingEntryRecentHourCostTypes | Usage information for the operation TimeAndBillingEntryRecentHourCostTypes.rsd. |
TimeAndBillingEntryRecentProjects | Usage information for the operation TimeAndBillingEntryRecentProjects.rsd. |
TimeAndBillingItemDetails | Usage information for the operation TimeAndBillingItemDetails.rsd. |
TimeAndBillingProjectDetails | Usage information for the operation TimeAndBillingProjectDetails.rsd. |
TimeCostTransactions | Usage information for the operation TimeCostTransactions.rsd. |
TransactionLines | Usage information for the operation TransactionLines.rsd. |
Units | Usage information for the operation Units.rsd. |
UserRoles | Usage information for the operation UserRoles.rsd. |
UserRolesPerDivision | Usage information for the operation UserRolesPerDivision.rsd. |
Users | Usage information for the operation Users.rsd. |
VatPercentages | Usage information for the operation VatPercentages.rsd. |
AbsenceRegistrations
Usage information for the operation AbsenceRegistrations.rsd.
Columns
Name | Type | Description |
---|---|---|
ID [KEY] | String | The ID column for the table AbsenceRegistrations. |
Cause | Int | The Cause column for the table AbsenceRegistrations. |
CauseCode | String | The CauseCode column for the table AbsenceRegistrations. |
CauseDescription | String | The CauseDescription column for the table AbsenceRegistrations. |
Created | Datetime | The Created column for the table AbsenceRegistrations. |
Creator | String | The Creator column for the table AbsenceRegistrations. |
CreatorFullName | String | The CreatorFullName column for the table AbsenceRegistrations. |
Division | Int | The Division column for the table AbsenceRegistrations. |
Employee | String | The Employee column for the table AbsenceRegistrations. |
EmployeeFullName | String | The EmployeeFullName column for the table AbsenceRegistrations. |
EmployeeHID | Int | The EmployeeHID column for the table AbsenceRegistrations. |
Kind | Int | The Kind column for the table AbsenceRegistrations. |
KindCode | String | The KindCode column for the table AbsenceRegistrations. |
KindDescription | String | The KindDescription column for the table AbsenceRegistrations. |
Modified | Datetime | The Modified column for the table AbsenceRegistrations. |
Modifier | String | The Modifier column for the table AbsenceRegistrations. |
ModifierFullName | String | The ModifierFullName column for the table AbsenceRegistrations. |
Notes | String | The Notes column for the table AbsenceRegistrations. |
LinkedAbsenceRegistrationTransactions | String | The LinkedAbsenceRegistrationTransactions column for the table AbsenceRegistrations. |
AbsenceRegistrationTransactions
Usage information for the operation AbsenceRegistrationTransactions.rsd.
Columns
Name | Type | Description |
---|---|---|
ID [KEY] | String | The ID column for the table AbsenceRegistrationTransactions. |
AbsenceRegistration | String | The AbsenceRegistration column for the table AbsenceRegistrationTransactions. |
Created | Datetime | The Created column for the table AbsenceRegistrationTransactions. |
Creator | String | The Creator column for the table AbsenceRegistrationTransactions. |
CreatorFullName | String | The CreatorFullName column for the table AbsenceRegistrationTransactions. |
Division | Int | The Division column for the table AbsenceRegistrationTransactions. |
EndTime | Datetime | The EndTime column for the table AbsenceRegistrationTransactions. |
ExpectedEndDate | Datetime | The ExpectedEndDate column for the table AbsenceRegistrationTransactions. |
Hours | Double | The Hours column for the table AbsenceRegistrationTransactions. |
HoursFirstDay | Double | The HoursFirstDay column for the table AbsenceRegistrationTransactions. |
HoursLastDay | Double | The HoursLastDay column for the table AbsenceRegistrationTransactions. |
Modified | Datetime | The Modified column for the table AbsenceRegistrationTransactions. |
Modifier | String | The Modifier column for the table AbsenceRegistrationTransactions. |
ModifierFullName | String | The ModifierFullName column for the table AbsenceRegistrationTransactions. |
Notes | String | The Notes column for the table AbsenceRegistrationTransactions. |
NotificationMoment | Datetime | The NotificationMoment column for the table AbsenceRegistrationTransactions. |
PercentageDisablement | Double | The PercentageDisablement column for the table AbsenceRegistrationTransactions. |
StartDate | Datetime | The StartDate column for the table AbsenceRegistrationTransactions. |
StartTime | Datetime | The StartTime column for the table AbsenceRegistrationTransactions. |
Status | Int | The Status column for the table AbsenceRegistrationTransactions. |
AccountantInfo
Usage information for the operation AccountantInfo.rsd.
Columns
Name | Type | Description |
---|---|---|
ID [KEY] | String | The ID column for the table AccountantInfo. |
AddressLine1 | String | The AddressLine1 column for the table AccountantInfo. |
AddressLine2 | String | The AddressLine2 column for the table AccountantInfo. |
AddressLine3 | String | The AddressLine3 column for the table AccountantInfo. |
City | String | The City column for the table AccountantInfo. |
Email | String | The Email column for the table AccountantInfo. |
IsAccountant | Bool | The IsAccountant column for the table AccountantInfo. |
Logo | Binary | The Logo column for the table AccountantInfo. |
MenuLogoUrl | String | The MenuLogoUrl column for the table AccountantInfo. |
Name | String | The Name column for the table AccountantInfo. |
Phone | String | The Phone column for the table AccountantInfo. |
Postcode | String | The Postcode column for the table AccountantInfo. |
Website | String | The Website column for the table AccountantInfo. |
AccountClasses
Usage information for the operation AccountClasses.rsd.
Columns
Name | Type | Description |
---|---|---|
ID [KEY] | String | The ID column for the table AccountClasses. |
Code | String | The Code column for the table AccountClasses. |
Created | Datetime | The Created column for the table AccountClasses. |
Creator | String | The Creator column for the table AccountClasses. |
CreatorFullName | String | The CreatorFullName column for the table AccountClasses. |
CreditManagementScenario | String | The CreditManagementScenario column for the table AccountClasses. |
Description | String | The Description column for the table AccountClasses. |
Division | Int | The Division column for the table AccountClasses. |
Modified | Datetime | The Modified column for the table AccountClasses. |
Modifier | String | The Modifier column for the table AccountClasses. |
ModifierFullName | String | The ModifierFullName column for the table AccountClasses. |
AccountClassificationNames
Usage information for the operation AccountClassificationNames.rsd.
Columns
Name | Type | Description |
---|---|---|
ID [KEY] | String | The ID column for the table AccountClassificationNames. |
Created | Datetime | The Created column for the table AccountClassificationNames. |
Creator | String | The Creator column for the table AccountClassificationNames. |
CreatorFullName | String | The CreatorFullName column for the table AccountClassificationNames. |
Description | String | The Description column for the table AccountClassificationNames. |
Division | Int | The Division column for the table AccountClassificationNames. |
Modified | Datetime | The Modified column for the table AccountClassificationNames. |
Modifier | String | The Modifier column for the table AccountClassificationNames. |
ModifierFullName | String | The ModifierFullName column for the table AccountClassificationNames. |
SequenceNumber | Int | The SequenceNumber column for the table AccountClassificationNames. |
AccountClassifications
Usage information for the operation AccountClassifications.rsd.
Columns
Name | Type | Description |
---|---|---|
ID [KEY] | String | The ID column for the table AccountClassifications. |
AccountClassificationName | String | The AccountClassificationName column for the table AccountClassifications. |
AccountClassificationNameDescription | String | The AccountClassificationNameDescription column for the table AccountClassifications. |
Code | String | The Code column for the table AccountClassifications. |
Created | Datetime | The Created column for the table AccountClassifications. |
Creator | String | The Creator column for the table AccountClassifications. |
CreatorFullName | String | The CreatorFullName column for the table AccountClassifications. |
Description | String | The Description column for the table AccountClassifications. |
Division | Int | The Division column for the table AccountClassifications. |
Modified | Datetime | The Modified column for the table AccountClassifications. |
Modifier | String | The Modifier column for the table AccountClassifications. |
ModifierFullName | String | The ModifierFullName column for the table AccountClassifications. |
ActiveEmployments
Usage information for the operation ActiveEmployments.rsd.
Columns
Name | Type | Description |
---|---|---|
ID [KEY] | String | The ID column for the table ActiveEmployments. |
AverageDaysPerWeek | Double | The AverageDaysPerWeek column for the table ActiveEmployments. |
AverageHoursPerWeek | Double | The AverageHoursPerWeek column for the table ActiveEmployments. |
Contract | String | The Contract column for the table ActiveEmployments. |
ContractDocument | String | The ContractDocument column for the table ActiveEmployments. |
ContractEndDate | Datetime | The ContractEndDate column for the table ActiveEmployments. |
ContractProbationEndDate | Datetime | The ContractProbationEndDate column for the table ActiveEmployments. |
ContractProbationPeriod | Int | The ContractProbationPeriod column for the table ActiveEmployments. |
ContractStartDate | Datetime | The ContractStartDate column for the table ActiveEmployments. |
ContractType | Int | The ContractType column for the table ActiveEmployments. |
ContractTypeDescription | String | The ContractTypeDescription column for the table ActiveEmployments. |
Created | Datetime | The Created column for the table ActiveEmployments. |
Creator | String | The Creator column for the table ActiveEmployments. |
CreatorFullName | String | The CreatorFullName column for the table ActiveEmployments. |
Department | String | The Department column for the table ActiveEmployments. |
DepartmentCode | String | The DepartmentCode column for the table ActiveEmployments. |
DepartmentDescription | String | The DepartmentDescription column for the table ActiveEmployments. |
Division | Int | The Division column for the table ActiveEmployments. |
Employee | String | The Employee column for the table ActiveEmployments. |
EmployeeFullName | String | The EmployeeFullName column for the table ActiveEmployments. |
EmployeeHID | Int | The EmployeeHID column for the table ActiveEmployments. |
EmploymentOrganization | String | The EmploymentOrganization column for the table ActiveEmployments. |
EndDate | Datetime | The EndDate column for the table ActiveEmployments. |
HID | Int | The HID column for the table ActiveEmployments. |
HourlyWage | Double | The HourlyWage column for the table ActiveEmployments. |
InternalRate | Double | The InternalRate column for the table ActiveEmployments. |
Jobtitle | String | The Jobtitle column for the table ActiveEmployments. |
JobtitleDescription | String | The JobtitleDescription column for the table ActiveEmployments. |
Modified | Datetime | The Modified column for the table ActiveEmployments. |
Modifier | String | The Modifier column for the table ActiveEmployments. |
ModifierFullName | String | The ModifierFullName column for the table ActiveEmployments. |
ReasonEnd | Int | The ReasonEnd column for the table ActiveEmployments. |
ReasonEndDescription | String | The ReasonEndDescription column for the table ActiveEmployments. |
ReasonEndFlex | Int | The ReasonEndFlex column for the table ActiveEmployments. |
ReasonEndFlexDescription | String | The ReasonEndFlexDescription column for the table ActiveEmployments. |
Salary | String | The Salary column for the table ActiveEmployments. |
Schedule | String | The Schedule column for the table ActiveEmployments. |
ScheduleAverageHours | Double | The ScheduleAverageHours column for the table ActiveEmployments. |
ScheduleCode | String | The ScheduleCode column for the table ActiveEmployments. |
ScheduleDays | Double | The ScheduleDays column for the table ActiveEmployments. |
ScheduleDescription | String | The ScheduleDescription column for the table ActiveEmployments. |
ScheduleHours | Double | The ScheduleHours column for the table ActiveEmployments. |
StartDate | Datetime | The StartDate column for the table ActiveEmployments. |
StartDateOrganization | Datetime | The StartDateOrganization column for the table ActiveEmployments. |
AddressStates
Usage information for the operation AddressStates.rsd.
Columns
Name | Type | Description |
---|---|---|
ID [KEY] | String | The ID column for the table AddressStates. |
Country | String | The Country column for the table AddressStates. |
DisplayValue | String | The DisplayValue column for the table AddressStates. |
Latitude | Double | The Latitude column for the table AddressStates. |
Longitude | Double | The Longitude column for the table AddressStates. |
Name | String | The Name column for the table AddressStates. |
State | String | The State column for the table AddressStates. |
AgingOverview
Usage information for the operation AgingOverview.rsd.
Columns
Name | Type | Description |
---|---|---|
AgeGroup [KEY] | Int | The AgeGroup column for the table AgingOverview. |
AgeGroupDescription | String | The AgeGroupDescription column for the table AgingOverview. |
AmountPayable | Double | The AmountPayable column for the table AgingOverview. |
AmountReceivable | Double | The AmountReceivable column for the table AgingOverview. |
CurrencyCode | String | The CurrencyCode column for the table AgingOverview. |
AgingPayablesList
Usage information for the operation AgingPayablesList.rsd.
Columns
Name | Type | Description |
---|---|---|
AccountId [KEY] | String | The AccountId column for the table AgingPayablesList. |
AccountCode | String | The AccountCode column for the table AgingPayablesList. |
AccountName | String | The AccountName column for the table AgingPayablesList. |
AgeGroup1 | Int | The AgeGroup1 column for the table AgingPayablesList. |
AgeGroup1Amount | Double | The AgeGroup1Amount column for the table AgingPayablesList. |
AgeGroup1Description | String | The AgeGroup1Description column for the table AgingPayablesList. |
AgeGroup2 | Int | The AgeGroup2 column for the table AgingPayablesList. |
AgeGroup2Amount | Double | The AgeGroup2Amount column for the table AgingPayablesList. |
AgeGroup2Description | String | The AgeGroup2Description column for the table AgingPayablesList. |
AgeGroup3 | Int | The AgeGroup3 column for the table AgingPayablesList. |
AgeGroup3Amount | Double | The AgeGroup3Amount column for the table AgingPayablesList. |
AgeGroup3Description | String | The AgeGroup3Description column for the table AgingPayablesList. |
AgeGroup4 | Int | The AgeGroup4 column for the table AgingPayablesList. |
AgeGroup4Amount | Double | The AgeGroup4Amount column for the table AgingPayablesList. |
AgeGroup4Description | String | The AgeGroup4Description column for the table AgingPayablesList. |
CurrencyCode | String | The CurrencyCode column for the table AgingPayablesList. |
TotalAmount | Double | The TotalAmount column for the table AgingPayablesList. |
AgingReceivablesList
Usage information for the operation AgingReceivablesList.rsd.
Columns
Name | Type | Description |
---|---|---|
AccountId [KEY] | String | The AccountId column for the table AgingReceivablesList. |
AccountCode | String | The AccountCode column for the table AgingReceivablesList. |
AccountName | String | The AccountName column for the table AgingReceivablesList. |
AgeGroup1 | Int | The AgeGroup1 column for the table AgingReceivablesList. |
AgeGroup1Amount | Double | The AgeGroup1Amount column for the table AgingReceivablesList. |
AgeGroup1Description | String | The AgeGroup1Description column for the table AgingReceivablesList. |
AgeGroup2 | Int | The AgeGroup2 column for the table AgingReceivablesList. |
AgeGroup2Amount | Double | The AgeGroup2Amount column for the table AgingReceivablesList. |
AgeGroup2Description | String | The AgeGroup2Description column for the table AgingReceivablesList. |
AgeGroup3 | Int | The AgeGroup3 column for the table AgingReceivablesList. |
AgeGroup3Amount | Double | The AgeGroup3Amount column for the table AgingReceivablesList. |
AgeGroup3Description | String | The AgeGroup3Description column for the table AgingReceivablesList. |
AgeGroup4 | Int | The AgeGroup4 column for the table AgingReceivablesList. |
AgeGroup4Amount | Double | The AgeGroup4Amount column for the table AgingReceivablesList. |
AgeGroup4Description | String | The AgeGroup4Description column for the table AgingReceivablesList. |
CurrencyCode | String | The CurrencyCode column for the table AgingReceivablesList. |
TotalAmount | Double | The TotalAmount column for the table AgingReceivablesList. |
AssetGroups
Usage information for the operation AssetGroups.rsd.
Columns
Name | Type | Description |
---|---|---|
ID [KEY] | String | The ID column for the table AssetGroups. |
Code | String | The Code column for the table AssetGroups. |
Created | Datetime | The Created column for the table AssetGroups. |
Creator | String | The Creator column for the table AssetGroups. |
CreatorFullName | String | The CreatorFullName column for the table AssetGroups. |
DepreciationMethod | String | The DepreciationMethod column for the table AssetGroups. |
DepreciationMethodCode | String | The DepreciationMethodCode column for the table AssetGroups. |
DepreciationMethodDescription | String | The DepreciationMethodDescription column for the table AssetGroups. |
Description | String | The Description column for the table AssetGroups. |
Division | Int | The Division column for the table AssetGroups. |
GLAccountAssets | String | The GLAccountAssets column for the table AssetGroups. |
GLAccountAssetsCode | String | The GLAccountAssetsCode column for the table AssetGroups. |
GLAccountAssetsDescription | String | The GLAccountAssetsDescription column for the table AssetGroups. |
GLAccountDepreciationBS | String | The GLAccountDepreciationBS column for the table AssetGroups. |
GLAccountDepreciationBSCode | String | The GLAccountDepreciationBSCode column for the table AssetGroups. |
GLAccountDepreciationBSDescription | String | The GLAccountDepreciationBSDescription column for the table AssetGroups. |
GLAccountDepreciationPL | String | The GLAccountDepreciationPL column for the table AssetGroups. |
GLAccountDepreciationPLCode | String | The GLAccountDepreciationPLCode column for the table AssetGroups. |
GLAccountDepreciationPLDescription | String | The GLAccountDepreciationPLDescription column for the table AssetGroups. |
GLAccountRevaluationBS | String | The GLAccountRevaluationBS column for the table AssetGroups. |
GLAccountRevaluationBSCode | String | The GLAccountRevaluationBSCode column for the table AssetGroups. |
GLAccountRevaluationBSDescription | String | The GLAccountRevaluationBSDescription column for the table AssetGroups. |
Modified | Datetime | The Modified column for the table AssetGroups. |
Modifier | String | The Modifier column for the table AssetGroups. |
ModifierFullName | String | The ModifierFullName column for the table AssetGroups. |
Notes | String | The Notes column for the table AssetGroups. |
Assets
Usage information for the operation Assets.rsd.
Columns
Name | Type | Description |
---|---|---|
ID [KEY] | String | The ID column for the table Assets. |
AlreadyDepreciated | Int | The AlreadyDepreciated column for the table Assets. |
AssetFrom | String | The AssetFrom column for the table Assets. |
AssetFromDescription | String | The AssetFromDescription column for the table Assets. |
AssetGroup | String | The AssetGroup column for the table Assets. |
AssetGroupCode | String | The AssetGroupCode column for the table Assets. |
AssetGroupDescription | String | The AssetGroupDescription column for the table Assets. |
CatalogueValue | Double | The CatalogueValue column for the table Assets. |
Code | String | The Code column for the table Assets. |
Costcenter | String | The Costcenter column for the table Assets. |
CostcenterDescription | String | The CostcenterDescription column for the table Assets. |
Costunit | String | The Costunit column for the table Assets. |
CostunitDescription | String | The CostunitDescription column for the table Assets. |
Created | Datetime | The Created column for the table Assets. |
Creator | String | The Creator column for the table Assets. |
CreatorFullName | String | The CreatorFullName column for the table Assets. |
DeductionPercentage | Double | The DeductionPercentage column for the table Assets. |
DepreciatedAmount | Double | The DepreciatedAmount column for the table Assets. |
DepreciatedPeriods | Int | The DepreciatedPeriods column for the table Assets. |
DepreciatedStartDate | Datetime | The DepreciatedStartDate column for the table Assets. |
Description | String | The Description column for the table Assets. |
Division | Int | The Division column for the table Assets. |
EndDate | Datetime | The EndDate column for the table Assets. |
EngineEmission | Int | The EngineEmission column for the table Assets. |
EngineType | Int | The EngineType column for the table Assets. |
GLTransactionLine | String | The GLTransactionLine column for the table Assets. |
GLTransactionLineDescription | String | The GLTransactionLineDescription column for the table Assets. |
InvestmentAccount | String | The InvestmentAccount column for the table Assets. |
InvestmentAccountCode | String | The InvestmentAccountCode column for the table Assets. |
InvestmentAccountName | String | The InvestmentAccountName column for the table Assets. |
InvestmentAmountDC | Double | The InvestmentAmountDC column for the table Assets. |
InvestmentAmountFC | Double | The InvestmentAmountFC column for the table Assets. |
InvestmentCurrency | String | The InvestmentCurrency column for the table Assets. |
InvestmentCurrencyDescription | String | The InvestmentCurrencyDescription column for the table Assets. |
InvestmentDate | Datetime | The InvestmentDate column for the table Assets. |
InvestmentDeduction | Int | The InvestmentDeduction column for the table Assets. |
Modified | Datetime | The Modified column for the table Assets. |
Modifier | String | The Modifier column for the table Assets. |
ModifierFullName | String | The ModifierFullName column for the table Assets. |
Notes | String | The Notes column for the table Assets. |
Parent | String | The Parent column for the table Assets. |
ParentCode | String | The ParentCode column for the table Assets. |
ParentDescription | String | The ParentDescription column for the table Assets. |
Picture | Binary | The Picture column for the table Assets. |
PictureFileName | String | The PictureFileName column for the table Assets. |
PrimaryMethod | String | The PrimaryMethod column for the table Assets. |
PrimaryMethodCode | String | The PrimaryMethodCode column for the table Assets. |
PrimaryMethodDescription | String | The PrimaryMethodDescription column for the table Assets. |
ResidualValue | Double | The ResidualValue column for the table Assets. |
StartDate | Datetime | The StartDate column for the table Assets. |
Status | Int | The Status column for the table Assets. |
TransactionEntryID | String | The TransactionEntryID column for the table Assets. |
TransactionEntryNo | Int | The TransactionEntryNo column for the table Assets. |
AvailableFeatures
Usage information for the operation AvailableFeatures.rsd.
Columns
Name | Type | Description |
---|---|---|
ID [KEY] | Int | The ID column for the table AvailableFeatures. |
Description | String | The Description column for the table AvailableFeatures. |
Banks
Usage information for the operation Banks.rsd.
Columns
Name | Type | Description |
---|---|---|
ID [KEY] | String | The ID column for the table Banks. |
BankName | String | The BankName column for the table Banks. |
BICCode | String | The BICCode column for the table Banks. |
Country | String | The Country column for the table Banks. |
Created | Datetime | The Created column for the table Banks. |
Description | String | The Description column for the table Banks. |
Format | String | The Format column for the table Banks. |
HomePageAddress | String | The HomePageAddress column for the table Banks. |
Modified | Datetime | The Modified column for the table Banks. |
Status | String | The Status column for the table Banks. |
BatchNumbers
Usage information for the operation BatchNumbers.rsd.
Columns
Name | Type | Description |
---|---|---|
ID [KEY] | String | The ID column for the table BatchNumbers. |
Created | Datetime | The Created column for the table BatchNumbers. |
Creator | String | The Creator column for the table BatchNumbers. |
CreatorFullName | String | The CreatorFullName column for the table BatchNumbers. |
Division | Int | The Division column for the table BatchNumbers. |
Item | String | The Item column for the table BatchNumbers. |
ItemCode | String | The ItemCode column for the table BatchNumbers. |
ItemDescription | String | The ItemDescription column for the table BatchNumbers. |
Modified | Datetime | The Modified column for the table BatchNumbers. |
Modifier | String | The Modifier column for the table BatchNumbers. |
ModifierFullName | String | The ModifierFullName column for the table BatchNumbers. |
Remarks | String | The Remarks column for the table BatchNumbers. |
AvailableQuantity | Double | The AvailableQuantity column for the table BatchNumbers. |
BatchNumber | String | The BatchNumber column for the table BatchNumbers. |
ExpiryDate | Datetime | The ExpiryDate column for the table BatchNumbers. |
IsBlocked | Int | The IsBlocked column for the table BatchNumbers. |
LinkedStorageLocations | String | The LinkedStorageLocations column for the table BatchNumbers. |
LinkedWarehouses | String | The LinkedWarehouses column for the table BatchNumbers. |
Budgets
Usage information for the operation Budgets.rsd.
Columns
Name | Type | Description |
---|---|---|
ID [KEY] | String | The ID column for the table Budgets. |
AmountDC | Double | The AmountDC column for the table Budgets. |
BudgetScenario | String | The BudgetScenario column for the table Budgets. |
BudgetScenarioCode | String | The BudgetScenarioCode column for the table Budgets. |
BudgetScenarioDescription | String | The BudgetScenarioDescription column for the table Budgets. |
Costcenter | String | The Costcenter column for the table Budgets. |
CostcenterDescription | String | The CostcenterDescription column for the table Budgets. |
Costunit | String | The Costunit column for the table Budgets. |
CostunitDescription | String | The CostunitDescription column for the table Budgets. |
Created | Datetime | The Created column for the table Budgets. |
Creator | String | The Creator column for the table Budgets. |
CreatorFullName | String | The CreatorFullName column for the table Budgets. |
Division | Int | The Division column for the table Budgets. |
GLAccount | String | The GLAccount column for the table Budgets. |
GLAccountCode | String | The GLAccountCode column for the table Budgets. |
GLAccountDescription | String | The GLAccountDescription column for the table Budgets. |
HID | Long | The HID column for the table Budgets. |
Item | String | The Item column for the table Budgets. |
ItemCode | String | The ItemCode column for the table Budgets. |
ItemDescription | String | The ItemDescription column for the table Budgets. |
Modified | Datetime | The Modified column for the table Budgets. |
Modifier | String | The Modifier column for the table Budgets. |
ModifierFullName | String | The ModifierFullName column for the table Budgets. |
ReportingPeriod | Int | The ReportingPeriod column for the table Budgets. |
ReportingYear | Int | The ReportingYear column for the table Budgets. |
CRMDocuments
Usage information for the operation CRMDocuments.rsd.
Columns
Name | Type | Description |
---|---|---|
ID [KEY] | String | The ID column for the table Documents. |
Account | String | The Account column for the table Documents. |
Created | Datetime | The Created column for the table Documents. |
Creator | String | The Creator column for the table Documents. |
CreatorFullName | String | The CreatorFullName column for the table Documents. |
Division | Int | The Division column for the table Documents. |
DocumentDate | Datetime | The DocumentDate column for the table Documents. |
DocumentFolder | String | The DocumentFolder column for the table Documents. |
DocumentViewUrl | String | The DocumentViewUrl column for the table Documents. |
HasEmptyBody | Bool | The HasEmptyBody column for the table Documents. |
HID | Int | The HID column for the table Documents. |
Modified | Datetime | The Modified column for the table Documents. |
Modifier | String | The Modifier column for the table Documents. |
Opportunity | String | The Opportunity column for the table Documents. |
PurchaseInvoiceNumber | Int | The PurchaseInvoiceNumber column for the table Documents. |
PurchaseOrderNumber | Int | The PurchaseOrderNumber column for the table Documents. |
SalesInvoiceNumber | Int | The SalesInvoiceNumber column for the table Documents. |
SalesOrderNumber | Int | The SalesOrderNumber column for the table Documents. |
SendMethod | Int | The SendMethod column for the table Documents. |
Subject | String | The Subject column for the table Documents. |
Type | Int | The Type column for the table Documents. |
TypeDescription | String | The TypeDescription column for the table Documents. |
Currencies
Usage information for the operation Currencies.rsd.
Columns
Name | Type | Description |
---|---|---|
Code [KEY] | String | The Code column for the table Currencies. |
AmountPrecision | Double | The AmountPrecision column for the table Currencies. |
Created | Datetime | The Created column for the table Currencies. |
Description | String | The Description column for the table Currencies. |
Modified | Datetime | The Modified column for the table Currencies. |
PricePrecision | Double | The PricePrecision column for the table Currencies. |
CurrentYear_AfterEntry
Usage information for the operation CurrentYear_AfterEntry.rsd.
Columns
Name | Type | Description |
---|---|---|
ReportingYear [KEY] | Int | The ReportingYear column for the table AfterEntry. |
GLAccount [KEY] | String | The GLAccount column for the table AfterEntry. |
Division [KEY] | Int | The Division column for the table AfterEntry. |
Amount | Double | The Amount column for the table AfterEntry. |
BalanceSide | String | The BalanceSide column for the table AfterEntry. |
GLAccountCode | String | The GLAccountCode column for the table AfterEntry. |
GLAccountDescription | String | The GLAccountDescription column for the table AfterEntry. |
CurrentYear_Processed
Usage information for the operation CurrentYear_Processed.rsd.
Columns
Name | Type | Description |
---|---|---|
ReportingYear [KEY] | Int | The ReportingYear column for the table Processed. |
GLAccount [KEY] | String | The GLAccount column for the table Processed. |
Division [KEY] | Int | The Division column for the table Processed. |
Amount | Double | The Amount column for the table Processed. |
BalanceSide | String | The BalanceSide column for the table Processed. |
GLAccountCode | String | The GLAccountCode column for the table Processed. |
GLAccountDescription | String | The GLAccountDescription column for the table Processed. |
DefaultMailbox
Usage information for the operation DefaultMailbox.rsd.
Columns
Name | Type | Description |
---|---|---|
ID [KEY] | String | The ID column for the table DefaultMailbox. |
Created | Datetime | The Created column for the table DefaultMailbox. |
Creator | String | The Creator column for the table DefaultMailbox. |
Description | String | The Description column for the table DefaultMailbox. |
ForDivision | Int | The ForDivision column for the table DefaultMailbox. |
IsScanServiceMailbox | Bool | The IsScanServiceMailbox column for the table DefaultMailbox. |
Mailbox | String | The Mailbox column for the table DefaultMailbox. |
Modified | Datetime | The Modified column for the table DefaultMailbox. |
Modifier | String | The Modifier column for the table DefaultMailbox. |
ValidFrom | Datetime | The ValidFrom column for the table DefaultMailbox. |
ValidTo | Datetime | The ValidTo column for the table DefaultMailbox. |
Departments
Usage information for the operation Departments.rsd.
Columns
Name | Type | Description |
---|---|---|
ID [KEY] | String | The ID column for the table Departments. |
Code | String | The Code column for the table Departments. |
Costcenter | String | The Costcenter column for the table Departments. |
CostcenterDescription | String | The CostcenterDescription column for the table Departments. |
Created | Datetime | The Created column for the table Departments. |
Creator | String | The Creator column for the table Departments. |
CreatorFullName | String | The CreatorFullName column for the table Departments. |
Description | String | The Description column for the table Departments. |
Division | Int | The Division column for the table Departments. |
Modified | Datetime | The Modified column for the table Departments. |
Modifier | String | The Modifier column for the table Departments. |
ModifierFullName | String | The ModifierFullName column for the table Departments. |
Notes | String | The Notes column for the table Departments. |
Divisions
Usage information for the operation Divisions.rsd.
Columns
Name | Type | Description |
---|---|---|
Code [KEY] | Int | The Code column for the table Divisions. |
BlockingStatus | Int | The BlockingStatus column for the table Divisions. |
Country | String | The Country column for the table Divisions. |
CountryDescription | String | The CountryDescription column for the table Divisions. |
Created | Datetime | The Created column for the table Divisions. |
Creator | String | The Creator column for the table Divisions. |
CreatorFullName | String | The CreatorFullName column for the table Divisions. |
Currency | String | The Currency column for the table Divisions. |
CurrencyDescription | String | The CurrencyDescription column for the table Divisions. |
Customer | String | The Customer column for the table Divisions. |
CustomerCode | String | The CustomerCode column for the table Divisions. |
CustomerName | String | The CustomerName column for the table Divisions. |
Description | String | The Description column for the table Divisions. |
HID | Long | The HID column for the table Divisions. |
Main | Bool | The Main column for the table Divisions. |
Modified | Datetime | The Modified column for the table Divisions. |
Modifier | String | The Modifier column for the table Divisions. |
ModifierFullName | String | The ModifierFullName column for the table Divisions. |
SiretNumber | String | The SiretNumber column for the table Divisions. |
StartDate | Datetime | The StartDate column for the table Divisions. |
Status | Int | The Status column for the table Divisions. |
TaxOfficeNumber | String | The TaxOfficeNumber column for the table Divisions. |
TaxReferenceNumber | String | The TaxReferenceNumber column for the table Divisions. |
VATNumber | String | The VATNumber column for the table Divisions. |
Website | String | The Website column for the table Divisions. |
DocumentCategories
Usage information for the operation DocumentCategories.rsd.
Columns
Name | Type | Description |
---|---|---|
ID [KEY] | String | The ID column for the table DocumentCategories. |
Created | Datetime | The Created column for the table DocumentCategories. |
Description | String | The Description column for the table DocumentCategories. |
Modified | Datetime | The Modified column for the table DocumentCategories. |
DocumentsAttachments
Usage information for the operation DocumentsAttachments.rsd.
Columns
Name | Type | Description |
---|---|---|
ID [KEY] | String | The ID column for the table DocumentsAttachments. |
AttachmentFileName | String | The AttachmentFileName column for the table DocumentsAttachments. |
AttachmentFileSize | Double | The AttachmentFileSize column for the table DocumentsAttachments. |
AttachmentUrl | String | The AttachmentUrl column for the table DocumentsAttachments. |
CanShowInWebView | Bool | The CanShowInWebView column for the table DocumentsAttachments. |
DocumentTypeCategories
Usage information for the operation DocumentTypeCategories.rsd.
Columns
Name | Type | Description |
---|---|---|
ID [KEY] | Int | The ID column for the table DocumentTypeCategories. |
Created | Datetime | The Created column for the table DocumentTypeCategories. |
Description | String | The Description column for the table DocumentTypeCategories. |
Modified | Datetime | The Modified column for the table DocumentTypeCategories. |
DocumentTypes
Usage information for the operation DocumentTypes.rsd.
Columns
Name | Type | Description |
---|---|---|
ID [KEY] | Int | The ID column for the table DocumentTypes. |
Created | Datetime | The Created column for the table DocumentTypes. |
Description | String | The Description column for the table DocumentTypes. |
DocumentIsCreatable | Bool | The DocumentIsCreatable column for the table DocumentTypes. |
DocumentIsDeletable | Bool | The DocumentIsDeletable column for the table DocumentTypes. |
DocumentIsUpdatable | Bool | The DocumentIsUpdatable column for the table DocumentTypes. |
DocumentIsViewable | Bool | The DocumentIsViewable column for the table DocumentTypes. |
Modified | Datetime | The Modified column for the table DocumentTypes. |
TypeCategory | Int | The TypeCategory column for the table DocumentTypes. |
Employees
Usage information for the operation Employees.rsd.
Columns
Name | Type | Description |
---|---|---|
ID [KEY] | String | The ID column for the table Employees. |
ActiveEmployment | Int | The ActiveEmployment column for the table Employees. |
AddressLine2 | String | The AddressLine2 column for the table Employees. |
AddressLine3 | String | The AddressLine3 column for the table Employees. |
AddressStreet | String | The AddressStreet column for the table Employees. |
AddressStreetNumber | String | The AddressStreetNumber column for the table Employees. |
AddressStreetNumberSuffix | String | The AddressStreetNumberSuffix column for the table Employees. |
BirthDate | Datetime | The BirthDate column for the table Employees. |
BirthName | String | The BirthName column for the table Employees. |
BirthNamePrefix | String | The BirthNamePrefix column for the table Employees. |
BirthPlace | String | The BirthPlace column for the table Employees. |
BusinessEmail | String | The BusinessEmail column for the table Employees. |
BusinessFax | String | The BusinessFax column for the table Employees. |
BusinessMobile | String | The BusinessMobile column for the table Employees. |
BusinessPhone | String | The BusinessPhone column for the table Employees. |
BusinessPhoneExtension | String | The BusinessPhoneExtension column for the table Employees. |
CASONumber | String | The CASONumber column for the table Employees. |
City | String | The City column for the table Employees. |
Code | String | The Code column for the table Employees. |
Country | String | The Country column for the table Employees. |
Created | Datetime | The Created column for the table Employees. |
Creator | String | The Creator column for the table Employees. |
CreatorFullName | String | The CreatorFullName column for the table Employees. |
Customer | String | The Customer column for the table Employees. |
Division | Int | The Division column for the table Employees. |
Email | String | The Email column for the table Employees. |
EmployeeHID | Int | The EmployeeHID column for the table Employees. |
EndDate | Datetime | The EndDate column for the table Employees. |
FirstName | String | The FirstName column for the table Employees. |
FullName | String | The FullName column for the table Employees. |
Gender | String | The Gender column for the table Employees. |
HID | Int | The HID column for the table Employees. |
Initials | String | The Initials column for the table Employees. |
IsActive | Bool | The IsActive column for the table Employees. |
Language | String | The Language column for the table Employees. |
LastName | String | The LastName column for the table Employees. |
LocationDescription | String | The LocationDescription column for the table Employees. |
Manager | String | The Manager column for the table Employees. |
MaritalDate | Datetime | The MaritalDate column for the table Employees. |
MaritalStatus | Int | The MaritalStatus column for the table Employees. |
MiddleName | String | The MiddleName column for the table Employees. |
Mobile | String | The Mobile column for the table Employees. |
Modified | Datetime | The Modified column for the table Employees. |
Modifier | String | The Modifier column for the table Employees. |
ModifierFullName | String | The ModifierFullName column for the table Employees. |
Municipality | String | The Municipality column for the table Employees. |
NameComposition | Int | The NameComposition column for the table Employees. |
Nationality | String | The Nationality column for the table Employees. |
NickName | String | The NickName column for the table Employees. |
Notes | String | The Notes column for the table Employees. |
PartnerName | String | The PartnerName column for the table Employees. |
PartnerNamePrefix | String | The PartnerNamePrefix column for the table Employees. |
Person | String | The Person column for the table Employees. |
Phone | String | The Phone column for the table Employees. |
PhoneExtension | String | The PhoneExtension column for the table Employees. |
PictureFileName | String | The PictureFileName column for the table Employees. |
PictureUrl | String | The PictureUrl column for the table Employees. |
Postcode | String | The Postcode column for the table Employees. |
PrivateEmail | String | The PrivateEmail column for the table Employees. |
SocialSecurityNumber | String | The SocialSecurityNumber column for the table Employees. |
StartDate | Datetime | The StartDate column for the table Employees. |
State | String | The State column for the table Employees. |
Title | String | The Title column for the table Employees. |
User | String | The User column for the table Employees. |
UserFullName | String | The UserFullName column for the table Employees. |
EmploymentContractFlexPhases
Usage information for the operation EmploymentContractFlexPhases.rsd.
Columns
Name | Type | Description |
---|---|---|
ID [KEY] | Int | The ID column for the table EmploymentContractFlexPhases. |
Description | String | The Description column for the table EmploymentContractFlexPhases. |
EmploymentContracts
Usage information for the operation EmploymentContracts.rsd.
Columns
Name | Type | Description |
---|---|---|
ID [KEY] | String | The ID column for the table EmploymentContracts. |
ContractFlexPhase | Int | The ContractFlexPhase column for the table EmploymentContracts. |
ContractFlexPhaseDescription | String | The ContractFlexPhaseDescription column for the table EmploymentContracts. |
Created | Datetime | The Created column for the table EmploymentContracts. |
Creator | String | The Creator column for the table EmploymentContracts. |
CreatorFullName | String | The CreatorFullName column for the table EmploymentContracts. |
Division | Int | The Division column for the table EmploymentContracts. |
Document | String | The Document column for the table EmploymentContracts. |
Employee | String | The Employee column for the table EmploymentContracts. |
EmployeeFullName | String | The EmployeeFullName column for the table EmploymentContracts. |
EmployeeHID | Int | The EmployeeHID column for the table EmploymentContracts. |
EmployeeType | Int | The EmployeeType column for the table EmploymentContracts. |
EmployeeTypeDescription | String | The EmployeeTypeDescription column for the table EmploymentContracts. |
Employment | String | The Employment column for the table EmploymentContracts. |
EmploymentHID | Int | The EmploymentHID column for the table EmploymentContracts. |
EndDate | Datetime | The EndDate column for the table EmploymentContracts. |
Modified | Datetime | The Modified column for the table EmploymentContracts. |
Modifier | String | The Modifier column for the table EmploymentContracts. |
ModifierFullName | String | The ModifierFullName column for the table EmploymentContracts. |
Notes | String | The Notes column for the table EmploymentContracts. |
ProbationEndDate | Datetime | The ProbationEndDate column for the table EmploymentContracts. |
ProbationPeriod | Int | The ProbationPeriod column for the table EmploymentContracts. |
ReasonContract | Int | The ReasonContract column for the table EmploymentContracts. |
ReasonContractDescription | String | The ReasonContractDescription column for the table EmploymentContracts. |
Sequence | Int | The Sequence column for the table EmploymentContracts. |
StartDate | Datetime | The StartDate column for the table EmploymentContracts. |
Type | Int | The Type column for the table EmploymentContracts. |
TypeDescription | String | The TypeDescription column for the table EmploymentContracts. |
EmploymentEndReasons
Usage information for the operation EmploymentEndReasons.rsd.
Columns
Name | Type | Description |
---|---|---|
ID [KEY] | Int | The ID column for the table EmploymentEndReasons. |
Description | String | The Description column for the table EmploymentEndReasons. |
EmploymentOrganizations
Usage information for the operation EmploymentOrganizations.rsd.
Columns
Name | Type | Description |
---|---|---|
ID [KEY] | String | The ID column for the table EmploymentOrganizations. |
CostCenter | String | The CostCenter column for the table EmploymentOrganizations. |
CostCenterDescription | String | The CostCenterDescription column for the table EmploymentOrganizations. |
CostUnit | String | The CostUnit column for the table EmploymentOrganizations. |
CostUnitDescription | String | The CostUnitDescription column for the table EmploymentOrganizations. |
Created | Datetime | The Created column for the table EmploymentOrganizations. |
Creator | String | The Creator column for the table EmploymentOrganizations. |
CreatorFullName | String | The CreatorFullName column for the table EmploymentOrganizations. |
Department | String | The Department column for the table EmploymentOrganizations. |
DepartmentCode | String | The DepartmentCode column for the table EmploymentOrganizations. |
DepartmentDescription | String | The DepartmentDescription column for the table EmploymentOrganizations. |
Division | Int | The Division column for the table EmploymentOrganizations. |
Employee | String | The Employee column for the table EmploymentOrganizations. |
EmployeeFullName | String | The EmployeeFullName column for the table EmploymentOrganizations. |
EmployeeHID | Int | The EmployeeHID column for the table EmploymentOrganizations. |
Employment | String | The Employment column for the table EmploymentOrganizations. |
EmploymentHID | Int | The EmploymentHID column for the table EmploymentOrganizations. |
EndDate | Datetime | The EndDate column for the table EmploymentOrganizations. |
JobTitle | String | The JobTitle column for the table EmploymentOrganizations. |
JobTitleCode | String | The JobTitleCode column for the table EmploymentOrganizations. |
JobTitleDescription | String | The JobTitleDescription column for the table EmploymentOrganizations. |
Modified | Datetime | The Modified column for the table EmploymentOrganizations. |
Modifier | String | The Modifier column for the table EmploymentOrganizations. |
ModifierFullName | String | The ModifierFullName column for the table EmploymentOrganizations. |
Notes | String | The Notes column for the table EmploymentOrganizations. |
StartDate | Datetime | The StartDate column for the table EmploymentOrganizations. |
Employments
Usage information for the operation Employments.rsd.
Columns
Name | Type | Description |
---|---|---|
ID [KEY] | String | The ID column for the table Employments. |
Created | Datetime | The Created column for the table Employments. |
Creator | String | The Creator column for the table Employments. |
CreatorFullName | String | The CreatorFullName column for the table Employments. |
Division | Int | The Division column for the table Employments. |
Employee | String | The Employee column for the table Employments. |
EmployeeFullName | String | The EmployeeFullName column for the table Employments. |
EmployeeHID | Int | The EmployeeHID column for the table Employments. |
EndDate | Datetime | The EndDate column for the table Employments. |
HID | Int | The HID column for the table Employments. |
Modified | Datetime | The Modified column for the table Employments. |
Modifier | String | The Modifier column for the table Employments. |
ModifierFullName | String | The ModifierFullName column for the table Employments. |
ReasonEnd | Int | The ReasonEnd column for the table Employments. |
ReasonEndDescription | String | The ReasonEndDescription column for the table Employments. |
ReasonEndFlex | Int | The ReasonEndFlex column for the table Employments. |
ReasonEndFlexDescription | String | The ReasonEndFlexDescription column for the table Employments. |
StartDate | Datetime | The StartDate column for the table Employments. |
StartDateOrganization | Datetime | The StartDateOrganization column for the table Employments. |
EmploymentSalaries
Usage information for the operation EmploymentSalaries.rsd.
Columns
Name | Type | Description |
---|---|---|
ID [KEY] | String | The ID column for the table EmploymentSalaries. |
AverageDaysPerWeek | Double | The AverageDaysPerWeek column for the table EmploymentSalaries. |
AverageHoursPerWeek | Double | The AverageHoursPerWeek column for the table EmploymentSalaries. |
Created | Datetime | The Created column for the table EmploymentSalaries. |
Creator | String | The Creator column for the table EmploymentSalaries. |
CreatorFullName | String | The CreatorFullName column for the table EmploymentSalaries. |
Division | Int | The Division column for the table EmploymentSalaries. |
Employee | String | The Employee column for the table EmploymentSalaries. |
EmployeeFullName | String | The EmployeeFullName column for the table EmploymentSalaries. |
EmployeeHID | Int | The EmployeeHID column for the table EmploymentSalaries. |
Employment | String | The Employment column for the table EmploymentSalaries. |
EmploymentHID | Int | The EmploymentHID column for the table EmploymentSalaries. |
EmploymentSalaryType | Int | The EmploymentSalaryType column for the table EmploymentSalaries. |
EmploymentSalaryTypeDescription | String | The EmploymentSalaryTypeDescription column for the table EmploymentSalaries. |
EndDate | Datetime | The EndDate column for the table EmploymentSalaries. |
FulltimeAmount | Double | The FulltimeAmount column for the table EmploymentSalaries. |
HourlyWage | Double | The HourlyWage column for the table EmploymentSalaries. |
InternalRate | Double | The InternalRate column for the table EmploymentSalaries. |
JobLevel | Int | The JobLevel column for the table EmploymentSalaries. |
Modified | Datetime | The Modified column for the table EmploymentSalaries. |
Modifier | String | The Modifier column for the table EmploymentSalaries. |
ModifierFullName | String | The ModifierFullName column for the table EmploymentSalaries. |
ParttimeAmount | Double | The ParttimeAmount column for the table EmploymentSalaries. |
ParttimeFactor | Double | The ParttimeFactor column for the table EmploymentSalaries. |
Scale | String | The Scale column for the table EmploymentSalaries. |
Schedule | String | The Schedule column for the table EmploymentSalaries. |
ScheduleCode | String | The ScheduleCode column for the table EmploymentSalaries. |
ScheduleDescription | String | The ScheduleDescription column for the table EmploymentSalaries. |
StartDate | Datetime | The StartDate column for the table EmploymentSalaries. |
FinancialPeriods
Usage information for the operation FinancialPeriods.rsd.
Columns
Name | Type | Description |
---|---|---|
ID [KEY] | String | The ID column for the table FinancialPeriods. |
Created | Datetime | The Created column for the table FinancialPeriods. |
Creator | String | The Creator column for the table FinancialPeriods. |
CreatorFullName | String | The CreatorFullName column for the table FinancialPeriods. |
Division | Int | The Division column for the table FinancialPeriods. |
EndDate | Datetime | The EndDate column for the table FinancialPeriods. |
FinPeriod | Int | The FinPeriod column for the table FinancialPeriods. |
FinYear | Int | The FinYear column for the table FinancialPeriods. |
Modified | Datetime | The Modified column for the table FinancialPeriods. |
Modifier | String | The Modifier column for the table FinancialPeriods. |
ModifierFullName | String | The ModifierFullName column for the table FinancialPeriods. |
StartDate | Datetime | The StartDate column for the table FinancialPeriods. |
GLAccountClassificationMappings
Usage information for the operation GLAccountClassificationMappings.rsd.
Columns
Name | Type | Description |
---|---|---|
ID [KEY] | String | The ID column for the table GLAccountClassificationMappings. |
Classification | String | The Classification column for the table GLAccountClassificationMappings. |
ClassificationCode | String | The ClassificationCode column for the table GLAccountClassificationMappings. |
ClassificationDescription | String | The ClassificationDescription column for the table GLAccountClassificationMappings. |
Division | Int | The Division column for the table GLAccountClassificationMappings. |
GLAccount | String | The GLAccount column for the table GLAccountClassificationMappings. |
GLAccountCode | String | The GLAccountCode column for the table GLAccountClassificationMappings. |
GLAccountDescription | String | The GLAccountDescription column for the table GLAccountClassificationMappings. |
GLSchemeCode | String | The GLSchemeCode column for the table GLAccountClassificationMappings. |
GLSchemeDescription | String | The GLSchemeDescription column for the table GLAccountClassificationMappings. |
GLSchemeID | String | The GLSchemeID column for the table GLAccountClassificationMappings. |
GLClassifications
Usage information for the operation GLClassifications.rsd.
Columns
Name | Type | Description |
---|---|---|
ID [KEY] | String | The ID column for the table GLClassifications. |
Abstract | Bool | The Abstract column for the table GLClassifications. |
Balance | String | The Balance column for the table GLClassifications. |
Code | String | The Code column for the table GLClassifications. |
Created | Datetime | The Created column for the table GLClassifications. |
Creator | String | The Creator column for the table GLClassifications. |
CreatorFullName | String | The CreatorFullName column for the table GLClassifications. |
Description | String | The Description column for the table GLClassifications. |
Division | Int | The Division column for the table GLClassifications. |
IsTupleSubElement | Bool | The IsTupleSubElement column for the table GLClassifications. |
Modified | Datetime | The Modified column for the table GLClassifications. |
Modifier | String | The Modifier column for the table GLClassifications. |
ModifierFullName | String | The ModifierFullName column for the table GLClassifications. |
Name | String | The Name column for the table GLClassifications. |
Nillable | Bool | The Nillable column for the table GLClassifications. |
Parent | String | The Parent column for the table GLClassifications. |
PeriodType | String | The PeriodType column for the table GLClassifications. |
SubstitutionGroup | String | The SubstitutionGroup column for the table GLClassifications. |
TaxonomyNamespace | String | The TaxonomyNamespace column for the table GLClassifications. |
TaxonomyNamespaceDescription | String | The TaxonomyNamespaceDescription column for the table GLClassifications. |
Type | String | The Type column for the table GLClassifications. |
GLSchemes
Usage information for the operation GLSchemes.rsd.
Columns
Name | Type | Description |
---|---|---|
ID [KEY] | String | The ID column for the table GLSchemes. |
Code | String | The Code column for the table GLSchemes. |
Created | Datetime | The Created column for the table GLSchemes. |
Creator | String | The Creator column for the table GLSchemes. |
CreatorFullName | String | The CreatorFullName column for the table GLSchemes. |
Description | String | The Description column for the table GLSchemes. |
Division | Int | The Division column for the table GLSchemes. |
Main | Int | The Main column for the table GLSchemes. |
Modified | Datetime | The Modified column for the table GLSchemes. |
Modifier | String | The Modifier column for the table GLSchemes. |
ModifierFullName | String | The ModifierFullName column for the table GLSchemes. |
TargetNamespace | String | The TargetNamespace column for the table GLSchemes. |
GLTransactionTypes
Usage information for the operation GLTransactionTypes.rsd.
Columns
Name | Type | Description |
---|---|---|
ID [KEY] | Int | The ID column for the table GLTransactionTypes. |
Description | String | The Description column for the table GLTransactionTypes. |
DescriptionSuffix | String | The DescriptionSuffix column for the table GLTransactionTypes. |
HourCostTypes
Usage information for the operation HourCostTypes.rsd.
Columns
Name | Type | Description |
---|---|---|
ItemId [KEY] | String | The ItemId column for the table HourCostTypes. |
ItemDescription | String | The ItemDescription column for the table HourCostTypes. |
ItemChargeRelation
Usage information for the operation ItemChargeRelation.rsd.
Columns
Name | Type | Description |
---|---|---|
ID [KEY] | String | Primary key of relationship between item and item charge |
Amount | String | Item charge amount per unit |
ChargeCode | String | Code of item charge |
ChargeDescription | String | Description of item charge |
ChargeID | String | Item charge ID |
ChargeVATCode | String | VAT code that is used when the item charge is registered |
ChargeVATDescription | String | Description of VAT Code |
ChargeVATPercentage | String | VAT percentage of the VAT code |
ChargeVATType | String | Indicates how the VAT amount should be calculated in relation to the item charge amount. B = VAT 0% (Only base amount), E = Excluding, I = Including, N = No VAT |
Created | String | Creation date |
Creator | String | User ID of creator |
CreatorFullName | String | Name of creator |
Currency | String | Currency of the item charge |
Division | String | Division code |
ItemCode | String | Code of item |
ItemDescription | String | Description of item |
ItemID | String | Item ID |
Modified | String | Last modified date |
Modifier | String | User ID of modifier |
ModifierFullName | String | Name of modifier |
Quantity | String | Quantity of the item charge requires in the item |
TotalAmount | String | Total of item charge amount per unit x quantity |
ItemGroups
Usage information for the operation ItemGroups.rsd.
Columns
Name | Type | Description |
---|---|---|
ID [KEY] | String | The ID column for the table ItemGroups. |
Code | String | The Code column for the table ItemGroups. |
Created | Datetime | The Created column for the table ItemGroups. |
Creator | String | The Creator column for the table ItemGroups. |
CreatorFullName | String | The CreatorFullName column for the table ItemGroups. |
Description | String | The Description column for the table ItemGroups. |
Division | Int | The Division column for the table ItemGroups. |
GLCosts | String | The GLCosts column for the table ItemGroups. |
GLCostsCode | String | The GLCostsCode column for the table ItemGroups. |
GLCostsDescription | String | The GLCostsDescription column for the table ItemGroups. |
GLPurchaseAccount | String | The GLPurchaseAccount column for the table ItemGroups. |
GLPurchaseAccountCode | String | The GLPurchaseAccountCode column for the table ItemGroups. |
GLPurchaseAccountDescription | String | The GLPurchaseAccountDescription column for the table ItemGroups. |
GLPurchasePriceDifference | String | The GLPurchasePriceDifference column for the table ItemGroups. |
GLPurchasePriceDifferenceCode | String | The GLPurchasePriceDifferenceCode column for the table ItemGroups. |
GLPurchasePriceDifferenceDescr | String | The GLPurchasePriceDifferenceDescr column for the table ItemGroups. |
GLRevenue | String | The GLRevenue column for the table ItemGroups. |
GLRevenueCode | String | The GLRevenueCode column for the table ItemGroups. |
GLRevenueDescription | String | The GLRevenueDescription column for the table ItemGroups. |
GLStock | String | The GLStock column for the table ItemGroups. |
GLStockCode | String | The GLStockCode column for the table ItemGroups. |
GLStockDescription | String | The GLStockDescription column for the table ItemGroups. |
GLStockVariance | String | The GLStockVariance column for the table ItemGroups. |
GLStockVarianceCode | String | The GLStockVarianceCode column for the table ItemGroups. |
GLStockVarianceDescription | String | The GLStockVarianceDescription column for the table ItemGroups. |
IsDefault | Int | The IsDefault column for the table ItemGroups. |
Modified | Datetime | The Modified column for the table ItemGroups. |
Modifier | String | The Modifier column for the table ItemGroups. |
ModifierFullName | String | The ModifierFullName column for the table ItemGroups. |
Notes | String | The Notes column for the table ItemGroups. |
ItemsExtraFields
Get the values of extra fields (custom fields) for Items.
Columns
Name | Type | Description |
---|---|---|
Number [KEY] | Integer | The ID of the custom field (also known as 'extra field'). There's a maximum of 10 custom fields available to use in Exact. |
Value | String | The value of the custom field for this specific item (referenced by ItemId). |
Description | String | The description of the custom field. |
Modified | Datetime | Date and time when the item this custom field belongs to was last modified. |
ItemId [KEY] | String | The ID of the item this custom field value belongs to. |
ItemVersions
Usage information for the operation ItemVersions.rsd.
Columns
Name | Type | Description |
---|---|---|
ID [KEY] | String | The ID column for the table ItemVersions. |
BatchQuantity | Double | The BatchQuantity column for the table ItemVersions. |
CalculatedCostPrice | Double | The CalculatedCostPrice column for the table ItemVersions. |
Created | Datetime | The Created column for the table ItemVersions. |
Creator | String | The Creator column for the table ItemVersions. |
CreatorFullName | String | The CreatorFullName column for the table ItemVersions. |
Description | String | The Description column for the table ItemVersions. |
Division | Int | The Division column for the table ItemVersions. |
IsDefault | Int | The IsDefault column for the table ItemVersions. |
Item | String | The Item column for the table ItemVersions. |
ItemDescription | String | The ItemDescription column for the table ItemVersions. |
Modified | Datetime | The Modified column for the table ItemVersions. |
Modifier | String | The Modifier column for the table ItemVersions. |
ModifierFullName | String | The ModifierFullName column for the table ItemVersions. |
Notes | String | The Notes column for the table ItemVersions. |
Status | Int | The Status column for the table ItemVersions. |
StatusDescription | String | The StatusDescription column for the table ItemVersions. |
Type | Int | The Type column for the table ItemVersions. |
TypeDescription | String | The TypeDescription column for the table ItemVersions. |
VersionNumber | Int | The VersionNumber column for the table ItemVersions. |
LeadTime | Int | The LeadTime column for the table ItemVersions. |
ItemWarehousePlanningDetails
Usage information for the operation ItemWarehousePlanningDetails.rsd.
Columns
Name | Type | Description |
---|---|---|
Item [KEY] | String | The Item column for the table ItemWarehousePlanningDetails. |
ItemCode | String | The ItemCode column for the table ItemWarehousePlanningDetails. |
ItemDescription | String | The ItemDescription column for the table ItemWarehousePlanningDetails. |
PlannedDate | Datetime | The PlannedDate column for the table ItemWarehousePlanningDetails. |
PlannedQuantity | Double | The PlannedQuantity column for the table ItemWarehousePlanningDetails. |
PlanningSourceDescription | String | The PlanningSourceDescription column for the table ItemWarehousePlanningDetails. |
PlanningSourceID | String | The PlanningSourceID column for the table ItemWarehousePlanningDetails. |
PlanningSourceLineNumber | Int | The PlanningSourceLineNumber column for the table ItemWarehousePlanningDetails. |
PlanningSourceNumber | Int | The PlanningSourceNumber column for the table ItemWarehousePlanningDetails. |
PlanningSourceUrl | String | The PlanningSourceUrl column for the table ItemWarehousePlanningDetails. |
PlanningType | Int | The PlanningType column for the table ItemWarehousePlanningDetails. |
PlanningTypeDescription | String | The PlanningTypeDescription column for the table ItemWarehousePlanningDetails. |
Warehouse | String | The Warehouse column for the table ItemWarehousePlanningDetails. |
WarehouseCode | String | The WarehouseCode column for the table ItemWarehousePlanningDetails. |
WarehouseDescription | String | The WarehouseDescription column for the table ItemWarehousePlanningDetails. |
ItemWarehouseStorageLocations
Usage information for the operation ItemWarehouseStorageLocations.rsd.
Columns
Name | Type | Description |
---|---|---|
ID [KEY] | String | The ID column for the table ItemWarehouseStorageLocations. |
IsFractionAllowedItem | Int | The IsFractionAllowedItem column for the table ItemWarehouseStorageLocations. |
Item | String | The Item column for the table ItemWarehouseStorageLocations. |
ItemCode | String | The ItemCode column for the table ItemWarehouseStorageLocations. |
ItemDescription | String | The ItemDescription column for the table ItemWarehouseStorageLocations. |
ItemUnit | String | The ItemUnit column for the table ItemWarehouseStorageLocations. |
ItemUnitDescription | String | The ItemUnitDescription column for the table ItemWarehouseStorageLocations. |
Stock | Double | The Stock column for the table ItemWarehouseStorageLocations. |
StorageLocation | String | The StorageLocation column for the table ItemWarehouseStorageLocations. |
StorageLocationCode | String | The StorageLocationCode column for the table ItemWarehouseStorageLocations. |
StorageLocationDescription | String | The StorageLocationDescription column for the table ItemWarehouseStorageLocations. |
Warehouse | String | The Warehouse column for the table ItemWarehouseStorageLocations. |
WarehouseCode | String | The WarehouseCode column for the table ItemWarehouseStorageLocations. |
WarehouseDescription | String | The WarehouseDescription column for the table ItemWarehouseStorageLocations. |
JobGroups
Usage information for the operation JobGroups.rsd.
Columns
Name | Type | Description |
---|---|---|
ID [KEY] | String | The ID column for the table JobGroups. |
Code | String | The Code column for the table JobGroups. |
Created | Datetime | The Created column for the table JobGroups. |
Creator | String | The Creator column for the table JobGroups. |
CreatorFullName | String | The CreatorFullName column for the table JobGroups. |
Description | String | The Description column for the table JobGroups. |
Division | Int | The Division column for the table JobGroups. |
Modified | Datetime | The Modified column for the table JobGroups. |
Modifier | String | The Modifier column for the table JobGroups. |
ModifierFullName | String | The ModifierFullName column for the table JobGroups. |
Notes | String | The Notes column for the table JobGroups. |
JobTitles
Usage information for the operation JobTitles.rsd.
Columns
Name | Type | Description |
---|---|---|
ID [KEY] | String | The ID column for the table JobTitles. |
Code | String | The Code column for the table JobTitles. |
Created | Datetime | The Created column for the table JobTitles. |
Creator | String | The Creator column for the table JobTitles. |
CreatorFullName | String | The CreatorFullName column for the table JobTitles. |
Description | String | The Description column for the table JobTitles. |
Division | Int | The Division column for the table JobTitles. |
JobCode | String | The JobCode column for the table JobTitles. |
JobGroup | String | The JobGroup column for the table JobTitles. |
JobGroupCode | String | The JobGroupCode column for the table JobTitles. |
JobGroupDescription | String | The JobGroupDescription column for the table JobTitles. |
JobLevelFrom | Int | The JobLevelFrom column for the table JobTitles. |
JobLevelTo | Int | The JobLevelTo column for the table JobTitles. |
Modified | Datetime | The Modified column for the table JobTitles. |
Modifier | String | The Modifier column for the table JobTitles. |
ModifierFullName | String | The ModifierFullName column for the table JobTitles. |
Notes | String | The Notes column for the table JobTitles. |
JournalStatusList
Usage information for the operation JournalStatusList.rsd.
Columns
Name | Type | Description |
---|---|---|
Year [KEY] | Int | The Year column for the table JournalStatusList. |
Period [KEY] | Int | The Period column for the table JournalStatusList. |
Journal [KEY] | String | The Journal column for the table JournalStatusList. |
JournalDescription | String | The JournalDescription column for the table JournalStatusList. |
JournalType | Int | The JournalType column for the table JournalStatusList. |
JournalTypeDescription | String | The JournalTypeDescription column for the table JournalStatusList. |
Status | Int | The Status column for the table JournalStatusList. |
StatusDescription | String | The StatusDescription column for the table JournalStatusList. |
Layouts
Usage information for the operation Layouts.rsd.
Columns
Name | Type | Description |
---|---|---|
ID [KEY] | String | The ID column for the table Layouts. |
Created | Datetime | The Created column for the table Layouts. |
Creator | String | The Creator column for the table Layouts. |
CreatorFullName | String | The CreatorFullName column for the table Layouts. |
Division | Int | The Division column for the table Layouts. |
Modified | Datetime | The Modified column for the table Layouts. |
Modifier | String | The Modifier column for the table Layouts. |
ModifierFullName | String | The ModifierFullName column for the table Layouts. |
Subject | String | The Subject column for the table Layouts. |
Type | Int | The Type column for the table Layouts. |
LeadSources
Usage information for the operation LeadSources.rsd.
Columns
Name | Type | Description |
---|---|---|
ID [KEY] | String | The ID column for the table LeadSources |
Code | String | Code |
Description | String | Description |
Division | String | Division |
LeaveAbsenceHoursByDay
Use this endpoint to read employee's leave and absence hours by day.
Columns
Name | Type | Description |
---|---|---|
ID [KEY] | String | Id for LeaveAbsenceHoursByDay |
Created | Datetime | Creation date |
Date | Datetime | Date of leave or absence |
Division | Int | Division code |
Employee | String | ID of employee linked to the leave or absence |
EmployeeFullName | String | Employee full name |
EmployeeHID | Int | Numeric ID of the employee |
Employment | String | Employment ID |
EmploymentHID | Int | Numeric ID of the employment |
EndTime | Datetime | End time of leave or absence |
ExternalIDInt | Long | Unique ID from external source. |
Hours | Double | Hours of leave or absence |
Modified | Datetime | Last modified date |
StartTime | Datetime | Start time of leave or absence |
Status | Int | Status, 1 = Submitted, 2 = Approved |
Type | Int | Type, 0 = Leave, 1 = Absence |
LeaveBuildUpRegistrations
Usage information for the operation LeaveBuildUpRegistrations.rsd.
Columns
Name | Type | Description |
---|---|---|
ID [KEY] | String | The ID column for the table LeaveBuildUpRegistrations. |
Created | Datetime | The Created column for the table LeaveBuildUpRegistrations. |
Creator | String | The Creator column for the table LeaveBuildUpRegistrations. |
CreatorFullName | String | The CreatorFullName column for the table LeaveBuildUpRegistrations. |
Date | Datetime | The Date column for the table LeaveBuildUpRegistrations. |
Description | String | The Description column for the table LeaveBuildUpRegistrations. |
Division | Int | The Division column for the table LeaveBuildUpRegistrations. |
Employee | String | The Employee column for the table LeaveBuildUpRegistrations. |
EmployeeFullName | String | The EmployeeFullName column for the table LeaveBuildUpRegistrations. |
EmployeeHID | Int | The EmployeeHID column for the table LeaveBuildUpRegistrations. |
Hours | Double | The Hours column for the table LeaveBuildUpRegistrations. |
LeaveType | String | The LeaveType column for the table LeaveBuildUpRegistrations. |
LeaveTypeCode | String | The LeaveTypeCode column for the table LeaveBuildUpRegistrations. |
LeaveTypeDescription | String | The LeaveTypeDescription column for the table LeaveBuildUpRegistrations. |
Modified | Datetime | The Modified column for the table LeaveBuildUpRegistrations. |
Modifier | String | The Modifier column for the table LeaveBuildUpRegistrations. |
ModifierFullName | String | The ModifierFullName column for the table LeaveBuildUpRegistrations. |
Notes | String | The Notes column for the table LeaveBuildUpRegistrations. |
Status | Int | The Status column for the table LeaveBuildUpRegistrations. |
LeaveRegistrations
Usage information for the operation LeaveRegistrations.rsd.
Columns
Name | Type | Description |
---|---|---|
ID [KEY] | String | The ID column for the table LeaveRegistrations. |
Created | Datetime | The Created column for the table LeaveRegistrations. |
Creator | String | The Creator column for the table LeaveRegistrations. |
CreatorFullName | String | The CreatorFullName column for the table LeaveRegistrations. |
Description | String | The Description column for the table LeaveRegistrations. |
Division | Int | The Division column for the table LeaveRegistrations. |
Employee | String | The Employee column for the table LeaveRegistrations. |
EmployeeFullName | String | The EmployeeFullName column for the table LeaveRegistrations. |
EmployeeHID | Int | The EmployeeHID column for the table LeaveRegistrations. |
EndDate | Datetime | The EndDate column for the table LeaveRegistrations. |
EndTime | Datetime | The EndTime column for the table LeaveRegistrations. |
Hours | Double | The Hours column for the table LeaveRegistrations. |
HoursFirstDay | Double | The HoursFirstDay column for the table LeaveRegistrations. |
HoursLastDay | Double | The HoursLastDay column for the table LeaveRegistrations. |
LeaveType | String | The LeaveType column for the table LeaveRegistrations. |
LeaveTypeCode | String | The LeaveTypeCode column for the table LeaveRegistrations. |
LeaveTypeDescription | String | The LeaveTypeDescription column for the table LeaveRegistrations. |
Modified | Datetime | The Modified column for the table LeaveRegistrations. |
Modifier | String | The Modifier column for the table LeaveRegistrations. |
ModifierFullName | String | The ModifierFullName column for the table LeaveRegistrations. |
Notes | String | The Notes column for the table LeaveRegistrations. |
StartDate | Datetime | The StartDate column for the table LeaveRegistrations. |
StartTime | Datetime | The StartTime column for the table LeaveRegistrations. |
Status | Int | The Status column for the table LeaveRegistrations. |
MailMessagesReceived
Usage information for the operation MailMessagesReceived.rsd.
Columns
Name | Type | Description |
---|---|---|
ID [KEY] | String | The ID column for the table MailMessagesReceived. |
Bank | String | The Bank column for the table MailMessagesReceived. |
BankAccount | String | The BankAccount column for the table MailMessagesReceived. |
Created | Datetime | The Created column for the table MailMessagesReceived. |
Creator | String | The Creator column for the table MailMessagesReceived. |
CreatorFullName | String | The CreatorFullName column for the table MailMessagesReceived. |
ForDivision | Int | The ForDivision column for the table MailMessagesReceived. |
Modified | Datetime | The Modified column for the table MailMessagesReceived. |
Modifier | String | The Modifier column for the table MailMessagesReceived. |
ModifierFullName | String | The ModifierFullName column for the table MailMessagesReceived. |
Operation | Int | The Operation column for the table MailMessagesReceived. |
OriginalMessage | String | The OriginalMessage column for the table MailMessagesReceived. |
OriginalMessageSubject | String | The OriginalMessageSubject column for the table MailMessagesReceived. |
PartnerKey | String | The PartnerKey column for the table MailMessagesReceived. |
Quantity | Double | The Quantity column for the table MailMessagesReceived. |
RecipientAccount | String | The RecipientAccount column for the table MailMessagesReceived. |
RecipientDeleted | Int | The RecipientDeleted column for the table MailMessagesReceived. |
RecipientMailbox | String | The RecipientMailbox column for the table MailMessagesReceived. |
RecipientMailboxDescription | String | The RecipientMailboxDescription column for the table MailMessagesReceived. |
RecipientMailboxID | String | The RecipientMailboxID column for the table MailMessagesReceived. |
RecipientStatus | Int | The RecipientStatus column for the table MailMessagesReceived. |
RecipientStatusDescription | String | The RecipientStatusDescription column for the table MailMessagesReceived. |
SenderAccount | String | The SenderAccount column for the table MailMessagesReceived. |
SenderDateSent | Datetime | The SenderDateSent column for the table MailMessagesReceived. |
SenderDeleted | Int | The SenderDeleted column for the table MailMessagesReceived. |
SenderIPAddress | String | The SenderIPAddress column for the table MailMessagesReceived. |
SenderMailbox | String | The SenderMailbox column for the table MailMessagesReceived. |
SenderMailboxDescription | String | The SenderMailboxDescription column for the table MailMessagesReceived. |
SenderMailboxID | String | The SenderMailboxID column for the table MailMessagesReceived. |
Subject | String | The Subject column for the table MailMessagesReceived. |
SynchronizationCode | String | The SynchronizationCode column for the table MailMessagesReceived. |
Type | Int | The Type column for the table MailMessagesReceived. |
Me
Usage information for the operation Me.rsd.
Columns
Name | Type | Description |
---|---|---|
UserID [KEY] | String | The UserID column for the table Me. |
CurrentDivision | Int | The CurrentDivision column for the table Me. |
DivisionCustomer | String | The DivisionCustomer column for the table Me. |
DivisionCustomerCode | String | The DivisionCustomerCode column for the table Me. |
DivisionCustomerName | String | The DivisionCustomerName column for the table Me. |
DivisionCustomerSiretNumber | String | The DivisionCustomerSiretNumber column for the table Me. |
DivisionCustomerVatNumber | String | The DivisionCustomerVatNumber column for the table Me. |
Email | String | The Email column for the table Me. |
EmployeeID | String | The EmployeeID column for the table Me. |
FirstName | String | The FirstName column for the table Me. |
FullName | String | The FullName column for the table Me. |
Gender | String | The Gender column for the table Me. |
Initials | String | The Initials column for the table Me. |
Language | String | The Language column for the table Me. |
LanguageCode | String | The LanguageCode column for the table Me. |
LastName | String | The LastName column for the table Me. |
Legislation | Long | The Legislation column for the table Me. |
MiddleName | String | The MiddleName column for the table Me. |
Mobile | String | The Mobile column for the table Me. |
Nationality | String | The Nationality column for the table Me. |
Phone | String | The Phone column for the table Me. |
PhoneExtension | String | The PhoneExtension column for the table Me. |
PictureUrl | String | The PictureUrl column for the table Me. |
ServerTime | String | The ServerTime column for the table Me. |
ServerUtcOffset | Double | The ServerUtcOffset column for the table Me. |
ThumbnailPicture | Binary | The ThumbnailPicture column for the table Me. |
ThumbnailPictureFormat | String | The ThumbnailPictureFormat column for the table Me. |
Title | String | The Title column for the table Me. |
UserName | String | The UserName column for the table Me. |
OpportunityContacts
Usage information for the operation OpportunityContacts.rsd.
Columns
Name | Type | Description |
---|---|---|
ID [KEY] | String | The ID column for the table OpportunityContacts. |
Account | String | The Account column for the table OpportunityContacts. |
AccountIsCustomer | Bool | The AccountIsCustomer column for the table OpportunityContacts. |
AccountIsSupplier | Bool | The AccountIsSupplier column for the table OpportunityContacts. |
AccountMainContact | String | The AccountMainContact column for the table OpportunityContacts. |
AccountName | String | The AccountName column for the table OpportunityContacts. |
AddressLine2 | String | The AddressLine2 column for the table OpportunityContacts. |
AddressStreet | String | The AddressStreet column for the table OpportunityContacts. |
AddressStreetNumber | String | The AddressStreetNumber column for the table OpportunityContacts. |
AddressStreetNumberSuffix | String | The AddressStreetNumberSuffix column for the table OpportunityContacts. |
AllowMailing | Int | The AllowMailing column for the table OpportunityContacts. |
BirthDate | Datetime | The BirthDate column for the table OpportunityContacts. |
BirthName | String | The BirthName column for the table OpportunityContacts. |
BirthNamePrefix | String | The BirthNamePrefix column for the table OpportunityContacts. |
BirthPlace | String | The BirthPlace column for the table OpportunityContacts. |
BusinessEmail | String | The BusinessEmail column for the table OpportunityContacts. |
BusinessFax | String | The BusinessFax column for the table OpportunityContacts. |
BusinessMobile | String | The BusinessMobile column for the table OpportunityContacts. |
BusinessPhone | String | The BusinessPhone column for the table OpportunityContacts. |
BusinessPhoneExtension | String | The BusinessPhoneExtension column for the table OpportunityContacts. |
City | String | The City column for the table OpportunityContacts. |
Code | String | The Code column for the table OpportunityContacts. |
Country | String | The Country column for the table OpportunityContacts. |
Created | Datetime | The Created column for the table OpportunityContacts. |
Creator | String | The Creator column for the table OpportunityContacts. |
CreatorFullName | String | The CreatorFullName column for the table OpportunityContacts. |
Division | Int | The Division column for the table OpportunityContacts. |
Email | String | The Email column for the table OpportunityContacts. |
EndDate | Datetime | The EndDate column for the table OpportunityContacts. |
FirstName | String | The FirstName column for the table OpportunityContacts. |
FullName | String | The FullName column for the table OpportunityContacts. |
Gender | String | The Gender column for the table OpportunityContacts. |
HID | Int | The HID column for the table OpportunityContacts. |
IdentificationDate | Datetime | The IdentificationDate column for the table OpportunityContacts. |
IdentificationDocument | String | The IdentificationDocument column for the table OpportunityContacts. |
IdentificationUser | String | The IdentificationUser column for the table OpportunityContacts. |
Initials | String | The Initials column for the table OpportunityContacts. |
IsMailingExcluded | Bool | The IsMailingExcluded column for the table OpportunityContacts. |
IsMainContact | Bool | The IsMainContact column for the table OpportunityContacts. |
JobTitleDescription | String | The JobTitleDescription column for the table OpportunityContacts. |
Language | String | The Language column for the table OpportunityContacts. |
LastName | String | The LastName column for the table OpportunityContacts. |
MarketingNotes | String | The MarketingNotes column for the table OpportunityContacts. |
MiddleName | String | The MiddleName column for the table OpportunityContacts. |
Mobile | String | The Mobile column for the table OpportunityContacts. |
Modified | Datetime | The Modified column for the table OpportunityContacts. |
Modifier | String | The Modifier column for the table OpportunityContacts. |
ModifierFullName | String | The ModifierFullName column for the table OpportunityContacts. |
Nationality | String | The Nationality column for the table OpportunityContacts. |
Notes | String | The Notes column for the table OpportunityContacts. |
PartnerName | String | The PartnerName column for the table OpportunityContacts. |
PartnerNamePrefix | String | The PartnerNamePrefix column for the table OpportunityContacts. |
Person | String | The Person column for the table OpportunityContacts. |
Phone | String | The Phone column for the table OpportunityContacts. |
PhoneExtension | String | The PhoneExtension column for the table OpportunityContacts. |
Picture | Binary | The Picture column for the table OpportunityContacts. |
PictureName | String | The PictureName column for the table OpportunityContacts. |
PictureThumbnailUrl | String | The PictureThumbnailUrl column for the table OpportunityContacts. |
PictureUrl | String | The PictureUrl column for the table OpportunityContacts. |
Postcode | String | The Postcode column for the table OpportunityContacts. |
SocialSecurityNumber | String | The SocialSecurityNumber column for the table OpportunityContacts. |
StartDate | Datetime | The StartDate column for the table OpportunityContacts. |
State | String | The State column for the table OpportunityContacts. |
Title | String | The Title column for the table OpportunityContacts. |
Contact | String | The Contact column for the table OpportunityContacts. |
Opportunity | String | The Opportunity column for the table OpportunityContacts. |
OutstandingInvoicesOverview
Usage information for the operation OutstandingInvoicesOverview.rsd.
Columns
Name | Type | Description |
---|---|---|
CurrencyCode [KEY] | String | The CurrencyCode column for the table OutstandingInvoicesOverview. |
OutstandingPayableInvoiceAmount | Double | The OutstandingPayableInvoiceAmount column for the table OutstandingInvoicesOverview. |
OutstandingPayableInvoiceCount | Double | The OutstandingPayableInvoiceCount column for the table OutstandingInvoicesOverview. |
OutstandingReceivableInvoiceAmount | Double | The OutstandingReceivableInvoiceAmount column for the table OutstandingInvoicesOverview. |
OutstandingReceivableInvoiceCount | Double | The OutstandingReceivableInvoiceCount column for the table OutstandingInvoicesOverview. |
OverduePayableInvoiceAmount | Double | The OverduePayableInvoiceAmount column for the table OutstandingInvoicesOverview. |
OverduePayableInvoiceCount | Double | The OverduePayableInvoiceCount column for the table OutstandingInvoicesOverview. |
OverdueReceivableInvoiceAmount | Double | The OverdueReceivableInvoiceAmount column for the table OutstandingInvoicesOverview. |
OverdueReceivableInvoiceCount | Double | The OverdueReceivableInvoiceCount column for the table OutstandingInvoicesOverview. |
PayablesList
Usage information for the operation PayablesList.rsd.
Columns
Name | Type | Description |
---|---|---|
HID [KEY] | Long | The HID column for the table PayablesList. |
AccountCode | String | The AccountCode column for the table PayablesList. |
AccountId | String | The AccountId column for the table PayablesList. |
AccountName | String | The AccountName column for the table PayablesList. |
Amount | Double | The Amount column for the table PayablesList. |
AmountInTransit | Double | The AmountInTransit column for the table PayablesList. |
CurrencyCode | String | The CurrencyCode column for the table PayablesList. |
Description | String | The Description column for the table PayablesList. |
DueDate | Datetime | The DueDate column for the table PayablesList. |
EntryNumber | Int | The EntryNumber column for the table PayablesList. |
Id | String | The ID column for the table PayablesList. |
InvoiceDate | Datetime | The InvoiceDate column for the table PayablesList. |
InvoiceNumber | Int | The InvoiceNumber column for the table PayablesList. |
JournalCode | String | The JournalCode column for the table PayablesList. |
JournalDescription | String | The JournalDescription column for the table PayablesList. |
YourRef | String | The YourRef column for the table PayablesList. |
ApprovalStatus | Int | The ApprovalStatus column for the table PayablesList. |
Payments
Usage information for the operation Payments.rsd.
Columns
Name | Type | Description |
---|---|---|
ID [KEY] | String | The ID column for the table Payments. |
Account | String | The Account column for the table Payments. |
AccountBankAccountID | String | The AccountBankAccountID column for the table Payments. |
AccountBankAccountNumber | String | The AccountBankAccountNumber column for the table Payments. |
AccountCode | String | The AccountCode column for the table Payments. |
AccountContact | String | The AccountContact column for the table Payments. |
AccountContactName | String | The AccountContactName column for the table Payments. |
AccountName | String | The AccountName column for the table Payments. |
AmountDC | Double | The AmountDC column for the table Payments. |
AmountDiscountDC | Double | The AmountDiscountDC column for the table Payments. |
AmountDiscountFC | Double | The AmountDiscountFC column for the table Payments. |
AmountFC | Double | The AmountFC column for the table Payments. |
BankAccountID | String | The BankAccountID column for the table Payments. |
BankAccountNumber | String | The BankAccountNumber column for the table Payments. |
CashflowTransactionBatchCode | String | The CashflowTransactionBatchCode column for the table Payments. |
Created | Datetime | The Created column for the table Payments. |
Creator | String | The Creator column for the table Payments. |
CreatorFullName | String | The CreatorFullName column for the table Payments. |
Currency | String | The Currency column for the table Payments. |
Description | String | The Description column for the table Payments. |
DiscountDueDate | Datetime | The DiscountDueDate column for the table Payments. |
Division | Int | The Division column for the table Payments. |
Document | String | The Document column for the table Payments. |
DocumentNumber | Int | The DocumentNumber column for the table Payments. |
DocumentSubject | String | The DocumentSubject column for the table Payments. |
DueDate | Datetime | The DueDate column for the table Payments. |
EndDate | Datetime | The EndDate column for the table Payments. |
EndPeriod | Int | The EndPeriod column for the table Payments. |
EndYear | Int | The EndYear column for the table Payments. |
EntryDate | Datetime | The EntryDate column for the table Payments. |
EntryID | String | The EntryID column for the table Payments. |
EntryNumber | Int | The EntryNumber column for the table Payments. |
GLAccount | String | The GLAccount column for the table Payments. |
GLAccountCode | String | The GLAccountCode column for the table Payments. |
GLAccountDescription | String | The GLAccountDescription column for the table Payments. |
InvoiceDate | Datetime | The InvoiceDate column for the table Payments. |
InvoiceNumber | Int | The InvoiceNumber column for the table Payments. |
IsBatchBooking | Int | The IsBatchBooking column for the table Payments. |
Journal | String | The Journal column for the table Payments. |
JournalDescription | String | The JournalDescription column for the table Payments. |
Modified | Datetime | The Modified column for the table Payments. |
Modifier | String | The Modifier column for the table Payments. |
ModifierFullName | String | The ModifierFullName column for the table Payments. |
PaymentBatchNumber | Int | The PaymentBatchNumber column for the table Payments. |
PaymentCondition | String | The PaymentCondition column for the table Payments. |
PaymentConditionDescription | String | The PaymentConditionDescription column for the table Payments. |
PaymentDays | Int | The PaymentDays column for the table Payments. |
PaymentDaysDiscount | Int | The PaymentDaysDiscount column for the table Payments. |
PaymentDiscountPercentage | Double | The PaymentDiscountPercentage column for the table Payments. |
PaymentMethod | String | The PaymentMethod column for the table Payments. |
PaymentReference | String | The PaymentReference column for the table Payments. |
PaymentSelected | Datetime | The PaymentSelected column for the table Payments. |
PaymentSelector | String | The PaymentSelector column for the table Payments. |
PaymentSelectorFullName | String | The PaymentSelectorFullName column for the table Payments. |
RateFC | Double | The RateFC column for the table Payments. |
Source | Int | The Source column for the table Payments. |
Status | Int | The Status column for the table Payments. |
TransactionAmountDC | Double | The TransactionAmountDC column for the table Payments. |
TransactionAmountFC | Double | The TransactionAmountFC column for the table Payments. |
TransactionDueDate | Datetime | The TransactionDueDate column for the table Payments. |
TransactionEntryID | String | The TransactionEntryID column for the table Payments. |
TransactionID | String | The TransactionID column for the table Payments. |
TransactionIsReversal | Bool | The TransactionIsReversal column for the table Payments. |
TransactionReportingPeriod | Int | The TransactionReportingPeriod column for the table Payments. |
TransactionReportingYear | Int | The TransactionReportingYear column for the table Payments. |
TransactionStatus | Int | The TransactionStatus column for the table Payments. |
TransactionType | Int | The TransactionType column for the table Payments. |
YourRef | String | The YourRef column for the table Payments. |
PaymentTerms
Usage information for the operation PaymentTerms.rsd.
Columns
Name | Type | Description |
---|---|---|
TimeStamp | Datetime | TimeStamp. |
Account | String | The supplier to which the payment has to be done. |
AccountBankAccountID | String | The bank account of the supplier, to which the payment has to be done. |
AccountBankAccountNumber | String | The bank account number of the supplier, to which the payment has to be done. |
AccountCode | String | The code of the supplier to which the payment has to be done. |
AccountContact | String | Contact person copied from the purchase invoice linked to the related purchase entry. Used as prefered contact when sending reminders. |
AccountContactName | String | Name of the contact person of the supplier. |
AccountCountry | String | Country |
AccountName | String | Name of the supplier. |
AmountDC | Double | The amount in default currency (division currency). Payments are matched on this amount. |
AmountDiscountDC | Double | The amount of the discount in the default currency. |
AmountDiscountFC | Double | The amount of the discount. This is in the amount of the selected currency. |
AmountFC | Double | The amount of the payment. This is in the amount of the selected currency. |
ApprovalStatus | Int | Shows the approval status of the payment. |
BankAccountID | String | Own bank account from which the payment must be done. |
BankAccountNumber | String | Own bank account number from which the payment must be done. |
CashflowTransactionBatchCode | String | When processing payments, all payments with the same processing data are put in a batch. This field contains the code of that batch. |
Created | Datetime | Creation date. |
Creator | String | User ID of the creator. |
CreatorFullName | String | Name of the creator. |
Currency | String | The currency of the payment. This currency can only deviate from the division currency if the module Currency is in the license. |
Description | String | Extra description for the payment that may be included in the bank export file. |
DirectDebitMandate | String | Direct Debit Mandate used to collect the PaymentTerms. |
DirectDebitMandateDescription | String | Description of the mandate. |
DirectDebitMandatePaymentType | Int | Payment type of the mandate. other:parententityset= |
DirectDebitMandateReference | String | Unique mandate reference. |
DirectDebitMandateType | Int | Type of the mandate. |
DiscountDueDate | Datetime | Date before which the payment must be done to be eligible for discount. |
Division | Int | Division code. |
Document | String | Document that is created when processing payments. |
DocumentNumber | Int | Number of the document. |
DocumentSubject | String | Subject of the document. |
DueDate | Datetime | Date before which the payment must be done. |
EndDate | Datetime | Date since when the payment is no longer an outstanding item. |
EndPeriod | Int | Period since when the payment is no longer an outstanding item. |
EndToEndID | String | The value of the tag 'EndToEndID' when generating a SEPA file. |
EndYear | Int | Year (of period) since when the payment is no longer an outstanding item. |
EntryDate | Datetime | Processing date of the payment. |
EntryID | String | The unique identifier for a set of payments. |
EntryNumber | Int | Entry number of the linked transaction. |
GLAccount | String | G/L account of the payment. Must be of type 22. |
GLAccountCode | String | Code of the G/L account. |
GLAccountDescription | String | Description of the G/L account. |
ID | String | Identifier of the PaymentTerms. |
InvoiceDate | Datetime | Invoice date of the linked transaction. |
InvoiceNumber | Int | Invoice number of the linked transaction. |
IsBatchBooking | Int | Boolean indicating whether the payment is part of a batch booking. |
IsFullyPaid | Bool | Boolean indicating whether the receivable was fully paid by the customer. |
Journal | String | Journal of the linked transaction. |
JournalDescription | String | Description of the journal. |
LastPaymentDate | Datetime | Last payment date. |
LineType | Int | Determines if the record is a payment or receipt. In case of payment the value is 22, in case of receipt the value is 20 |
Modified | Datetime | Last modified date. |
Modifier | String | User |
ModifierFullName | String | Name of modifier. |
PaymentBatchNumber | Int | Number assigned during the of processing payments. |
PaymentCondition | String | Payment condition of the linked transaction. |
PaymentConditionDescription | String | Description of the payment condition. |
PaymentDays | Int | Number of days between invoice date and due date. |
PaymentDaysDiscount | Int | Number of days between invoice date and due date of the discount. |
PaymentDiscountPercentage | Double | Payment discount percentage. |
PaymentInformationID | String | PaymentInformationID tag from the SEPA xml file. |
PaymentMethod | String | Method of payment. |
PaymentReference | String | Payment reference for the payment that may be included in the bank export file. |
PaymentSelected | Datetime | Date and time since when the payment is selected to be paid. |
PaymentSelector | String | User who selected the payment to be paid. |
PaymentSelectorFullName | String | Name of the payment selector. |
RateFC | Double | Exchange rate from payment currency to division currency. AmountFC * RateFC = AmountDC. |
ReceivableBatchNumber | Int | Number assigned during the processing of receivables. |
ReceivableSelected | Datetime | Date and time since when the receivable is selected to be collected. |
ReceivableSelector | String | User who selected the receivable to be collected. |
ReceivableSelectorFullName | String | Name of the receivable selector. |
Source | Int | The source of the payment. |
Status | Int | The status of the payment. |
TransactionAmountDC | Double | Total amount of the linked transaction in default currency. |
TransactionAmountFC | Double | Total amount of the linked transaction in the selected currency. |
TransactionDueDate | Datetime | Due date of the linked transaction. |
TransactionEntryID | String | Linked transaction. Use this as reference to PurchaseEntries. |
TransactionID | String | Linked transaction line. Use this as reference to PurchaseEntryLines. |
TransactionIsReversal | Bool | Indicates if the linked transaction is a reversal entry. |
TransactionReportingPeriod | Int | Period of the linked transaction. |
TransactionReportingYear | Int | Year of the linked transaction. |
TransactionStatus | Int | Status of the linked transaction. |
TransactionType | Int | Type of the linked transaction. |
YourRef | String | Invoice number of the supplier. In case the payment belongs to a bank entry line and is matched with one invoice, YourRef is filled with the YourRef of this invoice. |
PayrollComponents
Usage information for the operation PayrollComponents.rsd.
Columns
Name | Type | Description |
---|---|---|
ID [KEY] | String | The ID column for the table PayrollComponents. |
Calculate | Int | The Calculate column for the table PayrollComponents. |
Category | String | The Category column for the table PayrollComponents. |
CategoryDescription | String | The CategoryDescription column for the table PayrollComponents. |
Code | String | The Code column for the table PayrollComponents. |
Created | Datetime | The Created column for the table PayrollComponents. |
Creator | String | The Creator column for the table PayrollComponents. |
CreatorFullName | String | The CreatorFullName column for the table PayrollComponents. |
Description | String | The Description column for the table PayrollComponents. |
Division | Int | The Division column for the table PayrollComponents. |
EmploymentConditionGroupCode | String | The EmploymentConditionGroupCode column for the table PayrollComponents. |
EmploymentConditionGroupDescription | String | The EmploymentConditionGroupDescription column for the table PayrollComponents. |
EndDate | Datetime | The EndDate column for the table PayrollComponents. |
GLClassification | String | The GLClassification column for the table PayrollComponents. |
GLClassificationDescription | String | The GLClassificationDescription column for the table PayrollComponents. |
Modified | Datetime | The Modified column for the table PayrollComponents. |
Modifier | String | The Modifier column for the table PayrollComponents. |
ModifierFullName | String | The ModifierFullName column for the table PayrollComponents. |
PensionDeclarationClassification | String | The PensionDeclarationClassification column for the table PayrollComponents. |
PensionDeclarationClassificationDescription | String | The PensionDeclarationClassificationDescription column for the table PayrollComponents. |
PensionDeclarationSubclassification | String | The PensionDeclarationSubclassification column for the table PayrollComponents. |
PensionDeclarationSubclassificationDescription | String | The PensionDeclarationSubclassificationDescription column for the table PayrollComponents. |
SearchCode | String | The SearchCode column for the table PayrollComponents. |
StartDate | Datetime | The StartDate column for the table PayrollComponents. |
Subcategory | String | The Subcategory column for the table PayrollComponents. |
SubcategoryDescription | String | The SubcategoryDescription column for the table PayrollComponents. |
TaxDeclarationClassification | String | The TaxDeclarationClassification column for the table PayrollComponents. |
TaxDeclarationClassificationDescription | String | The TaxDeclarationClassificationDescription column for the table PayrollComponents. |
TransactionType | Int | The TransactionType column for the table PayrollComponents. |
Type | Int | The Type column for the table PayrollComponents. |
WageListClassification | String | The WageListClassification column for the table PayrollComponents. |
WageListClassificationDescription | String | The WageListClassificationDescription column for the table PayrollComponents. |
PayrollTransactions
Usage information for the operation PayrollTransactions.rsd.
Columns
Name | Type | Description |
---|---|---|
ID [KEY] | String | The ID column for the table PayrollTransactions. |
CalculatedAmount | Double | The CalculatedAmount column for the table PayrollTransactions. |
CalculatedBaseValue | Double | The CalculatedBaseValue column for the table PayrollTransactions. |
CalculatedFranchise | Double | The CalculatedFranchise column for the table PayrollTransactions. |
CalculatedMaximum | Double | The CalculatedMaximum column for the table PayrollTransactions. |
CalculatedNumber | Double | The CalculatedNumber column for the table PayrollTransactions. |
CostCenter | String | The CostCenter column for the table PayrollTransactions. |
CostCenterCode | String | The CostCenterCode column for the table PayrollTransactions. |
CostCenterDescription | String | The CostCenterDescription column for the table PayrollTransactions. |
CostUnit | String | The CostUnit column for the table PayrollTransactions. |
CostUnitCode | String | The CostUnitCode column for the table PayrollTransactions. |
CostUnitDescription | String | The CostUnitDescription column for the table PayrollTransactions. |
Created | Datetime | The Created column for the table PayrollTransactions. |
Creator | String | The Creator column for the table PayrollTransactions. |
CreatorFullName | String | The CreatorFullName column for the table PayrollTransactions. |
Date | Datetime | The Date column for the table PayrollTransactions. |
Department | String | The Department column for the table PayrollTransactions. |
DepartmentCode | String | The DepartmentCode column for the table PayrollTransactions. |
DepartmentDescription | String | The DepartmentDescription column for the table PayrollTransactions. |
Division | Int | The Division column for the table PayrollTransactions. |
Employee | String | The Employee column for the table PayrollTransactions. |
EmployeeHID | Int | The EmployeeHID column for the table PayrollTransactions. |
Employment | String | The Employment column for the table PayrollTransactions. |
EmploymentConditionGroup | String | The EmploymentConditionGroup column for the table PayrollTransactions. |
EmploymentConditionGroupCode | String | The EmploymentConditionGroupCode column for the table PayrollTransactions. |
EmploymentConditionGroupDescription | String | The EmploymentConditionGroupDescription column for the table PayrollTransactions. |
EntryAmount | Double | The EntryAmount column for the table PayrollTransactions. |
EntryBase | Double | The EntryBase column for the table PayrollTransactions. |
EntryNumber | Double | The EntryNumber column for the table PayrollTransactions. |
EntryPercentage | Double | The EntryPercentage column for the table PayrollTransactions. |
EntryPercentage2 | Double | The EntryPercentage2 column for the table PayrollTransactions. |
EntryType | Int | The EntryType column for the table PayrollTransactions. |
EntryTypeDescription | String | The EntryTypeDescription column for the table PayrollTransactions. |
Frequency | Int | The Frequency column for the table PayrollTransactions. |
FullName | String | The FullName column for the table PayrollTransactions. |
ModifiedDate | Datetime | The ModifiedDate column for the table PayrollTransactions. |
Modifier | String | The Modifier column for the table PayrollTransactions. |
ModifierFullName | String | The ModifierFullName column for the table PayrollTransactions. |
PayrollComponent | String | The PayrollComponent column for the table PayrollTransactions. |
PayrollComponentCode | String | The PayrollComponentCode column for the table PayrollTransactions. |
PayrollComponentDescription | String | The PayrollComponentDescription column for the table PayrollTransactions. |
PayrollComponentType | Int | The PayrollComponentType column for the table PayrollTransactions. |
PayrollComponentTypeDescription | String | The PayrollComponentTypeDescription column for the table PayrollTransactions. |
PayrollRun | String | The PayrollRun column for the table PayrollTransactions. |
PayrollRunCode | String | The PayrollRunCode column for the table PayrollTransactions. |
PayrollYear | Int | The PayrollYear column for the table PayrollTransactions. |
Period | Int | The Period column for the table PayrollTransactions. |
Status | Int | The Status column for the table PayrollTransactions. |
Type | Int | The Type column for the table PayrollTransactions. |
TypeDescription | String | The TypeDescription column for the table PayrollTransactions. |
PreferredMailbox
Usage information for the operation PreferredMailbox.rsd.
Columns
Name | Type | Description |
---|---|---|
ID [KEY] | String | The ID column for the table PreferredMailbox. |
Created | Datetime | The Created column for the table PreferredMailbox. |
Creator | String | The Creator column for the table PreferredMailbox. |
Description | String | The Description column for the table PreferredMailbox. |
ForDivision | Int | The ForDivision column for the table PreferredMailbox. |
IsScanServiceMailbox | Bool | The IsScanServiceMailbox column for the table PreferredMailbox. |
Mailbox | String | The Mailbox column for the table PreferredMailbox. |
Modified | Datetime | The Modified column for the table PreferredMailbox. |
Modifier | String | The Modifier column for the table PreferredMailbox. |
ValidFrom | Datetime | The ValidFrom column for the table PreferredMailbox. |
ValidTo | Datetime | The ValidTo column for the table PreferredMailbox. |
PreviousYear_AfterEntry
Usage information for the operation PreviousYear_AfterEntry.rsd.
Columns
Name | Type | Description |
---|---|---|
ReportingYear [KEY] | Int | The ReportingYear column for the table AfterEntry. |
GLAccount [KEY] | String | The GLAccount column for the table AfterEntry. |
Division [KEY] | Int | The Division column for the table AfterEntry. |
Amount | Double | The Amount column for the table AfterEntry. |
BalanceSide | String | The BalanceSide column for the table AfterEntry. |
GLAccountCode | String | The GLAccountCode column for the table AfterEntry. |
GLAccountDescription | String | The GLAccountDescription column for the table AfterEntry. |
PreviousYear_Processed
Usage information for the operation PreviousYear_Processed.rsd.
Columns
Name | Type | Description |
---|---|---|
ReportingYear [KEY] | Int | The ReportingYear column for the table Processed. |
GLAccount [KEY] | String | The GLAccount column for the table Processed. |
Division [KEY] | Int | The Division column for the table Processed. |
Amount | Double | The Amount column for the table Processed. |
BalanceSide | String | The BalanceSide column for the table Processed. |
GLAccountCode | String | The GLAccountCode column for the table Processed. |
GLAccountDescription | String | The GLAccountDescription column for the table Processed. |
PriceListPeriods
Usage information for the operation PriceListPeriods.rsd.
Columns
Name | Type | Description |
---|---|---|
ID [KEY] | String | The ID column for the table PriceListPeriods. |
Created | Datetime | The Created column for the table PriceLists. |
Creator | String | The Creator column for the table PriceLists. |
CreatorFullName | String | The CreatorFullName column for the table PriceLists. |
Currency | String | The Currency column for the table PriceLists. |
Division | Int | The Division column for the table PriceLists. |
EndDate | Datetime | Date when the price list should become inactive. |
Modified | Datetime | The Modified column for the table PriceLists. |
Modifier | String | The Modifier column for the table PriceLists. |
ModifierFullName | String | The ModifierFullName column for the table PriceLists. |
PriceList | String | Price list ID. |
StartDate | Datetime | Date for the price list start activate.. |
Type | Int | The Notes column for the table PriceLists. |
PriceLists
Usage information for the operation PriceLists.rsd.
Columns
Name | Type | Description |
---|---|---|
ID [KEY] | String | The ID column for the table PriceLists. |
Code | String | The Code column for the table PriceLists. |
Created | Datetime | The Created column for the table PriceLists. |
Creator | String | The Creator column for the table PriceLists. |
CreatorFullName | String | The CreatorFullName column for the table PriceLists. |
Currency | String | The Currency column for the table PriceLists. |
Description | String | The Description column for the table PriceLists. |
Division | Int | The Division column for the table PriceLists. |
Entity | Int | The Entity column for the table PriceLists. |
Modified | Datetime | The Modified column for the table PriceLists. |
Modifier | String | The Modifier column for the table PriceLists. |
ModifierFullName | String | The ModifierFullName column for the table PriceLists. |
Notes | String | The Notes column for the table PriceLists. |
PriceListsLinkedAccounts
Usage information for the operation PriceListsLinkedAccounts.rsd.
Columns
Name | Type | Description |
---|---|---|
ID [KEY] | String | The ID column for the table PriceListsLinkedAccounts. |
Code | String | The Code column for the table PriceLists. |
Created | Datetime | The Created column for the table PriceLists. |
Creator | String | The Creator column for the table PriceLists. |
CreatorFullName | String | The CreatorFullName column for the table PriceLists. |
Division | Int | The Division column for the table PriceLists. |
Modified | Datetime | The Modified column for the table PriceLists. |
Modifier | String | The Modifier column for the table PriceLists. |
ModifierFullName | String | The ModifierFullName column for the table PriceLists. |
Name | String | Customer account name. |
PriceList | String | Price list ID. |
PriceListVolumeDiscounts
Usage information for the operation PriceListVolumeDiscounts.rsd.
Columns
Name | Type | Description |
---|---|---|
ID [KEY] | String | The ID column for the table PriceListVolumeDiscounts. |
BasePrice | String | The ID column for the table PriceLists. |
BasePriceAmount | Double | The ID column for the table PriceLists. |
Created | Datetime | The Created column for the table PriceLists. |
Creator | String | The Creator column for the table PriceLists. |
CreatorFullName | String | The CreatorFullName column for the table PriceLists. |
Discount | Double | The Currency column for the table PriceLists. |
Division | Int | The Division column for the table PriceLists. |
EntryMethod | Int | The Entity column for the table PriceLists. |
Item | String | The ID column for the table PriceLists. |
ItemCode | String | The ID column for the table PriceLists. |
ItemDescription | String | The ID column for the table PriceLists. |
ItemGroup | String | The ID column for the table PriceLists. |
ItemGroupCode | String | The ID column for the table PriceLists. |
ItemGroupDescription | String | The ID column for the table PriceLists. |
Modified | Datetime | The Modified column for the table PriceLists. |
Modifier | String | The Modifier column for the table PriceLists. |
ModifierFullName | String | The ModifierFullName column for the table PriceLists. |
NewPrice | Double | The ModifierFullName column for the table PriceLists. |
NumberOfItemsPerUnit | Double | The ModifierFullName column for the table PriceLists. |
PriceListCode | String | Price list ID. |
PriceListDescription | String | Price list ID. |
PriceListPeriod | String | Price list ID. |
Quantity | Double | Price list ID. |
SalesUnit | String | Price list ID. |
Unit | String | The Notes column for the table PriceLists. |
ProfitLossOverview
Usage information for the operation ProfitLossOverview.rsd.
Columns
Name | Type | Description |
---|---|---|
CurrentYear [KEY] | Int | The CurrentYear column for the table ProfitLossOverview. |
CostsCurrentPeriod | Double | The CostsCurrentPeriod column for the table ProfitLossOverview. |
CostsCurrentYear | Double | The CostsCurrentYear column for the table ProfitLossOverview. |
CostsPreviousYear | Double | The CostsPreviousYear column for the table ProfitLossOverview. |
CostsPreviousYearPeriod | Double | The CostsPreviousYearPeriod column for the table ProfitLossOverview. |
CurrencyCode | String | The CurrencyCode column for the table ProfitLossOverview. |
CurrentPeriod | Int | The CurrentPeriod column for the table ProfitLossOverview. |
PreviousYear | Int | The PreviousYear column for the table ProfitLossOverview. |
PreviousYearPeriod | Int | The PreviousYearPeriod column for the table ProfitLossOverview. |
ResultCurrentPeriod | Double | The ResultCurrentPeriod column for the table ProfitLossOverview. |
ResultCurrentYear | Double | The ResultCurrentYear column for the table ProfitLossOverview. |
ResultPreviousYear | Double | The ResultPreviousYear column for the table ProfitLossOverview. |
ResultPreviousYearPeriod | Double | The ResultPreviousYearPeriod column for the table ProfitLossOverview. |
RevenueCurrentPeriod | Double | The RevenueCurrentPeriod column for the table ProfitLossOverview. |
RevenueCurrentYear | Double | The RevenueCurrentYear column for the table ProfitLossOverview. |
RevenuePreviousYear | Double | The RevenuePreviousYear column for the table ProfitLossOverview. |
RevenuePreviousYearPeriod | Double | The RevenuePreviousYearPeriod column for the table ProfitLossOverview. |
ProjectBudgetTypes
Usage information for the operation ProjectBudgetTypes.rsd.
Columns
Name | Type | Description |
---|---|---|
ID [KEY] | Int | The ID column for the table ProjectBudgetTypes. |
Description | String | The Description column for the table ProjectBudgetTypes. |
ProjectWBS
Usage information for the operation ProjectWBS.rsd.
Columns
Name | Type | Description |
---|---|---|
ID [KEY] | String | The ID column for the table ProjectWBS. |
AdditionalInvoicing | Int | The AdditionalInvoicing column for the table ProjectWBS. |
BaselineDate | Datetime | The BaselineDate column for the table ProjectWBS. |
BlockEntry | Bool | The BlockEntry column for the table ProjectWBS. |
BlockRebilling | Bool | The BlockRebilling column for the table ProjectWBS. |
BudgetOverrunHours | Int | The BudgetOverrunHours column for the table ProjectWBS. |
Completed | Int | The Completed column for the table ProjectWBS. |
Cost | Double | The Cost column for the table ProjectWBS. |
Created | Datetime | The Created column for the table ProjectWBS. |
Creator | String | The Creator column for the table ProjectWBS. |
DefaultItem | String | The DefaultItem column for the table ProjectWBS. |
Description | String | The Description column for the table ProjectWBS. |
Division | Int | The Division column for the table ProjectWBS. |
EndDate | Datetime | The EndDate column for the table ProjectWBS. |
Hours | Double | The Hours column for the table ProjectWBS. |
IsBaseline | Int | The IsBaseline column for the table ProjectWBS. |
Milestone | Int | The Milestone column for the table ProjectWBS. |
Modified | Datetime | The Modified column for the table ProjectWBS. |
Modifier | String | The Modifier column for the table ProjectWBS. |
Notes | String | The Notes column for the table ProjectWBS. |
Parent | String | The Parent column for the table ProjectWBS. |
Project | String | The Project column for the table ProjectWBS. |
ProjectTerm | String | The ProjectTerm column for the table ProjectWBS. |
PurchaseMarkupPercentage | Double | The PurchaseMarkupPercentage column for the table ProjectWBS. |
Revenue | Double | The Revenue column for the table ProjectWBS. |
StartDate | Datetime | The StartDate column for the table ProjectWBS. |
TimeQuantityToAlert | Double | The TimeQuantityToAlert column for the table ProjectWBS. |
Type | Int | The Type column for the table ProjectWBS. |
PurchaseItemPrices
Purchase Item Prices
Columns
Name | Type | Description |
---|---|---|
Timestamp [KEY] | Long | Timestamp |
Account | String | ID of the supplier |
AccountName | String | Name of the supplier account |
Created | Datetime | Creation date |
Creator | String | User ID of creator |
CreatorFullName | String | Name of creator |
Currency | String | The currency of the price |
DefaultItemUnit | String | The default unit of the item |
DefaultItemUnitDescription | String | The description of the default item unit |
Division | Int | Division code |
EndDate | Datetime | Together with StartDate this determines whether the price is active |
ID | String | ID of the PurchaseItemPrices. |
Item | String | Item ID |
ItemCode | String | Code of Item |
ItemDescription | String | Description of Item |
Modified | Datetime | Last modified date |
Modifier | String | User ID of modifier |
ModifierFullName | String | Name of modifier |
NumberOfItemsPerUnit | Double | This is the multiplication factor when going from default item unit to the unit of this price. |
Price | Double | The actual price of this purchase item |
Quantity | Double | Minimum quantity to which the price is applicable |
StartDate | Datetime | Together with EndDate this determines whether the price is active |
Unit | String | The unit code of the price |
UnitDescription | String | Description of the price unit |
PurchaseOrderLines
Usage information for the operation PurchaseOrderLines.rsd.
Columns
Name | Type | Description |
---|---|---|
ID [KEY] | String | The ID column for the table PurchaseOrderLines. |
AmountDC | Double | The AmountDC column for the table PurchaseOrderLines. |
AmountFC | Double | The AmountFC column for the table PurchaseOrderLines. |
CostCenter | String | The CostCenter column for the table PurchaseOrderLines. |
CostCenterDescription | String | The CostCenterDescription column for the table PurchaseOrderLines. |
CostUnit | String | The CostUnit column for the table PurchaseOrderLines. |
CostUnitDescription | String | The CostUnitDescription column for the table PurchaseOrderLines. |
Created | Datetime | The Created column for the table PurchaseOrderLines. |
Creator | String | The Creator column for the table PurchaseOrderLines. |
CreatorFullName | String | The CreatorFullName column for the table PurchaseOrderLines. |
Description | String | The Description column for the table PurchaseOrderLines. |
Discount | Double | The Discount column for the table PurchaseOrderLines. |
Division | Int | The Division column for the table PurchaseOrderLines. |
Expense | String | The Expense column for the table PurchaseOrderLines. |
ExpenseDescription | String | The ExpenseDescription column for the table PurchaseOrderLines. |
InStock | Double | The InStock column for the table PurchaseOrderLines. |
InvoicedQuantity | Double | The InvoicedQuantity column for the table PurchaseOrderLines. |
Item | String | The Item column for the table PurchaseOrderLines. |
ItemCode | String | The ItemCode column for the table PurchaseOrderLines. |
ItemDescription | String | The ItemDescription column for the table PurchaseOrderLines. |
ItemDivisable | Bool | The ItemDivisable column for the table PurchaseOrderLines. |
LineNumber | Int | The LineNumber column for the table PurchaseOrderLines. |
Modified | Datetime | The Modified column for the table PurchaseOrderLines. |
Modifier | String | The Modifier column for the table PurchaseOrderLines. |
ModifierFullName | String | The ModifierFullName column for the table PurchaseOrderLines. |
NetPrice | Double | The NetPrice column for the table PurchaseOrderLines. |
Notes | String | The Notes column for the table PurchaseOrderLines. |
Project | String | The Project column for the table PurchaseOrderLines. |
ProjectCode | String | The ProjectCode column for the table PurchaseOrderLines. |
ProjectDescription | String | The ProjectDescription column for the table PurchaseOrderLines. |
ProjectedStock | Double | The ProjectedStock column for the table PurchaseOrderLines. |
PurchaseOrderID | String | The PurchaseOrderID column for the table PurchaseOrderLines. |
Quantity | Double | The Quantity column for the table PurchaseOrderLines. |
QuantityInPurchaseUnits | Double | The QuantityInPurchaseUnits column for the table PurchaseOrderLines. |
Rebill | Bool | The Rebill column for the table PurchaseOrderLines. |
ReceiptDate | Datetime | The ReceiptDate column for the table PurchaseOrderLines. |
ReceivedQuantity | Double | The ReceivedQuantity column for the table PurchaseOrderLines. |
SalesOrder | String | The SalesOrder column for the table PurchaseOrderLines. |
SalesOrderLine | String | The SalesOrderLine column for the table PurchaseOrderLines. |
SalesOrderLineNumber | Int | The SalesOrderLineNumber column for the table PurchaseOrderLines. |
SalesOrderNumber | Int | The SalesOrderNumber column for the table PurchaseOrderLines. |
SupplierItemCode | String | The SupplierItemCode column for the table PurchaseOrderLines. |
SupplierItemCopyRemarks | Int | The SupplierItemCopyRemarks column for the table PurchaseOrderLines. |
Unit | String | The Unit column for the table PurchaseOrderLines. |
UnitDescription | String | The UnitDescription column for the table PurchaseOrderLines. |
UnitPrice | Double | The UnitPrice column for the table PurchaseOrderLines. |
VATAmount | Double | The VATAmount column for the table PurchaseOrderLines. |
VATCode | String | The VATCode column for the table PurchaseOrderLines. |
VATDescription | String | The VATDescription column for the table PurchaseOrderLines. |
VATPercentage | Double | The VATPercentage column for the table PurchaseOrderLines. |
PurchaseOrders
Usage information for the operation PurchaseOrders.rsd.
Columns
Name | Type | Description |
---|---|---|
PurchaseOrderID [KEY] | String | The PurchaseOrderID column for the table PurchaseOrders. |
AmountDC | Double | The AmountDC column for the table PurchaseOrders. |
AmountFC | Double | The AmountFC column for the table PurchaseOrders. |
Created | Datetime | The Created column for the table PurchaseOrders. |
Creator | String | The Creator column for the table PurchaseOrders. |
CreatorFullName | String | The CreatorFullName column for the table PurchaseOrders. |
Currency | String | The Currency column for the table PurchaseOrders. |
DeliveryAccount | String | The DeliveryAccount column for the table PurchaseOrders. |
DeliveryAccountCode | String | The DeliveryAccountCode column for the table PurchaseOrders. |
DeliveryAccountName | String | The DeliveryAccountName column for the table PurchaseOrders. |
DeliveryAddress | String | The DeliveryAddress column for the table PurchaseOrders. |
DeliveryContact | String | The DeliveryContact column for the table PurchaseOrders. |
DeliveryContactPersonFullName | String | The DeliveryContactPersonFullName column for the table PurchaseOrders. |
Description | String | The Description column for the table PurchaseOrders. |
Division | Int | The Division column for the table PurchaseOrders. |
Document | String | The Document column for the table PurchaseOrders. |
DocumentSubject | String | The DocumentSubject column for the table PurchaseOrders. |
DropShipment | Bool | The DropShipment column for the table PurchaseOrders. |
ExchangeRate | Double | The ExchangeRate column for the table PurchaseOrders. |
InvoiceStatus | Int | The InvoiceStatus column for the table PurchaseOrders. |
Modified | Datetime | The Modified column for the table PurchaseOrders. |
Modifier | String | The Modifier column for the table PurchaseOrders. |
ModifierFullName | String | The ModifierFullName column for the table PurchaseOrders. |
OrderDate | Datetime | The OrderDate column for the table PurchaseOrders. |
OrderNumber | Int | The OrderNumber column for the table PurchaseOrders. |
OrderStatus | Int | The OrderStatus column for the table PurchaseOrders. |
PaymentCondition | String | The PaymentCondition column for the table PurchaseOrders. |
PaymentConditionDescription | String | The PaymentConditionDescription column for the table PurchaseOrders. |
PurchaseAgent | String | The PurchaseAgent column for the table PurchaseOrders. |
PurchaseAgentFullName | String | The PurchaseAgentFullName column for the table PurchaseOrders. |
ReceiptDate | Datetime | The ReceiptDate column for the table PurchaseOrders. |
ReceiptStatus | Int | The ReceiptStatus column for the table PurchaseOrders. |
Remarks | String | The Remarks column for the table PurchaseOrders. |
SalesOrder | String | The SalesOrder column for the table PurchaseOrders. |
SalesOrderNumber | Int | The SalesOrderNumber column for the table PurchaseOrders. |
ShippingMethod | String | The ShippingMethod column for the table PurchaseOrders. |
ShippingMethodDescription | String | The ShippingMethodDescription column for the table PurchaseOrders. |
Source | Int | The Source column for the table PurchaseOrders. |
Supplier | String | The Supplier column for the table PurchaseOrders. |
SupplierCode | String | The SupplierCode column for the table PurchaseOrders. |
SupplierContact | String | The SupplierContact column for the table PurchaseOrders. |
SupplierContactPersonFullName | String | The SupplierContactPersonFullName column for the table PurchaseOrders. |
SupplierName | String | The SupplierName column for the table PurchaseOrders. |
VATAmount | Double | The VATAmount column for the table PurchaseOrders. |
Warehouse | String | The Warehouse column for the table PurchaseOrders. |
WarehouseCode | String | The WarehouseCode column for the table PurchaseOrders. |
WarehouseDescription | String | The WarehouseDescription column for the table PurchaseOrders. |
YourRef | String | The YourRef column for the table PurchaseOrders. |
LinkedPurchaseOrderLines | String | The LinkedPurchaseOrderLines column for the table PurchaseOrders. |
QuotationHeaders
Usage information for the operation QuotationHeaders.rsd.
Columns
Name | Type | Description |
---|---|---|
Timestamp [KEY] | Long | Timestamp |
AmountDC | Double | Amount in the default currency of the company |
AmountDiscount | Double | Discount amount in the currency of the transaction |
AmountDiscountExclVat | Double | Amount in the default currency of the company |
AmountFC | Double | Amount in the currency of the transaction |
CloseDate | Datetime | Date on which the customer accepted or rejected the quotation version |
ClosingDate | Datetime | Date on which you expect to close/win the deal |
Created | Datetime | Date and time on which the quotation was created |
Creator | String | User ID of the creator |
CreatorFullName | String | Name of the creator |
Currency | String | The currency of the quotation |
DeliveryAccount | String | The account where the items should delivered |
DeliveryAccountCode | String | The code of the delivery account |
DeliveryAccountContact | String | The contact person of the delivery account |
DeliveryAccountContactFullName | String | Full name of the delivery account contact person |
DeliveryAccountName | String | The name of the delivery account |
DeliveryAddress | String | The ID of the delivery address |
DeliveryDate | Datetime | The date of the delivery |
Description | String | By default this contains the item description |
Discount | Double | Discount given on the default price. This is stored as a fraction. ie 5.5% is stored as .055 |
Division | Int | Division code |
Document | String | Document linked to the quotation |
DocumentSubject | String | The subject of the document |
DueDate | Datetime | Date after which the quotation is no longer valid |
ID | String | Primary key |
IncotermAddress | String | Address of Incoterm |
IncotermCode | String | Code of Incoterm |
IncotermVersion | Int | Version of Incoterm Supported version for Incoterms : 2010, 2020 |
InvoiceAccount | String | The account to which the invoice is sent |
InvoiceAccountCode | String | The code of the invoice account |
InvoiceAccountContact | String | The contact person of the invoice account |
InvoiceAccountContactFullName | String | Full name of the invoice account contact person |
InvoiceAccountName | String | The name of the invoice account |
Modified | Datetime | Date and time on which the quotation was last modified |
Modifier | String | User ID of the modifier |
ModifierFullName | String | Name of the modifier |
Notes | String | Extra notes |
Opportunity | String | Opportunity linked to the quotation |
OpportunityName | String | The name of the opportunity |
OrderAccount | String | The account that requested the quotation |
OrderAccountCode | String | The code of the order account |
OrderAccountContact | String | The contact person of the order account |
OrderAccountContactFullName | String | Full name of the order account contact person |
OrderAccountName | String | The name of the order account |
PaymentCondition | String | Payment condition code |
PaymentConditionDescription | String | Payment condition description |
Project | String | The project linked to the quotation |
ProjectCode | String | The code of the project |
ProjectDescription | String | The description of the project |
QuotationDate | Datetime | Date on which the quotation version is entered or printed. Both during entering and printing this date can be adjusted |
QuotationID | String | Identifies the quotation. All the lines of a quotation have the same QuotationID |
QuotationNumber | Int | Unique number to indentify the quotation. By default this number is based on the setting for first available number |
Remarks | String | Extra text that can be added to the quotation |
SalesChannel | String | ID of Sales channel |
SalesChannelCode | String | Code of Sales channel. |
SalesChannelDescription | String | Description of Sales channel. |
SalesPerson | String | The user that is responsible for the quotation version |
SalesPersonFullName | String | Full name of the sales person |
ShippingMethod | String | Shipping method ID |
ShippingMethodDescription | String | Shipping method description |
Status | Int | The status of the quotation version. 5 = Rejected, 6 = Reviewed and closed, 10 = Recovery, 20 = Draft, 25 = Open, 35 = Processing... , 40 = Printed, 50 = Accepted |
StatusDescription | String | The description of the status |
VersionNumber | Int | Number indicating the different reviews which are made for the quotation |
YourRef | String | The number by which this quotation is identified by the order account |
ReasonCodes
Usage information for the operation ReasonCodes.rsd.
Columns
Name | Type | Description |
---|---|---|
ID [KEY] | String | The ID column for the table ReasonCodes. |
Active | Int | The Active column for the table ReasonCodes. |
Code | String | The Code column for the table ReasonCodes. |
Created | Datetime | The Created column for the table ReasonCodes. |
Creator | String | The Creator column for the table ReasonCodes. |
CreatorFullName | String | The CreatorFullName column for the table ReasonCodes. |
Description | String | The Description column for the table ReasonCodes. |
Division | Int | The Division column for the table ReasonCodes. |
Modified | Datetime | The Modified column for the table ReasonCodes. |
Modifier | String | The Modifier column for the table ReasonCodes. |
ModifierFullName | String | The ModifierFullName column for the table ReasonCodes. |
Notes | String | The Notes column for the table ReasonCodes. |
Type | Int | The Type column for the table ReasonCodes. |
TypeDescription | String | The TypeDescription column for the table ReasonCodes. |
Receivables
Usage information for the operation Receivables.rsd.
Columns
Name | Type | Description |
---|---|---|
ID [KEY] | String | The ID column for the table Receivables. |
Account | String | The Account column for the table Receivables. |
AccountBankAccountID | String | The AccountBankAccountID column for the table Receivables. |
AccountBankAccountNumber | String | The AccountBankAccountNumber column for the table Receivables. |
AccountCode | String | The AccountCode column for the table Receivables. |
AccountContact | String | The AccountContact column for the table Receivables. |
AccountContactName | String | The AccountContactName column for the table Receivables. |
AccountName | String | The AccountName column for the table Receivables. |
AmountDC | Double | The AmountDC column for the table Receivables. |
AmountDiscountDC | Double | The AmountDiscountDC column for the table Receivables. |
AmountDiscountFC | Double | The AmountDiscountFC column for the table Receivables. |
AmountFC | Double | The AmountFC column for the table Receivables. |
BankAccountID | String | The BankAccountID column for the table Receivables. |
BankAccountNumber | String | The BankAccountNumber column for the table Receivables. |
CashflowTransactionBatchCode | String | The CashflowTransactionBatchCode column for the table Receivables. |
Created | Datetime | The Created column for the table Receivables. |
Creator | String | The Creator column for the table Receivables. |
CreatorFullName | String | The CreatorFullName column for the table Receivables. |
Currency | String | The Currency column for the table Receivables. |
Description | String | The Description column for the table Receivables. |
DirectDebitMandate | String | The DirectDebitMandate column for the table Receivables. |
DirectDebitMandateDescription | String | The DirectDebitMandateDescription column for the table Receivables. |
DirectDebitMandatePaymentType | Int | The DirectDebitMandatePaymentType column for the table Receivables. |
DirectDebitMandateReference | String | The DirectDebitMandateReference column for the table Receivables. |
DirectDebitMandateType | Int | The DirectDebitMandateType column for the table Receivables. |
DiscountDueDate | Datetime | The DiscountDueDate column for the table Receivables. |
Division | Int | The Division column for the table Receivables. |
Document | String | The Document column for the table Receivables. |
DocumentNumber | Int | The DocumentNumber column for the table Receivables. |
DocumentSubject | String | The DocumentSubject column for the table Receivables. |
DueDate | Datetime | The DueDate column for the table Receivables. |
EndDate | Datetime | The EndDate column for the table Receivables. |
EndPeriod | Int | The EndPeriod column for the table Receivables. |
EndToEndID | String | The EndToEndID column for the table Receivables. |
EndYear | Int | The EndYear column for the table Receivables. |
EntryDate | Datetime | The EntryDate column for the table Receivables. |
EntryID | String | The EntryID column for the table Receivables. |
EntryNumber | Int | The EntryNumber column for the table Receivables. |
GLAccount | String | The GLAccount column for the table Receivables. |
GLAccountCode | String | The GLAccountCode column for the table Receivables. |
GLAccountDescription | String | The GLAccountDescription column for the table Receivables. |
InvoiceDate | Datetime | The InvoiceDate column for the table Receivables. |
InvoiceNumber | Int | The InvoiceNumber column for the table Receivables. |
IsBatchBooking | Int | The IsBatchBooking column for the table Receivables. |
IsFullyPaid | Bool | The IsFullyPaid column for the table Receivables. |
Journal | String | The Journal column for the table Receivables. |
JournalDescription | String | The JournalDescription column for the table Receivables. |
LastPaymentDate | Datetime | The LastPaymentDate column for the table Receivables. |
Modified | Datetime | The Modified column for the table Receivables. |
Modifier | String | The Modifier column for the table Receivables. |
ModifierFullName | String | The ModifierFullName column for the table Receivables. |
PaymentCondition | String | The PaymentCondition column for the table Receivables. |
PaymentConditionDescription | String | The PaymentConditionDescription column for the table Receivables. |
PaymentDays | Int | The PaymentDays column for the table Receivables. |
PaymentDaysDiscount | Int | The PaymentDaysDiscount column for the table Receivables. |
PaymentDiscountPercentage | Double | The PaymentDiscountPercentage column for the table Receivables. |
PaymentInformationID | String | The PaymentInformationID column for the table Receivables. |
PaymentMethod | String | The PaymentMethod column for the table Receivables. |
PaymentReference | String | The PaymentReference column for the table Receivables. |
RateFC | Double | The RateFC column for the table Receivables. |
ReceivableBatchNumber | Int | The ReceivableBatchNumber column for the table Receivables. |
ReceivableSelected | Datetime | The ReceivableSelected column for the table Receivables. |
ReceivableSelector | String | The ReceivableSelector column for the table Receivables. |
ReceivableSelectorFullName | String | The ReceivableSelectorFullName column for the table Receivables. |
Source | Int | The Source column for the table Receivables. |
Status | Int | The Status column for the table Receivables. |
TransactionAmountDC | Double | The TransactionAmountDC column for the table Receivables. |
TransactionAmountFC | Double | The TransactionAmountFC column for the table Receivables. |
TransactionDueDate | Datetime | The TransactionDueDate column for the table Receivables. |
TransactionEntryID | String | The TransactionEntryID column for the table Receivables. |
TransactionID | String | The TransactionID column for the table Receivables. |
TransactionIsReversal | Bool | The TransactionIsReversal column for the table Receivables. |
TransactionReportingPeriod | Int | The TransactionReportingPeriod column for the table Receivables. |
TransactionReportingYear | Int | The TransactionReportingYear column for the table Receivables. |
TransactionStatus | Int | The TransactionStatus column for the table Receivables. |
TransactionType | Int | The TransactionType column for the table Receivables. |
YourRef | String | The YourRef column for the table Receivables. |
ReceivablesList
Usage information for the operation ReceivablesList.rsd.
Columns
Name | Type | Description |
---|---|---|
HID [KEY] | Long | The HID column for the table ReceivablesList. |
AccountCode | String | The AccountCode column for the table ReceivablesList. |
AccountId | String | The AccountId column for the table ReceivablesList. |
AccountName | String | The AccountName column for the table ReceivablesList. |
Amount | Double | The Amount column for the table ReceivablesList. |
AmountInTransit | Double | The AmountInTransit column for the table ReceivablesList. |
CurrencyCode | String | The CurrencyCode column for the table ReceivablesList. |
Description | String | The Description column for the table ReceivablesList. |
DueDate | Datetime | The DueDate column for the table ReceivablesList. |
EntryNumber | Int | The EntryNumber column for the table ReceivablesList. |
Id | String | The ID column for the table ReceivablesList. |
InvoiceDate | Datetime | The InvoiceDate column for the table ReceivablesList. |
InvoiceNumber | Int | The InvoiceNumber column for the table ReceivablesList. |
JournalCode | String | The JournalCode column for the table ReceivablesList. |
JournalDescription | String | The JournalDescription column for the table ReceivablesList. |
YourRef | String | The YourRef column for the table ReceivablesList. |
RecentCosts
Usage information for the operation RecentCosts.rsd.
Columns
Name | Type | Description |
---|---|---|
Id [KEY] | Int | The ID column for the table RecentCosts. |
AccountCode | String | The AccountCode column for the table RecentCosts. |
AccountId | String | The AccountId column for the table RecentCosts. |
AccountName | String | The AccountName column for the table RecentCosts. |
AmountApproved | Double | The AmountApproved column for the table RecentCosts. |
AmountDraft | Double | The AmountDraft column for the table RecentCosts. |
AmountRejected | Double | The AmountRejected column for the table RecentCosts. |
AmountSubmitted | Double | The AmountSubmitted column for the table RecentCosts. |
CurrencyCode | String | The CurrencyCode column for the table RecentCosts. |
Date | Datetime | The Date column for the table RecentCosts. |
EntryId | String | The EntryId column for the table RecentCosts. |
Expense | String | The Expense column for the table RecentCosts. |
ExpenseDescription | String | The ExpenseDescription column for the table RecentCosts. |
ItemCode | String | The ItemCode column for the table RecentCosts. |
ItemDescription | String | The ItemDescription column for the table RecentCosts. |
ItemId | String | The ItemId column for the table RecentCosts. |
Notes | String | The Notes column for the table RecentCosts. |
ProjectCode | String | The ProjectCode column for the table RecentCosts. |
ProjectDescription | String | The ProjectDescription column for the table RecentCosts. |
ProjectId | String | The ProjectId column for the table RecentCosts. |
QuantityApproved | Double | The QuantityApproved column for the table RecentCosts. |
QuantityDraft | Double | The QuantityDraft column for the table RecentCosts. |
QuantityRejected | Double | The QuantityRejected column for the table RecentCosts. |
QuantitySubmitted | Double | The QuantitySubmitted column for the table RecentCosts. |
WeekNumber | Int | The WeekNumber column for the table RecentCosts. |
RecentHours
Usage information for the operation RecentHours.rsd.
Columns
Name | Type | Description |
---|---|---|
Id [KEY] | Int | The ID column for the table RecentHours. |
AccountCode | String | The AccountCode column for the table RecentHours. |
AccountId | String | The AccountId column for the table RecentHours. |
AccountName | String | The AccountName column for the table RecentHours. |
Activity | String | The Activity column for the table RecentHours. |
ActivityDescription | String | The ActivityDescription column for the table RecentHours. |
Date | Datetime | The Date column for the table RecentHours. |
EntryId | String | The EntryId column for the table RecentHours. |
HoursApproved | Double | The HoursApproved column for the table RecentHours. |
HoursApprovedBillable | Double | The HoursApprovedBillable column for the table RecentHours. |
HoursDraft | Double | The HoursDraft column for the table RecentHours. |
HoursDraftBillable | Double | The HoursDraftBillable column for the table RecentHours. |
HoursRejected | Double | The HoursRejected column for the table RecentHours. |
HoursRejectedBillable | Double | The HoursRejectedBillable column for the table RecentHours. |
HoursSubmitted | Double | The HoursSubmitted column for the table RecentHours. |
HoursSubmittedBillable | Double | The HoursSubmittedBillable column for the table RecentHours. |
ItemCode | String | The ItemCode column for the table RecentHours. |
ItemDescription | String | The ItemDescription column for the table RecentHours. |
ItemId | String | The ItemId column for the table RecentHours. |
Notes | String | The Notes column for the table RecentHours. |
ProjectCode | String | The ProjectCode column for the table RecentHours. |
ProjectDescription | String | The ProjectDescription column for the table RecentHours. |
ProjectId | String | The ProjectId column for the table RecentHours. |
WeekNumber | Int | The WeekNumber column for the table RecentHours. |
ReportingBalance
Usage information for the operation ReportingBalance.rsd.
Columns
Name | Type | Description |
---|---|---|
ID [KEY] | Long | The ID column for the table ReportingBalance. |
Amount | Double | The Amount column for the table ReportingBalance. |
AmountCredit | Double | The AmountCredit column for the table ReportingBalance. |
AmountDebit | Double | The AmountDebit column for the table ReportingBalance. |
BalanceType | String | The BalanceType column for the table ReportingBalance. |
CostCenterCode | String | The CostCenterCode column for the table ReportingBalance. |
CostCenterDescription | String | The CostCenterDescription column for the table ReportingBalance. |
CostUnitCode | String | The CostUnitCode column for the table ReportingBalance. |
CostUnitDescription | String | The CostUnitDescription column for the table ReportingBalance. |
Count | Int | The Count column for the table ReportingBalance. |
Division | Int | The Division column for the table ReportingBalance. |
GLAccount | String | The GLAccount column for the table ReportingBalance. |
GLAccountCode | String | The GLAccountCode column for the table ReportingBalance. |
GLAccountDescription | String | The GLAccountDescription column for the table ReportingBalance. |
ReportingPeriod | Int | The ReportingPeriod column for the table ReportingBalance. |
ReportingYear | Int | The ReportingYear column for the table ReportingBalance. |
Status | Int | The Status column for the table ReportingBalance. |
Type | Int | The Type column for the table ReportingBalance. |
Returns
Usage information for the operation Returns.rsd.
Columns
Name | Type | Description |
---|---|---|
DocumentID [KEY] | String | The DocumentID column for the table Returns. |
Amount | Double | The Amount column for the table Returns. |
Created | Datetime | The Created column for the table Returns. |
Currency | String | The Currency column for the table Returns. |
Description | String | The Description column for the table Returns. |
DocumentViewUrl | String | The DocumentViewUrl column for the table Returns. |
DueDate | Datetime | The DueDate column for the table Returns. |
Frequency | String | The Frequency column for the table Returns. |
PayrollDeclarationType | String | The PayrollDeclarationType column for the table Returns. |
Period | Int | The Period column for the table Returns. |
PeriodDescription | String | The PeriodDescription column for the table Returns. |
Request | String | The Request column for the table Returns. |
Status | Int | The Status column for the table Returns. |
Type | Int | The Type column for the table Returns. |
Year | Int | The Year column for the table Returns. |
RevenueList
Usage information for the operation RevenueList.rsd.
Columns
Name | Type | Description |
---|---|---|
Year [KEY] | Int | The Year column for the table RevenueList. |
Period [KEY] | Int | The Period column for the table RevenueList. |
Amount | Double | The Amount column for the table RevenueList. |
ScheduleEntries
ScheduleEntries
Columns
Name | Type | Description |
---|---|---|
ID | String | ID of Schedule Entries |
Timestamp [KEY] | Long | Timestamp |
Created | Datetime | Created date. |
Creator | String | ID of creator. |
CreatorFullName | String | Name of creator. |
Day | Int | The day in the week. 0 - Monday; 1 - Tuesday; 2 - Wednesday; 3 - Thursday; 4 - Friday; 5 - Saturday; 6 - Sunday |
Division | Int | Division code |
EndTime | String | This is the end time of the schedule entry. |
Hours | String | The total number of hours for per day. |
Modified | Datetime | Last modified date. |
Modifier | String | ID of modifier |
ModifierFullName | String | Name of modifier |
Schedule | String | The ID of the schedule linked to this schedule entry. |
ScheduleActivityType | Int | The activity of the schedule entry. 0 - Work; 1 - Pause |
StartTime | String | This is the start time of the schedule entry. |
WeekNumber | Int | This is the week number. |
Schedules
Usage information for the operation Schedules.rsd.
Columns
Name | Type | Description |
---|---|---|
ID [KEY] | String | The ID column for the table Schedules. |
Active | Int | The Active column for the table Schedules. |
AverageHours | Double | The AverageHours column for the table Schedules. |
Code | String | The Code column for the table Schedules. |
Created | Datetime | The Created column for the table Schedules. |
Creator | String | The Creator column for the table Schedules. |
CreatorFullName | String | The CreatorFullName column for the table Schedules. |
Days | Double | The Days column for the table Schedules. |
Description | String | The Description column for the table Schedules. |
Division | Int | The Division column for the table Schedules. |
Employment | String | The Employment column for the table Schedules. |
EmploymentHID | Int | The EmploymentHID column for the table Schedules. |
EndDate | Datetime | The EndDate column for the table Schedules. |
Hours | Double | The Hours column for the table Schedules. |
LeaveHoursCompensation | Double | The LeaveHoursCompensation column for the table Schedules. |
Main | Int | The Main column for the table Schedules. |
Modified | Datetime | The Modified column for the table Schedules. |
Modifier | String | The Modifier column for the table Schedules. |
ModifierFullName | String | The ModifierFullName column for the table Schedules. |
PaymentParttimeFactor | Double | The PaymentParttimeFactor column for the table Schedules. |
ScheduleType | Int | The ScheduleType column for the table Schedules. |
ScheduleTypeDescription | String | The ScheduleTypeDescription column for the table Schedules. |
StartDate | Datetime | The StartDate column for the table Schedules. |
StartWeek | Int | The StartWeek column for the table Schedules. |
SerialNumbers
Usage information for the operation SerialNumbers.rsd.
Columns
Name | Type | Description |
---|---|---|
ID [KEY] | String | The ID column for the table SerialNumbers. |
Created | Datetime | The Created column for the table SerialNumbers. |
Creator | String | The Creator column for the table SerialNumbers. |
CreatorFullName | String | The CreatorFullName column for the table SerialNumbers. |
Division | Int | The Division column for the table SerialNumbers. |
Item | String | The Item column for the table SerialNumbers. |
ItemCode | String | The ItemCode column for the table SerialNumbers. |
ItemDescription | String | The ItemDescription column for the table SerialNumbers. |
Modified | Datetime | The Modified column for the table SerialNumbers. |
Modifier | String | The Modifier column for the table SerialNumbers. |
ModifierFullName | String | The ModifierFullName column for the table SerialNumbers. |
Remarks | String | The Remarks column for the table SerialNumbers. |
Available | Int | The Available column for the table SerialNumbers. |
EndDate | Datetime | The EndDate column for the table SerialNumbers. |
IsBlocked | Int | The IsBlocked column for the table SerialNumbers. |
SerialNumber | String | The SerialNumber column for the table SerialNumbers. |
StartDate | Datetime | The StartDate column for the table SerialNumbers. |
StorageLocation | String | The StorageLocation column for the table SerialNumbers. |
StorageLocationCode | String | The StorageLocationCode column for the table SerialNumbers. |
StorageLocationDescription | String | The StorageLocationDescription column for the table SerialNumbers. |
Warehouse | String | The Warehouse column for the table SerialNumbers. |
WarehouseCode | String | The WarehouseCode column for the table SerialNumbers. |
WarehouseDescription | String | The WarehouseDescription column for the table SerialNumbers. |
ShippingMethods
Usage information for the operation ShippingMethods.rsd.
Columns
Name | Type | Description |
---|---|---|
ID [KEY] | String | The ID column for the table ShippingMethods. |
Active | Bool | The Active column for the table ShippingMethods. |
Code | String | The Code column for the table ShippingMethods. |
Created | Datetime | The Created column for the table ShippingMethods. |
Creator | String | The Creator column for the table ShippingMethods. |
CreatorFullName | String | The CreatorFullName column for the table ShippingMethods. |
Description | String | The Description column for the table ShippingMethods. |
Division | Int | The Division column for the table ShippingMethods. |
Modified | Datetime | The Modified column for the table ShippingMethods. |
Modifier | String | The Modifier column for the table ShippingMethods. |
ModifierFullName | String | The ModifierFullName column for the table ShippingMethods. |
Notes | String | The Notes column for the table ShippingMethods. |
ShippingRatesURL | String | The ShippingRatesURL column for the table ShippingMethods. |
TrackingURL | String | The TrackingURL column for the table ShippingMethods. |
StockBatchNumbers
Usage information for the operation StockBatchNumbers.rsd.
Columns
Name | Type | Description |
---|---|---|
ID [KEY] | String | The ID column for the table StockBatchNumbers. |
Created | Datetime | The Created column for the table StockBatchNumbers. |
Creator | String | The Creator column for the table StockBatchNumbers. |
CreatorFullName | String | The CreatorFullName column for the table StockBatchNumbers. |
Division | Int | The Division column for the table StockBatchNumbers. |
Item | String | The Item column for the table StockBatchNumbers. |
ItemCode | String | The ItemCode column for the table StockBatchNumbers. |
ItemDescription | String | The ItemDescription column for the table StockBatchNumbers. |
Modified | Datetime | The Modified column for the table StockBatchNumbers. |
Modifier | String | The Modifier column for the table StockBatchNumbers. |
ModifierFullName | String | The ModifierFullName column for the table StockBatchNumbers. |
Remarks | String | The Remarks column for the table StockBatchNumbers. |
BatchNumber | String | The BatchNumber column for the table StockBatchNumbers. |
BatchNumberID | String | The BatchNumberID column for the table StockBatchNumbers. |
DraftStockTransactionID | String | The DraftStockTransactionID column for the table StockBatchNumbers. |
EndDate | Datetime | The EndDate column for the table StockBatchNumbers. |
IsBlocked | Int | The IsBlocked column for the table StockBatchNumbers. |
IsDraft | Int | The IsDraft column for the table StockBatchNumbers. |
Quantity | Double | The Quantity column for the table StockBatchNumbers. |
StockCountLine | String | The StockCountLine column for the table StockBatchNumbers. |
StockTransactionID | String | The StockTransactionID column for the table StockBatchNumbers. |
StockTransactionType | Int | The StockTransactionType column for the table StockBatchNumbers. |
StorageLocation | String | The StorageLocation column for the table StockBatchNumbers. |
StorageLocationCode | String | The StorageLocationCode column for the table StockBatchNumbers. |
StorageLocationDescription | String | The StorageLocationDescription column for the table StockBatchNumbers. |
Warehouse | String | The Warehouse column for the table StockBatchNumbers. |
WarehouseCode | String | The WarehouseCode column for the table StockBatchNumbers. |
WarehouseDescription | String | The WarehouseDescription column for the table StockBatchNumbers. |
StockPositions
Usage information for the operation StockPositions.rsd.
Columns
Name | Type | Description |
---|---|---|
TimeStamp | Datetime | TimeStamp. |
CurrentStock | Double | Number of items in stock. |
Division | Int | Division code. |
FreeStock | Double | Quantity of available stock. |
ID [KEY] | String | Primary Key. |
ItemCode | String | Code of the item. |
ItemDescription | String | Description of the item. |
ItemId [KEY] | String | A guid that is the unique identifier of the item. |
PlanningIn | Double | Number of items that are planned to come in. |
PlanningOut | Double | Number of items that are planned to go out. |
ProjectedStock | Double | The quantity of stock projected given all planned future stock changes. |
ReorderPoint | Double | Quantity of items as an indication of when you need to reorder more stock for the warehouse. |
ReservedStock | Double | The quantity in a back to back order process which is already received from the purchase order, but not yet delivered for the sales order. |
UnitCode | String | Code of item unit. |
UnitDescription | String | Description of the item unit. |
Warehouse [KEY] | String | A guid that is the unique identifier of the warehouse. |
WarehouseCode | String | Code of warehouse. |
WarehouseDescription | String | Description of warehouse. |
StockSerialNumbers
Usage information for the operation StockSerialNumbers.rsd.
Columns
Name | Type | Description |
---|---|---|
ID [KEY] | String | The ID column for the table StockSerialNumbers. |
Created | Datetime | The Created column for the table StockSerialNumbers. |
Creator | String | The Creator column for the table StockSerialNumbers. |
CreatorFullName | String | The CreatorFullName column for the table StockSerialNumbers. |
Division | Int | The Division column for the table StockSerialNumbers. |
Item | String | The Item column for the table StockSerialNumbers. |
ItemCode | String | The ItemCode column for the table StockSerialNumbers. |
ItemDescription | String | The ItemDescription column for the table StockSerialNumbers. |
Modified | Datetime | The Modified column for the table StockSerialNumbers. |
Modifier | String | The Modifier column for the table StockSerialNumbers. |
ModifierFullName | String | The ModifierFullName column for the table StockSerialNumbers. |
Remarks | String | The Remarks column for the table StockSerialNumbers. |
DraftStockTransactionID | String | The DraftStockTransactionID column for the table StockSerialNumbers. |
EndDate | Datetime | The EndDate column for the table StockSerialNumbers. |
IsBlocked | Int | The IsBlocked column for the table StockSerialNumbers. |
IsDraft | Int | The IsDraft column for the table StockSerialNumbers. |
SerialNumber | String | The SerialNumber column for the table StockSerialNumbers. |
SerialNumberID | String | The SerialNumberID column for the table StockSerialNumbers. |
StartDate | Datetime | The StartDate column for the table StockSerialNumbers. |
StockCountLine | String | The StockCountLine column for the table StockSerialNumbers. |
StockTransactionID | String | The StockTransactionID column for the table StockSerialNumbers. |
StockTransactionType | Int | The StockTransactionType column for the table StockSerialNumbers. |
StorageLocation | String | The StorageLocation column for the table StockSerialNumbers. |
StorageLocationCode | String | The StorageLocationCode column for the table StockSerialNumbers. |
StorageLocationDescription | String | The StorageLocationDescription column for the table StockSerialNumbers. |
Warehouse | String | The Warehouse column for the table StockSerialNumbers. |
WarehouseCode | String | The WarehouseCode column for the table StockSerialNumbers. |
WarehouseDescription | String | The WarehouseDescription column for the table StockSerialNumbers. |
StorageLocations
Usage information for the operation StorageLocations.rsd.
Columns
Name | Type | Description |
---|---|---|
ID [KEY] | String | The ID column for the table StorageLocations. |
Code | String | The Code column for the table StorageLocations. |
Created | Datetime | The Created column for the table StorageLocations. |
Creator | String | The Creator column for the table StorageLocations. |
CreatorFullName | String | The CreatorFullName column for the table StorageLocations. |
Description | String | The Description column for the table StorageLocations. |
Division | Int | The Division column for the table StorageLocations. |
Main | Int | The Main column for the table StorageLocations. |
Modified | Datetime | The Modified column for the table StorageLocations. |
Modifier | String | The Modifier column for the table StorageLocations. |
ModifierFullName | String | The ModifierFullName column for the table StorageLocations. |
Warehouse | String | The Warehouse column for the table StorageLocations. |
WarehouseCode | String | The WarehouseCode column for the table StorageLocations. |
WarehouseDescription | String | The WarehouseDescription column for the table StorageLocations. |
StorageLocationStockPositions
Usage information for the operation StorageLocationStockPositions.rsd.
Columns
Name | Type | Description |
---|---|---|
Timestamp [KEY] | String | Timestamp |
Division | String | Division code |
ID | String | Primary key |
Item | String | Item |
ItemCode | String | Code of the item |
ItemDescription | String | Description of the item |
Stock | String | Stock |
StorageLocation | String | Storage location |
StorageLocationCode | String | Code of the storage location |
StorageLocationDescription | String | Description of the storage location |
UnitCode | String | Code of the unit for the item |
UnitDescription | String | Description of the unit for the item |
Warehouse | String | Warehouse |
WarehouseCode | String | Code of the warehouse |
WarehouseDescription | String | Description of the warehouse |
SubscriptionLineTypes
Usage information for the operation SubscriptionLineTypes.rsd.
Columns
Name | Type | Description |
---|---|---|
ID [KEY] | Int | The ID column for the table SubscriptionLineTypes. |
Description | String | The Description column for the table SubscriptionLineTypes. |
SubscriptionReasonCodes
Usage information for the operation SubscriptionReasonCodes.rsd.
Columns
Name | Type | Description |
---|---|---|
ID [KEY] | String | The ID column for the table SubscriptionReasonCodes. |
Active | Bool | The Active column for the table SubscriptionReasonCodes. |
Code | String | The Code column for the table SubscriptionReasonCodes. |
Created | Datetime | The Created column for the table SubscriptionReasonCodes. |
Creator | String | The Creator column for the table SubscriptionReasonCodes. |
CreatorFullName | String | The CreatorFullName column for the table SubscriptionReasonCodes. |
Description | String | The Description column for the table SubscriptionReasonCodes. |
Division | Int | The Division column for the table SubscriptionReasonCodes. |
Modified | Datetime | The Modified column for the table SubscriptionReasonCodes. |
Modifier | String | The Modifier column for the table SubscriptionReasonCodes. |
ModifierFullName | String | The ModifierFullName column for the table SubscriptionReasonCodes. |
Notes | String | The Notes column for the table SubscriptionReasonCodes. |
SubscriptionTypes
Usage information for the operation SubscriptionTypes.rsd.
Columns
Name | Type | Description |
---|---|---|
ID [KEY] | String | The ID column for the table SubscriptionTypes. |
Code | String | The Code column for the table SubscriptionTypes. |
Created | Datetime | The Created column for the table SubscriptionTypes. |
Creator | String | The Creator column for the table SubscriptionTypes. |
CreatorFullName | String | The CreatorFullName column for the table SubscriptionTypes. |
Description | String | The Description column for the table SubscriptionTypes. |
Division | Int | The Division column for the table SubscriptionTypes. |
Modified | Datetime | The Modified column for the table SubscriptionTypes. |
Modifier | String | The Modifier column for the table SubscriptionTypes. |
ModifierFullName | String | The ModifierFullName column for the table SubscriptionTypes. |
TaxComponentRates
Usage information for the operation TaxComponentRates.rsd.
Columns
Name | Type | Description |
---|---|---|
ID [KEY] | String | The ID column for the table TaxComponentRates. |
Created | Datetime | The Created column for the table TaxComponentRates. |
Creator | String | The Creator column for the table TaxComponentRates. |
CreatorFullName | String | The CreatorFullName column for the table TaxComponentRates. |
Division | Int | The Division column for the table TaxComponentRates. |
EndDate | Datetime | The EndDate column for the table TaxComponentRates. |
LineNumber | Int | The LineNumber column for the table TaxComponentRates. |
Modified | Datetime | The Modified column for the table TaxComponentRates. |
Modifier | String | The Modifier column for the table TaxComponentRates. |
ModifierFullName | String | The ModifierFullName column for the table TaxComponentRates. |
Rate | Double | The Rate column for the table TaxComponentRates. |
StartDate | Datetime | The StartDate column for the table TaxComponentRates. |
TaxComponent | String | The TaxComponent column for the table TaxComponentRates. |
TaxEmploymentEndFlexCodes
Usage information for the operation TaxEmploymentEndFlexCodes.rsd.
Columns
Name | Type | Description |
---|---|---|
ID [KEY] | String | The ID column for the table TaxEmploymentEndFlexCodes. |
Code | String | The Code column for the table TaxEmploymentEndFlexCodes. |
Created | Datetime | The Created column for the table TaxEmploymentEndFlexCodes. |
Creator | String | The Creator column for the table TaxEmploymentEndFlexCodes. |
CreatorFullName | String | The CreatorFullName column for the table TaxEmploymentEndFlexCodes. |
Description | String | The Description column for the table TaxEmploymentEndFlexCodes. |
EndDate | Datetime | The EndDate column for the table TaxEmploymentEndFlexCodes. |
Modified | Datetime | The Modified column for the table TaxEmploymentEndFlexCodes. |
Modifier | String | The Modifier column for the table TaxEmploymentEndFlexCodes. |
ModifierFullName | String | The ModifierFullName column for the table TaxEmploymentEndFlexCodes. |
StartDate | Datetime | The StartDate column for the table TaxEmploymentEndFlexCodes. |
TaxScheduleComponents
Usage information for the operation TaxScheduleComponents.rsd.
Columns
Name | Type | Description |
---|---|---|
ID [KEY] | String | The ID column for the table TaxScheduleComponents. |
Account | String | The Account column for the table TaxScheduleComponents. |
Code | String | The Code column for the table TaxScheduleComponents. |
Created | Datetime | The Created column for the table TaxScheduleComponents. |
Creator | String | The Creator column for the table TaxScheduleComponents. |
CreatorFullName | String | The CreatorFullName column for the table TaxScheduleComponents. |
Description | String | The Description column for the table TaxScheduleComponents. |
Division | Int | The Division column for the table TaxScheduleComponents. |
GLAccount | String | The GLAccount column for the table TaxScheduleComponents. |
LineNumber | Int | The LineNumber column for the table TaxScheduleComponents. |
Modified | Datetime | The Modified column for the table TaxScheduleComponents. |
Modifier | String | The Modifier column for the table TaxScheduleComponents. |
ModifierFullName | String | The ModifierFullName column for the table TaxScheduleComponents. |
Notes | String | The Notes column for the table TaxScheduleComponents. |
TaxComponent | String | The TaxComponent column for the table TaxScheduleComponents. |
TaxSchedule | String | The TaxSchedule column for the table TaxScheduleComponents. |
LinkedTaxComponentRates | String | The LinkedTaxComponentRates column for the table TaxScheduleComponents. |
TaxSchedules
Usage information for the operation TaxSchedules.rsd.
Columns
Name | Type | Description |
---|---|---|
ID [KEY] | String | The ID column for the table TaxSchedules. |
Code | String | The Code column for the table TaxSchedules. |
Created | Datetime | The Created column for the table TaxSchedules. |
Creator | String | The Creator column for the table TaxSchedules. |
CreatorFullName | String | The CreatorFullName column for the table TaxSchedules. |
Description | String | The Description column for the table TaxSchedules. |
Division | Int | The Division column for the table TaxSchedules. |
IsBlocked | Int | The IsBlocked column for the table TaxSchedules. |
Modified | Datetime | The Modified column for the table TaxSchedules. |
Modifier | String | The Modifier column for the table TaxSchedules. |
ModifierFullName | String | The ModifierFullName column for the table TaxSchedules. |
Notes | String | The Notes column for the table TaxSchedules. |
Type | Int | The Type column for the table TaxSchedules. |
TimeAndBillingAccountDetails
Usage information for the operation TimeAndBillingAccountDetails.rsd.
Columns
Name | Type | Description |
---|---|---|
ID [KEY] | String | The ID column for the table TimeAndBillingAccountDetails. |
Name | String | The Name column for the table TimeAndBillingAccountDetails. |
TimeAndBillingActivitiesAndExpenses
Usage information for the operation TimeAndBillingActivitiesAndExpenses.rsd.
Columns
Name | Type | Description |
---|---|---|
ID [KEY] | String | The ID column for the table TimeAndBillingActivitiesAndExpenses. |
Description | String | The Description column for the table TimeAndBillingActivitiesAndExpenses. |
ParentDescription | String | The ParentDescription column for the table TimeAndBillingActivitiesAndExpenses. |
TimeAndBillingEntryAccounts
Usage information for the operation TimeAndBillingEntryAccounts.rsd.
Columns
Name | Type | Description |
---|---|---|
AccountId [KEY] | String | The AccountId column for the table TimeAndBillingEntryAccounts. |
AccountName | String | The AccountName column for the table TimeAndBillingEntryAccounts. |
TimeAndBillingEntryProjects
Usage information for the operation TimeAndBillingEntryProjects.rsd.
Columns
Name | Type | Description |
---|---|---|
ProjectId [KEY] | String | The ProjectId column for the table TimeAndBillingEntryProjects. |
ProjectCode | String | The ProjectCode column for the table TimeAndBillingEntryProjects. |
ProjectDescription | String | The ProjectDescription column for the table TimeAndBillingEntryProjects. |
TimeAndBillingEntryRecentAccounts
Usage information for the operation TimeAndBillingEntryRecentAccounts.rsd.
Columns
Name | Type | Description |
---|---|---|
AccountId [KEY] | String | The AccountId column for the table TimeAndBillingEntryRecentAccounts. |
AccountName | String | The AccountName column for the table TimeAndBillingEntryRecentAccounts. |
DateLastUsed | Datetime | The DateLastUsed column for the table TimeAndBillingEntryRecentAccounts. |
TimeAndBillingEntryRecentActivitiesAndExpenses
Usage information for the operation TimeAndBillingEntryRecentActivitiesAndExpenses.rsd.
Columns
Name | Type | Description |
---|---|---|
ID [KEY] | String | The ID column for the table TimeAndBillingEntryRecentActivitiesAndExpenses. |
DateLastUsed | Datetime | The DateLastUsed column for the table TimeAndBillingEntryRecentActivitiesAndExpenses. |
Description | String | The Description column for the table TimeAndBillingEntryRecentActivitiesAndExpenses. |
ParentDescription | String | The ParentDescription column for the table TimeAndBillingEntryRecentActivitiesAndExpenses. |
TimeAndBillingEntryRecentHourCostTypes
Usage information for the operation TimeAndBillingEntryRecentHourCostTypes.rsd.
Columns
Name | Type | Description |
---|---|---|
ItemId [KEY] | String | The ItemId column for the table TimeAndBillingEntryRecentHourCostTypes. |
DateLastUsed | Datetime | The DateLastUsed column for the table TimeAndBillingEntryRecentHourCostTypes. |
ItemDescription | String | The ItemDescription column for the table TimeAndBillingEntryRecentHourCostTypes. |
TimeAndBillingEntryRecentProjects
Usage information for the operation TimeAndBillingEntryRecentProjects.rsd.
Columns
Name | Type | Description |
---|---|---|
ProjectId [KEY] | String | The ProjectId column for the table TimeAndBillingEntryRecentProjects. |
DateLastUsed | Datetime | The DateLastUsed column for the table TimeAndBillingEntryRecentProjects. |
ProjectCode | String | The ProjectCode column for the table TimeAndBillingEntryRecentProjects. |
ProjectDescription | String | The ProjectDescription column for the table TimeAndBillingEntryRecentProjects. |
TimeAndBillingItemDetails
Usage information for the operation TimeAndBillingItemDetails.rsd.
Columns
Name | Type | Description |
---|---|---|
ID [KEY] | String | The ID column for the table TimeAndBillingItemDetails. |
Code | String | The Code column for the table TimeAndBillingItemDetails. |
Description | String | The Description column for the table TimeAndBillingItemDetails. |
IsFractionAllowedItem | Bool | The IsFractionAllowedItem column for the table TimeAndBillingItemDetails. |
IsSalesItem | Bool | The IsSalesItem column for the table TimeAndBillingItemDetails. |
SalesCurrency | String | The SalesCurrency column for the table TimeAndBillingItemDetails. |
SalesPrice | Double | The SalesPrice column for the table TimeAndBillingItemDetails. |
TimeAndBillingProjectDetails
Usage information for the operation TimeAndBillingProjectDetails.rsd.
Columns
Name | Type | Description |
---|---|---|
ID [KEY] | String | The ID column for the table TimeAndBillingProjectDetails. |
Account | String | The Account column for the table TimeAndBillingProjectDetails. |
AccountName | String | The AccountName column for the table TimeAndBillingProjectDetails. |
Code | String | The Code column for the table TimeAndBillingProjectDetails. |
Description | String | The Description column for the table TimeAndBillingProjectDetails. |
Type | Int | The Type column for the table TimeAndBillingProjectDetails. |
TimeCostTransactions
Usage information for the operation TimeCostTransactions.rsd.
Columns
Name | Type | Description |
---|---|---|
Timestamp [KEY] | Integer | Timestamp |
Account | Integer | Supports webhook Guid ID of account that is linked to the project |
AccountName | String | Name of account that is linked to the project |
AmountFC | Double | Supports webhook Calculated amount of the transaction based on (Quantity * PriceFC) |
Attachment | String | Supports webhook Attachment linked to the transaction (not mandatory) |
Created | Datetime | Date and time the transaction was created |
Creator | Integer | The Guid ID of user that created the transaction |
CreatorFullName | String | The full name of the user that created the record |
Currency | String | Supports webhook Currency of amount FC |
Date | Datetime | Supports webhook Date and time the transaction was done |
Division | Integer | Division code |
DivisionDescription | String | Description of Division |
Employee | Integer | Supports webhook Guid ID of the employee that is linked to the transaction |
EndTime | Datetime | Supports webhook End time of the time transaction |
EntryNumber | Datetime | Supports webhook Number that represents the grouping of transactions |
ErrorText | String | Supports webhook (Only used by backgroundjobs) To determine which transaction has an error |
HourStatus | String | Supports webhook Status of the transaction: 1 = Draft, 2 = Rejected, 10 = Submitted, 11 = Failed on approval, 14 = Processi |
ID | Integer | Primary key |
Item | Integer | Supports webhook Item that is linked to the transaction, which provides the time or cost information |
ItemDescription | String | Description of the item that is linked to the transaction |
ItemDivisable | Integer | Indicates if fractional quantities of the item can be used, for example quantity = 0.4 |
Modified | Datetime | The date and time transaction record was modified |
Modifier | Integer | The Guid ID of the user that modified the records |
ModifierFullName | String | The full name of the user that modified the record |
Notes | String | Supports webhook Notes linked to the transaction for providing additional information (not mandatory) |
PriceFC | Integer | Supports webhook For use in AmountFC (Quantiy * Price FC) |
Project | Integer | Supports webhook Guid ID of project that is linked to the transaction |
ProjectAccount | Integer | Project account ID that is linked to the transaction (not mandatory) |
ProjectAccountCode | String | Supports webhook Project account code that is linked to the transaction |
ProjectAccountName | String | Project account name that is linked to the transaction |
ProjectCode | String | Project code that is linked to the transaction |
ProjectDescription | String | Project description that is linked to the transaction |
Quantity | Double | Supports webhook Quantity of the item that is linked to the transaction |
StartTime | Datetime | Supports webhook Start time of the time transaction |
Subscription | Integer | Supports webhook Guid ID of subscription that is linked to the transaction |
SubscriptionAccount | Integer | Subscription account ID that is linked to the transaction, this is to identify the referenced subscription |
SubscriptionAccountCode | String | Subscription account code that is linked to the transaction |
SubscriptionAccountName | String | Subscription account name that is linked to the transaction |
SubscriptionDescription | String | Subscription description that is linked to the transaction |
SubscriptionNumber | Integer | Subscription number that is linked to the transaction |
Type | Integer | The type of transaction. E.g: 1 = Time, 2 = Cost |
WBS | Integer | Supports webhook Guid ID of activity for time transaction or expense for cost transaction that is linked to project WBS |
WBSDescription | String | Name of activity for time transaction or expense for cost transaction that is linked to project WBS (work breakdown structure) |
TransactionLines
Usage information for the operation TransactionLines.rsd.
Columns
Name | Type | Description |
---|---|---|
ID [KEY] | String | The ID column for the table TransactionLines. |
Account | String | The Account column for the table TransactionLines. |
AccountCode | String | The AccountCode column for the table TransactionLines. |
AccountName | String | The AccountName column for the table TransactionLines. |
AmountDC | Double | The AmountDC column for the table TransactionLines. |
AmountFC | Double | The AmountFC column for the table TransactionLines. |
AmountVATBaseFC | Double | The AmountVATBaseFC column for the table TransactionLines. |
AmountVATFC | Double | The AmountVATFC column for the table TransactionLines. |
Asset | String | The Asset column for the table TransactionLines. |
AssetCode | String | The AssetCode column for the table TransactionLines. |
AssetDescription | String | The AssetDescription column for the table TransactionLines. |
CostCenter | String | The CostCenter column for the table TransactionLines. |
CostCenterDescription | String | The CostCenterDescription column for the table TransactionLines. |
CostUnit | String | The CostUnit column for the table TransactionLines. |
CostUnitDescription | String | The CostUnitDescription column for the table TransactionLines. |
Created | Datetime | The Created column for the table TransactionLines. |
Creator | String | The Creator column for the table TransactionLines. |
CreatorFullName | String | The CreatorFullName column for the table TransactionLines. |
Currency | String | The Currency column for the table TransactionLines. |
Date | Datetime | The Date column for the table TransactionLines. |
Description | String | The Description column for the table TransactionLines. |
Division | Int | The Division column for the table TransactionLines. |
Document | String | The Document column for the table TransactionLines. |
DocumentNumber | Int | The DocumentNumber column for the table TransactionLines. |
DocumentSubject | String | The DocumentSubject column for the table TransactionLines. |
DueDate | Datetime | The DueDate column for the table TransactionLines. |
EntryID | String | The EntryID column for the table TransactionLines. |
EntryNumber | Int | The EntryNumber column for the table TransactionLines. |
ExchangeRate | Double | The ExchangeRate column for the table TransactionLines. |
ExtraDutyAmountFC | Double | The ExtraDutyAmountFC column for the table TransactionLines. |
ExtraDutyPercentage | Double | The ExtraDutyPercentage column for the table TransactionLines. |
FinancialPeriod | Int | The FinancialPeriod column for the table TransactionLines. |
FinancialYear | Int | The FinancialYear column for the table TransactionLines. |
GLAccount | String | The GLAccount column for the table TransactionLines. |
GLAccountCode | String | The GLAccountCode column for the table TransactionLines. |
GLAccountDescription | String | The GLAccountDescription column for the table TransactionLines. |
InvoiceNumber | Int | The InvoiceNumber column for the table TransactionLines. |
Item | String | The Item column for the table TransactionLines. |
ItemCode | String | The ItemCode column for the table TransactionLines. |
ItemDescription | String | The ItemDescription column for the table TransactionLines. |
JournalCode | String | The JournalCode column for the table TransactionLines. |
JournalDescription | String | The JournalDescription column for the table TransactionLines. |
LineNumber | Int | The LineNumber column for the table TransactionLines. |
LineType | Int | The LineType column for the table TransactionLines. |
Modified | Datetime | The Modified column for the table TransactionLines. |
Modifier | String | The Modifier column for the table TransactionLines. |
ModifierFullName | String | The ModifierFullName column for the table TransactionLines. |
Notes | String | The Notes column for the table TransactionLines. |
OffsetID | String | The OffsetID column for the table TransactionLines. |
OrderNumber | Int | The OrderNumber column for the table TransactionLines. |
PaymentDiscountAmount | Double | The PaymentDiscountAmount column for the table TransactionLines. |
PaymentReference | String | The PaymentReference column for the table TransactionLines. |
Project | String | The Project column for the table TransactionLines. |
ProjectCode | String | The ProjectCode column for the table TransactionLines. |
ProjectDescription | String | The ProjectDescription column for the table TransactionLines. |
Quantity | Double | The Quantity column for the table TransactionLines. |
SerialNumber | String | The SerialNumber column for the table TransactionLines. |
Status | Int | The Status column for the table TransactionLines. |
Subscription | String | The Subscription column for the table TransactionLines. |
SubscriptionDescription | String | The SubscriptionDescription column for the table TransactionLines. |
TrackingNumber | String | The TrackingNumber column for the table TransactionLines. |
TrackingNumberDescription | String | The TrackingNumberDescription column for the table TransactionLines. |
Type | Int | The Type column for the table TransactionLines. |
VATCode | String | The VATCode column for the table TransactionLines. |
VATCodeDescription | String | The VATCodeDescription column for the table TransactionLines. |
VATPercentage | Double | The VATPercentage column for the table TransactionLines. |
VATType | String | The VATType column for the table TransactionLines. |
YourRef | String | The YourRef column for the table TransactionLines. |
Units
Usage information for the operation Units.rsd.
Columns
Name | Type | Description |
---|---|---|
ID [KEY] | String | The ID column for the table Units. |
Active | Bool | The Active column for the table Units. |
Code | String | The Code column for the table Units. |
Description | String | The Description column for the table Units. |
Division | Int | The Division column for the table Units. |
Main | Int | The Main column for the table Units. |
TimeUnit | String | The TimeUnit column for the table Units. |
Type | String | The Type column for the table Units. |
UserRoles
Usage information for the operation UserRoles.rsd.
Columns
Name | Type | Description |
---|---|---|
ID [KEY] | String | The ID column for the table UserRoles. |
Created | Datetime | The Created column for the table UserRoles. |
Creator | String | The Creator column for the table UserRoles. |
CreatorFullName | String | The CreatorFullName column for the table UserRoles. |
Description | String | The Description column for the table UserRoles. |
EndDate | Datetime | The EndDate column for the table UserRoles. |
Modified | Datetime | The Modified column for the table UserRoles. |
Modifier | String | The Modifier column for the table UserRoles. |
ModifierFullName | String | The ModifierFullName column for the table UserRoles. |
Role | Int | The Role column for the table UserRoles. |
RoleLevel | Int | The RoleLevel column for the table UserRoles. |
StartDate | Datetime | The StartDate column for the table UserRoles. |
UserID | String | The UserID column for the table UserRoles. |
UserRolesPerDivision
Usage information for the operation UserRolesPerDivision.rsd.
Columns
Name | Type | Description |
---|---|---|
ID [KEY] | String | The ID column for the table UserRolesPerDivision. |
Created | Datetime | The Created column for the table UserRolesPerDivision. |
Creator | String | The Creator column for the table UserRolesPerDivision. |
CreatorFullName | String | The CreatorFullName column for the table UserRolesPerDivision. |
Description | String | The Description column for the table UserRolesPerDivision. |
Division | Int | The Division column for the table UserRolesPerDivision. |
EndDate | Datetime | The EndDate column for the table UserRolesPerDivision. |
Modified | Datetime | The Modified column for the table UserRolesPerDivision. |
Modifier | String | The Modifier column for the table UserRolesPerDivision. |
ModifierFullName | String | The ModifierFullName column for the table UserRolesPerDivision. |
Role | Int | The Role column for the table UserRolesPerDivision. |
RoleLevel | Int | The RoleLevel column for the table UserRolesPerDivision. |
StartDate | Datetime | The StartDate column for the table UserRolesPerDivision. |
UserID | String | The UserID column for the table UserRolesPerDivision. |
Users
Usage information for the operation Users.rsd.
Columns
Name | Type | Description |
---|---|---|
ID [KEY] | String | The ID column for the table Users. |
AddressLine2 | String | The AddressLine2 column for the table Users. |
AddressStreet | String | The AddressStreet column for the table Users. |
AddressStreetNumber | String | The AddressStreetNumber column for the table Users. |
AddressStreetNumberSuffix | String | The AddressStreetNumberSuffix column for the table Users. |
BirthDate | Datetime | The BirthDate column for the table Users. |
BirthName | String | The BirthName column for the table Users. |
BirthNamePrefix | String | The BirthNamePrefix column for the table Users. |
BirthPlace | String | The BirthPlace column for the table Users. |
Blocked | Int | The Blocked column for the table Users. |
City | String | The City column for the table Users. |
Country | String | The Country column for the table Users. |
Created | Datetime | The Created column for the table Users. |
Creator | String | The Creator column for the table Users. |
CreatorFullName | String | The CreatorFullName column for the table Users. |
Email | String | The Email column for the table Users. |
EndDate | Datetime | The EndDate column for the table Users. |
FirstName | String | The FirstName column for the table Users. |
FullName | String | The FullName column for the table Users. |
Gender | String | The Gender column for the table Users. |
Initials | String | The Initials column for the table Users. |
JobTitleDescription | String | The JobTitleDescription column for the table Users. |
Language | String | The Language column for the table Users. |
LastName | String | The LastName column for the table Users. |
MiddleName | String | The MiddleName column for the table Users. |
Mobile | String | The Mobile column for the table Users. |
Modified | Datetime | The Modified column for the table Users. |
Modifier | String | The Modifier column for the table Users. |
ModifierFullName | String | The ModifierFullName column for the table Users. |
Nationality | String | The Nationality column for the table Users. |
Notes | String | The Notes column for the table Users. |
PartnerName | String | The PartnerName column for the table Users. |
PartnerNamePrefix | String | The PartnerNamePrefix column for the table Users. |
Person | String | The Person column for the table Users. |
Phone | String | The Phone column for the table Users. |
PhoneExtension | String | The PhoneExtension column for the table Users. |
PictureName | String | The PictureName column for the table Users. |
Postcode | String | The Postcode column for the table Users. |
SocialSecurityNumber | String | The SocialSecurityNumber column for the table Users. |
StartDate | Datetime | The StartDate column for the table Users. |
State | String | The State column for the table Users. |
Title | String | The Title column for the table Users. |
VatPercentages
Usage information for the operation VatPercentages.rsd.
Columns
Name | Type | Description |
---|---|---|
ID [KEY] | String | The ID column for the table VatPercentages. |
Created | Datetime | The Created column for the table VatPercentages. |
Creator | String | The Creator column for the table VatPercentages. |
CreatorFullName | String | The CreatorFullName column for the table VatPercentages. |
Division | Int | The Division column for the table VatPercentages. |
EndDate | Datetime | The EndDate column for the table VatPercentages. |
LineNumber | Int | The LineNumber column for the table VatPercentages. |
Modified | Datetime | The Modified column for the table VatPercentages. |
Modifier | String | The Modifier column for the table VatPercentages. |
ModifierFullName | String | The ModifierFullName column for the table VatPercentages. |
Percentage | Double | The Percentage column for the table VatPercentages. |
StartDate | Datetime | The StartDate column for the table VatPercentages. |
Type | Int | The Type column for the table VatPercentages. |
VATCodeID | String | The VATCodeID column for the table VatPercentages. |
Stored Procedures
Stored procedures are function-like interfaces that extend the functionality of the connector beyond simple SELECT/INSERT/UPDATE/DELETE operations with Exact Online.
Stored procedures accept a list of parameters, perform their intended function, and then return any relevant response data from Exact Online, along with an indication of whether the procedure succeeded or failed.
Exact Online Connector Stored Procedures
Name | Description |
---|---|
DownloadXML | Retreives the data and writes it into a specified file. |
GetOAuthAccessToken | If using a Windows application, set Authmode to App. If using a Web app, set Authmode to Web and specify the Verifier obtained by GetOAuthAuthorizationUrl. |
GetOAuthAuthorizationUrl | Gets the authorization URL that must be opened separately by the user to grant access to your application. Only needed when developing Web apps. |
GetSalesItemPrice | Retrieves SalesItemPrice report data. All input values are required. |
GetStockPosition | Retrieves StockPosition data. The Item ID is required. |
RefreshOAuthAccessToken | Refreshes the OAuth token. |
DownloadXML
Retreives the data and writes it into a specified file.
Input
Name | Type | Accepts Output Streams | Description |
---|---|---|---|
Topic | String | False | The topic you want to download. |
Division | String | False | The company from which the topic data is downloaded. |
OutputFilePath | String | False | The full path of the file to write the output to. |
AdditionalUrlParameters | String | False | Semi column separated list of additional parameters in name-value pairs. Example: Params_Period_From=1;Params_Period_To=12 |
Encoding | String | False | The FileData input encoding type. The allowed values are NONE, BASE64. The default value is BASE64. |
FileStream | String | True | An instance of an output stream where file data is written to. Only used if OutputFilePath is not provided. |
Result Set Columns
Name | Type | Description |
---|---|---|
Success | String | Determines if the operation was successful. |
FileData | String | If the DownloadLocation and FileStream are not provided, this contains the content of the file. |
GetOAuthAccessToken
If using a Windows application, set Authmode to App. If using a Web app, set Authmode to Web and specify the Verifier obtained by GetOAuthAuthorizationUrl.
Input
Name | Type | Description |
---|---|---|
Authmode | String | The type of authentication mode to use. Select App for getting authentication tokens via a Windows forms app. Select Web for getting authentication tokens via a Web app. The allowed values are APP, WEB. The default value is APP. |
Verifier | String | The verifier token returned by Exact Online after using the URL obtained with GetOAuthAuthorizationUrl. |
CallbackUrl | String | The page to return the Exact Online app after authentication has been completed. |
State | String | This field indicates any state that may be useful to your application upon receipt of the response. Your application receives the same value it sent, as this parameter makes a round-trip to the Exact authorization server and back. Possible uses include redirecting the user to the correct resource in your site, using nonces, and mitigating cross-site request forgery. |
Result Set Columns
Name | Type | Description |
---|---|---|
OAuthRefreshToken | String | A token that may be used to obtain a new access token. |
OAuthAccessToken | String | The OAuth access token. |
ExpiresIn | String | The remaining lifetime on the access token. |
GetOAuthAuthorizationUrl
Gets the authorization URL that must be opened separately by the user to grant access to your application. Only needed when developing Web apps.
Input
Name | Type | Description |
---|---|---|
CallbackUrl | String | The page to return the user after authorization is complete. |
Grant_Type | String | The type of authorization to be granted for your app. If this is set to code, the stored procedure will return an authorization URL containing the verifier code in a query string parameter, which you will need to submit back with the GetOAuthAccessToken stored procedure. Implicit will cause the OAuth access token to be returned directly in the URL. The allowed values are Implicit, Code. |
State | String |
Result Set Columns
Name | Type | Description |
---|---|---|
Url | String | The authorization URL. |
GetSalesItemPrice
Retrieves SalesItemPrice report data. All input values are required.
Input
Name | Type | Description |
---|---|---|
ItemId | String | The ID of the Item. |
CurrencyCode | String | The CurrencyCode to be used. |
UnitCode | String | The UnitCode to be used. |
Quantity | String | Number of items. |
AccountId | String | The ID for the Account. |
Date | String | The date to find the price. |
Result Set Columns
Name | Type | Description |
---|---|---|
ItemId | String | The ID of the Item. |
ItemCode | String | The Code of the Item. |
ItemDescription | String | The Description of the Item. |
PriceExcludingVAT | String | The Price (Excluding VAT) of the Item. |
PriceIncludingVAT | String | The Price (Including VAT) of the Item. |
CurrencyCode | String | The CurrencyCode to be used. |
UnitCode | String | The UnitCode to be used. |
UnitDescription | String | The Description of the Item's Unit. |
VATCode | String | The VAT Code of the Item. |
GetStockPosition
Retrieves StockPosition data. The Item ID is required.
Input
Name | Type | Description |
---|---|---|
ItemId | String | The ID of the Item. |
Result Set Columns
Name | Type | Description |
---|---|---|
InStock | String | Number of items in stock. |
PlanningIn | String | Number of items that are planned to come in. |
PlanningOut | String | Number of items that are planned to go out. |
RefreshOAuthAccessToken
Refreshes the OAuth token.
Input
Name | Type | Description |
---|---|---|
OAuthRefreshToken | String | The refresh token returned when the OAuth Token was first created. |
Result Set Columns
Name | Type | Description |
---|---|---|
OAuthAccessToken | String | The OAuth token. |
ExpiresIn | String | The remaining lifetime on the access token. |
System Tables
You can query the system tables described in this section to access schema information, information on data source functionality, and batch operation statistics.
Schema Tables
The following tables return database metadata for Exact Online:
- sys_catalogs: Lists the available databases.
- sys_schemas: Lists the available schemas.
- sys_tables: Lists the available tables and views.
- sys_tablecolumns: Describes the columns of the available tables and views.
- sys_procedures: Describes the available stored procedures.
- sys_procedureparameters: Describes stored procedure parameters.
- sys_keycolumns: Describes the primary and foreign keys.
- sys_indexes: Describes the available indexes.
Data Source Tables
The following tables return information about how to connect to and query the data source:
- sys_connection_props: Returns information on the available connection properties.
- sys_sqlinfo: Describes the SELECT queries that the connector can offload to the data source.
Query Information Tables
The following table returns query statistics for data modification queries:
- sys_identity: Returns information about batch operations or single updates.
sys_catalogs
Lists the available databases.
The following query retrieves all databases determined by the connection string:
SELECT * FROM sys_catalogs
Columns
Name | Type | Description |
---|---|---|
CatalogName | String | The database name. |
sys_schemas
Lists the available schemas.
The following query retrieves all available schemas:
SELECT * FROM sys_schemas
Columns
Name | Type | Description |
---|---|---|
CatalogName | String | The database name. |
SchemaName | String | The schema name. |
sys_tables
Lists the available tables.
The following query retrieves the available tables and views:
SELECT * FROM sys_tables
Columns
Name | Type | Description |
---|---|---|
CatalogName | String | The database containing the table or view. |
SchemaName | String | The schema containing the table or view. |
TableName | String | The name of the table or view. |
TableType | String | The table type (table or view). |
Description | String | A description of the table or view. |
IsUpdateable | Boolean | Whether the table can be updated. |
sys_tablecolumns
Describes the columns of the available tables and views.
The following query returns the columns and data types for the Accounts table:
SELECT ColumnName, DataTypeName FROM sys_tablecolumns WHERE TableName='Accounts'
Columns
Name | Type | Description |
---|---|---|
CatalogName | String | The name of the database containing the table or view. |
SchemaName | String | The schema containing the table or view. |
TableName | String | The name of the table or view containing the column. |
ColumnName | String | The column name. |
DataTypeName | String | The data type name. |
DataType | Int32 | An integer indicating the data type. This value is determined at run time based on the environment. |
Length | Int32 | The storage size of the column. |
DisplaySize | Int32 | The designated column's normal maximum width in characters. |
NumericPrecision | Int32 | The maximum number of digits in numeric data. The column length in characters for character and date-time data. |
NumericScale | Int32 | The column scale or number of digits to the right of the decimal point. |
IsNullable | Boolean | Whether the column can contain null. |
Description | String | A brief description of the column. |
Ordinal | Int32 | The sequence number of the column. |
IsAutoIncrement | String | Whether the column value is assigned in fixed increments. |
IsGeneratedColumn | String | Whether the column is generated. |
IsHidden | Boolean | Whether the column is hidden. |
IsArray | Boolean | Whether the column is an array. |
IsReadOnly | Boolean | Whether the column is read-only. |
IsKey | Boolean | Indicates whether a field returned from sys_tablecolumns is the primary key of the table. |
sys_procedures
Lists the available stored procedures.
The following query retrieves the available stored procedures:
SELECT * FROM sys_procedures
Columns
Name | Type | Description |
---|---|---|
CatalogName | String | The database containing the stored procedure. |
SchemaName | String | The schema containing the stored procedure. |
ProcedureName | String | The name of the stored procedure. |
Description | String | A description of the stored procedure. |
ProcedureType | String | The type of the procedure, such as PROCEDURE or FUNCTION. |
sys_procedureparameters
Describes stored procedure parameters.
The following query returns information about all of the input parameters for the GetOAuthAccessToken stored procedure:
SELECT * FROM sys_procedureparameters WHERE ProcedureName='GetOAuthAccessToken' AND Direction=1 OR Direction=2
Columns
Name | Type | Description |
---|---|---|
CatalogName | String | The name of the database containing the stored procedure. |
SchemaName | String | The name of the schema containing the stored procedure. |
ProcedureName | String | The name of the stored procedure containing the parameter. |
ColumnName | String | The name of the stored procedure parameter. |
Direction | Int32 | An integer corresponding to the type of the parameter: input (1), input/output (2), or output(4). input/output type parameters can be both input and output parameters. |
DataTypeName | String | The name of the data type. |
DataType | Int32 | An integer indicating the data type. This value is determined at run time based on the environment. |
Length | Int32 | The number of characters allowed for character data. The number of digits allowed for numeric data. |
NumericPrecision | Int32 | The maximum precision for numeric data. The column length in characters for character and date-time data. |
NumericScale | Int32 | The number of digits to the right of the decimal point in numeric data. |
IsNullable | Boolean | Whether the parameter can contain null. |
IsRequired | Boolean | Whether the parameter is required for execution of the procedure. |
IsArray | Boolean | Whether the parameter is an array. |
Description | String | The description of the parameter. |
Ordinal | Int32 | The index of the parameter. |
sys_keycolumns
Describes the primary and foreign keys.
The following query retrieves the primary key for the Accounts table:
SELECT * FROM sys_keycolumns WHERE IsKey='True' AND TableName='Accounts'
Columns
Name | Type | Description |
---|---|---|
CatalogName | String | The name of the database containing the key. |
SchemaName | String | The name of the schema containing the key. |
TableName | String | The name of the table containing the key. |
ColumnName | String | The name of the key column. |
IsKey | Boolean | Whether the column is a primary key in the table referenced in the TableName field. |
IsForeignKey | Boolean | Whether the column is a foreign key referenced in the TableName field. |
PrimaryKeyName | String | The name of the primary key. |
ForeignKeyName | String | The name of the foreign key. |
ReferencedCatalogName | String | The database containing the primary key. |
ReferencedSchemaName | String | The schema containing the primary key. |
ReferencedTableName | String | The table containing the primary key. |
ReferencedColumnName | String | The column name of the primary key. |
sys_foreignkeys
Describes the foreign keys.
The following query retrieves all foreign keys which refer to other tables:
SELECT * FROM sys_foreignkeys WHERE ForeignKeyType = 'FOREIGNKEY_TYPE_IMPORT'
Columns
Name | Type | Description |
---|---|---|
CatalogName | String | The name of the database containing the key. |
SchemaName | String | The name of the schema containing the key. |
TableName | String | The name of the table containing the key. |
ColumnName | String | The name of the key column. |
PrimaryKeyName | String | The name of the primary key. |
ForeignKeyName | String | The name of the foreign key. |
ReferencedCatalogName | String | The database containing the primary key. |
ReferencedSchemaName | String | The schema containing the primary key. |
ReferencedTableName | String | The table containing the primary key. |
ReferencedColumnName | String | The column name of the primary key. |
ForeignKeyType | String | Designates whether the foreign key is an import (points to other tables) or export (referenced from other tables) key. |
sys_primarykeys
Describes the primary keys.
The following query retrieves the primary keys from all tables and views:
SELECT * FROM sys_primarykeys
Columns
Name | Type | Description |
---|---|---|
CatalogName | String | The name of the database containing the key. |
SchemaName | String | The name of the schema containing the key. |
TableName | String | The name of the table containing the key. |
ColumnName | String | The name of the key column. |
KeySeq | String | The sequence number of the primary key. |
KeyName | String | The name of the primary key. |
sys_indexes
Describes the available indexes. By filtering on indexes, you can write more selective queries with faster query response times.
The following query retrieves all indexes that are not primary keys:
SELECT * FROM sys_indexes WHERE IsPrimary='false'
Columns
Name | Type | Description |
---|---|---|
CatalogName | String | The name of the database containing the index. |
SchemaName | String | The name of the schema containing the index. |
TableName | String | The name of the table containing the index. |
IndexName | String | The index name. |
ColumnName | String | The name of the column associated with the index. |
IsUnique | Boolean | True if the index is unique. False otherwise. |
IsPrimary | Boolean | True if the index is a primary key. False otherwise. |
Type | Int16 | An integer value corresponding to the index type: statistic (0), clustered (1), hashed (2), or other (3). |
SortOrder | String | The sort order: A for ascending or D for descending. |
OrdinalPosition | Int16 | The sequence number of the column in the index. |
sys_connection_props
Returns information on the available connection properties and those set in the connection string.
When querying this table, the config connection string should be used:
jdbc:cdata:exactonline:config:
This connection string enables you to query this table without a valid connection.
The following query retrieves all connection properties that have been set in the connection string or set through a default value:
SELECT * FROM sys_connection_props WHERE Value <> ''
Columns
Name | Type | Description |
---|---|---|
Name | String | The name of the connection property. |
ShortDescription | String | A brief description. |
Type | String | The data type of the connection property. |
Default | String | The default value if one is not explicitly set. |
Values | String | A comma-separated list of possible values. A validation error is thrown if another value is specified. |
Value | String | The value you set or a preconfigured default. |
Required | Boolean | Whether the property is required to connect. |
Category | String | The category of the connection property. |
IsSessionProperty | String | Whether the property is a session property, used to save information about the current connection. |
Sensitivity | String | The sensitivity level of the property. This informs whether the property is obfuscated in logging and authentication forms. |
PropertyName | String | A camel-cased truncated form of the connection property name. |
Ordinal | Int32 | The index of the parameter. |
CatOrdinal | Int32 | The index of the parameter category. |
Hierarchy | String | Shows dependent properties associated that need to be set alongside this one. |
Visible | Boolean | Informs whether the property is visible in the connection UI. |
ETC | String | Various miscellaneous information about the property. |
sys_sqlinfo
Describes the SELECT query processing that the connector can offload to the data source.
Discovering the Data Source's SELECT Capabilities
Below is an example data set of SQL capabilities. Some aspects of SELECT functionality are returned in a comma-separated list if supported; otherwise, the column contains NO.
Name | Description | Possible Values |
---|---|---|
AGGREGATE_FUNCTIONS | Supported aggregation functions. | AVG , COUNT , MAX , MIN , SUM , DISTINCT |
COUNT | Whether COUNT function is supported. | YES , NO |
IDENTIFIER_QUOTE_OPEN_CHAR | The opening character used to escape an identifier. | [ |
IDENTIFIER_QUOTE_CLOSE_CHAR | The closing character used to escape an identifier. | ] |
SUPPORTED_OPERATORS | A list of supported SQL operators. | = , > , < , >= , <= , <> , != , LIKE , NOT LIKE , IN , NOT IN , IS NULL , IS NOT NULL , AND , OR |
GROUP_BY | Whether GROUP BY is supported, and, if so, the degree of support. | NO , NO_RELATION , EQUALS_SELECT , SQL_GB_COLLATE |
STRING_FUNCTIONS | Supported string functions. | LENGTH , CHAR , LOCATE , REPLACE , SUBSTRING , RTRIM , LTRIM , RIGHT , LEFT , UCASE , SPACE , SOUNDEX , LCASE , CONCAT , ASCII , REPEAT , OCTET , BIT , POSITION , INSERT , TRIM , UPPER , REGEXP , LOWER , DIFFERENCE , CHARACTER , SUBSTR , STR , REVERSE , PLAN , UUIDTOSTR , TRANSLATE , TRAILING , TO , STUFF , STRTOUUID , STRING , SPLIT , SORTKEY , SIMILAR , REPLICATE , PATINDEX , LPAD , LEN , LEADING , KEY , INSTR , INSERTSTR , HTML , GRAPHICAL , CONVERT , COLLATION , CHARINDEX , BYTE |
NUMERIC_FUNCTIONS | Supported numeric functions. | ABS , ACOS , ASIN , ATAN , ATAN2 , CEILING , COS , COT , EXP , FLOOR , LOG , MOD , SIGN , SIN , SQRT , TAN , PI , RAND , DEGREES , LOG10 , POWER , RADIANS , ROUND , TRUNCATE |
TIMEDATE_FUNCTIONS | Supported date/time functions. | NOW , CURDATE , DAYOFMONTH , DAYOFWEEK , DAYOFYEAR , MONTH , QUARTER , WEEK , YEAR , CURTIME , HOUR , MINUTE , SECOND , TIMESTAMPADD , TIMESTAMPDIFF , DAYNAME , MONTHNAME , CURRENT_DATE , CURRENT_TIME , CURRENT_TIMESTAMP , EXTRACT |
REPLICATION_SKIP_TABLES | Indicates tables skipped during replication. | |
REPLICATION_TIMECHECK_COLUMNS | A string array containing a list of columns which will be used to check for (in the given order) to use as a modified column during replication. | |
IDENTIFIER_PATTERN | String value indicating what string is valid for an identifier. | |
SUPPORT_TRANSACTION | Indicates if the provider supports transactions such as commit and rollback. | YES , NO |
DIALECT | Indicates the SQL dialect to use. | |
KEY_PROPERTIES | Indicates the properties which identify the uniform database. | |
SUPPORTS_MULTIPLE_SCHEMAS | Indicates if multiple schemas may exist for the provider. | YES , NO |
SUPPORTS_MULTIPLE_CATALOGS | Indicates if multiple catalogs may exist for the provider. | YES , NO |
DATASYNCVERSION | The Data Sync version needed to access this driver. | Standard , Starter , Professional , Enterprise |
DATASYNCCATEGORY | The Data Sync category of this driver. | Source , Destination , Cloud Destination |
SUPPORTSENHANCEDSQL | Whether enhanced SQL functionality beyond what is offered by the API is supported. | TRUE , FALSE |
SUPPORTS_BATCH_OPERATIONS | Whether batch operations are supported. | YES , NO |
SQL_CAP | All supported SQL capabilities for this driver. | SELECT , INSERT , DELETE , UPDATE , TRANSACTIONS , ORDERBY , OAUTH , ASSIGNEDID , LIMIT , LIKE , BULKINSERT , COUNT , BULKDELETE , BULKUPDATE , GROUPBY , HAVING , AGGS , OFFSET , REPLICATE , COUNTDISTINCT , JOINS , DROP , CREATE , DISTINCT , INNERJOINS , SUBQUERIES , ALTER , MULTIPLESCHEMAS , GROUPBYNORELATION , OUTERJOINS , UNIONALL , UNION , UPSERT , GETDELETED , CROSSJOINS , GROUPBYCOLLATE , MULTIPLECATS , FULLOUTERJOIN , MERGE , JSONEXTRACT , BULKUPSERT , SUM , SUBQUERIESFULL , MIN , MAX , JOINSFULL , XMLEXTRACT , AVG , MULTISTATEMENTS , FOREIGNKEYS , CASE , LEFTJOINS , COMMAJOINS , WITH , LITERALS , RENAME , NESTEDTABLES , EXECUTE , BATCH , BASIC , INDEX |
PREFERRED_CACHE_OPTIONS | A string value specifies the preferred cacheOptions. | |
ENABLE_EF_ADVANCED_QUERY | Indicates if the driver directly supports advanced queries coming from Entity Framework. If not, queries will be handled client side. | YES , NO |
PSEUDO_COLUMNS | A string array indicating the available pseudo columns. | |
MERGE_ALWAYS | If the value is true, The Merge Mode is forcibly executed in Data Sync. | TRUE , FALSE |
REPLICATION_MIN_DATE_QUERY | A select query to return the replicate start datetime. | |
REPLICATION_MIN_FUNCTION | Allows a provider to specify the formula name to use for executing a server side min. | |
REPLICATION_START_DATE | Allows a provider to specify a replicate startdate. | |
REPLICATION_MAX_DATE_QUERY | A select query to return the replicate end datetime. | |
REPLICATION_MAX_FUNCTION | Allows a provider to specify the formula name to use for executing a server side max. | |
IGNORE_INTERVALS_ON_INITIAL_REPLICATE | A list of tables which will skip dividing the replicate into chunks on the initial replicate. | |
CHECKCACHE_USE_PARENTID | Indicates whether the CheckCache statement should be done against the parent key column. | TRUE , FALSE |
CREATE_SCHEMA_PROCEDURES | Indicates stored procedures that can be used for generating schema files. |
The following query retrieves the operators that can be used in the WHERE clause:
SELECT * FROM sys_sqlinfo WHERE Name = 'SUPPORTED_OPERATORS'
Note that individual tables may have different limitations or requirements on the WHERE clause; refer to the Data Model section for more information.
Columns
Name | Type | Description |
---|---|---|
NAME | String | A component of SQL syntax, or a capability that can be processed on the server. |
VALUE | String | Detail on the supported SQL or SQL syntax. |
sys_identity
Returns information about attempted modifications.
The following query retrieves the Ids of the modified rows in a batch operation:
SELECT * FROM sys_identity
Columns
Name | Type | Description |
---|---|---|
Id | String | The database-generated ID returned from a data modification operation. |
Batch | String | An identifier for the batch. 1 for a single operation. |
Operation | String | The result of the operation in the batch: INSERTED, UPDATED, or DELETED. |
Message | String | SUCCESS or an error message if the update in the batch failed. |
Data Type Mapping
Data Type Mappings
The connector maps types from the data source to the corresponding data type available in the schema. The table below documents these mappings.
Exact Online (OData V3) | Schema |
---|---|
Edm.Binary | binary |
Edm.Boolean | bool |
Edm.DateTime | datetime |
Edm.Decimal | decimal |
Edm.Double | double |
Edm.Guid | guid |
Edm.Int32 | int |
Edm.String | string |
Edm.TimeOfDay | time |
Advanced Configurations Properties
The advanced configurations properties are the various options that can be used to establish a connection. This section provides a complete list of the options you can configure. Click the links for further details.
Property | Description |
---|---|
Division | The Division associated with the Exact Online administration. |
Region | The region of the Exact Online server to which you are connecting. |
Property | Description |
---|---|
InitiateOAuth | Set this property to initiate the process to obtain or refresh the OAuth access token when you connect. |
OAuthClientId | The client ID assigned when you register your application with an OAuth authorization server. |
OAuthClientSecret | The client secret assigned when you register your application with an OAuth authorization server. |
OAuthAccessToken | The access token for connecting using OAuth. |
OAuthSettingsLocation | The location of the settings file where OAuth values are saved when InitiateOAuth is set to GETANDREFRESH or REFRESH . Alternatively, you can hold this location in memory by specifying a value starting with 'memory://' . |
CallbackURL | The OAuth callback URL to return to when authenticating. This value must match the callback URL you specify in your app settings. |
OAuthVerifier | The verifier code returned from the OAuth authorization URL. |
OAuthRefreshToken | The OAuth refresh token for the corresponding OAuth access token. |
OAuthExpiresIn | The lifetime in seconds of the OAuth AccessToken. |
OAuthTokenTimestamp | The Unix epoch timestamp in milliseconds when the current Access Token was created. |
Property | Description |
---|---|
SSLServerCert | The certificate to be accepted from the server when connecting using TLS/SSL. |
Property | Description |
---|---|
Location | A path to the directory that contains the schema files defining tables, views, and stored procedures. |
BrowsableSchemas | This property restricts the schemas reported to a subset of the available schemas. For example, BrowsableSchemas=SchemaA, SchemaB, SchemaC. |
Tables | This property restricts the tables reported to a subset of the available tables. For example, Tables=TableA, TableB, TableC. |
Views | Restricts the views reported to a subset of the available tables. For example, Views=ViewA, ViewB, ViewC. |
Property | Description |
---|---|
RecognizeDateFields | To recognize the date fields. |
CustomDescriptionLanguage | Set the Language in which the language sensitive properties such as descriptions for tables like GLAccounts and GLClassifications need to be retrieved. |
IncludeBeta | Indicates if tables and views marked as in beta should be included. |
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. |
UseBulkAPI | By setting this property to true, a greater number of results will be returned per page for tables that have bulk support. |
UserDefinedViews | A filepath pointing to the JSON configuration file containing your custom views. |
UseSyncAPI | By setting this property to true, the results will be returned for tables that have sync support. |
Authentication
This section provides a complete list of authentication properties you can configure.
Property | Description |
---|---|
Division | The Division associated with the Exact Online administration. |
Region | The region of the Exact Online server to which you are connecting. |
Division
The Division associated with the Exact Online administration.
Data Type
string
Default Value
""
Remarks
The Division associated with the Exact Online administration. You can determine the Divisions associated with your account by browsing to MyExactOnlineSite/api/v1/current/Me?$select=CurrentDivision. The Exact Online site is determined by your Region. The value of the CurrentDivision element in the response contains the division code.
If you are unsure of your Division, you can leave the Division blank, and the connector sends a request to Exact Online to retrieve the default Division value for internal use.
After you connect, you can query the Division view to retrieve the Divisions associated with your account.
To access multiple divisions, set Division=All; the SchemaName is the value of division. You can access the table as shown below,
select * from [12345].Accounts
where 12345 is the division value.
See the "Getting Started" chapter in the Exact Online developer documentation for more information on Exact Online sites.
Region
The region of the Exact Online server to which you are connecting.
Possible Values
Belgium
, Germany
, The Netherlands
, United Kingdom
, United States
, Spain
, France
Data Type
string
Default Value
United States
Remarks
The region of the Exact Online server to which you are connecting. Accepted entries are Belgium, Germany, The Netherlands, United Kingdom, France, and United States.
OAuth
This section provides a complete list of OAuth properties you can configure.
Property | Description |
---|---|
InitiateOAuth | Set this property to initiate the process to obtain or refresh the OAuth access token when you connect. |
OAuthClientId | The client ID assigned when you register your application with an OAuth authorization server. |
OAuthClientSecret | The client secret assigned when you register your application with an OAuth authorization server. |
OAuthAccessToken | The access token for connecting using OAuth. |
OAuthSettingsLocation | The location of the settings file where OAuth values are saved when InitiateOAuth is set to GETANDREFRESH or REFRESH . Alternatively, you can hold this location in memory by specifying a value starting with 'memory://' . |
CallbackURL | The OAuth callback URL to return to when authenticating. This value must match the callback URL you specify in your app settings. |
OAuthVerifier | The verifier code returned from the OAuth authorization URL. |
OAuthRefreshToken | The OAuth refresh token for the corresponding OAuth access token. |
OAuthExpiresIn | The lifetime in seconds of the OAuth AccessToken. |
OAuthTokenTimestamp | The Unix epoch timestamp in milliseconds when the current Access Token was created. |
InitiateOAuth
Set this property to initiate the process to obtain or refresh the OAuth access token when you connect.
Possible Values
OFF
, GETANDREFRESH
, REFRESH
Data Type
string
Default Value
OFF
Remarks
The following options are available:
OFF
: Indicates that the OAuth flow will be handled entirely by the user. An OAuthAccessToken will be required to authenticate.GETANDREFRESH
: Indicates that the entire OAuth Flow will be handled by the connector. If no token currently exists, it will be obtained by prompting the user via the browser. If a token exists, it will be refreshed when applicable.REFRESH
: Indicates that the connector will only handle refreshing the OAuthAccessToken. The user will never be prompted by the connector to authenticate via the browser. The user must handle obtaining the OAuthAccessToken and OAuthRefreshToken initially.
OAuthClientId
The client ID assigned when you register your application with an OAuth authorization server.
Data Type
string
Default Value
""
Remarks
As part of registering an OAuth application, you will receive the OAuthClientId
value, sometimes also called a consumer key, and a client secret, the OAuthClientSecret.
OAuthClientSecret
The client secret assigned when you register your application with an OAuth authorization server.
Data Type
string
Default Value
""
Remarks
As part of registering an OAuth application, you will receive the OAuthClientId, also called a consumer key. You will also receive a client secret, also called a consumer secret. Set the client secret in the OAuthClientSecret
property.
OAuthAccessToken
The access token for connecting using OAuth.
Data Type
string
Default Value
""
Remarks
The OAuthAccessToken
property is used to connect using OAuth. The OAuthAccessToken
is retrieved from the OAuth server as part of the authentication process. It has a server-dependent timeout and can be reused between requests.
The access token is used in place of your user name and password. The access token protects your credentials by keeping them on the server.
OAuthSettingsLocation
The location of the settings file where OAuth values are saved when InitiateOAuth is set to GETANDREFRESH or REFRESH. Alternatively, you can hold this location in memory by specifying a value starting with 'memory://'
.
Data Type
string
Default Value
%APPDATA%\CData\Acumatica Data Provider\OAuthSettings.txt
Remarks
When InitiateOAuth is set to GETANDREFRESH
or REFRESH
, the driver saves OAuth values to avoid requiring the user to manually enter OAuth connection properties and to allow the credentials to be shared across connections or processes.
Instead of specifying a file path, you can use memory storage. Memory locations are specified by using a value starting with 'memory://'
followed by a unique identifier for that set of credentials (for example, memory://user1). The identifier can be anything you choose but should be unique to the user. Unlike file-based storage, where credentials persist across connections, memory storage loads the credentials into static memory, and the credentials are shared between connections using the same identifier for the life of the process. To persist credentials outside the current process, you must manually store the credentials prior to closing the connection. This enables you to set them in the connection when the process is started again. You can retrieve OAuth property values with a query to the sys_connection_props
system table. If there are multiple connections using the same credentials, the properties are read from the previously closed connection.
The default location is "%APPDATA%\CData\Acumatica Data Provider\OAuthSettings.txt" with %APPDATA%
set to the user's configuration directory. The default values are
- Windows: "
register://%DSN
" - Unix: "%AppData%..."
where DSN is the name of the current DSN used in the open connection.
The following table lists the value of %APPDATA%
by OS:
Platform | %APPDATA% |
---|---|
Windows | The value of the APPDATA environment variable |
Linux | ~/.config |
CallbackURL
The OAuth callback URL to return to when authenticating. This value must match the callback URL you specify in your app settings.
Data Type
string
Default Value
""
Remarks
During the authentication process, the OAuth authorization server redirects the user to this URL. This value must match the callback URL you specify in your app settings.
OAuthVerifier
The verifier code returned from the OAuth authorization URL.
Data Type
string
Default Value
""
Remarks
The verifier code returned from the OAuth authorization URL. This can be used on systems where a browser cannot be launched such as headless systems.
Authentication on Headless Machines
See to obtain the OAuthVerifier
value.
Set OAuthSettingsLocation along with OAuthVerifier
. When you connect, the connector exchanges the OAuthVerifier
for the OAuth authentication tokens and saves them, encrypted, to the specified location. Set InitiateOAuth to GETANDREFRESH to automate the exchange.
Once the OAuth settings file has been generated, you can remove OAuthVerifier
from the connection properties and connect with OAuthSettingsLocation set.
To automatically refresh the OAuth token values, set OAuthSettingsLocation and additionally set InitiateOAuth to REFRESH.
OAuthRefreshToken
The OAuth refresh token for the corresponding OAuth access token.
Data Type
string
Default Value
""
Remarks
The OAuthRefreshToken
property is used to refresh the OAuthAccessToken when using OAuth authentication.
OAuthExpiresIn
The lifetime in seconds of the OAuth AccessToken.
Data Type
string
Default Value
""
Remarks
Pair with OAuthTokenTimestamp to determine when the AccessToken will expire.
OAuthTokenTimestamp
The Unix epoch timestamp in milliseconds when the current Access Token was created.
Data Type
string
Default Value
""
Remarks
Pair with OAuthExpiresIn to determine when the AccessToken will expire.
SSL
This section provides a complete list of SSL properties you can configure.
Property | Description |
---|---|
SSLServerCert | The certificate to be accepted from the server when connecting using TLS/SSL. |
SSLServerCert
The certificate to be accepted from the server when connecting using TLS/SSL.
Data Type
string
Default Value
""
Remarks
If using a TLS/SSL connection, this property can be used to specify the TLS/SSL certificate to be accepted from the server. Any other certificate that is not trusted by the machine is rejected.
This property can take the following forms:
Description | Example |
---|---|
A full PEM Certificate (example shortened for brevity) | -----BEGIN CERTIFICATE----- MIIChTCCAe4CAQAwDQYJKoZIhv......Qw== -----END CERTIFICATE----- |
A path to a local file containing the certificate | C:\\cert.cer |
The public key (example shortened for brevity) | -----BEGIN RSA PUBLIC KEY----- MIGfMA0GCSq......AQAB -----END RSA PUBLIC KEY----- |
The MD5 Thumbprint (hex values can also be either space or colon separated) | ecadbdda5a1529c58a1e9e09828d70e4 |
The SHA1 Thumbprint (hex values can also be either space or colon separated) | 34a929226ae0819f2ec14b4a3d904f801cbb150d |
If not specified, any certificate trusted by the machine is accepted.
Certificates are validated as trusted by the machine based on the System's trust store. The trust store used is the 'javax.net.ssl.trustStore' value specified for the system. If no value is specified for this property, Java's default trust store is used (for example, JAVA_HOME\lib\security\cacerts).
Use '*' to signify to accept all certificates. Note that this is not recommended due to security concerns.
Schema
This section provides a complete list of schema properties you can configure.
Property | Description |
---|---|
Location | A path to the directory that contains the schema files defining tables, views, and stored procedures. |
BrowsableSchemas | This property restricts the schemas reported to a subset of the available schemas. For example, BrowsableSchemas=SchemaA, SchemaB, SchemaC. |
Tables | This property restricts the tables reported to a subset of the available tables. For example, Tables=TableA, TableB, TableC. |
Views | Restricts the views reported to a subset of the available tables. For example, Views=ViewA, ViewB, ViewC. |
Location
A path to the directory that contains the schema files defining tables, views, and stored procedures.
Data Type
string
Default Value
%APPDATA%\ExactOnline Data Provider\Schema
Remarks
The path to a directory which contains the schema files for the connector (.rsd files for tables and views, .rsb files for stored procedures). The folder location can be a relative path from the location of the executable. The Location
property is only needed if you want to customize definitions (for example, change a column name, ignore a column, and so on) or extend the data model with new tables, views, or stored procedures.
If left unspecified, the default location is "%APPDATA%\ExactOnline Data Provider\Schema" with %APPDATA%
being set to the user's configuration directory:
Platform | %APPDATA% |
---|---|
Windows | The value of the APPDATA environment variable |
Mac | ~/Library/Application Support |
Linux | ~/.config |
BrowsableSchemas
This property restricts the schemas reported to a subset of the available schemas. For example, BrowsableSchemas=SchemaA,SchemaB,SchemaC.
Data Type
string
Default Value
""
Remarks
Listing the schemas from databases can be expensive. Providing a list of schemas in the connection string improves the performance.
Tables
This property restricts the tables reported to a subset of the available tables. For example, Tables=TableA,TableB,TableC.
Data Type
string
Default Value
""
Remarks
Listing the tables from some databases can be expensive. Providing a list of tables in the connection string improves the performance of the connector.
This property can also be used as an alternative to automatically listing views if you already know which ones you want to work with and there would otherwise be too many to work with.
Specify the tables you want in a comma-separated list. Each table should be a valid SQL identifier with any special characters escaped using square brackets, double-quotes or backticks. For example, Tables=TableA,[TableB/WithSlash],WithCatalog.WithSchema.`TableC With Space`.
Note that when connecting to a data source with multiple schemas or catalogs, you will need to provide the fully qualified name of the table in this property, as in the last example here, to avoid ambiguity between tables that exist in multiple catalogs or schemas.
Views
Restricts the views reported to a subset of the available tables. For example, Views=ViewA,ViewB,ViewC.
Data Type
string
Default Value
""
Remarks
Listing the views from some databases can be expensive. Providing a list of views in the connection string improves the performance of the connector.
This property can also be used as an alternative to automatically listing views if you already know which ones you want to work with and there would otherwise be too many to work with.
Specify the views you want in a comma-separated list. Each view should be a valid SQL identifier with any special characters escaped using square brackets, double-quotes or backticks. For example, Views=ViewA,[ViewB/WithSlash],WithCatalog.WithSchema.`ViewC With Space`.
Note that when connecting to a data source with multiple schemas or catalogs, you will need to provide the fully qualified name of the table in this property, as in the last example here, to avoid ambiguity between tables that exist in multiple catalogs or schemas.
Miscellaneous
This section provides a complete list of miscellaneous properties you can configure.
Property | Description |
---|---|
RecognizeDateFields | To recognize the date fields. |
CustomDescriptionLanguage | Set the Language in which the language sensitive properties such as descriptions for tables like GLAccounts and GLClassifications need to be retrieved. |
IncludeBeta | Indicates if tables and views marked as in beta should be included. |
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. |
UseBulkAPI | By setting this property to true, a greater number of results will be returned per page for tables that have bulk support. |
UserDefinedViews | A filepath pointing to the JSON configuration file containing your custom views. |
UseSyncAPI | By setting this property to true, the results will be returned for tables that have sync support. |
RecognizeDateFields
To recognize the date fields.
Data Type
string
Default Value
""
Remarks
Comma-separated values(columnName/tableName.columnName) which will be treated as DATE instead of DATETIME by the driver. Example: RecognizeDateFields="StartDate,Accounts.EndDate", this will ensure that StartDate columns for all the tables and EndDate column for Accounts table will be treated as DATE instead of DATETIME.
CustomDescriptionLanguage
Set the Language in which the language sensitive properties such as descriptions for tables like GLAccounts and GLClassifications need to be retrieved.
Possible Values
nl-be
, nl
, en-gb
, en-us
, fr-be
, fr
, de
Data Type
string
Default Value
""
Remarks
The value is blank by default.
IncludeBeta
Indicates if tables and views marked as in beta should be included.
Data Type
bool
Default Value
false
Remarks
Tables and views marked as in beta by Exact Online may be subject to breaking changes. They are not available by default, but may contain valuable information that is not otherwise available. Set IncludeBeta
to true in order to access them.
MaxRows
Limits the number of rows returned when no aggregation or GROUP BY is used in the query. This takes precedence over LIMIT clauses.
Data Type
int
Default Value
-1
Remarks
Limits the number of rows returned when no aggregation or GROUP BY is used in the query. This takes precedence over LIMIT clauses.
Other
These hidden properties are used only in specific use cases.
Data Type
string
Default Value
""
Remarks
The properties listed below are available for specific use cases. Normal driver use cases and functionality should not require these properties.
Specify multiple properties in a semicolon-separated list.
Integration and Formatting
Property | Description |
---|---|
DefaultColumnSize | Sets the default length of string fields when the data source does not provide column length in the metadata. The default value is 2000. |
ConvertDateTimeToGMT | Determines whether to convert date-time values to GMT, instead of the local time of the machine. |
RecordToFile=filename | Records the underlying socket data transfer to the specified file. |
PseudoColumns
This property indicates whether or not to include pseudo columns as columns to the table.
Data Type
string
Default Value
""
Remarks
This setting is particularly helpful in Entity Framework, which does not allow you to set a value for a pseudo column unless it is a table column. The value of this connection setting is of the format "Table1=Column1, Table1=Column2, Table2=Column3". You can use the "*" character to include all tables and all columns; for example, "*=*".
Timeout
The value in seconds until the timeout error is thrown, canceling the operation.
Data Type
int
Default Value
60
Remarks
If Timeout
= 0, operations do not time out. The operations run until they complete successfully or until they encounter an error condition.
If Timeout
expires and the operation is not yet complete, the connector throws an exception.
UseBulkAPI
By setting this property to true, a greater number of results will be returned per page for tables that have bulk support.
Data Type
bool
Default Value
true
Remarks
The API currently has bulk support for Accounts, Addresses, Contacts, DocumentAttachments, Documents, GLAccounts, GLClassifications, GoodsDeliveries, GoodsDeliveryLines, Items, Payments, ProjectWBS, Quotations, SalesItemPrices, SalesOrderLines, TransactionLines.
UserDefinedViews
A filepath pointing to the JSON configuration file containing your custom views.
Data Type
string
Default Value
""
Remarks
User Defined Views are defined in a JSON-formatted configuration file called UserDefinedViews.json
. The connector automatically detects the views specified in this file.
You can also have multiple view definitions and control them using the UserDefinedViews
connection property. When you use this property, only the specified views are seen by the connector.
This User Defined View configuration file is formatted as follows:
- Each root element defines the name of a view.
- Each root element contains a child element, called
query
, which contains the custom SQL query for the view.
For example:
{
"MyView": {
"query": "SELECT * FROM Accounts WHERE MyColumn = 'value'"
},
"MyView2": {
"query": "SELECT * FROM MyTable WHERE Id IN (1,2,3)"
}
}
Use the UserDefinedViews
connection property to specify the location of your JSON configuration file. For example:
"UserDefinedViews", C:\Users\yourusername\Desktop\tmp\UserDefinedViews.json
Note that the specified path is not embedded in quotation marks.
UseSyncAPI
By setting this property to true, the results will be returned for tables that have sync support.
Data Type
bool
Default Value
false
Remarks
The API currently has sync support for Some of the Tables and Only the timestamp field is allowed as parameter for Sync API's.