sap.businessone.administration
Module sap.businessone.administration
API
Definitions
ballerinax/sap.businessone.administration Ballerina library
Overview
SAP Business One is an enterprise resource planning (ERP) solution designed for small and midsize businesses by SAP SE. Its Service Layer exposes the Business One business objects through an OData web service interface.
The SAP Business One Administration & Setup connector provides APIs for the administration and setup objects of SAP Business One: users, user groups, approval procedures, alerts, queries, countries, currencies, and Web Client settings, exposed through the SAP Business One Service Layer (OData).
Key Features
- Manage users, user groups, and permissions
- Configure approval templates, stages, and requests
- Maintain general setup data such as countries, currencies, and branches
- Manage saved SQL/user queries and Web Client preferences
Setup guide
The connector requires an SAP Business One installation with the Service Layer component enabled (available for
SAP Business One, version for SAP HANA, and SAP Business One on Microsoft SQL Server 9.3 PL10+). The Service Layer
endpoint is https://<host>:50000/b1s/v1 by default. A Business One user with a license and the relevant object
authorizations is needed; sessions are opened against a specific company database (schema).
Quickstart
To use the sap.businessone.administration connector in your Ballerina application, modify the .bal file as follows:
Step 1: Import the module
import ballerinax/sap.businessone.administration;
Step 2: Instantiate a new connector
The connector authenticates with the Service Layer session protocol: it logs in with the configured company
database, user name, and password, tracks the B1SESSION/ROUTEID cookies, and transparently re-logs in once
when the session expires. Place the credentials in a Config.toml (never commit credentials to source control):
serviceUrl = "https://<host>:50000/b1s/v1" companyDb = "<COMPANY_DB>" username = "<USER>" password = "<PASSWORD>"
configurable string serviceUrl = ?; configurable string companyDb = ?; configurable string username = ?; configurable string password = ?; administration:Client b1Client = check new ( {companyDb, username, password}, serviceUrl = serviceUrl );
Step 3: Invoke the connector operation
administration:Users_CollectionResponse response = check b1Client->usersList();
Step 4: Run the Ballerina application
bal run
Examples
The SAP Business One connectors provide practical examples illustrating usage in various scenarios. Explore these examples, covering use cases like listing open sales orders, reporting inventory stock, and logging CRM activities.
Clients
sap.businessone.administration: Client
OpenAPI 3.0.3 description generated directly from the SAP Business One Service Layer OData V3 $metadata (namespace 'SAPB1')
Authentication is session based: call POST /Login with company/user/password; the Service Layer returns a B1SESSION cookie (and a ROUTEID cookie when load balanced) that must be sent on every subsequent request. Call POST /Logout to end the session
Collection responses use the OData V3 envelope { "odata.metadata": ..., "value": [ ... ], "odata.nextLink": ... }. Use $inlinecount=allpages to obtain the total count and the Prefer: odata.maxpagesize=N header to control server paging
Constructor
Gets invoked to initialize the connector
init (SessionConfig session, ConnectionConfig config, string serviceUrl)- session SessionConfig - SAP Business One Service Layer session credentials
- config ConnectionConfig {} - The configurations to be used when initializing the
connector
- serviceUrl string "https://localhost:50000/b1s/v1" - URL of the target service
listAdditionalExpenses
function listAdditionalExpenses(ListAdditionalExpensesHeaders headers, *ListAdditionalExpensesQueries queries) returns AdditionalExpensesCollectionResponse|errorQuery the AdditionalExpenses collection
Parameters
- headers ListAdditionalExpensesHeaders (default {}) - Headers to be sent with the request
- queries *ListAdditionalExpensesQueries - Queries to be sent with the request
Return Type
- AdditionalExpensesCollectionResponse|error - A page of entities
createAdditionalExpenses
function createAdditionalExpenses(AdditionalExpense payload, map<string|string[]> headers) returns AdditionalExpense|errorCreate a new AdditionalExpense
Parameters
- payload AdditionalExpense - Request payload
Return Type
- AdditionalExpense|error - The created entity
getAdditionalExpenses
function getAdditionalExpenses(Signed32 expensCode, map<string|string[]> headers, *GetAdditionalExpensesQueries queries) returns AdditionalExpense|errorGet a single AdditionalExpense by key
Parameters
- expensCode Signed32 - Key property 'ExpensCode' (Edm.Int32)
- queries *GetAdditionalExpensesQueries - Queries to be sent with the request
Return Type
- AdditionalExpense|error - The requested entity
deleteAdditionalExpenses
Delete a AdditionalExpense
Parameters
- expensCode Signed32 - Key property 'ExpensCode' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateAdditionalExpenses
function updateAdditionalExpenses(Signed32 expensCode, AdditionalExpense payload, map<string|string[]> headers) returns error?Partially update a AdditionalExpense (PATCH/MERGE semantics)
Parameters
- expensCode Signed32 - Key property 'ExpensCode' (Edm.Int32)
- payload AdditionalExpense - Request payload
Return Type
- error? - Updated. No content returned
listAlertManagements
function listAlertManagements(ListAlertManagementsHeaders headers, *ListAlertManagementsQueries queries) returns AlertManagementsCollectionResponse|errorQuery the AlertManagements collection
Parameters
- headers ListAlertManagementsHeaders (default {}) - Headers to be sent with the request
- queries *ListAlertManagementsQueries - Queries to be sent with the request
Return Type
- AlertManagementsCollectionResponse|error - A page of entities
createAlertManagements
function createAlertManagements(AlertManagement payload, map<string|string[]> headers) returns AlertManagement|errorCreate a new AlertManagement
Parameters
- payload AlertManagement - Request payload
Return Type
- AlertManagement|error - The created entity
getAlertManagements
function getAlertManagements(Signed32 code, map<string|string[]> headers, *GetAlertManagementsQueries queries) returns AlertManagement|errorGet a single AlertManagement by key
Parameters
- code Signed32 - Key property 'Code' (Edm.Int32)
- queries *GetAlertManagementsQueries - Queries to be sent with the request
Return Type
- AlertManagement|error - The requested entity
deleteAlertManagements
Delete a AlertManagement
Parameters
- code Signed32 - Key property 'Code' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateAlertManagements
function updateAlertManagements(Signed32 code, AlertManagement payload, map<string|string[]> headers) returns error?Partially update a AlertManagement (PATCH/MERGE semantics)
Return Type
- error? - Updated. No content returned
alertManagementsGetAlertManagementList
function alertManagementsGetAlertManagementList(Signed32 code, map<string|string[]> headers) returns inline_response_200|errorBound action 'GetAlertManagementList' on AlertManagements (binding type AlertManagement)
Parameters
- code Signed32 - Key property 'Code' (Edm.Int32)
Return Type
- inline_response_200|error - Function result
listApprovalRequests
function listApprovalRequests(ListApprovalRequestsHeaders headers, *ListApprovalRequestsQueries queries) returns ApprovalRequestsCollectionResponse|errorQuery the ApprovalRequests collection
Parameters
- headers ListApprovalRequestsHeaders (default {}) - Headers to be sent with the request
- queries *ListApprovalRequestsQueries - Queries to be sent with the request
Return Type
- ApprovalRequestsCollectionResponse|error - A page of entities
createApprovalRequests
function createApprovalRequests(ApprovalRequest payload, map<string|string[]> headers) returns ApprovalRequest|errorCreate a new ApprovalRequest
Parameters
- payload ApprovalRequest - Request payload
Return Type
- ApprovalRequest|error - The created entity
getApprovalRequests
function getApprovalRequests(Signed32 code, map<string|string[]> headers, *GetApprovalRequestsQueries queries) returns ApprovalRequest|errorGet a single ApprovalRequest by key
Parameters
- code Signed32 - Key property 'Code' (Edm.Int32)
- queries *GetApprovalRequestsQueries - Queries to be sent with the request
Return Type
- ApprovalRequest|error - The requested entity
deleteApprovalRequests
Delete a ApprovalRequest
Parameters
- code Signed32 - Key property 'Code' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateApprovalRequests
function updateApprovalRequests(Signed32 code, ApprovalRequest payload, map<string|string[]> headers) returns error?Partially update a ApprovalRequest (PATCH/MERGE semantics)
Return Type
- error? - Updated. No content returned
approvalRequestsCancelApprovalRequest
function approvalRequestsCancelApprovalRequest(Signed32 code, map<string|string[]> headers) returns error?Bound action 'CancelApprovalRequest' on ApprovalRequests (binding type ApprovalRequest)
Parameters
- code Signed32 - Key property 'Code' (Edm.Int32)
Return Type
- error? - Success. No content returned
approvalRequestsRestoreApprovalRequest
function approvalRequestsRestoreApprovalRequest(Signed32 code, map<string|string[]> headers) returns error?Bound action 'RestoreApprovalRequest' on ApprovalRequests (binding type ApprovalRequest)
Parameters
- code Signed32 - Key property 'Code' (Edm.Int32)
Return Type
- error? - Success. No content returned
approvalRequestsServiceGetAllApprovalRequestsList
function approvalRequestsServiceGetAllApprovalRequestsList(map<string|string[]> headers) returns inline_response_200_1|errorGet all approval requests list
Return Type
- inline_response_200_1|error - Function result
approvalRequestsServiceGetApprovalRequestList
function approvalRequestsServiceGetApprovalRequestList(map<string|string[]> headers) returns inline_response_200_2|errorGet approval request list
Return Type
- inline_response_200_2|error - Function result
approvalRequestsServiceGetOpenApprovalRequestList
function approvalRequestsServiceGetOpenApprovalRequestList(map<string|string[]> headers) returns inline_response_200_3|errorGet open approval request list
Return Type
- inline_response_200_3|error - Function result
listApprovalStages
function listApprovalStages(ListApprovalStagesHeaders headers, *ListApprovalStagesQueries queries) returns ApprovalStagesCollectionResponse|errorQuery the ApprovalStages collection
Parameters
- headers ListApprovalStagesHeaders (default {}) - Headers to be sent with the request
- queries *ListApprovalStagesQueries - Queries to be sent with the request
Return Type
- ApprovalStagesCollectionResponse|error - A page of entities
createApprovalStages
function createApprovalStages(ApprovalStage payload, map<string|string[]> headers) returns ApprovalStage|errorCreate a new ApprovalStage
Parameters
- payload ApprovalStage - Request payload
Return Type
- ApprovalStage|error - The created entity
getApprovalStages
function getApprovalStages(Signed32 code, map<string|string[]> headers, *GetApprovalStagesQueries queries) returns ApprovalStage|errorGet a single ApprovalStage by key
Parameters
- code Signed32 - Key property 'Code' (Edm.Int32)
- queries *GetApprovalStagesQueries - Queries to be sent with the request
Return Type
- ApprovalStage|error - The requested entity
deleteApprovalStages
Delete a ApprovalStage
Parameters
- code Signed32 - Key property 'Code' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateApprovalStages
function updateApprovalStages(Signed32 code, ApprovalStage payload, map<string|string[]> headers) returns error?Partially update a ApprovalStage (PATCH/MERGE semantics)
Return Type
- error? - Updated. No content returned
approvalStagesServiceGetApprovalStageList
function approvalStagesServiceGetApprovalStageList(map<string|string[]> headers) returns inline_response_200_4|errorGet approval stage list
Return Type
- inline_response_200_4|error - Function result
listApprovalTemplates
function listApprovalTemplates(ListApprovalTemplatesHeaders headers, *ListApprovalTemplatesQueries queries) returns ApprovalTemplatesCollectionResponse|errorQuery the ApprovalTemplates collection
Parameters
- headers ListApprovalTemplatesHeaders (default {}) - Headers to be sent with the request
- queries *ListApprovalTemplatesQueries - Queries to be sent with the request
Return Type
- ApprovalTemplatesCollectionResponse|error - A page of entities
createApprovalTemplates
function createApprovalTemplates(ApprovalTemplate payload, map<string|string[]> headers) returns ApprovalTemplate|errorCreate a new ApprovalTemplate
Parameters
- payload ApprovalTemplate - Request payload
Return Type
- ApprovalTemplate|error - The created entity
getApprovalTemplates
function getApprovalTemplates(Signed32 code, map<string|string[]> headers, *GetApprovalTemplatesQueries queries) returns ApprovalTemplate|errorGet a single ApprovalTemplate by key
Parameters
- code Signed32 - Key property 'Code' (Edm.Int32)
- queries *GetApprovalTemplatesQueries - Queries to be sent with the request
Return Type
- ApprovalTemplate|error - The requested entity
deleteApprovalTemplates
Delete a ApprovalTemplate
Parameters
- code Signed32 - Key property 'Code' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateApprovalTemplates
function updateApprovalTemplates(Signed32 code, ApprovalTemplate payload, map<string|string[]> headers) returns error?Partially update a ApprovalTemplate (PATCH/MERGE semantics)
Return Type
- error? - Updated. No content returned
approvalTemplatesServiceGetApprovalTemplateList
function approvalTemplatesServiceGetApprovalTemplateList(map<string|string[]> headers) returns inline_response_200_5|errorGet approval template list
Return Type
- inline_response_200_5|error - Function result
listAttachments2
function listAttachments2(ListAttachments2Headers headers, *ListAttachments2Queries queries) returns Attachments2CollectionResponse|errorQuery the Attachments2 collection
Parameters
- headers ListAttachments2Headers (default {}) - Headers to be sent with the request
- queries *ListAttachments2Queries - Queries to be sent with the request
Return Type
- Attachments2CollectionResponse|error - A page of entities
createAttachments2
function createAttachments2(Attachments2 payload, map<string|string[]> headers) returns Attachments2|errorCreate a new Attachments2
Parameters
- payload Attachments2 - Request payload
Return Type
- Attachments2|error - The created entity
getAttachments2
function getAttachments2(Signed32 absoluteEntry, map<string|string[]> headers, *GetAttachments2Queries queries) returns Attachments2|errorGet a single Attachments2 by key
Parameters
- absoluteEntry Signed32 - Key property 'AbsoluteEntry' (Edm.Int32)
- queries *GetAttachments2Queries - Queries to be sent with the request
Return Type
- Attachments2|error - The requested entity
deleteAttachments2
Delete a Attachments2
Parameters
- absoluteEntry Signed32 - Key property 'AbsoluteEntry' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateAttachments2
function updateAttachments2(Signed32 absoluteEntry, Attachments2 payload, map<string|string[]> headers) returns error?Partially update a Attachments2 (PATCH/MERGE semantics)
Parameters
- absoluteEntry Signed32 - Key property 'AbsoluteEntry' (Edm.Int32)
- payload Attachments2 - Request payload
Return Type
- error? - Updated. No content returned
listB1Sessions
function listB1Sessions(ListB1SessionsHeaders headers, *ListB1SessionsQueries queries) returns B1SessionsCollectionResponse|errorQuery the B1Sessions collection
Parameters
- headers ListB1SessionsHeaders (default {}) - Headers to be sent with the request
- queries *ListB1SessionsQueries - Queries to be sent with the request
Return Type
- B1SessionsCollectionResponse|error - A page of entities
createB1Sessions
Create a new B1Session
Parameters
- payload B1Session - Request payload
getB1Sessions
function getB1Sessions(string sessionId, map<string|string[]> headers, *GetB1SessionsQueries queries) returns B1Session|errorGet a single B1Session by key
Parameters
- sessionId string - Key property 'SessionId' (Edm.String)
- queries *GetB1SessionsQueries - Queries to be sent with the request
deleteB1Sessions
Delete a B1Session
Parameters
- sessionId string - Key property 'SessionId' (Edm.String)
Return Type
- error? - Deleted. No content returned
updateB1Sessions
function updateB1Sessions(string sessionId, B1Session payload, map<string|string[]> headers) returns error?Partially update a B1Session (PATCH/MERGE semantics)
Parameters
- sessionId string - Key property 'SessionId' (Edm.String)
- payload B1Session - Request payload
Return Type
- error? - Updated. No content returned
listBranches
function listBranches(ListBranchesHeaders headers, *ListBranchesQueries queries) returns BranchesCollectionResponse|errorQuery the Branches collection
Parameters
- headers ListBranchesHeaders (default {}) - Headers to be sent with the request
- queries *ListBranchesQueries - Queries to be sent with the request
Return Type
- BranchesCollectionResponse|error - A page of entities
createBranches
Create a new Branch
Parameters
- payload Branch - Request payload
getBranches
function getBranches(Signed32 code, map<string|string[]> headers, *GetBranchesQueries queries) returns Branch|errorGet a single Branch by key
Parameters
- code Signed32 - Key property 'Code' (Edm.Int32)
- queries *GetBranchesQueries - Queries to be sent with the request
deleteBranches
Delete a Branch
Parameters
- code Signed32 - Key property 'Code' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateBranches
Partially update a Branch (PATCH/MERGE semantics)
Return Type
- error? - Updated. No content returned
branchesServiceGetBranchList
function branchesServiceGetBranchList(map<string|string[]> headers) returns inline_response_200_6|errorGet branch list
Return Type
- inline_response_200_6|error - Function result
listBusinessPlaces
function listBusinessPlaces(ListBusinessPlacesHeaders headers, *ListBusinessPlacesQueries queries) returns BusinessPlacesCollectionResponse|errorQuery the BusinessPlaces collection
Parameters
- headers ListBusinessPlacesHeaders (default {}) - Headers to be sent with the request
- queries *ListBusinessPlacesQueries - Queries to be sent with the request
Return Type
- BusinessPlacesCollectionResponse|error - A page of entities
createBusinessPlaces
function createBusinessPlaces(BusinessPlace payload, map<string|string[]> headers) returns BusinessPlace|errorCreate a new BusinessPlace
Parameters
- payload BusinessPlace - Request payload
Return Type
- BusinessPlace|error - The created entity
getBusinessPlaces
function getBusinessPlaces(Signed32 bPLID, map<string|string[]> headers, *GetBusinessPlacesQueries queries) returns BusinessPlace|errorGet a single BusinessPlace by key
Parameters
- bPLID Signed32 - Key property 'BPLID' (Edm.Int32)
- queries *GetBusinessPlacesQueries - Queries to be sent with the request
Return Type
- BusinessPlace|error - The requested entity
deleteBusinessPlaces
Delete a BusinessPlace
Parameters
- bPLID Signed32 - Key property 'BPLID' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateBusinessPlaces
function updateBusinessPlaces(Signed32 bPLID, BusinessPlace payload, map<string|string[]> headers) returns error?Partially update a BusinessPlace (PATCH/MERGE semantics)
Return Type
- error? - Updated. No content returned
changeLogsServiceGetChangeLog
function changeLogsServiceGetChangeLog(ChangeLogsService_GetChangeLog_body payload, map<string|string[]> headers) returns inline_response_200_7|errorGet change log
Parameters
- payload ChangeLogsService_GetChangeLog_body - Request payload
Return Type
- inline_response_200_7|error - Function result
changeLogsServiceGetChangeLogDifferences
function changeLogsServiceGetChangeLogDifferences(ChangeLogsService_GetChangeLogDifferences_body payload, map<string|string[]> headers) returns inline_response_200_8|errorGet change log differences
Parameters
- payload ChangeLogsService_GetChangeLogDifferences_body - Request payload
Return Type
- inline_response_200_8|error - Function result
listChooseFromList
function listChooseFromList(ListChooseFromListHeaders headers, *ListChooseFromListQueries queries) returns ChooseFromListCollectionResponse|errorQuery the ChooseFromList collection
Parameters
- headers ListChooseFromListHeaders (default {}) - Headers to be sent with the request
- queries *ListChooseFromListQueries - Queries to be sent with the request
Return Type
- ChooseFromListCollectionResponse|error - A page of entities
createChooseFromList
function createChooseFromList(ChooseFromList payload, map<string|string[]> headers) returns ChooseFromList|errorCreate a new ChooseFromList
Parameters
- payload ChooseFromList - Request payload
Return Type
- ChooseFromList|error - The created entity
getChooseFromList
function getChooseFromList(string objectName, map<string|string[]> headers, *GetChooseFromListQueries queries) returns ChooseFromList|errorGet a single ChooseFromList by key
Parameters
- objectName string - Key property 'ObjectName' (Edm.String)
- queries *GetChooseFromListQueries - Queries to be sent with the request
Return Type
- ChooseFromList|error - The requested entity
deleteChooseFromList
Delete a ChooseFromList
Parameters
- objectName string - Key property 'ObjectName' (Edm.String)
Return Type
- error? - Deleted. No content returned
updateChooseFromList
function updateChooseFromList(string objectName, ChooseFromList payload, map<string|string[]> headers) returns error?Partially update a ChooseFromList (PATCH/MERGE semantics)
Parameters
- objectName string - Key property 'ObjectName' (Edm.String)
- payload ChooseFromList - Request payload
Return Type
- error? - Updated. No content returned
listCockpits
function listCockpits(ListCockpitsHeaders headers, *ListCockpitsQueries queries) returns CockpitsCollectionResponse|errorQuery the Cockpits collection
Parameters
- headers ListCockpitsHeaders (default {}) - Headers to be sent with the request
- queries *ListCockpitsQueries - Queries to be sent with the request
Return Type
- CockpitsCollectionResponse|error - A page of entities
createCockpits
Create a new Cockpit
Parameters
- payload Cockpit - Request payload
getCockpits
function getCockpits(Signed32 absEntry, map<string|string[]> headers, *GetCockpitsQueries queries) returns Cockpit|errorGet a single Cockpit by key
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
- queries *GetCockpitsQueries - Queries to be sent with the request
deleteCockpits
Delete a Cockpit
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateCockpits
function updateCockpits(Signed32 absEntry, Cockpit payload, map<string|string[]> headers) returns error?Partially update a Cockpit (PATCH/MERGE semantics)
Return Type
- error? - Updated. No content returned
cockpitsServiceGetCockpitList
function cockpitsServiceGetCockpitList(map<string|string[]> headers) returns inline_response_200_9|errorGet cockpit list
Return Type
- inline_response_200_9|error - Function result
cockpitsServiceGetTemplateCockpitList
function cockpitsServiceGetTemplateCockpitList(map<string|string[]> headers) returns inline_response_200_10|errorGet template cockpit list
Return Type
- inline_response_200_10|error - Function result
cockpitsServiceGetUserCockpitList
function cockpitsServiceGetUserCockpitList(map<string|string[]> headers) returns inline_response_200_11|errorGet user cockpit list
Return Type
- inline_response_200_11|error - Function result
cockpitsServicePublishCockpit
function cockpitsServicePublishCockpit(CockpitsService_PublishCockpit_body payload, map<string|string[]> headers) returns error?Publish cockpit
Parameters
- payload CockpitsService_PublishCockpit_body - Request payload
Return Type
- error? - Success. No content returned
companyServiceCreatePeriod
function companyServiceCreatePeriod(CompanyService_CreatePeriod_body payload, map<string|string[]> headers) returns PeriodCategoryParams|errorCreate period
Parameters
- payload CompanyService_CreatePeriod_body - Request payload
Return Type
- PeriodCategoryParams|error - Function result
companyServiceCreatePeriodWithFinanceParams
function companyServiceCreatePeriodWithFinanceParams(CompanyService_CreatePeriodWithFinanceParams_body payload, map<string|string[]> headers) returns PeriodCategoryParams|errorCreate period with finance params
Parameters
- payload CompanyService_CreatePeriodWithFinanceParams_body - Request payload
Return Type
- PeriodCategoryParams|error - Function result
companyServiceGetAdminInfo
Get admin info
companyServiceGetAdvancedGLAccount
function companyServiceGetAdvancedGLAccount(CompanyService_GetAdvancedGLAccount_body payload, map<string|string[]> headers) returns AdvancedGLAccountReturnParams|errorGet advanced GL account
Parameters
- payload CompanyService_GetAdvancedGLAccount_body - Request payload
Return Type
- AdvancedGLAccountReturnParams|error - Function result
companyServiceGetCompanyInfo
function companyServiceGetCompanyInfo(map<string|string[]> headers) returns CompanyInfo|errorGet company info
Return Type
- CompanyInfo|error - Function result
companyServiceGetCurrentServerTime
function companyServiceGetCurrentServerTime(map<string|string[]> headers) returns CurrentServerTime|errorGet current server time
Return Type
- CurrentServerTime|error - Function result
companyServiceGetFeaturesStatus
function companyServiceGetFeaturesStatus(map<string|string[]> headers) returns inline_response_200_12|errorGet features status
Return Type
- inline_response_200_12|error - Function result
companyServiceGetFinancePeriod
function companyServiceGetFinancePeriod(CompanyService_GetFinancePeriod_body payload, map<string|string[]> headers) returns FinancePeriod|errorGet finance period
Parameters
- payload CompanyService_GetFinancePeriod_body - Request payload
Return Type
- FinancePeriod|error - Function result
companyServiceGetFinancePeriods
function companyServiceGetFinancePeriods(CompanyService_GetFinancePeriods_body payload, map<string|string[]> headers) returns inline_response_200_13|errorGet finance periods
Parameters
- payload CompanyService_GetFinancePeriods_body - Request payload
Return Type
- inline_response_200_13|error - Function result
companyServiceGetItemPrice
function companyServiceGetItemPrice(CompanyService_GetItemPrice_body payload, map<string|string[]> headers) returns ItemPriceReturnParams|errorGet item price
Parameters
- payload CompanyService_GetItemPrice_body - Request payload
Return Type
- ItemPriceReturnParams|error - Function result
companyServiceGetPathAdmin
Get path admin
companyServiceGetPeriod
function companyServiceGetPeriod(CompanyService_GetPeriod_body payload, map<string|string[]> headers) returns PeriodCategory|errorGet period
Parameters
- payload CompanyService_GetPeriod_body - Request payload
Return Type
- PeriodCategory|error - Function result
companyServiceGetPeriods
function companyServiceGetPeriods(map<string|string[]> headers) returns inline_response_200_14|errorGet periods
Return Type
- inline_response_200_14|error - Function result
companyServiceLogLoginAction
function companyServiceLogLoginAction(CompanyService_LogLoginAction_body payload, map<string|string[]> headers) returns SupportUserLoginRecord|errorLog login action
Parameters
- payload CompanyService_LogLoginAction_body - Request payload
Return Type
- SupportUserLoginRecord|error - Function result
companyServiceLogLogoffAction
function companyServiceLogLogoffAction(CompanyService_LogLogoffAction_body payload, map<string|string[]> headers) returns error?Log logoff action
Parameters
- payload CompanyService_LogLogoffAction_body - Request payload
Return Type
- error? - Success. No content returned
companyServiceRefreshPathsinDocuments
function companyServiceRefreshPathsinDocuments(map<string|string[]> headers) returns RefreshPathsDocuments|errorRefresh pathsin documents
Return Type
- RefreshPathsDocuments|error - Function result
companyServiceRemoveFinancePeriod
function companyServiceRemoveFinancePeriod(CompanyService_RemoveFinancePeriod_body payload, map<string|string[]> headers) returns error?Remove finance period
Parameters
- payload CompanyService_RemoveFinancePeriod_body - Request payload
Return Type
- error? - Success. No content returned
companyServiceRoundDecimal
function companyServiceRoundDecimal(CompanyService_RoundDecimal_body payload, map<string|string[]> headers) returns RoundedData|errorRound decimal
Parameters
- payload CompanyService_RoundDecimal_body - Request payload
Return Type
- RoundedData|error - Function result
companyServiceUpdateAdminInfo
function companyServiceUpdateAdminInfo(CompanyService_UpdateAdminInfo_body payload, map<string|string[]> headers) returns error?Update admin info
Parameters
- payload CompanyService_UpdateAdminInfo_body - Request payload
Return Type
- error? - Success. No content returned
companyServiceUpdateCompanyInfo
function companyServiceUpdateCompanyInfo(CompanyService_UpdateCompanyInfo_body payload, map<string|string[]> headers) returns error?Update company info
Parameters
- payload CompanyService_UpdateCompanyInfo_body - Request payload
Return Type
- error? - Success. No content returned
companyServiceUpdateFinancePeriod
function companyServiceUpdateFinancePeriod(CompanyService_UpdateFinancePeriod_body payload, map<string|string[]> headers) returns error?Update finance period
Parameters
- payload CompanyService_UpdateFinancePeriod_body - Request payload
Return Type
- error? - Success. No content returned
companyServiceUpdatePathAdmin
function companyServiceUpdatePathAdmin(CompanyService_UpdatePathAdmin_body payload, map<string|string[]> headers) returns error?Update path admin
Parameters
- payload CompanyService_UpdatePathAdmin_body - Request payload
Return Type
- error? - Success. No content returned
companyServiceUpdatePeriod
function companyServiceUpdatePeriod(CompanyService_UpdatePeriod_body payload, map<string|string[]> headers) returns error?Update period
Parameters
- payload CompanyService_UpdatePeriod_body - Request payload
Return Type
- error? - Success. No content returned
listCounties
function listCounties(ListCountiesHeaders headers, *ListCountiesQueries queries) returns CountiesCollectionResponse|errorQuery the Counties collection
Parameters
- headers ListCountiesHeaders (default {}) - Headers to be sent with the request
- queries *ListCountiesQueries - Queries to be sent with the request
Return Type
- CountiesCollectionResponse|error - A page of entities
createCounties
Create a new County
Parameters
- payload County - Request payload
getCounties
function getCounties(Signed32 absId, map<string|string[]> headers, *GetCountiesQueries queries) returns County|errorGet a single County by key
Parameters
- absId Signed32 - Key property 'AbsId' (Edm.Int32)
- queries *GetCountiesQueries - Queries to be sent with the request
deleteCounties
Delete a County
Parameters
- absId Signed32 - Key property 'AbsId' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateCounties
function updateCounties(Signed32 absId, County payload, map<string|string[]> headers) returns error?Partially update a County (PATCH/MERGE semantics)
Return Type
- error? - Updated. No content returned
countiesServiceGetCountyList
function countiesServiceGetCountyList(map<string|string[]> headers) returns inline_response_200_15|errorGet county list
Return Type
- inline_response_200_15|error - Function result
listCountries
function listCountries(ListCountriesHeaders headers, *ListCountriesQueries queries) returns CountriesCollectionResponse|errorQuery the Countries collection
Parameters
- headers ListCountriesHeaders (default {}) - Headers to be sent with the request
- queries *ListCountriesQueries - Queries to be sent with the request
Return Type
- CountriesCollectionResponse|error - A page of entities
createCountries
Create a new Country
Parameters
- payload Country - Request payload
getCountries
function getCountries(string code, map<string|string[]> headers, *GetCountriesQueries queries) returns Country|errorGet a single Country by key
Parameters
- code string - Key property 'Code' (Edm.String)
- queries *GetCountriesQueries - Queries to be sent with the request
deleteCountries
Delete a Country
Parameters
- code string - Key property 'Code' (Edm.String)
Return Type
- error? - Deleted. No content returned
updateCountries
Partially update a Country (PATCH/MERGE semantics)
Return Type
- error? - Updated. No content returned
countriesServiceGetCountryList
function countriesServiceGetCountryList(map<string|string[]> headers) returns inline_response_200_16|errorGet country list
Return Type
- inline_response_200_16|error - Function result
dashboardPackagesServiceImportDashboardPackage
function dashboardPackagesServiceImportDashboardPackage(DashboardPackagesService_ImportDashboardPackage_body payload, map<string|string[]> headers) returns DashboardPackageParams|errorImport dashboard package
Parameters
- payload DashboardPackagesService_ImportDashboardPackage_body - Request payload
Return Type
- DashboardPackageParams|error - Function result
listDepartments
function listDepartments(ListDepartmentsHeaders headers, *ListDepartmentsQueries queries) returns DepartmentsCollectionResponse|errorQuery the Departments collection
Parameters
- headers ListDepartmentsHeaders (default {}) - Headers to be sent with the request
- queries *ListDepartmentsQueries - Queries to be sent with the request
Return Type
- DepartmentsCollectionResponse|error - A page of entities
createDepartments
function createDepartments(Department payload, map<string|string[]> headers) returns Department|errorCreate a new Department
Parameters
- payload Department - Request payload
Return Type
- Department|error - The created entity
getDepartments
function getDepartments(Signed32 code, map<string|string[]> headers, *GetDepartmentsQueries queries) returns Department|errorGet a single Department by key
Parameters
- code Signed32 - Key property 'Code' (Edm.Int32)
- queries *GetDepartmentsQueries - Queries to be sent with the request
Return Type
- Department|error - The requested entity
deleteDepartments
Delete a Department
Parameters
- code Signed32 - Key property 'Code' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateDepartments
function updateDepartments(Signed32 code, Department payload, map<string|string[]> headers) returns error?Partially update a Department (PATCH/MERGE semantics)
Return Type
- error? - Updated. No content returned
departmentsServiceGetDepartmentList
function departmentsServiceGetDepartmentList(map<string|string[]> headers) returns inline_response_200_17|errorGet department list
Return Type
- inline_response_200_17|error - Function result
listDistributionLists
function listDistributionLists(ListDistributionListsHeaders headers, *ListDistributionListsQueries queries) returns DistributionListsCollectionResponse|errorQuery the DistributionLists collection
Parameters
- headers ListDistributionListsHeaders (default {}) - Headers to be sent with the request
- queries *ListDistributionListsQueries - Queries to be sent with the request
Return Type
- DistributionListsCollectionResponse|error - A page of entities
createDistributionLists
function createDistributionLists(DistributionList payload, map<string|string[]> headers) returns DistributionList|errorCreate a new DistributionList
Parameters
- payload DistributionList - Request payload
Return Type
- DistributionList|error - The created entity
getDistributionLists
function getDistributionLists(Signed32 code, map<string|string[]> headers, *GetDistributionListsQueries queries) returns DistributionList|errorGet a single DistributionList by key
Parameters
- code Signed32 - Key property 'Code' (Edm.Int32)
- queries *GetDistributionListsQueries - Queries to be sent with the request
Return Type
- DistributionList|error - The requested entity
deleteDistributionLists
Delete a DistributionList
Parameters
- code Signed32 - Key property 'Code' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateDistributionLists
function updateDistributionLists(Signed32 code, DistributionList payload, map<string|string[]> headers) returns error?Partially update a DistributionList (PATCH/MERGE semantics)
Return Type
- error? - Updated. No content returned
distributionListsCancel
Bound action 'Cancel' on DistributionLists (binding type DistributionList)
Parameters
- code Signed32 - Key property 'Code' (Edm.Int32)
Return Type
- error? - Success. No content returned
distributionListsClose
Bound action 'Close' on DistributionLists (binding type DistributionList)
Parameters
- code Signed32 - Key property 'Code' (Edm.Int32)
Return Type
- error? - Success. No content returned
distributionListsReopen
Bound action 'Reopen' on DistributionLists (binding type DistributionList)
Parameters
- code Signed32 - Key property 'Code' (Edm.Int32)
Return Type
- error? - Success. No content returned
distributionListsServiceGetList
function distributionListsServiceGetList(map<string|string[]> headers) returns inline_response_200_18|errorGet list
Return Type
- inline_response_200_18|error - Function result
listDynamicSystemStrings
function listDynamicSystemStrings(ListDynamicSystemStringsHeaders headers, *ListDynamicSystemStringsQueries queries) returns DynamicSystemStringsCollectionResponse|errorQuery the DynamicSystemStrings collection
Parameters
- headers ListDynamicSystemStringsHeaders (default {}) - Headers to be sent with the request
- queries *ListDynamicSystemStringsQueries - Queries to be sent with the request
Return Type
- DynamicSystemStringsCollectionResponse|error - A page of entities
createDynamicSystemStrings
function createDynamicSystemStrings(DynamicSystemString payload, map<string|string[]> headers) returns DynamicSystemString|errorCreate a new DynamicSystemString
Parameters
- payload DynamicSystemString - Request payload
Return Type
- DynamicSystemString|error - The created entity
getDynamicSystemStrings
function getDynamicSystemStrings(string formID, string itemID, string columnID, map<string|string[]> headers, *GetDynamicSystemStringsQueries queries) returns DynamicSystemString|errorGet a single DynamicSystemString by key
Parameters
- formID string - Composite key part 'FormID' (Edm.String)
- itemID string - Composite key part 'ItemID' (Edm.String)
- columnID string - Composite key part 'ColumnID' (Edm.String)
- queries *GetDynamicSystemStringsQueries - Queries to be sent with the request
Return Type
- DynamicSystemString|error - The requested entity
deleteDynamicSystemStrings
function deleteDynamicSystemStrings(string formID, string itemID, string columnID, map<string|string[]> headers) returns error?Delete a DynamicSystemString
Parameters
- formID string - Composite key part 'FormID' (Edm.String)
- itemID string - Composite key part 'ItemID' (Edm.String)
- columnID string - Composite key part 'ColumnID' (Edm.String)
Return Type
- error? - Deleted. No content returned
updateDynamicSystemStrings
function updateDynamicSystemStrings(string formID, string itemID, string columnID, DynamicSystemString payload, map<string|string[]> headers) returns error?Partially update a DynamicSystemString (PATCH/MERGE semantics)
Parameters
- formID string - Composite key part 'FormID' (Edm.String)
- itemID string - Composite key part 'ItemID' (Edm.String)
- columnID string - Composite key part 'ColumnID' (Edm.String)
- payload DynamicSystemString - Request payload
Return Type
- error? - Updated. No content returned
listEmailGroups
function listEmailGroups(ListEmailGroupsHeaders headers, *ListEmailGroupsQueries queries) returns EmailGroupsCollectionResponse|errorQuery the EmailGroups collection
Parameters
- headers ListEmailGroupsHeaders (default {}) - Headers to be sent with the request
- queries *ListEmailGroupsQueries - Queries to be sent with the request
Return Type
- EmailGroupsCollectionResponse|error - A page of entities
createEmailGroups
function createEmailGroups(EmailGroup payload, map<string|string[]> headers) returns EmailGroup|errorCreate a new EmailGroup
Parameters
- payload EmailGroup - Request payload
Return Type
- EmailGroup|error - The created entity
getEmailGroups
function getEmailGroups(string emailGroupCode, map<string|string[]> headers, *GetEmailGroupsQueries queries) returns EmailGroup|errorGet a single EmailGroup by key
Parameters
- emailGroupCode string - Key property 'EmailGroupCode' (Edm.String)
- queries *GetEmailGroupsQueries - Queries to be sent with the request
Return Type
- EmailGroup|error - The requested entity
deleteEmailGroups
Delete a EmailGroup
Parameters
- emailGroupCode string - Key property 'EmailGroupCode' (Edm.String)
Return Type
- error? - Deleted. No content returned
updateEmailGroups
function updateEmailGroups(string emailGroupCode, EmailGroup payload, map<string|string[]> headers) returns error?Partially update a EmailGroup (PATCH/MERGE semantics)
Parameters
- emailGroupCode string - Key property 'EmailGroupCode' (Edm.String)
- payload EmailGroup - Request payload
Return Type
- error? - Updated. No content returned
emailGroupsServiceGetList
function emailGroupsServiceGetList(map<string|string[]> headers) returns inline_response_200_19|errorGet list
Return Type
- inline_response_200_19|error - Function result
listEventNotifications
function listEventNotifications(ListEventNotificationsHeaders headers, *ListEventNotificationsQueries queries) returns EventNotificationsCollectionResponse|errorQuery the EventNotifications collection
Parameters
- headers ListEventNotificationsHeaders (default {}) - Headers to be sent with the request
- queries *ListEventNotificationsQueries - Queries to be sent with the request
Return Type
- EventNotificationsCollectionResponse|error - A page of entities
createEventNotifications
function createEventNotifications(EventNotification payload, map<string|string[]> headers) returns EventNotification|errorCreate a new EventNotification
Parameters
- payload EventNotification - Request payload
Return Type
- EventNotification|error - The created entity
getEventNotifications
function getEventNotifications(string eventID, map<string|string[]> headers, *GetEventNotificationsQueries queries) returns EventNotification|errorGet a single EventNotification by key
Parameters
- eventID string - Key property 'EventID' (Edm.String)
- queries *GetEventNotificationsQueries - Queries to be sent with the request
Return Type
- EventNotification|error - The requested entity
deleteEventNotifications
Delete a EventNotification
Parameters
- eventID string - Key property 'EventID' (Edm.String)
Return Type
- error? - Deleted. No content returned
updateEventNotifications
function updateEventNotifications(string eventID, EventNotification payload, map<string|string[]> headers) returns error?Partially update a EventNotification (PATCH/MERGE semantics)
Parameters
- eventID string - Key property 'EventID' (Edm.String)
- payload EventNotification - Request payload
Return Type
- error? - Updated. No content returned
listEventSubscriptions
function listEventSubscriptions(ListEventSubscriptionsHeaders headers, *ListEventSubscriptionsQueries queries) returns EventSubscriptionsCollectionResponse|errorQuery the EventSubscriptions collection
Parameters
- headers ListEventSubscriptionsHeaders (default {}) - Headers to be sent with the request
- queries *ListEventSubscriptionsQueries - Queries to be sent with the request
Return Type
- EventSubscriptionsCollectionResponse|error - A page of entities
createEventSubscriptions
function createEventSubscriptions(EventSubscription payload, map<string|string[]> headers) returns EventSubscription|errorCreate a new EventSubscription
Parameters
- payload EventSubscription - Request payload
Return Type
- EventSubscription|error - The created entity
getEventSubscriptions
function getEventSubscriptions(string webhookID, map<string|string[]> headers, *GetEventSubscriptionsQueries queries) returns EventSubscription|errorGet a single EventSubscription by key
Parameters
- webhookID string - Key property 'WebhookID' (Edm.String)
- queries *GetEventSubscriptionsQueries - Queries to be sent with the request
Return Type
- EventSubscription|error - The requested entity
deleteEventSubscriptions
Delete a EventSubscription
Parameters
- webhookID string - Key property 'WebhookID' (Edm.String)
Return Type
- error? - Deleted. No content returned
updateEventSubscriptions
function updateEventSubscriptions(string webhookID, EventSubscription payload, map<string|string[]> headers) returns error?Partially update a EventSubscription (PATCH/MERGE semantics)
Parameters
- webhookID string - Key property 'WebhookID' (Edm.String)
- payload EventSubscription - Request payload
Return Type
- error? - Updated. No content returned
eventSubscriptionsHandshake
Bound action 'Handshake' on EventSubscriptions (binding type EventSubscription)
Parameters
- webhookID string - Key property 'WebhookID' (Edm.String)
Return Type
- error? - Success. No content returned
eventSubscriptionsPause
Bound action 'Pause' on EventSubscriptions (binding type EventSubscription)
Parameters
- webhookID string - Key property 'WebhookID' (Edm.String)
Return Type
- error? - Success. No content returned
eventSubscriptionsReplay
Bound action 'Replay' on EventSubscriptions (binding type EventSubscription)
Parameters
- webhookID string - Key property 'WebhookID' (Edm.String)
Return Type
- error? - Success. No content returned
eventSubscriptionsResume
Bound action 'Resume' on EventSubscriptions (binding type EventSubscription)
Parameters
- webhookID string - Key property 'WebhookID' (Edm.String)
Return Type
- error? - Success. No content returned
eventSubscriptionsServiceGetEventCatalog
function eventSubscriptionsServiceGetEventCatalog(map<string|string[]> headers) returns EventCatagory|errorGet event catalog
Return Type
- EventCatagory|error - Function result
exceptionalEventServiceGetExceptionalEventList
function exceptionalEventServiceGetExceptionalEventList(map<string|string[]> headers) returns inline_response_200_20|errorGet exceptional event list
Return Type
- inline_response_200_20|error - Function result
listExceptionalEvents
function listExceptionalEvents(ListExceptionalEventsHeaders headers, *ListExceptionalEventsQueries queries) returns ExceptionalEventsCollectionResponse|errorQuery the ExceptionalEvents collection
Parameters
- headers ListExceptionalEventsHeaders (default {}) - Headers to be sent with the request
- queries *ListExceptionalEventsQueries - Queries to be sent with the request
Return Type
- ExceptionalEventsCollectionResponse|error - A page of entities
createExceptionalEvents
function createExceptionalEvents(ExceptionalEvent payload, map<string|string[]> headers) returns ExceptionalEvent|errorCreate a new ExceptionalEvent
Parameters
- payload ExceptionalEvent - Request payload
Return Type
- ExceptionalEvent|error - The created entity
getExceptionalEvents
function getExceptionalEvents(string code, map<string|string[]> headers, *GetExceptionalEventsQueries queries) returns ExceptionalEvent|errorGet a single ExceptionalEvent by key
Parameters
- code string - Key property 'Code' (Edm.String)
- queries *GetExceptionalEventsQueries - Queries to be sent with the request
Return Type
- ExceptionalEvent|error - The requested entity
deleteExceptionalEvents
Delete a ExceptionalEvent
Parameters
- code string - Key property 'Code' (Edm.String)
Return Type
- error? - Deleted. No content returned
updateExceptionalEvents
function updateExceptionalEvents(string code, ExceptionalEvent payload, map<string|string[]> headers) returns error?Partially update a ExceptionalEvent (PATCH/MERGE semantics)
Return Type
- error? - Updated. No content returned
listExtendedTranslations
function listExtendedTranslations(ListExtendedTranslationsHeaders headers, *ListExtendedTranslationsQueries queries) returns ExtendedTranslationsCollectionResponse|errorQuery the ExtendedTranslations collection
Parameters
- headers ListExtendedTranslationsHeaders (default {}) - Headers to be sent with the request
- queries *ListExtendedTranslationsQueries - Queries to be sent with the request
Return Type
- ExtendedTranslationsCollectionResponse|error - A page of entities
createExtendedTranslations
function createExtendedTranslations(ExtendedTranslation payload, map<string|string[]> headers) returns ExtendedTranslation|errorCreate a new ExtendedTranslation
Parameters
- payload ExtendedTranslation - Request payload
Return Type
- ExtendedTranslation|error - The created entity
getExtendedTranslations
function getExtendedTranslations(Signed32 docEntry, map<string|string[]> headers, *GetExtendedTranslationsQueries queries) returns ExtendedTranslation|errorGet a single ExtendedTranslation by key
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
- queries *GetExtendedTranslationsQueries - Queries to be sent with the request
Return Type
- ExtendedTranslation|error - The requested entity
deleteExtendedTranslations
Delete a ExtendedTranslation
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateExtendedTranslations
function updateExtendedTranslations(Signed32 docEntry, ExtendedTranslation payload, map<string|string[]> headers) returns error?Partially update a ExtendedTranslation (PATCH/MERGE semantics)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
- payload ExtendedTranslation - Request payload
Return Type
- error? - Updated. No content returned
extendedTranslationsServiceGetExtendedTranslationList
function extendedTranslationsServiceGetExtendedTranslationList(map<string|string[]> headers) returns inline_response_200_21|errorGet extended translation list
Return Type
- inline_response_200_21|error - Function result
externalCallsServiceGetCall
function externalCallsServiceGetCall(ExternalCallsService_GetCall_body payload, map<string|string[]> headers) returns ExternalCall|errorGet call
Parameters
- payload ExternalCallsService_GetCall_body - Request payload
Return Type
- ExternalCall|error - Function result
externalCallsServiceSendCall
function externalCallsServiceSendCall(ExternalCallsService_SendCall_body payload, map<string|string[]> headers) returns ExternalCallParams|errorSend call
Parameters
- payload ExternalCallsService_SendCall_body - Request payload
Return Type
- ExternalCallParams|error - Function result
externalCallsServiceUpdateCall
function externalCallsServiceUpdateCall(ExternalCallsService_UpdateCall_body payload, map<string|string[]> headers) returns error?Update call
Parameters
- payload ExternalCallsService_UpdateCall_body - Request payload
Return Type
- error? - Success. No content returned
listFormPreferences
function listFormPreferences(ListFormPreferencesHeaders headers, *ListFormPreferencesQueries queries) returns FormPreferencesCollectionResponse|errorQuery the FormPreferences collection
Parameters
- headers ListFormPreferencesHeaders (default {}) - Headers to be sent with the request
- queries *ListFormPreferencesQueries - Queries to be sent with the request
Return Type
- FormPreferencesCollectionResponse|error - A page of entities
createFormPreferences
function createFormPreferences(ColumnPreferences payload, map<string|string[]> headers) returns ColumnPreferences|errorCreate a new ColumnPreferences
Parameters
- payload ColumnPreferences - Request payload
Return Type
- ColumnPreferences|error - The created entity
getFormPreferences
function getFormPreferences(Signed32 user, string formID, string itemNumber, string column, map<string|string[]> headers, *GetFormPreferencesQueries queries) returns ColumnPreferences|errorGet a single ColumnPreferences by key
Parameters
- user Signed32 - Composite key part 'User' (Edm.Int32)
- formID string - Composite key part 'FormID' (Edm.String)
- itemNumber string - Composite key part 'ItemNumber' (Edm.String)
- column string - Composite key part 'Column' (Edm.String)
- queries *GetFormPreferencesQueries - Queries to be sent with the request
Return Type
- ColumnPreferences|error - The requested entity
deleteFormPreferences
function deleteFormPreferences(Signed32 user, string formID, string itemNumber, string column, map<string|string[]> headers) returns error?Delete a ColumnPreferences
Parameters
- user Signed32 - Composite key part 'User' (Edm.Int32)
- formID string - Composite key part 'FormID' (Edm.String)
- itemNumber string - Composite key part 'ItemNumber' (Edm.String)
- column string - Composite key part 'Column' (Edm.String)
Return Type
- error? - Deleted. No content returned
updateFormPreferences
function updateFormPreferences(Signed32 user, string formID, string itemNumber, string column, ColumnPreferences payload, map<string|string[]> headers) returns error?Partially update a ColumnPreferences (PATCH/MERGE semantics)
Parameters
- user Signed32 - Composite key part 'User' (Edm.Int32)
- formID string - Composite key part 'FormID' (Edm.String)
- itemNumber string - Composite key part 'ItemNumber' (Edm.String)
- column string - Composite key part 'Column' (Edm.String)
- payload ColumnPreferences - Request payload
Return Type
- error? - Updated. No content returned
listFormattedSearches
function listFormattedSearches(ListFormattedSearchesHeaders headers, *ListFormattedSearchesQueries queries) returns FormattedSearchesCollectionResponse|errorQuery the FormattedSearches collection
Parameters
- headers ListFormattedSearchesHeaders (default {}) - Headers to be sent with the request
- queries *ListFormattedSearchesQueries - Queries to be sent with the request
Return Type
- FormattedSearchesCollectionResponse|error - A page of entities
createFormattedSearches
function createFormattedSearches(FormattedSearch payload, map<string|string[]> headers) returns FormattedSearch|errorCreate a new FormattedSearch
Parameters
- payload FormattedSearch - Request payload
Return Type
- FormattedSearch|error - The created entity
getFormattedSearches
function getFormattedSearches(Signed32 index, map<string|string[]> headers, *GetFormattedSearchesQueries queries) returns FormattedSearch|errorGet a single FormattedSearch by key
Parameters
- index Signed32 - Key property 'Index' (Edm.Int32)
- queries *GetFormattedSearchesQueries - Queries to be sent with the request
Return Type
- FormattedSearch|error - The requested entity
deleteFormattedSearches
Delete a FormattedSearch
Parameters
- index Signed32 - Key property 'Index' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateFormattedSearches
function updateFormattedSearches(Signed32 index, FormattedSearch payload, map<string|string[]> headers) returns error?Partially update a FormattedSearch (PATCH/MERGE semantics)
Parameters
- index Signed32 - Key property 'Index' (Edm.Int32)
- payload FormattedSearch - Request payload
Return Type
- error? - Updated. No content returned
holidayServiceGetHolidayList
function holidayServiceGetHolidayList(map<string|string[]> headers) returns inline_response_200_22|errorGet holiday list
Return Type
- inline_response_200_22|error - Function result
listHolidays
function listHolidays(ListHolidaysHeaders headers, *ListHolidaysQueries queries) returns HolidaysCollectionResponse|errorQuery the Holidays collection
Parameters
- headers ListHolidaysHeaders (default {}) - Headers to be sent with the request
- queries *ListHolidaysQueries - Queries to be sent with the request
Return Type
- HolidaysCollectionResponse|error - A page of entities
createHolidays
Create a new Holiday
Parameters
- payload Holiday - Request payload
getHolidays
function getHolidays(string holidayCode, map<string|string[]> headers, *GetHolidaysQueries queries) returns Holiday|errorGet a single Holiday by key
Parameters
- holidayCode string - Key property 'HolidayCode' (Edm.String)
- queries *GetHolidaysQueries - Queries to be sent with the request
deleteHolidays
Delete a Holiday
Parameters
- holidayCode string - Key property 'HolidayCode' (Edm.String)
Return Type
- error? - Deleted. No content returned
updateHolidays
function updateHolidays(string holidayCode, Holiday payload, map<string|string[]> headers) returns error?Partially update a Holiday (PATCH/MERGE semantics)
Parameters
- holidayCode string - Key property 'HolidayCode' (Edm.String)
- payload Holiday - Request payload
Return Type
- error? - Updated. No content returned
listIntegrationPackagesConfigure
function listIntegrationPackagesConfigure(ListIntegrationPackagesConfigureHeaders headers, *ListIntegrationPackagesConfigureQueries queries) returns IntegrationPackagesConfigureCollectionResponse|errorQuery the IntegrationPackagesConfigure collection
Parameters
- headers ListIntegrationPackagesConfigureHeaders (default {}) - Headers to be sent with the request
- queries *ListIntegrationPackagesConfigureQueries - Queries to be sent with the request
Return Type
- IntegrationPackagesConfigureCollectionResponse|error - A page of entities
createIntegrationPackagesConfigure
function createIntegrationPackagesConfigure(IntegrationPackageConfigure payload, map<string|string[]> headers) returns IntegrationPackageConfigure|errorCreate a new IntegrationPackageConfigure
Parameters
- payload IntegrationPackageConfigure - Request payload
Return Type
- IntegrationPackageConfigure|error - The created entity
getIntegrationPackagesConfigure
function getIntegrationPackagesConfigure(Signed32 absEntry, map<string|string[]> headers, *GetIntegrationPackagesConfigureQueries queries) returns IntegrationPackageConfigure|errorGet a single IntegrationPackageConfigure by key
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
- queries *GetIntegrationPackagesConfigureQueries - Queries to be sent with the request
Return Type
- IntegrationPackageConfigure|error - The requested entity
deleteIntegrationPackagesConfigure
function deleteIntegrationPackagesConfigure(Signed32 absEntry, map<string|string[]> headers) returns error?Delete a IntegrationPackageConfigure
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateIntegrationPackagesConfigure
function updateIntegrationPackagesConfigure(Signed32 absEntry, IntegrationPackageConfigure payload, map<string|string[]> headers) returns error?Partially update a IntegrationPackageConfigure (PATCH/MERGE semantics)
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
- payload IntegrationPackageConfigure - Request payload
Return Type
- error? - Updated. No content returned
integrationPackagesConfigureServiceGetList
function integrationPackagesConfigureServiceGetList(map<string|string[]> headers) returns inline_response_200_23|errorGet list
Return Type
- inline_response_200_23|error - Function result
listKPIs
function listKPIs(ListKPIsHeaders headers, *ListKPIsQueries queries) returns KPIsCollectionResponse|errorQuery the KPIs collection
Parameters
- headers ListKPIsHeaders (default {}) - Headers to be sent with the request
- queries *ListKPIsQueries - Queries to be sent with the request
Return Type
- KPIsCollectionResponse|error - A page of entities
createKPIs
Create a new KPI
Parameters
- payload KPI - Request payload
getKPIs
function getKPIs(string kPICode, map<string|string[]> headers, *GetKPIsQueries queries) returns KPI|errorGet a single KPI by key
Parameters
- kPICode string - Key property 'KPICode' (Edm.String)
- queries *GetKPIsQueries - Queries to be sent with the request
deleteKPIs
Delete a KPI
Parameters
- kPICode string - Key property 'KPICode' (Edm.String)
Return Type
- error? - Deleted. No content returned
updateKPIs
Partially update a KPI (PATCH/MERGE semantics)
Return Type
- error? - Updated. No content returned
kPIsServiceGetList
function kPIsServiceGetList(map<string|string[]> headers) returns inline_response_200_24|errorGet list
Return Type
- inline_response_200_24|error - Function result
licenseServiceGetInstallationNumber
Get installation number
login
Login
Parameters
- payload Login_body - Request payload
logout
Logout
Return Type
- error? - Success. No content returned
listMessages
function listMessages(ListMessagesHeaders headers, *ListMessagesQueries queries) returns MessagesCollectionResponse|errorQuery the Messages collection
Parameters
- headers ListMessagesHeaders (default {}) - Headers to be sent with the request
- queries *ListMessagesQueries - Queries to be sent with the request
Return Type
- MessagesCollectionResponse|error - A page of entities
createMessages
Create a new Message
Parameters
- payload Message - Request payload
getMessages
function getMessages(Signed32 code, map<string|string[]> headers, *GetMessagesQueries queries) returns Message|errorGet a single Message by key
Parameters
- code Signed32 - Key property 'Code' (Edm.Int32)
- queries *GetMessagesQueries - Queries to be sent with the request
deleteMessages
Delete a Message
Parameters
- code Signed32 - Key property 'Code' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateMessages
function updateMessages(Signed32 code, Message payload, map<string|string[]> headers) returns error?Partially update a Message (PATCH/MERGE semantics)
Return Type
- error? - Updated. No content returned
messagesServiceGetInbox
function messagesServiceGetInbox(map<string|string[]> headers) returns inline_response_200_25|errorGet inbox
Return Type
- inline_response_200_25|error - Function result
messagesServiceGetOutbox
function messagesServiceGetOutbox(map<string|string[]> headers) returns inline_response_200_26|errorGet outbox
Return Type
- inline_response_200_26|error - Function result
messagesServiceGetSentMessages
function messagesServiceGetSentMessages(map<string|string[]> headers) returns inline_response_200_27|errorGet sent messages
Return Type
- inline_response_200_27|error - Function result
listMobileAddOnSetting
function listMobileAddOnSetting(ListMobileAddOnSettingHeaders headers, *ListMobileAddOnSettingQueries queries) returns MobileAddOnSettingCollectionResponse|errorQuery the MobileAddOnSetting collection
Parameters
- headers ListMobileAddOnSettingHeaders (default {}) - Headers to be sent with the request
- queries *ListMobileAddOnSettingQueries - Queries to be sent with the request
Return Type
- MobileAddOnSettingCollectionResponse|error - A page of entities
createMobileAddOnSetting
function createMobileAddOnSetting(MobileAddOnSetting payload, map<string|string[]> headers) returns MobileAddOnSetting|errorCreate a new MobileAddOnSetting
Parameters
- payload MobileAddOnSetting - Request payload
Return Type
- MobileAddOnSetting|error - The created entity
getMobileAddOnSetting
function getMobileAddOnSetting(string code, map<string|string[]> headers, *GetMobileAddOnSettingQueries queries) returns MobileAddOnSetting|errorGet a single MobileAddOnSetting by key
Parameters
- code string - Key property 'Code' (Edm.String)
- queries *GetMobileAddOnSettingQueries - Queries to be sent with the request
Return Type
- MobileAddOnSetting|error - The requested entity
deleteMobileAddOnSetting
Delete a MobileAddOnSetting
Parameters
- code string - Key property 'Code' (Edm.String)
Return Type
- error? - Deleted. No content returned
updateMobileAddOnSetting
function updateMobileAddOnSetting(string code, MobileAddOnSetting payload, map<string|string[]> headers) returns error?Partially update a MobileAddOnSetting (PATCH/MERGE semantics)
Parameters
- code string - Key property 'Code' (Edm.String)
- payload MobileAddOnSetting - Request payload
Return Type
- error? - Updated. No content returned
mobileAddOnSettingServiceGetMobileAddOnSettingList
function mobileAddOnSettingServiceGetMobileAddOnSettingList(map<string|string[]> headers) returns inline_response_200_28|errorGet mobile add on setting list
Return Type
- inline_response_200_28|error - Function result
mobileAppServiceGetCurrentServerDateTime
function mobileAppServiceGetCurrentServerDateTime(map<string|string[]> headers) returns MobileServerDateTime|errorGet current server date time
Return Type
- MobileServerDateTime|error - Function result
mobileAppServiceGetDppChangeParams
function mobileAppServiceGetDppChangeParams(MobileAppService_GetDppChangeParams_body payload, map<string|string[]> headers) returns DppChangeParams|errorGet dpp change params
Parameters
- payload MobileAppService_GetDppChangeParams_body - Request payload
Return Type
- DppChangeParams|error - Function result
mobileAppServiceGetEmployeeFullNames
function mobileAppServiceGetEmployeeFullNames(MobileAppService_GetEmployeeFullNames_body payload, map<string|string[]> headers) returns inline_response_200_29|errorGet employee full names
Parameters
- payload MobileAppService_GetEmployeeFullNames_body - Request payload
Return Type
- inline_response_200_29|error - Function result
mobileAppServiceGetSalesAppSetting
function mobileAppServiceGetSalesAppSetting(MobileAppService_GetSalesAppSetting_body payload, map<string|string[]> headers) returns SalesAppSetting|errorGet sales app setting
Parameters
- payload MobileAppService_GetSalesAppSetting_body - Request payload
Return Type
- SalesAppSetting|error - Function result
mobileAppServiceGetServiceAppReport
function mobileAppServiceGetServiceAppReport(MobileAppService_GetServiceAppReport_body payload, map<string|string[]> headers) returns ServiceAppReport|errorGet service app report
Parameters
- payload MobileAppService_GetServiceAppReport_body - Request payload
Return Type
- ServiceAppReport|error - Function result
mobileAppServiceGetServiceAppReportContent
function mobileAppServiceGetServiceAppReportContent(MobileAppService_GetServiceAppReportContent_body payload, map<string|string[]> headers) returns ServiceAppReportContent|errorGet service app report content
Parameters
- payload MobileAppService_GetServiceAppReportContent_body - Request payload
Return Type
- ServiceAppReportContent|error - Function result
mobileAppServiceGetTechnicianSchedulings
function mobileAppServiceGetTechnicianSchedulings(MobileAppService_GetTechnicianSchedulings_body payload, map<string|string[]> headers) returns inline_response_200_30|errorGet technician schedulings
Parameters
- payload MobileAppService_GetTechnicianSchedulings_body - Request payload
Return Type
- inline_response_200_30|error - Function result
mobileAppServiceGetTechnicianSettings
function mobileAppServiceGetTechnicianSettings(MobileAppService_GetTechnicianSettings_body payload, map<string|string[]> headers) returns TechnicianSettings|errorGet technician settings
Parameters
- payload MobileAppService_GetTechnicianSettings_body - Request payload
Return Type
- TechnicianSettings|error - Function result
mobileAppServiceGetTechnicianSettingsGroup
function mobileAppServiceGetTechnicianSettingsGroup(MobileAppService_GetTechnicianSettingsGroup_body payload, map<string|string[]> headers) returns TechnicianSettingsGroup|errorGet technician settings group
Parameters
- payload MobileAppService_GetTechnicianSettingsGroup_body - Request payload
Return Type
- TechnicianSettingsGroup|error - Function result
mobileAppServiceUpdateSalesAppSetting
function mobileAppServiceUpdateSalesAppSetting(MobileAppService_UpdateSalesAppSetting_body payload, map<string|string[]> headers) returns error?Update sales app setting
Parameters
- payload MobileAppService_UpdateSalesAppSetting_body - Request payload
Return Type
- error? - Success. No content returned
mobileAppServiceUpdateServiceAppReport
function mobileAppServiceUpdateServiceAppReport(MobileAppService_UpdateServiceAppReport_body payload, map<string|string[]> headers) returns error?Update service app report
Parameters
- payload MobileAppService_UpdateServiceAppReport_body - Request payload
Return Type
- error? - Success. No content returned
mobileAppServiceUpdateServiceAppReportContent
function mobileAppServiceUpdateServiceAppReportContent(MobileAppService_UpdateServiceAppReportContent_body payload, map<string|string[]> headers) returns error?Update service app report content
Parameters
- payload MobileAppService_UpdateServiceAppReportContent_body - Request payload
Return Type
- error? - Success. No content returned
mobileAppServiceUpdateTechnicianSettings
function mobileAppServiceUpdateTechnicianSettings(MobileAppService_UpdateTechnicianSettings_body payload, map<string|string[]> headers) returns error?Update technician settings
Parameters
- payload MobileAppService_UpdateTechnicianSettings_body - Request payload
Return Type
- error? - Success. No content returned
mobileAppServiceUpdateTechnicianSettingsGroup
function mobileAppServiceUpdateTechnicianSettingsGroup(MobileAppService_UpdateTechnicianSettingsGroup_body payload, map<string|string[]> headers) returns error?Update technician settings group
Parameters
- payload MobileAppService_UpdateTechnicianSettingsGroup_body - Request payload
Return Type
- error? - Success. No content returned
listMultiLanguageTranslations
function listMultiLanguageTranslations(ListMultiLanguageTranslationsHeaders headers, *ListMultiLanguageTranslationsQueries queries) returns MultiLanguageTranslationsCollectionResponse|errorQuery the MultiLanguageTranslations collection
Parameters
- headers ListMultiLanguageTranslationsHeaders (default {}) - Headers to be sent with the request
- queries *ListMultiLanguageTranslationsQueries - Queries to be sent with the request
Return Type
- MultiLanguageTranslationsCollectionResponse|error - A page of entities
createMultiLanguageTranslations
function createMultiLanguageTranslations(MultiLanguageTranslation payload, map<string|string[]> headers) returns MultiLanguageTranslation|errorCreate a new MultiLanguageTranslation
Parameters
- payload MultiLanguageTranslation - Request payload
Return Type
- MultiLanguageTranslation|error - The created entity
getMultiLanguageTranslations
function getMultiLanguageTranslations(Signed32 numerator, map<string|string[]> headers, *GetMultiLanguageTranslationsQueries queries) returns MultiLanguageTranslation|errorGet a single MultiLanguageTranslation by key
Parameters
- numerator Signed32 - Key property 'Numerator' (Edm.Int32)
- queries *GetMultiLanguageTranslationsQueries - Queries to be sent with the request
Return Type
- MultiLanguageTranslation|error - The requested entity
deleteMultiLanguageTranslations
function deleteMultiLanguageTranslations(Signed32 numerator, map<string|string[]> headers) returns error?Delete a MultiLanguageTranslation
Parameters
- numerator Signed32 - Key property 'Numerator' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateMultiLanguageTranslations
function updateMultiLanguageTranslations(Signed32 numerator, MultiLanguageTranslation payload, map<string|string[]> headers) returns error?Partially update a MultiLanguageTranslation (PATCH/MERGE semantics)
Parameters
- numerator Signed32 - Key property 'Numerator' (Edm.Int32)
- payload MultiLanguageTranslation - Request payload
Return Type
- error? - Updated. No content returned
listPictures
function listPictures(ListPicturesHeaders headers, *ListPicturesQueries queries) returns PicturesCollectionResponse|errorQuery the Pictures collection
Parameters
- headers ListPicturesHeaders (default {}) - Headers to be sent with the request
- queries *ListPicturesQueries - Queries to be sent with the request
Return Type
- PicturesCollectionResponse|error - A page of entities
createPictures
Create a new Picture
Parameters
- payload Picture - Request payload
getPictures
function getPictures(string pictureName, map<string|string[]> headers, *GetPicturesQueries queries) returns Picture|errorGet a single Picture by key
Parameters
- pictureName string - Key property 'PictureName' (Edm.String)
- queries *GetPicturesQueries - Queries to be sent with the request
deletePictures
Delete a Picture
Parameters
- pictureName string - Key property 'PictureName' (Edm.String)
Return Type
- error? - Deleted. No content returned
updatePictures
function updatePictures(string pictureName, Picture payload, map<string|string[]> headers) returns error?Partially update a Picture (PATCH/MERGE semantics)
Parameters
- pictureName string - Key property 'PictureName' (Edm.String)
- payload Picture - Request payload
Return Type
- error? - Updated. No content returned
listPredefinedTexts
function listPredefinedTexts(ListPredefinedTextsHeaders headers, *ListPredefinedTextsQueries queries) returns PredefinedTextsCollectionResponse|errorQuery the PredefinedTexts collection
Parameters
- headers ListPredefinedTextsHeaders (default {}) - Headers to be sent with the request
- queries *ListPredefinedTextsQueries - Queries to be sent with the request
Return Type
- PredefinedTextsCollectionResponse|error - A page of entities
createPredefinedTexts
function createPredefinedTexts(PredefinedText payload, map<string|string[]> headers) returns PredefinedText|errorCreate a new PredefinedText
Parameters
- payload PredefinedText - Request payload
Return Type
- PredefinedText|error - The created entity
getPredefinedTexts
function getPredefinedTexts(Signed32 numerator, map<string|string[]> headers, *GetPredefinedTextsQueries queries) returns PredefinedText|errorGet a single PredefinedText by key
Parameters
- numerator Signed32 - Key property 'Numerator' (Edm.Int32)
- queries *GetPredefinedTextsQueries - Queries to be sent with the request
Return Type
- PredefinedText|error - The requested entity
deletePredefinedTexts
Delete a PredefinedText
Parameters
- numerator Signed32 - Key property 'Numerator' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updatePredefinedTexts
function updatePredefinedTexts(Signed32 numerator, PredefinedText payload, map<string|string[]> headers) returns error?Partially update a PredefinedText (PATCH/MERGE semantics)
Parameters
- numerator Signed32 - Key property 'Numerator' (Edm.Int32)
- payload PredefinedText - Request payload
Return Type
- error? - Updated. No content returned
predefinedTextsServiceGetPredefinedTextList
function predefinedTextsServiceGetPredefinedTextList(map<string|string[]> headers) returns inline_response_200_31|errorGet predefined text list
Return Type
- inline_response_200_31|error - Function result
qRCodeServiceAddOrUpdateQRCode
function qRCodeServiceAddOrUpdateQRCode(QRCodeService_AddOrUpdateQRCode_body payload, map<string|string[]> headers) returns error?Add or update QR code
Parameters
- payload QRCodeService_AddOrUpdateQRCode_body - Request payload
Return Type
- error? - Success. No content returned
queryAuthGroupServiceGetQueryAuthGroupList
function queryAuthGroupServiceGetQueryAuthGroupList(map<string|string[]> headers) returns inline_response_200_32|errorGet query auth group list
Return Type
- inline_response_200_32|error - Function result
listQueryAuthGroups
function listQueryAuthGroups(ListQueryAuthGroupsHeaders headers, *ListQueryAuthGroupsQueries queries) returns QueryAuthGroupsCollectionResponse|errorQuery the QueryAuthGroups collection
Parameters
- headers ListQueryAuthGroupsHeaders (default {}) - Headers to be sent with the request
- queries *ListQueryAuthGroupsQueries - Queries to be sent with the request
Return Type
- QueryAuthGroupsCollectionResponse|error - A page of entities
createQueryAuthGroups
function createQueryAuthGroups(QueryAuthGroup payload, map<string|string[]> headers) returns QueryAuthGroup|errorCreate a new QueryAuthGroup
Parameters
- payload QueryAuthGroup - Request payload
Return Type
- QueryAuthGroup|error - The created entity
getQueryAuthGroups
function getQueryAuthGroups(Signed32 authGroupId, map<string|string[]> headers, *GetQueryAuthGroupsQueries queries) returns QueryAuthGroup|errorGet a single QueryAuthGroup by key
Parameters
- authGroupId Signed32 - Key property 'AuthGroupId' (Edm.Int32)
- queries *GetQueryAuthGroupsQueries - Queries to be sent with the request
Return Type
- QueryAuthGroup|error - The requested entity
deleteQueryAuthGroups
Delete a QueryAuthGroup
Parameters
- authGroupId Signed32 - Key property 'AuthGroupId' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateQueryAuthGroups
function updateQueryAuthGroups(Signed32 authGroupId, QueryAuthGroup payload, map<string|string[]> headers) returns error?Partially update a QueryAuthGroup (PATCH/MERGE semantics)
Parameters
- authGroupId Signed32 - Key property 'AuthGroupId' (Edm.Int32)
- payload QueryAuthGroup - Request payload
Return Type
- error? - Updated. No content returned
listQueryCategories
function listQueryCategories(ListQueryCategoriesHeaders headers, *ListQueryCategoriesQueries queries) returns QueryCategoriesCollectionResponse|errorQuery the QueryCategories collection
Parameters
- headers ListQueryCategoriesHeaders (default {}) - Headers to be sent with the request
- queries *ListQueryCategoriesQueries - Queries to be sent with the request
Return Type
- QueryCategoriesCollectionResponse|error - A page of entities
createQueryCategories
function createQueryCategories(QueryCategory payload, map<string|string[]> headers) returns QueryCategory|errorCreate a new QueryCategory
Parameters
- payload QueryCategory - Request payload
Return Type
- QueryCategory|error - The created entity
getQueryCategories
function getQueryCategories(Signed32 code, map<string|string[]> headers, *GetQueryCategoriesQueries queries) returns QueryCategory|errorGet a single QueryCategory by key
Parameters
- code Signed32 - Key property 'Code' (Edm.Int32)
- queries *GetQueryCategoriesQueries - Queries to be sent with the request
Return Type
- QueryCategory|error - The requested entity
deleteQueryCategories
Delete a QueryCategory
Parameters
- code Signed32 - Key property 'Code' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateQueryCategories
function updateQueryCategories(Signed32 code, QueryCategory payload, map<string|string[]> headers) returns error?Partially update a QueryCategory (PATCH/MERGE semantics)
Return Type
- error? - Updated. No content returned
queryServicePostQuery
function queryServicePostQuery(QueryService_PostQuery_body payload, map<string|string[]> headers) returns string|errorPost query
Parameters
- payload QueryService_PostQuery_body - Request payload
listReportFilter
function listReportFilter(ListReportFilterHeaders headers, *ListReportFilterQueries queries) returns ReportFilterCollectionResponse|errorQuery the ReportFilter collection
Parameters
- headers ListReportFilterHeaders (default {}) - Headers to be sent with the request
- queries *ListReportFilterQueries - Queries to be sent with the request
Return Type
- ReportFilterCollectionResponse|error - A page of entities
createReportFilter
function createReportFilter(TaxReportFilter payload, map<string|string[]> headers) returns TaxReportFilter|errorCreate a new TaxReportFilter
Parameters
- payload TaxReportFilter - Request payload
Return Type
- TaxReportFilter|error - The created entity
getReportFilter
function getReportFilter(Signed32 code, map<string|string[]> headers, *GetReportFilterQueries queries) returns TaxReportFilter|errorGet a single TaxReportFilter by key
Parameters
- code Signed32 - Key property 'Code' (Edm.Int32)
- queries *GetReportFilterQueries - Queries to be sent with the request
Return Type
- TaxReportFilter|error - The requested entity
deleteReportFilter
Delete a TaxReportFilter
Parameters
- code Signed32 - Key property 'Code' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateReportFilter
function updateReportFilter(Signed32 code, TaxReportFilter payload, map<string|string[]> headers) returns error?Partially update a TaxReportFilter (PATCH/MERGE semantics)
Return Type
- error? - Updated. No content returned
reportFilterServiceGetTaxReportFilterList
function reportFilterServiceGetTaxReportFilterList(ReportFilterService_GetTaxReportFilterList_body payload, map<string|string[]> headers) returns inline_response_200_33|errorGet tax report filter list
Parameters
- payload ReportFilterService_GetTaxReportFilterList_body - Request payload
Return Type
- inline_response_200_33|error - Function result
reportLayoutsServiceAddReportLayout
function reportLayoutsServiceAddReportLayout(ReportLayoutsService_AddReportLayout_body payload, map<string|string[]> headers) returns ReportLayoutParams|errorAdd report layout
Parameters
- payload ReportLayoutsService_AddReportLayout_body - Request payload
Return Type
- ReportLayoutParams|error - Function result
reportLayoutsServiceAddReportLayoutToMenu
function reportLayoutsServiceAddReportLayoutToMenu(ReportLayoutsService_AddReportLayoutToMenu_body payload, map<string|string[]> headers) returns ReportLayoutParams|errorAdd report layout to menu
Parameters
- payload ReportLayoutsService_AddReportLayoutToMenu_body - Request payload
Return Type
- ReportLayoutParams|error - Function result
reportLayoutsServiceDeleteReportLayout
function reportLayoutsServiceDeleteReportLayout(ReportLayoutsService_DeleteReportLayout_body payload, map<string|string[]> headers) returns error?Delete report layout
Parameters
- payload ReportLayoutsService_DeleteReportLayout_body - Request payload
Return Type
- error? - Success. No content returned
reportLayoutsServiceDeleteReportLayoutAndMenu
function reportLayoutsServiceDeleteReportLayoutAndMenu(ReportLayoutsService_DeleteReportLayoutAndMenu_body payload, map<string|string[]> headers) returns error?Delete report layout and menu
Parameters
- payload ReportLayoutsService_DeleteReportLayoutAndMenu_body - Request payload
Return Type
- error? - Success. No content returned
reportLayoutsServiceGetDefaultReport
function reportLayoutsServiceGetDefaultReport(ReportLayoutsService_GetDefaultReport_body payload, map<string|string[]> headers) returns DefaultReportParams|errorGet default report
Parameters
- payload ReportLayoutsService_GetDefaultReport_body - Request payload
Return Type
- DefaultReportParams|error - Function result
reportLayoutsServiceGetDefaultReportLayout
function reportLayoutsServiceGetDefaultReportLayout(ReportLayoutsService_GetDefaultReportLayout_body payload, map<string|string[]> headers) returns ReportLayout|errorGet default report layout
Parameters
- payload ReportLayoutsService_GetDefaultReportLayout_body - Request payload
Return Type
- ReportLayout|error - Function result
reportLayoutsServiceGetReportLayout
function reportLayoutsServiceGetReportLayout(ReportLayoutsService_GetReportLayout_body payload, map<string|string[]> headers) returns ReportLayout|errorGet report layout
Parameters
- payload ReportLayoutsService_GetReportLayout_body - Request payload
Return Type
- ReportLayout|error - Function result
reportLayoutsServiceGetReportLayoutList
function reportLayoutsServiceGetReportLayoutList(ReportLayoutsService_GetReportLayoutList_body payload, map<string|string[]> headers) returns inline_response_200_34|errorGet report layout list
Parameters
- payload ReportLayoutsService_GetReportLayoutList_body - Request payload
Return Type
- inline_response_200_34|error - Function result
reportLayoutsServiceSetDefaultReport
function reportLayoutsServiceSetDefaultReport(ReportLayoutsService_SetDefaultReport_body payload, map<string|string[]> headers) returns error?Set default report
Parameters
- payload ReportLayoutsService_SetDefaultReport_body - Request payload
Return Type
- error? - Success. No content returned
reportLayoutsServiceUpdateLanguageReport
function reportLayoutsServiceUpdateLanguageReport(ReportLayoutsService_UpdateLanguageReport_body payload, map<string|string[]> headers) returns error?Update language report
Parameters
- payload ReportLayoutsService_UpdateLanguageReport_body - Request payload
Return Type
- error? - Success. No content returned
reportLayoutsServiceUpdatePrinterSettings
function reportLayoutsServiceUpdatePrinterSettings(ReportLayoutsService_UpdatePrinterSettings_body payload, map<string|string[]> headers) returns error?Update printer settings
Parameters
- payload ReportLayoutsService_UpdatePrinterSettings_body - Request payload
Return Type
- error? - Success. No content returned
listReportTypes
function listReportTypes(ListReportTypesHeaders headers, *ListReportTypesQueries queries) returns ReportTypesCollectionResponse|errorQuery the ReportTypes collection
Parameters
- headers ListReportTypesHeaders (default {}) - Headers to be sent with the request
- queries *ListReportTypesQueries - Queries to be sent with the request
Return Type
- ReportTypesCollectionResponse|error - A page of entities
createReportTypes
function createReportTypes(ReportType payload, map<string|string[]> headers) returns ReportType|errorCreate a new ReportType
Parameters
- payload ReportType - Request payload
Return Type
- ReportType|error - The created entity
getReportTypes
function getReportTypes(string typeCode, map<string|string[]> headers, *GetReportTypesQueries queries) returns ReportType|errorGet a single ReportType by key
Parameters
- typeCode string - Key property 'TypeCode' (Edm.String)
- queries *GetReportTypesQueries - Queries to be sent with the request
Return Type
- ReportType|error - The requested entity
deleteReportTypes
Delete a ReportType
Parameters
- typeCode string - Key property 'TypeCode' (Edm.String)
Return Type
- error? - Deleted. No content returned
updateReportTypes
function updateReportTypes(string typeCode, ReportType payload, map<string|string[]> headers) returns error?Partially update a ReportType (PATCH/MERGE semantics)
Parameters
- typeCode string - Key property 'TypeCode' (Edm.String)
- payload ReportType - Request payload
Return Type
- error? - Updated. No content returned
reportTypesServiceGetReportTypeList
function reportTypesServiceGetReportTypeList(map<string|string[]> headers) returns inline_response_200_35|errorGet report type list
Return Type
- inline_response_200_35|error - Function result
sBOBobServiceFormatMoneyToString
function sBOBobServiceFormatMoneyToString(SBOBobService_Format_MoneyToString_body payload, map<string|string[]> headers) returns string|errorMoney to string
Parameters
- payload SBOBobService_Format_MoneyToString_body - Request payload
sBOBobServiceGetCurrencyRate
function sBOBobServiceGetCurrencyRate(SBOBobService_GetCurrencyRate_body payload, map<string|string[]> headers) returns decimal|errorGet currency rate
Parameters
- payload SBOBobService_GetCurrencyRate_body - Request payload
sBOBobServiceGetDueDate
function sBOBobServiceGetDueDate(SBOBobService_GetDueDate_body payload, map<string|string[]> headers) returns string|errorGet due date
Parameters
- payload SBOBobService_GetDueDate_body - Request payload
sBOBobServiceGetIndexRate
function sBOBobServiceGetIndexRate(SBOBobService_GetIndexRate_body payload, map<string|string[]> headers) returns decimal|errorGet index rate
Parameters
- payload SBOBobService_GetIndexRate_body - Request payload
sBOBobServiceGetLocalCurrency
Get local currency
sBOBobServiceGetSystemCurrency
Get system currency
sBOBobServiceGetSystemPermission
function sBOBobServiceGetSystemPermission(SBOBobService_GetSystemPermission_body payload, map<string|string[]> headers) returns Signed32|errorGet system permission
Parameters
- payload SBOBobService_GetSystemPermission_body - Request payload
sBOBobServiceSetCurrencyRate
function sBOBobServiceSetCurrencyRate(SBOBobService_SetCurrencyRate_body payload, map<string|string[]> headers) returns error?Set currency rate
Parameters
- payload SBOBobService_SetCurrencyRate_body - Request payload
Return Type
- error? - Success. No content returned
sBOBobServiceSetSystemPermission
function sBOBobServiceSetSystemPermission(SBOBobService_SetSystemPermission_body payload, map<string|string[]> headers) returns error?Set system permission
Parameters
- payload SBOBobService_SetSystemPermission_body - Request payload
Return Type
- error? - Success. No content returned
listSQLQueries
function listSQLQueries(ListSQLQueriesHeaders headers, *ListSQLQueriesQueries queries) returns SQLQueriesCollectionResponse|errorQuery the SQLQueries collection
Parameters
- headers ListSQLQueriesHeaders (default {}) - Headers to be sent with the request
- queries *ListSQLQueriesQueries - Queries to be sent with the request
Return Type
- SQLQueriesCollectionResponse|error - A page of entities
createSQLQueries
Create a new SQLQuery
Parameters
- payload SQLQuery - Request payload
getSQLQueries
function getSQLQueries(string sqlCode, map<string|string[]> headers, *GetSQLQueriesQueries queries) returns SQLQuery|errorGet a single SQLQuery by key
Parameters
- sqlCode string - Key property 'SqlCode' (Edm.String)
- queries *GetSQLQueriesQueries - Queries to be sent with the request
deleteSQLQueries
Delete a SQLQuery
Parameters
- sqlCode string - Key property 'SqlCode' (Edm.String)
Return Type
- error? - Deleted. No content returned
updateSQLQueries
function updateSQLQueries(string sqlCode, SQLQuery payload, map<string|string[]> headers) returns error?Partially update a SQLQuery (PATCH/MERGE semantics)
Return Type
- error? - Updated. No content returned
sQLQueriesList2
function sQLQueriesList2(string sqlCode, SQLQueriessqlCode_List_body payload, map<string|string[]> headers) returns SQLQueryResult|errorBound action 'List' on SQLQueries (binding type SQLQuery)
Parameters
- sqlCode string - Key property 'SqlCode' (Edm.String)
- payload SQLQueriessqlCode_List_body - Request payload
Return Type
- SQLQueryResult|error - Function result
listSQLViews
function listSQLViews(ListSQLViewsHeaders headers, *ListSQLViewsQueries queries) returns SQLViewsCollectionResponse|errorQuery the SQLViews collection
Parameters
- headers ListSQLViewsHeaders (default {}) - Headers to be sent with the request
- queries *ListSQLViewsQueries - Queries to be sent with the request
Return Type
- SQLViewsCollectionResponse|error - A page of entities
createSQLViews
Create a new SQLView
Parameters
- payload SQLView - Request payload
getSQLViews
function getSQLViews(string name, map<string|string[]> headers, *GetSQLViewsQueries queries) returns SQLView|errorGet a single SQLView by key
Parameters
- name string - Key property 'Name' (Edm.String)
- queries *GetSQLViewsQueries - Queries to be sent with the request
deleteSQLViews
Delete a SQLView
Parameters
- name string - Key property 'Name' (Edm.String)
Return Type
- error? - Deleted. No content returned
updateSQLViews
Partially update a SQLView (PATCH/MERGE semantics)
Return Type
- error? - Updated. No content returned
sQLViewsExpose
Bound action 'Expose' on SQLViews (binding type SQLView)
Parameters
- name string - Key property 'Name' (Edm.String)
Return Type
- error? - Success. No content returned
sQLViewsUnexpose
Bound action 'Unexpose' on SQLViews (binding type SQLView)
Parameters
- name string - Key property 'Name' (Edm.String)
Return Type
- error? - Success. No content returned
listSections
function listSections(ListSectionsHeaders headers, *ListSectionsQueries queries) returns SectionsCollectionResponse|errorQuery the Sections collection
Parameters
- headers ListSectionsHeaders (default {}) - Headers to be sent with the request
- queries *ListSectionsQueries - Queries to be sent with the request
Return Type
- SectionsCollectionResponse|error - A page of entities
createSections
Create a new Section
Parameters
- payload Section - Request payload
getSections
function getSections(Signed32 absEntry, map<string|string[]> headers, *GetSectionsQueries queries) returns Section|errorGet a single Section by key
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
- queries *GetSectionsQueries - Queries to be sent with the request
deleteSections
Delete a Section
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateSections
function updateSections(Signed32 absEntry, Section payload, map<string|string[]> headers) returns error?Partially update a Section (PATCH/MERGE semantics)
Return Type
- error? - Updated. No content returned
sectionsServiceGetSectionList
function sectionsServiceGetSectionList(map<string|string[]> headers) returns inline_response_200_36|errorGet section list
Return Type
- inline_response_200_36|error - Function result
sensitiveDataAccessServiceAccess
function sensitiveDataAccessServiceAccess(SensitiveDataAccessService_Access_body payload, map<string|string[]> headers) returns SensitiveDataAccess|errorAccess
Parameters
- payload SensitiveDataAccessService_Access_body - Request payload
Return Type
- SensitiveDataAccess|error - Function result
sensitiveDataAccessServiceIsDataSensitive
function sensitiveDataAccessServiceIsDataSensitive(SensitiveDataAccessService_IsDataSensitive_body payload, map<string|string[]> headers) returns DataSensitiveStatus|errorIs data sensitive
Parameters
- payload SensitiveDataAccessService_IsDataSensitive_body - Request payload
Return Type
- DataSensitiveStatus|error - Function result
seriesServiceAddElectronicSeries
function seriesServiceAddElectronicSeries(SeriesService_AddElectronicSeries_body payload, map<string|string[]> headers) returns ElectronicSeriesParams|errorAdd electronic series
Parameters
- payload SeriesService_AddElectronicSeries_body - Request payload
Return Type
- ElectronicSeriesParams|error - Function result
seriesServiceAddSeries
function seriesServiceAddSeries(SeriesService_AddSeries_body payload, map<string|string[]> headers) returns SeriesParams|errorAdd series
Parameters
- payload SeriesService_AddSeries_body - Request payload
Return Type
- SeriesParams|error - Function result
seriesServiceAttachSeriesToDocument
function seriesServiceAttachSeriesToDocument(SeriesService_AttachSeriesToDocument_body payload, map<string|string[]> headers) returns error?Attach series to document
Parameters
- payload SeriesService_AttachSeriesToDocument_body - Request payload
Return Type
- error? - Success. No content returned
seriesServiceChangeDocumentMenuName
function seriesServiceChangeDocumentMenuName(SeriesService_ChangeDocumentMenuName_body payload, map<string|string[]> headers) returns error?Change document menu name
Parameters
- payload SeriesService_ChangeDocumentMenuName_body - Request payload
Return Type
- error? - Success. No content returned
seriesServiceGetDefaultElectronicSeries
function seriesServiceGetDefaultElectronicSeries(SeriesService_GetDefaultElectronicSeries_body payload, map<string|string[]> headers) returns ElectronicSeriesParams|errorGet default electronic series
Parameters
- payload SeriesService_GetDefaultElectronicSeries_body - Request payload
Return Type
- ElectronicSeriesParams|error - Function result
seriesServiceGetDefaultSeries
function seriesServiceGetDefaultSeries(SeriesService_GetDefaultSeries_body payload, map<string|string[]> headers) returns Series|errorGet default series
Parameters
- payload SeriesService_GetDefaultSeries_body - Request payload
seriesServiceGetDocumentChangedMenuName
function seriesServiceGetDocumentChangedMenuName(SeriesService_GetDocumentChangedMenuName_body payload, map<string|string[]> headers) returns DocumentChangeMenuName|errorGet document changed menu name
Parameters
- payload SeriesService_GetDocumentChangedMenuName_body - Request payload
Return Type
- DocumentChangeMenuName|error - Function result
seriesServiceGetDocumentSeries
function seriesServiceGetDocumentSeries(SeriesService_GetDocumentSeries_body payload, map<string|string[]> headers) returns inline_response_200_37|errorGet document series
Parameters
- payload SeriesService_GetDocumentSeries_body - Request payload
Return Type
- inline_response_200_37|error - Function result
seriesServiceGetElectronicSeries
function seriesServiceGetElectronicSeries(SeriesService_GetElectronicSeries_body payload, map<string|string[]> headers) returns ElectronicSeries|errorGet electronic series
Parameters
- payload SeriesService_GetElectronicSeries_body - Request payload
Return Type
- ElectronicSeries|error - Function result
seriesServiceGetSeries
function seriesServiceGetSeries(SeriesService_GetSeries_body payload, map<string|string[]> headers) returns Series|errorGet series
Parameters
- payload SeriesService_GetSeries_body - Request payload
seriesServiceRemoveElectronicSeries
function seriesServiceRemoveElectronicSeries(SeriesService_RemoveElectronicSeries_body payload, map<string|string[]> headers) returns error?Remove electronic series
Parameters
- payload SeriesService_RemoveElectronicSeries_body - Request payload
Return Type
- error? - Success. No content returned
seriesServiceRemoveSeries
function seriesServiceRemoveSeries(SeriesService_RemoveSeries_body payload, map<string|string[]> headers) returns error?Remove series
Parameters
- payload SeriesService_RemoveSeries_body - Request payload
Return Type
- error? - Success. No content returned
seriesServiceSetDefaultElectronicSeries
function seriesServiceSetDefaultElectronicSeries(SeriesService_SetDefaultElectronicSeries_body payload, map<string|string[]> headers) returns error?Set default electronic series
Parameters
- payload SeriesService_SetDefaultElectronicSeries_body - Request payload
Return Type
- error? - Success. No content returned
seriesServiceSetDefaultSeriesForAllUsers
function seriesServiceSetDefaultSeriesForAllUsers(SeriesService_SetDefaultSeriesForAllUsers_body payload, map<string|string[]> headers) returns error?Set default series for all users
Parameters
- payload SeriesService_SetDefaultSeriesForAllUsers_body - Request payload
Return Type
- error? - Success. No content returned
seriesServiceSetDefaultSeriesForCurrentUser
function seriesServiceSetDefaultSeriesForCurrentUser(SeriesService_SetDefaultSeriesForCurrentUser_body payload, map<string|string[]> headers) returns error?Set default series for current user
Parameters
- payload SeriesService_SetDefaultSeriesForCurrentUser_body - Request payload
Return Type
- error? - Success. No content returned
seriesServiceSetDefaultSeriesForUser
function seriesServiceSetDefaultSeriesForUser(SeriesService_SetDefaultSeriesForUser_body payload, map<string|string[]> headers) returns error?Set default series for user
Parameters
- payload SeriesService_SetDefaultSeriesForUser_body - Request payload
Return Type
- error? - Success. No content returned
seriesServiceUnattachSeriesFromDocument
function seriesServiceUnattachSeriesFromDocument(SeriesService_UnattachSeriesFromDocument_body payload, map<string|string[]> headers) returns error?Unattach series from document
Parameters
- payload SeriesService_UnattachSeriesFromDocument_body - Request payload
Return Type
- error? - Success. No content returned
seriesServiceUpdateElectronicSeries
function seriesServiceUpdateElectronicSeries(SeriesService_UpdateElectronicSeries_body payload, map<string|string[]> headers) returns error?Update electronic series
Parameters
- payload SeriesService_UpdateElectronicSeries_body - Request payload
Return Type
- error? - Success. No content returned
seriesServiceUpdateSeries
function seriesServiceUpdateSeries(SeriesService_UpdateSeries_body payload, map<string|string[]> headers) returns error?Update series
Parameters
- payload SeriesService_UpdateSeries_body - Request payload
Return Type
- error? - Success. No content returned
shortLinkMappingsServiceBatchDelete
Batch delete
Return Type
- error? - Success. No content returned
shortLinkMappingsServiceGetList
function shortLinkMappingsServiceGetList(map<string|string[]> headers) returns inline_response_200_38|errorGet list
Return Type
- inline_response_200_38|error - Function result
listSingleUserConnections
function listSingleUserConnections(ListSingleUserConnectionsHeaders headers, *ListSingleUserConnectionsQueries queries) returns SingleUserConnectionsCollectionResponse|errorQuery the SingleUserConnections collection
Parameters
- headers ListSingleUserConnectionsHeaders (default {}) - Headers to be sent with the request
- queries *ListSingleUserConnectionsQueries - Queries to be sent with the request
Return Type
- SingleUserConnectionsCollectionResponse|error - A page of entities
createSingleUserConnections
function createSingleUserConnections(SingleUserConnection payload, map<string|string[]> headers) returns SingleUserConnection|errorCreate a new SingleUserConnection
Parameters
- payload SingleUserConnection - Request payload
Return Type
- SingleUserConnection|error - The created entity
getSingleUserConnections
function getSingleUserConnections(Signed32 code, map<string|string[]> headers, *GetSingleUserConnectionsQueries queries) returns SingleUserConnection|errorGet a single SingleUserConnection by key
Parameters
- code Signed32 - Key property 'Code' (Edm.Int32)
- queries *GetSingleUserConnectionsQueries - Queries to be sent with the request
Return Type
- SingleUserConnection|error - The requested entity
deleteSingleUserConnections
Delete a SingleUserConnection
Parameters
- code Signed32 - Key property 'Code' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateSingleUserConnections
function updateSingleUserConnections(Signed32 code, SingleUserConnection payload, map<string|string[]> headers) returns error?Partially update a SingleUserConnection (PATCH/MERGE semantics)
Parameters
- code Signed32 - Key property 'Code' (Edm.Int32)
- payload SingleUserConnection - Request payload
Return Type
- error? - Updated. No content returned
listStates
function listStates(ListStatesHeaders headers, *ListStatesQueries queries) returns StatesCollectionResponse|errorQuery the States collection
Parameters
- headers ListStatesHeaders (default {}) - Headers to be sent with the request
- queries *ListStatesQueries - Queries to be sent with the request
Return Type
- StatesCollectionResponse|error - A page of entities
createStates
Create a new State
Parameters
- payload State - Request payload
getStates
function getStates(string code, string country, map<string|string[]> headers, *GetStatesQueries queries) returns State|errorGet a single State by key
Parameters
- code string - Composite key part 'Code' (Edm.String)
- country string - Composite key part 'Country' (Edm.String)
- queries *GetStatesQueries - Queries to be sent with the request
deleteStates
Delete a State
Parameters
- code string - Composite key part 'Code' (Edm.String)
- country string - Composite key part 'Country' (Edm.String)
Return Type
- error? - Deleted. No content returned
updateStates
function updateStates(string code, string country, State payload, map<string|string[]> headers) returns error?Partially update a State (PATCH/MERGE semantics)
Parameters
- code string - Composite key part 'Code' (Edm.String)
- country string - Composite key part 'Country' (Edm.String)
- payload State - Request payload
Return Type
- error? - Updated. No content returned
statesServiceGetStateList
function statesServiceGetStateList(map<string|string[]> headers) returns inline_response_200_39|errorGet state list
Return Type
- inline_response_200_39|error - Function result
tSRExceptionalEventServiceGetList
function tSRExceptionalEventServiceGetList(map<string|string[]> headers) returns inline_response_200_40|errorGet list
Return Type
- inline_response_200_40|error - Function result
listTSRExceptionalEvents
function listTSRExceptionalEvents(ListTSRExceptionalEventsHeaders headers, *ListTSRExceptionalEventsQueries queries) returns TSRExceptionalEventsCollectionResponse|errorQuery the TSRExceptionalEvents collection
Parameters
- headers ListTSRExceptionalEventsHeaders (default {}) - Headers to be sent with the request
- queries *ListTSRExceptionalEventsQueries - Queries to be sent with the request
Return Type
- TSRExceptionalEventsCollectionResponse|error - A page of entities
createTSRExceptionalEvents
function createTSRExceptionalEvents(TSRExceptionalEvent payload, map<string|string[]> headers) returns TSRExceptionalEvent|errorCreate a new TSRExceptionalEvent
Parameters
- payload TSRExceptionalEvent - Request payload
Return Type
- TSRExceptionalEvent|error - The created entity
getTSRExceptionalEvents
function getTSRExceptionalEvents(string code, map<string|string[]> headers, *GetTSRExceptionalEventsQueries queries) returns TSRExceptionalEvent|errorGet a single TSRExceptionalEvent by key
Parameters
- code string - Key property 'Code' (Edm.String)
- queries *GetTSRExceptionalEventsQueries - Queries to be sent with the request
Return Type
- TSRExceptionalEvent|error - The requested entity
deleteTSRExceptionalEvents
Delete a TSRExceptionalEvent
Parameters
- code string - Key property 'Code' (Edm.String)
Return Type
- error? - Deleted. No content returned
updateTSRExceptionalEvents
function updateTSRExceptionalEvents(string code, TSRExceptionalEvent payload, map<string|string[]> headers) returns error?Partially update a TSRExceptionalEvent (PATCH/MERGE semantics)
Parameters
- code string - Key property 'Code' (Edm.String)
- payload TSRExceptionalEvent - Request payload
Return Type
- error? - Updated. No content returned
listUserDefaultGroups
function listUserDefaultGroups(ListUserDefaultGroupsHeaders headers, *ListUserDefaultGroupsQueries queries) returns UserDefaultGroupsCollectionResponse|errorQuery the UserDefaultGroups collection
Parameters
- headers ListUserDefaultGroupsHeaders (default {}) - Headers to be sent with the request
- queries *ListUserDefaultGroupsQueries - Queries to be sent with the request
Return Type
- UserDefaultGroupsCollectionResponse|error - A page of entities
createUserDefaultGroups
function createUserDefaultGroups(UserDefaultGroup payload, map<string|string[]> headers) returns UserDefaultGroup|errorCreate a new UserDefaultGroup
Parameters
- payload UserDefaultGroup - Request payload
Return Type
- UserDefaultGroup|error - The created entity
getUserDefaultGroups
function getUserDefaultGroups(string code, map<string|string[]> headers, *GetUserDefaultGroupsQueries queries) returns UserDefaultGroup|errorGet a single UserDefaultGroup by key
Parameters
- code string - Key property 'Code' (Edm.String)
- queries *GetUserDefaultGroupsQueries - Queries to be sent with the request
Return Type
- UserDefaultGroup|error - The requested entity
deleteUserDefaultGroups
Delete a UserDefaultGroup
Parameters
- code string - Key property 'Code' (Edm.String)
Return Type
- error? - Deleted. No content returned
updateUserDefaultGroups
function updateUserDefaultGroups(string code, UserDefaultGroup payload, map<string|string[]> headers) returns error?Partially update a UserDefaultGroup (PATCH/MERGE semantics)
Return Type
- error? - Updated. No content returned
listUserFieldsMD
function listUserFieldsMD(ListUserFieldsMDHeaders headers, *ListUserFieldsMDQueries queries) returns UserFieldsMDCollectionResponse|errorQuery the UserFieldsMD collection
Parameters
- headers ListUserFieldsMDHeaders (default {}) - Headers to be sent with the request
- queries *ListUserFieldsMDQueries - Queries to be sent with the request
Return Type
- UserFieldsMDCollectionResponse|error - A page of entities
createUserFieldsMD
function createUserFieldsMD(UserFieldMD payload, map<string|string[]> headers) returns UserFieldMD|errorCreate a new UserFieldMD
Parameters
- payload UserFieldMD - Request payload
Return Type
- UserFieldMD|error - The created entity
getUserFieldsMD
function getUserFieldsMD(string tableName, Signed32 fieldID, map<string|string[]> headers, *GetUserFieldsMDQueries queries) returns UserFieldMD|errorGet a single UserFieldMD by key
Parameters
- tableName string - Composite key part 'TableName' (Edm.String)
- fieldID Signed32 - Composite key part 'FieldID' (Edm.Int32)
- queries *GetUserFieldsMDQueries - Queries to be sent with the request
Return Type
- UserFieldMD|error - The requested entity
deleteUserFieldsMD
function deleteUserFieldsMD(string tableName, Signed32 fieldID, map<string|string[]> headers) returns error?Delete a UserFieldMD
Parameters
- tableName string - Composite key part 'TableName' (Edm.String)
- fieldID Signed32 - Composite key part 'FieldID' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateUserFieldsMD
function updateUserFieldsMD(string tableName, Signed32 fieldID, UserFieldMD payload, map<string|string[]> headers) returns error?Partially update a UserFieldMD (PATCH/MERGE semantics)
Parameters
- tableName string - Composite key part 'TableName' (Edm.String)
- fieldID Signed32 - Composite key part 'FieldID' (Edm.Int32)
- payload UserFieldMD - Request payload
Return Type
- error? - Updated. No content returned
userGroupServiceGetUserGroupList
function userGroupServiceGetUserGroupList(map<string|string[]> headers) returns inline_response_200_41|errorGet user group list
Return Type
- inline_response_200_41|error - Function result
listUserGroups
function listUserGroups(ListUserGroupsHeaders headers, *ListUserGroupsQueries queries) returns UserGroupsCollectionResponse|errorQuery the UserGroups collection
Parameters
- headers ListUserGroupsHeaders (default {}) - Headers to be sent with the request
- queries *ListUserGroupsQueries - Queries to be sent with the request
Return Type
- UserGroupsCollectionResponse|error - A page of entities
createUserGroups
Create a new UserGroup
Parameters
- payload UserGroup - Request payload
getUserGroups
function getUserGroups(Signed32 userGroupId, map<string|string[]> headers, *GetUserGroupsQueries queries) returns UserGroup|errorGet a single UserGroup by key
Parameters
- userGroupId Signed32 - Key property 'UserGroupId' (Edm.Int32)
- queries *GetUserGroupsQueries - Queries to be sent with the request
deleteUserGroups
Delete a UserGroup
Parameters
- userGroupId Signed32 - Key property 'UserGroupId' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateUserGroups
function updateUserGroups(Signed32 userGroupId, UserGroup payload, map<string|string[]> headers) returns error?Partially update a UserGroup (PATCH/MERGE semantics)
Parameters
- userGroupId Signed32 - Key property 'UserGroupId' (Edm.Int32)
- payload UserGroup - Request payload
Return Type
- error? - Updated. No content returned
listUserKeysMD
function listUserKeysMD(ListUserKeysMDHeaders headers, *ListUserKeysMDQueries queries) returns UserKeysMDCollectionResponse|errorQuery the UserKeysMD collection
Parameters
- headers ListUserKeysMDHeaders (default {}) - Headers to be sent with the request
- queries *ListUserKeysMDQueries - Queries to be sent with the request
Return Type
- UserKeysMDCollectionResponse|error - A page of entities
createUserKeysMD
function createUserKeysMD(UserKeysMD payload, map<string|string[]> headers) returns UserKeysMD|errorCreate a new UserKeysMD
Parameters
- payload UserKeysMD - Request payload
Return Type
- UserKeysMD|error - The created entity
getUserKeysMD
function getUserKeysMD(string tableName, Signed32 keyIndex, map<string|string[]> headers, *GetUserKeysMDQueries queries) returns UserKeysMD|errorGet a single UserKeysMD by key
Parameters
- tableName string - Composite key part 'TableName' (Edm.String)
- keyIndex Signed32 - Composite key part 'KeyIndex' (Edm.Int32)
- queries *GetUserKeysMDQueries - Queries to be sent with the request
Return Type
- UserKeysMD|error - The requested entity
deleteUserKeysMD
function deleteUserKeysMD(string tableName, Signed32 keyIndex, map<string|string[]> headers) returns error?Delete a UserKeysMD
Parameters
- tableName string - Composite key part 'TableName' (Edm.String)
- keyIndex Signed32 - Composite key part 'KeyIndex' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateUserKeysMD
function updateUserKeysMD(string tableName, Signed32 keyIndex, UserKeysMD payload, map<string|string[]> headers) returns error?Partially update a UserKeysMD (PATCH/MERGE semantics)
Parameters
- tableName string - Composite key part 'TableName' (Edm.String)
- keyIndex Signed32 - Composite key part 'KeyIndex' (Edm.Int32)
- payload UserKeysMD - Request payload
Return Type
- error? - Updated. No content returned
listUserLanguages
function listUserLanguages(ListUserLanguagesHeaders headers, *ListUserLanguagesQueries queries) returns UserLanguagesCollectionResponse|errorQuery the UserLanguages collection
Parameters
- headers ListUserLanguagesHeaders (default {}) - Headers to be sent with the request
- queries *ListUserLanguagesQueries - Queries to be sent with the request
Return Type
- UserLanguagesCollectionResponse|error - A page of entities
createUserLanguages
function createUserLanguages(UserLanguage payload, map<string|string[]> headers) returns UserLanguage|errorCreate a new UserLanguage
Parameters
- payload UserLanguage - Request payload
Return Type
- UserLanguage|error - The created entity
getUserLanguages
function getUserLanguages(Signed32 code, map<string|string[]> headers, *GetUserLanguagesQueries queries) returns UserLanguage|errorGet a single UserLanguage by key
Parameters
- code Signed32 - Key property 'Code' (Edm.Int32)
- queries *GetUserLanguagesQueries - Queries to be sent with the request
Return Type
- UserLanguage|error - The requested entity
deleteUserLanguages
Delete a UserLanguage
Parameters
- code Signed32 - Key property 'Code' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateUserLanguages
function updateUserLanguages(Signed32 code, UserLanguage payload, map<string|string[]> headers) returns error?Partially update a UserLanguage (PATCH/MERGE semantics)
Return Type
- error? - Updated. No content returned
userMenuServiceGetCurrentUserMenu
function userMenuServiceGetCurrentUserMenu(map<string|string[]> headers) returns inline_response_200_42|errorGet current user menu
Return Type
- inline_response_200_42|error - Function result
userMenuServiceGetUserMenu
function userMenuServiceGetUserMenu(UserMenuService_GetUserMenu_body payload, map<string|string[]> headers) returns inline_response_200_43|errorGet user menu
Parameters
- payload UserMenuService_GetUserMenu_body - Request payload
Return Type
- inline_response_200_43|error - Function result
userMenuServiceUpdateCurrentUserMenu
function userMenuServiceUpdateCurrentUserMenu(UserMenuService_UpdateCurrentUserMenu_body payload, map<string|string[]> headers) returns error?Update current user menu
Parameters
- payload UserMenuService_UpdateCurrentUserMenu_body - Request payload
Return Type
- error? - Success. No content returned
userMenuServiceUpdateUserMenu
function userMenuServiceUpdateUserMenu(UserMenuService_UpdateUserMenu_body payload, map<string|string[]> headers) returns error?Update user menu
Parameters
- payload UserMenuService_UpdateUserMenu_body - Request payload
Return Type
- error? - Success. No content returned
listUserObjectsMD
function listUserObjectsMD(ListUserObjectsMDHeaders headers, *ListUserObjectsMDQueries queries) returns UserObjectsMDCollectionResponse|errorQuery the UserObjectsMD collection
Parameters
- headers ListUserObjectsMDHeaders (default {}) - Headers to be sent with the request
- queries *ListUserObjectsMDQueries - Queries to be sent with the request
Return Type
- UserObjectsMDCollectionResponse|error - A page of entities
createUserObjectsMD
function createUserObjectsMD(UserObjectsMD payload, map<string|string[]> headers) returns UserObjectsMD|errorCreate a new UserObjectsMD
Parameters
- payload UserObjectsMD - Request payload
Return Type
- UserObjectsMD|error - The created entity
getUserObjectsMD
function getUserObjectsMD(string code, map<string|string[]> headers, *GetUserObjectsMDQueries queries) returns UserObjectsMD|errorGet a single UserObjectsMD by key
Parameters
- code string - Key property 'Code' (Edm.String)
- queries *GetUserObjectsMDQueries - Queries to be sent with the request
Return Type
- UserObjectsMD|error - The requested entity
deleteUserObjectsMD
Delete a UserObjectsMD
Parameters
- code string - Key property 'Code' (Edm.String)
Return Type
- error? - Deleted. No content returned
updateUserObjectsMD
function updateUserObjectsMD(string code, UserObjectsMD payload, map<string|string[]> headers) returns error?Partially update a UserObjectsMD (PATCH/MERGE semantics)
Return Type
- error? - Updated. No content returned
listUserPermissionTree
function listUserPermissionTree(ListUserPermissionTreeHeaders headers, *ListUserPermissionTreeQueries queries) returns UserPermissionTreeCollectionResponse|errorQuery the UserPermissionTree collection
Parameters
- headers ListUserPermissionTreeHeaders (default {}) - Headers to be sent with the request
- queries *ListUserPermissionTreeQueries - Queries to be sent with the request
Return Type
- UserPermissionTreeCollectionResponse|error - A page of entities
createUserPermissionTree
function createUserPermissionTree(UserPermissionTree payload, map<string|string[]> headers) returns UserPermissionTree|errorCreate a new UserPermissionTree
Parameters
- payload UserPermissionTree - Request payload
Return Type
- UserPermissionTree|error - The created entity
getUserPermissionTree
function getUserPermissionTree(string permissionID, map<string|string[]> headers, *GetUserPermissionTreeQueries queries) returns UserPermissionTree|errorGet a single UserPermissionTree by key
Parameters
- permissionID string - Key property 'PermissionID' (Edm.String)
- queries *GetUserPermissionTreeQueries - Queries to be sent with the request
Return Type
- UserPermissionTree|error - The requested entity
deleteUserPermissionTree
Delete a UserPermissionTree
Parameters
- permissionID string - Key property 'PermissionID' (Edm.String)
Return Type
- error? - Deleted. No content returned
updateUserPermissionTree
function updateUserPermissionTree(string permissionID, UserPermissionTree payload, map<string|string[]> headers) returns error?Partially update a UserPermissionTree (PATCH/MERGE semantics)
Parameters
- permissionID string - Key property 'PermissionID' (Edm.String)
- payload UserPermissionTree - Request payload
Return Type
- error? - Updated. No content returned
listUserQueries
function listUserQueries(ListUserQueriesHeaders headers, *ListUserQueriesQueries queries) returns UserQueriesCollectionResponse|errorQuery the UserQueries collection
Parameters
- headers ListUserQueriesHeaders (default {}) - Headers to be sent with the request
- queries *ListUserQueriesQueries - Queries to be sent with the request
Return Type
- UserQueriesCollectionResponse|error - A page of entities
createUserQueries
Create a new UserQuery
Parameters
- payload UserQuery - Request payload
getUserQueries
function getUserQueries(Signed32 internalKey, Signed32 queryCategory, map<string|string[]> headers, *GetUserQueriesQueries queries) returns UserQuery|errorGet a single UserQuery by key
Parameters
- internalKey Signed32 - Composite key part 'InternalKey' (Edm.Int32)
- queryCategory Signed32 - Composite key part 'QueryCategory' (Edm.Int32)
- queries *GetUserQueriesQueries - Queries to be sent with the request
deleteUserQueries
function deleteUserQueries(Signed32 internalKey, Signed32 queryCategory, map<string|string[]> headers) returns error?Delete a UserQuery
Parameters
- internalKey Signed32 - Composite key part 'InternalKey' (Edm.Int32)
- queryCategory Signed32 - Composite key part 'QueryCategory' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateUserQueries
function updateUserQueries(Signed32 internalKey, Signed32 queryCategory, UserQuery payload, map<string|string[]> headers) returns error?Partially update a UserQuery (PATCH/MERGE semantics)
Parameters
- internalKey Signed32 - Composite key part 'InternalKey' (Edm.Int32)
- queryCategory Signed32 - Composite key part 'QueryCategory' (Edm.Int32)
- payload UserQuery - Request payload
Return Type
- error? - Updated. No content returned
listUserTablesMD
function listUserTablesMD(ListUserTablesMDHeaders headers, *ListUserTablesMDQueries queries) returns UserTablesMDCollectionResponse|errorQuery the UserTablesMD collection
Parameters
- headers ListUserTablesMDHeaders (default {}) - Headers to be sent with the request
- queries *ListUserTablesMDQueries - Queries to be sent with the request
Return Type
- UserTablesMDCollectionResponse|error - A page of entities
createUserTablesMD
function createUserTablesMD(UserTablesMD payload, map<string|string[]> headers) returns UserTablesMD|errorCreate a new UserTablesMD
Parameters
- payload UserTablesMD - Request payload
Return Type
- UserTablesMD|error - The created entity
getUserTablesMD
function getUserTablesMD(string tableName, map<string|string[]> headers, *GetUserTablesMDQueries queries) returns UserTablesMD|errorGet a single UserTablesMD by key
Parameters
- tableName string - Key property 'TableName' (Edm.String)
- queries *GetUserTablesMDQueries - Queries to be sent with the request
Return Type
- UserTablesMD|error - The requested entity
deleteUserTablesMD
Delete a UserTablesMD
Parameters
- tableName string - Key property 'TableName' (Edm.String)
Return Type
- error? - Deleted. No content returned
updateUserTablesMD
function updateUserTablesMD(string tableName, UserTablesMD payload, map<string|string[]> headers) returns error?Partially update a UserTablesMD (PATCH/MERGE semantics)
Parameters
- tableName string - Key property 'TableName' (Edm.String)
- payload UserTablesMD - Request payload
Return Type
- error? - Updated. No content returned
listUsers
function listUsers(ListUsersHeaders headers, *ListUsersQueries queries) returns UsersCollectionResponse|errorQuery the Users collection
Parameters
- headers ListUsersHeaders (default {}) - Headers to be sent with the request
- queries *ListUsersQueries - Queries to be sent with the request
Return Type
- UsersCollectionResponse|error - A page of entities
createUsers
Create a new User
Parameters
- payload User - Request payload
getUsers
function getUsers(Signed32 internalKey, map<string|string[]> headers, *GetUsersQueries queries) returns User|errorGet a single User by key
Parameters
- internalKey Signed32 - Key property 'InternalKey' (Edm.Int32)
- queries *GetUsersQueries - Queries to be sent with the request
deleteUsers
Delete a User
Parameters
- internalKey Signed32 - Key property 'InternalKey' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateUsers
function updateUsers(Signed32 internalKey, User payload, map<string|string[]> headers) returns error?Partially update a User (PATCH/MERGE semantics)
Parameters
- internalKey Signed32 - Key property 'InternalKey' (Edm.Int32)
- payload User - Request payload
Return Type
- error? - Updated. No content returned
usersClose
Bound action 'Close' on Users (binding type User)
Parameters
- internalKey Signed32 - Key property 'InternalKey' (Edm.Int32)
Return Type
- error? - Success. No content returned
usersRemoveUserAndLicense
function usersRemoveUserAndLicense(Signed32 internalKey, map<string|string[]> headers) returns error?Bound action 'RemoveUserAndLicense' on Users (binding type User)
Parameters
- internalKey Signed32 - Key property 'InternalKey' (Edm.Int32)
Return Type
- error? - Success. No content returned
usersServiceGetCurrentUser
Get current user
listValueMapping
function listValueMapping(ListValueMappingHeaders headers, *ListValueMappingQueries queries) returns ValueMappingCollectionResponse|errorQuery the ValueMapping collection
Parameters
- headers ListValueMappingHeaders (default {}) - Headers to be sent with the request
- queries *ListValueMappingQueries - Queries to be sent with the request
Return Type
- ValueMappingCollectionResponse|error - A page of entities
createValueMapping
function createValueMapping(VMB1ValuesData payload, map<string|string[]> headers) returns VMB1ValuesData|errorCreate a new VM_B1ValuesData
Parameters
- payload VMB1ValuesData - Request payload
Return Type
- VMB1ValuesData|error - The created entity
getValueMapping
function getValueMapping(Signed32 absEntry, map<string|string[]> headers, *GetValueMappingQueries queries) returns VMB1ValuesData|errorGet a single VM_B1ValuesData by key
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
- queries *GetValueMappingQueries - Queries to be sent with the request
Return Type
- VMB1ValuesData|error - The requested entity
deleteValueMapping
Delete a VM_B1ValuesData
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateValueMapping
function updateValueMapping(Signed32 absEntry, VMB1ValuesData payload, map<string|string[]> headers) returns error?Partially update a VM_B1ValuesData (PATCH/MERGE semantics)
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
- payload VMB1ValuesData - Request payload
Return Type
- error? - Updated. No content returned
listValueMappingCommunication
function listValueMappingCommunication(ListValueMappingCommunicationHeaders headers, *ListValueMappingCommunicationQueries queries) returns ValueMappingCommunicationCollectionResponse|errorQuery the ValueMappingCommunication collection
Parameters
- headers ListValueMappingCommunicationHeaders (default {}) - Headers to be sent with the request
- queries *ListValueMappingCommunicationQueries - Queries to be sent with the request
Return Type
- ValueMappingCommunicationCollectionResponse|error - A page of entities
createValueMappingCommunication
function createValueMappingCommunication(ValueMappingCommunicationData payload, map<string|string[]> headers) returns ValueMappingCommunicationData|errorCreate a new ValueMappingCommunicationData
Parameters
- payload ValueMappingCommunicationData - Request payload
Return Type
- ValueMappingCommunicationData|error - The created entity
getValueMappingCommunication
function getValueMappingCommunication(Signed32 absEntry, map<string|string[]> headers, *GetValueMappingCommunicationQueries queries) returns ValueMappingCommunicationData|errorGet a single ValueMappingCommunicationData by key
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
- queries *GetValueMappingCommunicationQueries - Queries to be sent with the request
Return Type
- ValueMappingCommunicationData|error - The requested entity
deleteValueMappingCommunication
function deleteValueMappingCommunication(Signed32 absEntry, map<string|string[]> headers) returns error?Delete a ValueMappingCommunicationData
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateValueMappingCommunication
function updateValueMappingCommunication(Signed32 absEntry, ValueMappingCommunicationData payload, map<string|string[]> headers) returns error?Partially update a ValueMappingCommunicationData (PATCH/MERGE semantics)
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
- payload ValueMappingCommunicationData - Request payload
Return Type
- error? - Updated. No content returned
valueMappingServiceGetMappedB1Value
function valueMappingServiceGetMappedB1Value(ValueMappingService_GetMappedB1Value_body payload, map<string|string[]> headers) returns inline_response_200_44|errorGet mapped B1 value
Parameters
- payload ValueMappingService_GetMappedB1Value_body - Request payload
Return Type
- inline_response_200_44|error - Function result
valueMappingServiceGetThirdPartyValuesForB1Value
function valueMappingServiceGetThirdPartyValuesForB1Value(ValueMappingService_GetThirdPartyValuesForB1Value_body payload, map<string|string[]> headers) returns inline_response_200_45|errorGet third party values for B1 value
Parameters
- payload ValueMappingService_GetThirdPartyValuesForB1Value_body - Request payload
Return Type
- inline_response_200_45|error - Function result
valueMappingServiceRemoveMappedValue
function valueMappingServiceRemoveMappedValue(ValueMappingService_RemoveMappedValue_body payload, map<string|string[]> headers) returns error?Remove mapped value
Parameters
- payload ValueMappingService_RemoveMappedValue_body - Request payload
Return Type
- error? - Success. No content returned
webClientBookmarkTileServiceGetList
function webClientBookmarkTileServiceGetList(map<string|string[]> headers) returns inline_response_200_46|errorGet list
Return Type
- inline_response_200_46|error - Function result
listWebClientBookmarkTiles
function listWebClientBookmarkTiles(ListWebClientBookmarkTilesHeaders headers, *ListWebClientBookmarkTilesQueries queries) returns WebClientBookmarkTilesCollectionResponse|errorQuery the WebClientBookmarkTiles collection
Parameters
- headers ListWebClientBookmarkTilesHeaders (default {}) - Headers to be sent with the request
- queries *ListWebClientBookmarkTilesQueries - Queries to be sent with the request
Return Type
- WebClientBookmarkTilesCollectionResponse|error - A page of entities
createWebClientBookmarkTiles
function createWebClientBookmarkTiles(WebClientBookmarkTile payload, map<string|string[]> headers) returns WebClientBookmarkTile|errorCreate a new WebClientBookmarkTile
Parameters
- payload WebClientBookmarkTile - Request payload
Return Type
- WebClientBookmarkTile|error - The created entity
getWebClientBookmarkTiles
function getWebClientBookmarkTiles(string guid, map<string|string[]> headers, *GetWebClientBookmarkTilesQueries queries) returns WebClientBookmarkTile|errorGet a single WebClientBookmarkTile by key
Parameters
- guid string - Key property 'Guid' (Edm.String)
- queries *GetWebClientBookmarkTilesQueries - Queries to be sent with the request
Return Type
- WebClientBookmarkTile|error - The requested entity
deleteWebClientBookmarkTiles
Delete a WebClientBookmarkTile
Parameters
- guid string - Key property 'Guid' (Edm.String)
Return Type
- error? - Deleted. No content returned
updateWebClientBookmarkTiles
function updateWebClientBookmarkTiles(string guid, WebClientBookmarkTile payload, map<string|string[]> headers) returns error?Partially update a WebClientBookmarkTile (PATCH/MERGE semantics)
Parameters
- guid string - Key property 'Guid' (Edm.String)
- payload WebClientBookmarkTile - Request payload
Return Type
- error? - Updated. No content returned
webClientDashboardServiceGetList
function webClientDashboardServiceGetList(map<string|string[]> headers) returns inline_response_200_47|errorGet list
Return Type
- inline_response_200_47|error - Function result
listWebClientDashboards
function listWebClientDashboards(ListWebClientDashboardsHeaders headers, *ListWebClientDashboardsQueries queries) returns WebClientDashboardsCollectionResponse|errorQuery the WebClientDashboards collection
Parameters
- headers ListWebClientDashboardsHeaders (default {}) - Headers to be sent with the request
- queries *ListWebClientDashboardsQueries - Queries to be sent with the request
Return Type
- WebClientDashboardsCollectionResponse|error - A page of entities
createWebClientDashboards
function createWebClientDashboards(WebClientDashboard payload, map<string|string[]> headers) returns WebClientDashboard|errorCreate a new WebClientDashboard
Parameters
- payload WebClientDashboard - Request payload
Return Type
- WebClientDashboard|error - The created entity
getWebClientDashboards
function getWebClientDashboards(string guid, map<string|string[]> headers, *GetWebClientDashboardsQueries queries) returns WebClientDashboard|errorGet a single WebClientDashboard by key
Parameters
- guid string - Key property 'Guid' (Edm.String)
- queries *GetWebClientDashboardsQueries - Queries to be sent with the request
Return Type
- WebClientDashboard|error - The requested entity
deleteWebClientDashboards
Delete a WebClientDashboard
Parameters
- guid string - Key property 'Guid' (Edm.String)
Return Type
- error? - Deleted. No content returned
updateWebClientDashboards
function updateWebClientDashboards(string guid, WebClientDashboard payload, map<string|string[]> headers) returns error?Partially update a WebClientDashboard (PATCH/MERGE semantics)
Parameters
- guid string - Key property 'Guid' (Edm.String)
- payload WebClientDashboard - Request payload
Return Type
- error? - Updated. No content returned
webClientFormSettingServiceGetList
function webClientFormSettingServiceGetList(map<string|string[]> headers) returns inline_response_200_48|errorGet list
Return Type
- inline_response_200_48|error - Function result
listWebClientFormSettings
function listWebClientFormSettings(ListWebClientFormSettingsHeaders headers, *ListWebClientFormSettingsQueries queries) returns WebClientFormSettingsCollectionResponse|errorQuery the WebClientFormSettings collection
Parameters
- headers ListWebClientFormSettingsHeaders (default {}) - Headers to be sent with the request
- queries *ListWebClientFormSettingsQueries - Queries to be sent with the request
Return Type
- WebClientFormSettingsCollectionResponse|error - A page of entities
createWebClientFormSettings
function createWebClientFormSettings(WebClientFormSetting payload, map<string|string[]> headers) returns WebClientFormSetting|errorCreate a new WebClientFormSetting
Parameters
- payload WebClientFormSetting - Request payload
Return Type
- WebClientFormSetting|error - The created entity
getWebClientFormSettings
function getWebClientFormSettings(string guid, map<string|string[]> headers, *GetWebClientFormSettingsQueries queries) returns WebClientFormSetting|errorGet a single WebClientFormSetting by key
Parameters
- guid string - Key property 'Guid' (Edm.String)
- queries *GetWebClientFormSettingsQueries - Queries to be sent with the request
Return Type
- WebClientFormSetting|error - The requested entity
deleteWebClientFormSettings
Delete a WebClientFormSetting
Parameters
- guid string - Key property 'Guid' (Edm.String)
Return Type
- error? - Deleted. No content returned
updateWebClientFormSettings
function updateWebClientFormSettings(string guid, WebClientFormSetting payload, map<string|string[]> headers) returns error?Partially update a WebClientFormSetting (PATCH/MERGE semantics)
Parameters
- guid string - Key property 'Guid' (Edm.String)
- payload WebClientFormSetting - Request payload
Return Type
- error? - Updated. No content returned
webClientLaunchpadServiceGetList
function webClientLaunchpadServiceGetList(map<string|string[]> headers) returns inline_response_200_49|errorGet list
Return Type
- inline_response_200_49|error - Function result
listWebClientLaunchpads
function listWebClientLaunchpads(ListWebClientLaunchpadsHeaders headers, *ListWebClientLaunchpadsQueries queries) returns WebClientLaunchpadsCollectionResponse|errorQuery the WebClientLaunchpads collection
Parameters
- headers ListWebClientLaunchpadsHeaders (default {}) - Headers to be sent with the request
- queries *ListWebClientLaunchpadsQueries - Queries to be sent with the request
Return Type
- WebClientLaunchpadsCollectionResponse|error - A page of entities
createWebClientLaunchpads
function createWebClientLaunchpads(WebClientLaunchpad payload, map<string|string[]> headers) returns WebClientLaunchpad|errorCreate a new WebClientLaunchpad
Parameters
- payload WebClientLaunchpad - Request payload
Return Type
- WebClientLaunchpad|error - The created entity
getWebClientLaunchpads
function getWebClientLaunchpads(string guid, map<string|string[]> headers, *GetWebClientLaunchpadsQueries queries) returns WebClientLaunchpad|errorGet a single WebClientLaunchpad by key
Parameters
- guid string - Key property 'Guid' (Edm.String)
- queries *GetWebClientLaunchpadsQueries - Queries to be sent with the request
Return Type
- WebClientLaunchpad|error - The requested entity
deleteWebClientLaunchpads
Delete a WebClientLaunchpad
Parameters
- guid string - Key property 'Guid' (Edm.String)
Return Type
- error? - Deleted. No content returned
updateWebClientLaunchpads
function updateWebClientLaunchpads(string guid, WebClientLaunchpad payload, map<string|string[]> headers) returns error?Partially update a WebClientLaunchpad (PATCH/MERGE semantics)
Parameters
- guid string - Key property 'Guid' (Edm.String)
- payload WebClientLaunchpad - Request payload
Return Type
- error? - Updated. No content returned
webClientListviewFilterServiceGetList
function webClientListviewFilterServiceGetList(map<string|string[]> headers) returns inline_response_200_50|errorGet list
Return Type
- inline_response_200_50|error - Function result
listWebClientListviewFilters
function listWebClientListviewFilters(ListWebClientListviewFiltersHeaders headers, *ListWebClientListviewFiltersQueries queries) returns WebClientListviewFiltersCollectionResponse|errorQuery the WebClientListviewFilters collection
Parameters
- headers ListWebClientListviewFiltersHeaders (default {}) - Headers to be sent with the request
- queries *ListWebClientListviewFiltersQueries - Queries to be sent with the request
Return Type
- WebClientListviewFiltersCollectionResponse|error - A page of entities
createWebClientListviewFilters
function createWebClientListviewFilters(WebClientListviewFilter payload, map<string|string[]> headers) returns WebClientListviewFilter|errorCreate a new WebClientListviewFilter
Parameters
- payload WebClientListviewFilter - Request payload
Return Type
- WebClientListviewFilter|error - The created entity
getWebClientListviewFilters
function getWebClientListviewFilters(string guid, map<string|string[]> headers, *GetWebClientListviewFiltersQueries queries) returns WebClientListviewFilter|errorGet a single WebClientListviewFilter by key
Parameters
- guid string - Key property 'Guid' (Edm.String)
- queries *GetWebClientListviewFiltersQueries - Queries to be sent with the request
Return Type
- WebClientListviewFilter|error - The requested entity
deleteWebClientListviewFilters
Delete a WebClientListviewFilter
Parameters
- guid string - Key property 'Guid' (Edm.String)
Return Type
- error? - Deleted. No content returned
updateWebClientListviewFilters
function updateWebClientListviewFilters(string guid, WebClientListviewFilter payload, map<string|string[]> headers) returns error?Partially update a WebClientListviewFilter (PATCH/MERGE semantics)
Parameters
- guid string - Key property 'Guid' (Edm.String)
- payload WebClientListviewFilter - Request payload
Return Type
- error? - Updated. No content returned
webClientNotificationServiceGetList
function webClientNotificationServiceGetList(map<string|string[]> headers) returns inline_response_200_51|errorGet list
Return Type
- inline_response_200_51|error - Function result
listWebClientNotifications
function listWebClientNotifications(ListWebClientNotificationsHeaders headers, *ListWebClientNotificationsQueries queries) returns WebClientNotificationsCollectionResponse|errorQuery the WebClientNotifications collection
Parameters
- headers ListWebClientNotificationsHeaders (default {}) - Headers to be sent with the request
- queries *ListWebClientNotificationsQueries - Queries to be sent with the request
Return Type
- WebClientNotificationsCollectionResponse|error - A page of entities
createWebClientNotifications
function createWebClientNotifications(WebClientNotification payload, map<string|string[]> headers) returns WebClientNotification|errorCreate a new WebClientNotification
Parameters
- payload WebClientNotification - Request payload
Return Type
- WebClientNotification|error - The created entity
getWebClientNotifications
function getWebClientNotifications(string guid, map<string|string[]> headers, *GetWebClientNotificationsQueries queries) returns WebClientNotification|errorGet a single WebClientNotification by key
Parameters
- guid string - Key property 'Guid' (Edm.String)
- queries *GetWebClientNotificationsQueries - Queries to be sent with the request
Return Type
- WebClientNotification|error - The requested entity
deleteWebClientNotifications
Delete a WebClientNotification
Parameters
- guid string - Key property 'Guid' (Edm.String)
Return Type
- error? - Deleted. No content returned
updateWebClientNotifications
function updateWebClientNotifications(string guid, WebClientNotification payload, map<string|string[]> headers) returns error?Partially update a WebClientNotification (PATCH/MERGE semantics)
Parameters
- guid string - Key property 'Guid' (Edm.String)
- payload WebClientNotification - Request payload
Return Type
- error? - Updated. No content returned
webClientPreferenceServiceGetList
function webClientPreferenceServiceGetList(map<string|string[]> headers) returns inline_response_200_52|errorGet list
Return Type
- inline_response_200_52|error - Function result
listWebClientPreferences
function listWebClientPreferences(ListWebClientPreferencesHeaders headers, *ListWebClientPreferencesQueries queries) returns WebClientPreferencesCollectionResponse|errorQuery the WebClientPreferences collection
Parameters
- headers ListWebClientPreferencesHeaders (default {}) - Headers to be sent with the request
- queries *ListWebClientPreferencesQueries - Queries to be sent with the request
Return Type
- WebClientPreferencesCollectionResponse|error - A page of entities
createWebClientPreferences
function createWebClientPreferences(WebClientPreference payload, map<string|string[]> headers) returns WebClientPreference|errorCreate a new WebClientPreference
Parameters
- payload WebClientPreference - Request payload
Return Type
- WebClientPreference|error - The created entity
getWebClientPreferences
function getWebClientPreferences(string guid, map<string|string[]> headers, *GetWebClientPreferencesQueries queries) returns WebClientPreference|errorGet a single WebClientPreference by key
Parameters
- guid string - Key property 'Guid' (Edm.String)
- queries *GetWebClientPreferencesQueries - Queries to be sent with the request
Return Type
- WebClientPreference|error - The requested entity
deleteWebClientPreferences
Delete a WebClientPreference
Parameters
- guid string - Key property 'Guid' (Edm.String)
Return Type
- error? - Deleted. No content returned
updateWebClientPreferences
function updateWebClientPreferences(string guid, WebClientPreference payload, map<string|string[]> headers) returns error?Partially update a WebClientPreference (PATCH/MERGE semantics)
Parameters
- guid string - Key property 'Guid' (Edm.String)
- payload WebClientPreference - Request payload
Return Type
- error? - Updated. No content returned
listWebClientRecentActivities
function listWebClientRecentActivities(ListWebClientRecentActivitiesHeaders headers, *ListWebClientRecentActivitiesQueries queries) returns WebClientRecentActivitiesCollectionResponse|errorQuery the WebClientRecentActivities collection
Parameters
- headers ListWebClientRecentActivitiesHeaders (default {}) - Headers to be sent with the request
- queries *ListWebClientRecentActivitiesQueries - Queries to be sent with the request
Return Type
- WebClientRecentActivitiesCollectionResponse|error - A page of entities
createWebClientRecentActivities
function createWebClientRecentActivities(WebClientRecentActivity payload, map<string|string[]> headers) returns WebClientRecentActivity|errorCreate a new WebClientRecentActivity
Parameters
- payload WebClientRecentActivity - Request payload
Return Type
- WebClientRecentActivity|error - The created entity
getWebClientRecentActivities
function getWebClientRecentActivities(string guid, map<string|string[]> headers, *GetWebClientRecentActivitiesQueries queries) returns WebClientRecentActivity|errorGet a single WebClientRecentActivity by key
Parameters
- guid string - Key property 'Guid' (Edm.String)
- queries *GetWebClientRecentActivitiesQueries - Queries to be sent with the request
Return Type
- WebClientRecentActivity|error - The requested entity
deleteWebClientRecentActivities
Delete a WebClientRecentActivity
Parameters
- guid string - Key property 'Guid' (Edm.String)
Return Type
- error? - Deleted. No content returned
updateWebClientRecentActivities
function updateWebClientRecentActivities(string guid, WebClientRecentActivity payload, map<string|string[]> headers) returns error?Partially update a WebClientRecentActivity (PATCH/MERGE semantics)
Parameters
- guid string - Key property 'Guid' (Edm.String)
- payload WebClientRecentActivity - Request payload
Return Type
- error? - Updated. No content returned
webClientRecentActivityServiceGetList
function webClientRecentActivityServiceGetList(map<string|string[]> headers) returns inline_response_200_53|errorGet list
Return Type
- inline_response_200_53|error - Function result
webClientVariantGroupServiceGetList
function webClientVariantGroupServiceGetList(map<string|string[]> headers) returns inline_response_200_54|errorGet list
Return Type
- inline_response_200_54|error - Function result
listWebClientVariantGroups
function listWebClientVariantGroups(ListWebClientVariantGroupsHeaders headers, *ListWebClientVariantGroupsQueries queries) returns WebClientVariantGroupsCollectionResponse|errorQuery the WebClientVariantGroups collection
Parameters
- headers ListWebClientVariantGroupsHeaders (default {}) - Headers to be sent with the request
- queries *ListWebClientVariantGroupsQueries - Queries to be sent with the request
Return Type
- WebClientVariantGroupsCollectionResponse|error - A page of entities
createWebClientVariantGroups
function createWebClientVariantGroups(WebClientVariantGroup payload, map<string|string[]> headers) returns WebClientVariantGroup|errorCreate a new WebClientVariantGroup
Parameters
- payload WebClientVariantGroup - Request payload
Return Type
- WebClientVariantGroup|error - The created entity
getWebClientVariantGroups
function getWebClientVariantGroups(string guid, map<string|string[]> headers, *GetWebClientVariantGroupsQueries queries) returns WebClientVariantGroup|errorGet a single WebClientVariantGroup by key
Parameters
- guid string - Key property 'Guid' (Edm.String)
- queries *GetWebClientVariantGroupsQueries - Queries to be sent with the request
Return Type
- WebClientVariantGroup|error - The requested entity
deleteWebClientVariantGroups
Delete a WebClientVariantGroup
Parameters
- guid string - Key property 'Guid' (Edm.String)
Return Type
- error? - Deleted. No content returned
updateWebClientVariantGroups
function updateWebClientVariantGroups(string guid, WebClientVariantGroup payload, map<string|string[]> headers) returns error?Partially update a WebClientVariantGroup (PATCH/MERGE semantics)
Parameters
- guid string - Key property 'Guid' (Edm.String)
- payload WebClientVariantGroup - Request payload
Return Type
- error? - Updated. No content returned
webClientVariantServiceGetList
function webClientVariantServiceGetList(map<string|string[]> headers) returns inline_response_200_55|errorGet list
Return Type
- inline_response_200_55|error - Function result
listWebClientVariants
function listWebClientVariants(ListWebClientVariantsHeaders headers, *ListWebClientVariantsQueries queries) returns WebClientVariantsCollectionResponse|errorQuery the WebClientVariants collection
Parameters
- headers ListWebClientVariantsHeaders (default {}) - Headers to be sent with the request
- queries *ListWebClientVariantsQueries - Queries to be sent with the request
Return Type
- WebClientVariantsCollectionResponse|error - A page of entities
createWebClientVariants
function createWebClientVariants(WebClientVariant payload, map<string|string[]> headers) returns WebClientVariant|errorCreate a new WebClientVariant
Parameters
- payload WebClientVariant - Request payload
Return Type
- WebClientVariant|error - The created entity
getWebClientVariants
function getWebClientVariants(string guid, map<string|string[]> headers, *GetWebClientVariantsQueries queries) returns WebClientVariant|errorGet a single WebClientVariant by key
Parameters
- guid string - Key property 'Guid' (Edm.String)
- queries *GetWebClientVariantsQueries - Queries to be sent with the request
Return Type
- WebClientVariant|error - The requested entity
deleteWebClientVariants
Delete a WebClientVariant
Parameters
- guid string - Key property 'Guid' (Edm.String)
Return Type
- error? - Deleted. No content returned
updateWebClientVariants
function updateWebClientVariants(string guid, WebClientVariant payload, map<string|string[]> headers) returns error?Partially update a WebClientVariant (PATCH/MERGE semantics)
Return Type
- error? - Updated. No content returned
workflowTaskServiceComplete
function workflowTaskServiceComplete(WorkflowTaskService_Complete_body payload, map<string|string[]> headers) returns error?Complete
Parameters
- payload WorkflowTaskService_Complete_body - Request payload
Return Type
- error? - Success. No content returned
workflowTaskServiceGetApprovalTaskList
function workflowTaskServiceGetApprovalTaskList(WorkflowTaskService_GetApprovalTaskList_body payload, map<string|string[]> headers) returns inline_response_200_56|errorGet approval task list
Parameters
- payload WorkflowTaskService_GetApprovalTaskList_body - Request payload
Return Type
- inline_response_200_56|error - Function result
Records
sap.businessone.administration: AdditionalExpense
The AdditionalExpense entity of the SAP Business One Service Layer
Fields
- Name? string -
- RevenuesAccount? string -
- ExpenseAccount? string -
- TaxLiable? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- FixedAmountRevenues? decimal -
- FixedAmountExpenses? decimal -
- OutputVATGroup? string -
- InputVATGroup? string -
- DistributionMethod? BoAeDistMthd - OData EnumType 'BoAeDistMthd'. Serialised by the Service Layer as the member name
- Includein1099? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- FreightOffsetAccount? string -
- WTLiable? string -
- ExpensCode? Signed32 -
- ExpenseExemptedAccount? string -
- RevenuesExemptedAccount? string -
- DistributionRule? string -
- DrawingMethod? DrawingMethodEnum - OData EnumType 'DrawingMethodEnum'. Serialised by the Service Layer as the member name
- FreightType? FreightTypeEnum - OData EnumType 'FreightTypeEnum'. Serialised by the Service Layer as the member name
- Stock? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- LastPurchasePrice? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Project? string -
- DistributionRule2? string -
- DistributionRule3? string -
- DistributionRule4? string -
- DistributionRule5? string -
- DataVersion? Signed32 -
- SAFTProductType? SAFTProductTypeEnum - OData EnumType 'SAFTProductTypeEnum'. Serialised by the Service Layer as the member name
- SAFTProductTypeEx? string -
sap.businessone.administration: AdditionalExpensesCollectionResponse
A paged collection of AdditionalExpenses entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? AdditionalExpense[] -
- odataNextLink? string -
sap.businessone.administration: AdminInfo
The AdminInfo complex type of the SAP Business One Service Layer
Fields
- alertTypeforWHStock? BoAlertTypeforWHStockEnum -
- inventoryPostingHighlightVariance? decimal -
- autoAssignOnlyValidARBA? BoYesNoEnum -
- bankCountry? string -
- systemCurrency? string -
- bankStatementInstalled? BoYesNoEnum -
- blockMultipleBAOnSameAPDocument? BoYesNoEnum -
- fileNumberinIncomeTax? string -
- altNameforCreditMemo? string -
- eMail? string -
- deferredTaxforVendors? BoYesNoEnum -
- wTAccumAmountAR? decimal -
- periodStatusAutoChange? BoYesNoEnum -
- altNameForGoodsReturn? string -
- wTAccumAmountAP? decimal -
- faxNumber? string -
- aliasName? string -
- calculateInWhseQtyBasedOnPostingDate? BoYesNoEnum -
- webhookRetryTimes? Signed32 -
- defaultBudgetCostAssessMt? Signed32 -
- enableWebhook? BoYesNoEnum -
- setItemsWarehouses? BoYesNoEnum -
- messageBatchLimit? Signed32 -
- displayInactivePriceListInReports? BoYesNoEnum -
- inventoryCountingHighlightVariance? decimal -
- defaultBankAccountKey? Signed32 -
- withholdingTaxTdctPercnt? decimal -
- servicePassword? string -
- useProductionProfitAndLossAccount? BoYesNoEnum -
- gTSOutboundFolder? string -
- extendedAdminInfo? ExtendedAdminInfo -
- roundingMethod? BoYesNoEnum -
- boletoFolderPath? string -
- displayInactivePriceListInDocuments? BoYesNoEnum -
- code? Signed32 -
- allowBPWithNoOwner? BoYesNoEnum -
- defaultVendorPaymentTerms? Signed32 -
- priceListforCostPrice? Signed32 -
- chartofAccountsTemplate? string -
- blockSystemCurrencyEditing? BoYesNoEnum -
- holidaysName? string -
- iSRType? Signed32 -
- enableUpdateDraftDuringApproval? BoYesNoEnum -
- printingHeader? string -
- multiCurrencyCheck? BoCurrencyCheck -
- uniqueSerialNo? BoUniqueSerialNumber -
- closeCountedRowsWithZeroDifference? BoYesNoEnum -
- dataOwnershipManageBy? BoDataOwnershipManageMethodEnum -
- maximumNumberOfDaysForDueDate? Signed32 -
- localCurrency? string -
- iSRBillerID? string -
- altNameForGoodsReceipt? string -
- sHandleWT? BoYesNoEnum -
- inventoryCountingHighlightMaxVariance? decimal -
- customerIdNumber? string -
- serviceCode? string -
- maxNumberOfWebHooks? Signed32 -
- blockDelNotesforPurchase? BoYesNoEnum -
- enablePaymentDueDates? BoYesNoEnum -
- defaultCustomerPriceList? Signed32 -
- withholdingTaxVendorDdct? BoYesNoEnum -
- salesLnWTax? BoYesNoEnum -
- considerDelNotesinSalesR? BoYesNoEnum -
- docConfirmation? BoYesNoEnum -
- excelFolderPath? string -
- defaultVendorPriceList? Signed32 -
- applyBaseInactiveStatusToSpecialPrices? BoYesNoEnum -
- addressinForeignLanguage? string -
- consumptionMethod? BoConsumptionMethod -
- salesPostPaymentCategoryLnWTax? BoYesNoEnum -
- displayPriceforPriceOnly? BoYesNoEnum -
- queryAccuracy? Signed32 -
- weightUnitDefault? Signed32 -
- companyColor? Signed32 -
- wholdingTaxDedHierarchy? BoYesNoEnum -
- reuseNotaFiscalNum? BoYesNoEnum -
- setResourcesWarehouses? BoYesNoEnum -
- displayBatchQtyUoMBy? DisplayBatchQtyUoMByEnum -
- inventoryCountingHighlightCountersDifference? decimal -
- electronicReportInfo? ElectronicReportInfo -
- actionWhenDeviateFromBAForAccounting? BADivationAlertLevelEnum -
- defaultforBatchStatus? BoDefaultBatchStatus -
- enableMultipleSchedulings? string -
- deferredTax? BoYesNoEnum -
- enableDigitalPayments? BoYesNoEnum -
- faxNumberForeignLang? string -
- messageTTL? Signed32 -
- pDefaultWTCode? string -
- federalTaxID? string -
- accuracyofQuantities? Signed32 -
- messageRetentionTime? Signed32 -
- adressFromWH? BoYesNoEnum -
- defaultTaxCode? string -
- pBSNumber? string -
- pBSGroupNumber? string -
- generalManager? string -
- usePASystem? BoYesNoEnum -
- isPrinterConnected? BoYesNoEnum -
- totalsAccuracy? Signed32 -
- allowClosedSalesQuotations? BoYesNoEnum -
- certificateNo? string -
- dontDuplicatwAttachment? BoYesNoEnum -
- enableExternalTax? BoYesNoEnum -
- minimumAmountfor347Report? decimal -
- state? string -
- altNameForPurchase? string -
- enableCentralizedIncomingPayments? BoYesNoEnum -
- rateAccuracy? Signed32 -
- maxHistory? Signed32 -
- withholdingTaxDdctExpired? string -
- phoneNumber2ForeignLang? string -
- creditRestriction? BoYesNoEnum -
- dateSeparator? string -
- continuousStockManagement? BoYesNoEnum -
- webhookRetryInterval? Signed32 -
- gTSInboundFolder? string -
- attachmentEntryForFileStorage? Signed32 -
- enableAdvancedGLAccountDetermination? BoYesNoEnum -
- customersDeductionatSource? BoYesNoEnum -
- gLMethod? BoGLMethods -
- userConversionCode? BoYesNoEnum -
- additionalIdNumber? string -
- restrictDelNotesPO? BoYesNoEnum -
- daysBackward? Signed32 -
- autoAddPackage? BoYesNoEnum -
- dontOverwriteAtcWithSameName? BoYesNoEnum -
- consumeForecast? BoYesNoEnum -
- enableApprovalProcedureInDI? BoYesNoEnum -
- taxPercentage? decimal -
- gTSDefaultPayee? Signed32 -
- displayInactivePriceListInSettings? BoYesNoEnum -
- reportAccordingTo? Signed32 -
- allowFuturePostingDate? BoYesNoEnum -
- iEMandatoryValidation? BoYesNoEnum -
- useDefaultPriceList? BoYesNoEnum -
- useParentWIPInComponents? BoYesNoEnum -
- taxDefinitionforVatitem? string -
- generalManagerForeignLanguage? string -
- gTSSeparateCode? string -
- multiLanguageSupportEnable? BoYesNoEnum -
- calculateRowDiscount? BoYesNoEnum -
- salesApplyExhRatesLnWTax? BoYesNoEnum -
- taxCollection? BoYesNoEnum -
- account? string -
- organizationNumber? string -
- accountSegmentsSeparator? string -
- address? string -
- blockStockNegativeQuantity? BoYesNoEnum -
- defaultBankNo? string -
- institutionCode? string -
- createAutoVATLineinJDT? BoYesNoEnum -
- defaultWarehouse? string -
- refreshInWhseQtyInDI? BoYesNoEnum -
- taxGroupforPurchaseItem? string -
- priceSystem? BoYesNoEnum -
- applyBaseInactiveStatusToPriceLists? BoYesNoEnum -
- blockPurchaseOrders? BoYesNoEnum -
- copyAttachmentsFromBOM? BoYesNoEnum -
- copyOpenRowsToDelivery? BoYesNoEnum -
- paramFolderPath? string -
- withTax? decimal -
- numberOfCharInMonth? Signed32 -
- thousandsSeparator? string -
- enableUpdateBAPriceAndPlannedAmount? BoYesNoEnum -
- autoAddUoM? BoYesNoEnum -
- isRemoveUnpricedValue? BoYesNoEnum -
- useNegativeAmounts? BoYesNoEnum -
- purchaseOrderConfirmed? BoYesNoEnum -
- restrictSales? BoYesNoEnum -
- calculateGrossProfitperTra? BoYesNoEnum -
- setCommissionbySE? BoYesNoEnum -
- country? string -
- startingInFiscalYear? Signed32 -
- defaultAccountCurrency? BoYesNoEnum -
- actionWhenDeviateFromBAForGRPO? BADivationAlertLevelEnum -
- blockBudget? BoBlockBudget -
- baseField? BoYesNoEnum -
- reuseDocumentNum? BoYesNoEnum -
- displayBookkeepingWindow? BoYesNoEnum -
- webhookRequestTimeout? Signed32 -
- useTax? BoYesNoEnum -
- blockTaxDate? BoYesNoEnum -
- taxDefinitionforVatservice? string -
- xMLFileFolderPath? string -
- priceAccuracy? Signed32 -
- sirenNo? string -
- salesOrderConfirmed? BoYesNoEnum -
- copySingleCounterToIndividualCounter? BoYesNoEnum -
- displayRoundingRemark? BoYesNoEnum -
- creditDepositType? BoYesNoEnum -
- dateTemplate? BoDateTemplate -
- purchasePostPaymentCategoryLnWTax? BoYesNoEnum -
- closeCountedRowsWithoutConfirmation? BoYesNoEnum -
- decimalSeparator? string -
- bPTypeCode? string -
- changeDefReconAPAccounts? BoYesNoEnum -
- displayCancelDocInReport? BoYesNoEnum -
- eORINumber? string -
- copyAttachmentsFromBaseToTarget? BoYesNoEnum -
- percentageAccuracy? Signed32 -
- gTSMaxAmount? decimal -
- taxOffice? string -
- grossProfitPercentForServiceDocuments? decimal -
- changedExistingOrders? BoYesNoEnum -
- expirationDate? string -
- managingDirector? string -
- creditBalancewithMinusSign? BoYesNoEnum -
- restrictOrders? BoYesNoEnum -
- priceProceedMethod? PriceProceedMethodEnum -
- allowInBoundPostingWithZeroPrice? BoYesNoEnum -
- measuringAccuracy? Signed32 -
- actionWhenDeviateFromBAForPO? BADivationAlertLevelEnum -
- enableCentralizedOutgoingPayments? BoYesNoEnum -
- blockMultipleBAOnSameARDocument? BoYesNoEnum -
- autoAssignOnlyValidAPBA? BoYesNoEnum -
- displayCurrencyontheRight? BoYesNoEnum -
- taxGroupforServicePurchase? string -
- grossProfitAfterSale? BoYesNoEnum -
- companyName? string -
- removeUpdatePricesBasedOnNonStandardPriceLists? BoYesNoEnum -
- fCCheckAccount? BoCurrencyCheck -
- enableSeparatePriceMode? BoYesNoEnum -
- uniqueTaxPayerReference? string -
- purchaseApplyExhRatesLnWTaxWX? BoYesNoEnum -
- setCommissionbyItem? BoYesNoEnum -
- issuePrimarilyBy? IssuePrimarilyByEnum -
- splitPO? BoYesNoEnum -
- budgetAlert? BoBudgetAlert -
- defaultBranch? string -
- daysForward? Signed32 -
- roundTaxAmounts? BoYesNoEnum -
- phoneNumber2? string -
- orderingParty? string -
- phoneNumber1? string -
- standardUnitofLength? Signed32 -
- defaultCustomerPaymentTerms? Signed32 -
- directIndirectRate? BoYesNoEnum -
- phoneNumber1ForeignLang? string -
- setCommissionbyCustomer? BoYesNoEnum -
- purchaseLnWTax? BoYesNoEnum -
- nationalInsuranceNo? string -
- orderBlock? string -
- blockBookkeeping? BoYesNoEnum -
- taxRateDetermination? TaxRateDeterminationEnum -
- pickList? BoYesNoEnum -
- withholdingTaxDdctOffice? string -
- federalTaxID3? string -
- federalTaxID2? string -
- maxDaysForCancel? Signed32 -
- withholdingTaxPHandle? string -
- defaultDunningTerm? string -
- inventoryPostingReleaseOnlySerialAndBatch? BoYesNoEnum -
- employerReference? string -
- sDfltITWT? string -
- gTSDefaultChecker? Signed32 -
- letterHeaderinForeignLangu? string -
- enableBranches? BoYesNoEnum -
- sEPACreditorID? string -
- applicationOfIFRS? BoYesNoEnum -
- sDefaultWTCode? string -
- altNameForApInvoice? string -
- calculateBudget? BoYesNoEnum -
- createOnlineQuotation? BoYesNoEnum -
- advancesonCorpIncomeTax? decimal -
- calculateTaxinSalesQuotati? BoYesNoEnum -
- continuousStockSystem? BoInventorySystem -
- commitmentRestriction? BoYesNoEnum -
- taxDefinition? BoYesNoEnum -
- changeDefReconARAccounts? BoYesNoEnum -
- periodStatusChangeDelay? Signed32 -
- wTLiableExpense? BoYesNoEnum -
- alertbyWarehouse? BoYesNoEnum -
- enableUpdateDocAfterApproval? BoYesNoEnum -
- gTSResponseToExceeding? GTSResponseToExceedingEnum -
- blockPostingDateEditing? BoYesNoEnum -
- managingDirectorForeignLan? string -
- deductionFileNo? string -
- enableAuthorizerUpdatePendingDraft? BoYesNoEnum -
- series? Signed32 -
- defaultBankAccount? string -
- copyExchangeRateInCopyTo? BoYesNoEnum -
- timeTemplate? BoTimeTemplate -
- pDfltITWT? string -
- allowMultipleBAOnSamePeriod? BoYesNoEnum -
- applyBaseInactiveStatusToPeriodVolumeDiscounts? BoYesNoEnum -
sap.businessone.administration: AdvancedGLAccountParams
The AdvancedGLAccountParams complex type of the SAP Business One Service Layer
Fields
- itemCode? string -
- warehouse? string -
- usage? Signed32 -
- shipToCountry? string -
- vatGroup? string -
- accountType? InventoryAccountTypeEnum -
- federalTaxID? string -
- shipToState? string -
- postingDate? string -
- uDF5? string -
- uDF4? string -
- uDF3? string -
- bPCode? string -
- uDF2? string -
- uDF1? string -
sap.businessone.administration: AdvancedGLAccountReturnParams
The AdvancedGLAccountReturnParams complex type of the SAP Business One Service Layer
Fields
- accountCode? string -
sap.businessone.administration: AlertManagement
The AlertManagement entity of the SAP Business One Service Layer
Fields
- Code? Signed32 -
- Name? string -
- Type? AlertManagementTypeEnum - OData EnumType 'AlertManagementTypeEnum'. Serialised by the Service Layer as the member name
- Priority? AlertManagementPriorityEnum - OData EnumType 'AlertManagementPriorityEnum'. Serialised by the Service Layer as the member name
- Active? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Param? string -
- QueryID? Signed32 -
- FrequencyType? AlertManagementFrequencyType - OData EnumType 'AlertManagementFrequencyType'. Serialised by the Service Layer as the member name
- DayOfExecution? Signed32 -
- ExecutionTime? string -
- LastExecutionDate? string -
- LastExecutionTime? Signed32 -
- NextExecutionDate? string -
- NextExecutionTime? string -
- SaveHistory? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- FrequencyInterval? Signed32 -
- AlertManagementRecipients? AlertManagementRecipient[] -
- AlertManagementDocuments? AlertManagementDocument[] -
sap.businessone.administration: AlertManagementDocument
The AlertManagementDocument complex type of the SAP Business One Service Layer
Fields
- active? BoYesNoEnum -
- document? AlertManagementDocumentEnum -
sap.businessone.administration: AlertManagementParams
The AlertManagementParams complex type of the SAP Business One Service Layer
Fields
- 'type? AlertManagementTypeEnum -
- code? Signed32 -
- name? string -
sap.businessone.administration: AlertManagementRecipient
The AlertManagementRecipient complex type of the SAP Business One Service Layer
Fields
- sendInternal? BoYesNoEnum -
- userCode? Signed32 -
- sendSMS? BoYesNoEnum -
- sendEMail? BoYesNoEnum -
- sendFax? BoYesNoEnum -
sap.businessone.administration: AlertManagementsCollectionResponse
A paged collection of AlertManagements entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? AlertManagement[] -
- odataNextLink? string -
sap.businessone.administration: ApprovalRequest
The ApprovalRequest entity of the SAP Business One Service Layer
Fields
- isDraft? string -
- status? BoApprovalRequestStatusEnum -
- originatorID? Signed32 -
- creationDate? string -
- approvalRequestDecisions? ApprovalRequestDecision[] -
- user? User -
- approvalTemplatesID? Signed32 -
- approvalRequestLines? ApprovalRequestLine[] -
- currentStage? Signed32 -
- draftEntry? Signed32 -
- objectEntry? Signed32 -
- code? Signed32 -
- objectType? string -
- draftType? string -
- remarks? string -
- creationTime? string -
- approvalTemplate? ApprovalTemplate -
- approvalStage? ApprovalStage -
sap.businessone.administration: ApprovalRequestDecision
The ApprovalRequestDecision complex type of the SAP Business One Service Layer
Fields
- status? BoApprovalRequestDecisionEnum -
- approverPassword? string -
- remarks? string -
- approverUserName? string -
sap.businessone.administration: ApprovalRequestLine
The ApprovalRequestLine complex type of the SAP Business One Service Layer
Fields
- status? BoApprovalRequestDecisionEnum -
- updateDate? string -
- creationDate? string -
- remarks? string -
- userID? Signed32 -
- updateTime? string -
- creationTime? string -
- stageCode? Signed32 -
sap.businessone.administration: ApprovalRequestParams
The ApprovalRequestParams complex type of the SAP Business One Service Layer
Fields
- status? BoApprovalRequestStatusEnum -
- remarks? string -
- code? Signed32 -
sap.businessone.administration: ApprovalRequestsCollectionResponse
A paged collection of ApprovalRequests entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? ApprovalRequest[] -
- odataNextLink? string -
sap.businessone.administration: ApprovalStage
The ApprovalStage entity of the SAP Business One Service Layer
Fields
- approvalRequests? ApprovalRequest[] -
- remarks? string -
- code? Signed32 -
- approvalStageApprovers? ApprovalStageApprover[] -
- name? string -
- noOfApproversRequired? Signed32 -
sap.businessone.administration: ApprovalStageApprover
The ApprovalStageApprover complex type of the SAP Business One Service Layer
Fields
- userID? Signed32 -
sap.businessone.administration: ApprovalStageParams
The ApprovalStageParams complex type of the SAP Business One Service Layer
Fields
- code? Signed32 -
- name? string -
sap.businessone.administration: ApprovalStagesCollectionResponse
A paged collection of ApprovalStages entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? ApprovalStage[] -
- odataNextLink? string -
sap.businessone.administration: ApprovalTemplate
The ApprovalTemplate entity of the SAP Business One Service Layer
Fields
- approvalTemplateStages? ApprovalTemplateStage[] -
- approvalRequests? ApprovalRequest[] -
- isActiveWhenUpdatingDocuments? BoYesNoEnum -
- approvalTemplateQueries? ApprovalTemplateQuery[] -
- remarks? string -
- approvalTemplateTerms? ApprovalTemplateTerm[] -
- isActive? BoYesNoEnum -
- useTerms? BoYesNoEnum -
- code? Signed32 -
- approvalTemplateDocuments? ApprovalTemplateDocument[] -
- name? string -
- approvalTemplateUsers? ApprovalTemplateUser[] -
sap.businessone.administration: ApprovalTemplateDocument
The ApprovalTemplateDocument complex type of the SAP Business One Service Layer
Fields
- documentType? ApprovalTemplatesDocumentTypeEnum -
sap.businessone.administration: ApprovalTemplateParams
The ApprovalTemplateParams complex type of the SAP Business One Service Layer
Fields
- code? Signed32 -
- name? string -
sap.businessone.administration: ApprovalTemplateQuery
The ApprovalTemplateQuery complex type of the SAP Business One Service Layer
Fields
- queryID? Signed32 -
sap.businessone.administration: ApprovalTemplatesCollectionResponse
A paged collection of ApprovalTemplates entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? ApprovalTemplate[] -
- odataNextLink? string -
sap.businessone.administration: ApprovalTemplateStage
The ApprovalTemplateStage complex type of the SAP Business One Service Layer
Fields
- remarks? string -
- approvalStageCode? Signed32 -
- sortID? Signed32 -
sap.businessone.administration: ApprovalTemplateTerm
The ApprovalTemplateTerm complex type of the SAP Business One Service Layer
Fields
- value? string -
- conditionType? ApprovalTemplateConditionTypeEnum -
- operationType? ApprovalTemplateOperationTypeEnum -
sap.businessone.administration: ApprovalTemplateUser
The ApprovalTemplateUser complex type of the SAP Business One Service Layer
Fields
- userID? Signed32 -
sap.businessone.administration: Attachments2
The Attachments2 entity of the SAP Business One Service Layer
Fields
- AbsoluteEntry? Signed32 -
- Attachments2_Lines? Attachments2Line[] -
sap.businessone.administration: Attachments2CollectionResponse
A paged collection of Attachments2 entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? Attachments2[] -
- odataNextLink? string -
sap.businessone.administration: Attachments2Line
The Attachments2_Line complex type of the SAP Business One Service Layer
Fields
- AbsoluteEntry? Signed32 -
- LineNum? Signed32 -
- SourcePath? string -
- FileName? string -
- FileExtension? string -
- AttachmentDate? string -
- UserID? Signed32 -
- Override? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- FreeText? string -
- CopyToTargetDoc? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- CopyToProductionOrder? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- EDocSign? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- TargetPath? string -
- SubPath? string -
- SendInMail? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- FileSize? Signed32 -
- CopyFile? string -
- FileSuffix? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
sap.businessone.administration: B1Session
The B1Session entity of the SAP Business One Service Layer
Fields
- sessionTimeout? Signed32 -
- version? string -
- sessionId? string -
sap.businessone.administration: B1SessionsCollectionResponse
A paged collection of B1Sessions entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? B1Session[] -
- odataNextLink? string -
sap.businessone.administration: Branch
The Branch entity of the SAP Business One Service Layer
Fields
- description? string -
- users? User[] -
- code? Signed32 -
- name? string -
sap.businessone.administration: BranchesCollectionResponse
A paged collection of Branches entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? Branch[] -
- odataNextLink? string -
sap.businessone.administration: BranchParams
The BranchParams complex type of the SAP Business One Service Layer
Fields
- code? Signed32 -
- name? string -
sap.businessone.administration: BusinessPlace
The BusinessPlace entity of the SAP Business One Service Layer
Fields
- BPLID? Signed32 -
- BPLName? string -
- BPLNameForeign? string -
- VATRegNum? string -
- RepName? string -
- Industry? string -
- Business? string -
- Address? string -
- Addressforeign? string -
- MainBPL? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- TaxOfficeNo? string -
- Disabled? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- DefaultCustomerID? string -
- DefaultVendorID? string -
- DefaultWarehouseID? string -
- DefaultTaxCode? string -
- TaxOffice? string -
- FederalTaxID? string -
- FederalTaxID2? string -
- FederalTaxID3? string -
- AdditionalIdNumber? string -
- NatureOfCompanyCode? Signed32 -
- EconomicActivityTypeCode? Signed32 -
- CreditContributionOriginCode? string -
- IPIPeriodCode? string -
- CooperativeAssociationTypeCode? Signed32 -
- ProfitTaxationCode? Signed32 -
- CompanyQualificationCode? Signed32 -
- DeclarerTypeCode? Signed32 -
- PreferredStateCode? string -
- AddressType? string -
- Street? string -
- StreetNo? string -
- Building? string -
- ZipCode? string -
- Block? string -
- City? string -
- State? string -
- County? string -
- Country? string -
- AliasName? string -
- CommercialRegister? string -
- DateOfIncorporation? string -
- SPEDProfile? string -
- EnvironmentType? Signed32 -
- Opting4ICMS? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- PaymentClearingAccount? string -
- GlobalLocationNumber? string -
- DefaultResourceWarehouseID? string -
- BusinessPlaceIENumbers? BusinessPlaceIENumber[] -
- BusinessPlaceTributaryInfos? BusinessPlaceTributaryInfo[] -
- UserDefaultGroups? UserDefaultGroup[] -
- County2? County - The
Countyentity of the SAP Business One Service Layer
- Country2? Country - The
Countryentity of the SAP Business One Service Layer
sap.businessone.administration: BusinessPlaceIENumber
The BusinessPlaceIENumber complex type of the SAP Business One Service Layer
Fields
- BPLID? Signed32 -
- State? string -
- IENumber? string -
sap.businessone.administration: BusinessPlacesCollectionResponse
A paged collection of BusinessPlaces entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? BusinessPlace[] -
- odataNextLink? string -
sap.businessone.administration: BusinessPlaceTributaryInfo
The BusinessPlaceTributaryInfo complex type of the SAP Business One Service Layer
Fields
- BPLID? Signed32 -
- TributaryID? Signed32 -
- TributaryType? Signed32 -
- TTStartDate? string -
- TTEndDate? string -
- TributaryRegimeCode? Signed32 -
- TRCStartDate? string -
- TRCEndDate? string -
sap.businessone.administration: CallArgument
The CallArgument complex type of the SAP Business One Service Layer
Fields
- value? string -
- name? string -
sap.businessone.administration: CallMessage
The CallMessage complex type of the SAP Business One Service Layer
Fields
- status? CallMessageStatusEnum -
- creationDate? string -
- 'type? CallMessageTypeEnum -
- callMessageArguments? CallMessageArgument[] -
- creationTime? Signed32 -
- iD? Signed32 -
- errorCode? string -
- messageBody? string -
sap.businessone.administration: CallMessageArgument
The CallMessageArgument complex type of the SAP Business One Service Layer
Fields
- value? string -
- name? string -
sap.businessone.administration: CategoryGroup
The CategoryGroup complex type of the SAP Business One Service Layer
Fields
- categoryId? Signed32 -
- authGroupId? Signed32 -
sap.businessone.administration: ChangeLogDifferenceParams
The ChangeLogDifferenceParams complex type of the SAP Business One Service Layer
Fields
- userName? string -
- arrayOffset? Signed32 -
- oldValue? string -
- changedField? string -
- newValue? string -
- date? string -
- lineNumber? string -
sap.businessone.administration: ChangeLogParams
The ChangeLogParams complex type of the SAP Business One Service Layer
Fields
- userName? string -
- updatedDate? string -
- objectCode? string -
- logInstance? Signed32 -
sap.businessone.administration: ChangeLogsService_GetChangeLog_body
Represents the request payload for the ChangeLogsService_GetChangeLog operation of the SAP Business One Service Layer
Fields
- getChangeLogParams? GetChangeLogParams -
sap.businessone.administration: ChangeLogsService_GetChangeLogDifferences_body
Represents the request payload for the ChangeLogsService_GetChangeLogDifferences operation of the SAP Business One Service Layer
Fields
- showDifferenceParams? ShowDifferenceParams -
sap.businessone.administration: ChooseFromList
The ChooseFromList entity of the SAP Business One Service Layer
Fields
- ObjectName? string -
- ChooseFromList_Lines? ChooseFromListLine[] -
sap.businessone.administration: ChooseFromListCollectionResponse
A paged collection of ChooseFromList entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? ChooseFromList[] -
- odataNextLink? string -
sap.businessone.administration: ChooseFromListLine
The ChooseFromList_Line complex type of the SAP Business One Service Layer
Fields
- ObjectName? string -
- FieldIndex? Signed32 -
- FieldNo? string -
- DisplayedName? string -
- GroupBy? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Visible? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ShowType? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- SortOrder? SortOrderEnum - OData EnumType 'SortOrderEnum'. Serialised by the Service Layer as the member name
- VisualIndex? Signed32 -
sap.businessone.administration: Cockpit
The Cockpit entity of the SAP Business One Service Layer
Fields
- userSignature? Signed32 -
- description? string -
- user? User -
- manufacturer? string -
- cockpitType? BoCockpitTypeEnum -
- time? string -
- publisher? string -
- absEntry? Signed32 -
- code? Signed32 -
- date? string -
- name? string -
sap.businessone.administration: CockpitParams
The CockpitParams complex type of the SAP Business One Service Layer
Fields
- cockpitType? BoCockpitTypeEnum -
- absEntry? Signed32 -
sap.businessone.administration: CockpitsCollectionResponse
A paged collection of Cockpits entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? Cockpit[] -
- odataNextLink? string -
sap.businessone.administration: CockpitsService_PublishCockpit_body
Represents the request payload for the CockpitsService_PublishCockpit operation of the SAP Business One Service Layer
Fields
- cockpit? Cockpit -
sap.businessone.administration: ColumnPreferences
The ColumnPreferences entity of the SAP Business One Service Layer
Fields
- visibleInExpanded? BoYesNoEnum -
- editableInForm? BoYesNoEnum -
- user? Signed32 -
- itemNumber? string -
- user2? User -
- column? string -
- editableInExpanded? BoYesNoEnum -
- formID? string -
- width? Signed32 -
- tabsLayout? Signed32 -
- expandedIndex? Signed32 -
- visibleInForm? BoYesNoEnum -
sap.businessone.administration: CompanyInfo
The CompanyInfo complex type of the SAP Business One Service Layer
Fields
- minimumAmountForAnnualList? decimal -
- percentOfTotalAcquisition? decimal -
- blockStockNegativeQuantity? BoYesNoEnum -
- bISRBankAccount? string -
- groupLinesInVATCalculation? BoYesNoEnum -
- displayTransactionsByDflt? BoYesNoEnum -
- enableExpensesManagement? BoYesNoEnum -
- b1iTimeOut? Signed32 -
- taxCalculationSystem? TaxCalcSysEnum -
- sRIManagementSystem? BoManageMethod -
- companyName? string -
- languageCode? BoSuppLangs -
- enableStockRelNoCostPrice? BoYesNoEnum -
- maxNumberOfDocumentsInPmt? Signed32 -
- version? Signed32 -
- enableCheckQuantityInRDR? BoYesNoEnum -
- baseDateForExchangeRate? BoBaseDateRateEnum -
- minimumAmountForAppndixOP? decimal -
- localization? string -
- bISRBankActKey? Signed32 -
- dataOwnershipIndication? BoYesNoEnum -
- minimumBaseAmountPerDoc? decimal -
- bISRBankCountry? string -
- maxRecordsInChooseFromList? Signed32 -
- enableAccountSegmentation? BoYesNoEnum -
- iEPSPayer? BoYesNoEnum -
- autoSRICreationOnReceipt? BoYesNoEnum -
- enableSharingSeries? BoYesNoEnum -
- enableTransactionNotification? BoYesNoEnum -
- bISRBranch? string -
- autoCreateCustomerEqCard? BoYesNoEnum -
- enableBillOfExchange? BoYesNoEnum -
- defaultStampTax? string -
- enableConversionDifferentAcct? BoYesNoEnum -
- bISRBankNo? string -
- defaultDaysForOrdCanc? Signed32 -
sap.businessone.administration: CompanyService_CreatePeriod_body
Represents the request payload for the CompanyService_CreatePeriod operation of the SAP Business One Service Layer
Fields
- periodCategory? PeriodCategory -
sap.businessone.administration: CompanyService_CreatePeriodWithFinanceParams_body
Represents the request payload for the CompanyService_CreatePeriodWithFinanceParams operation of the SAP Business One Service Layer
Fields
- financePeriodParams? FinancePeriodParams -
- periodCategory? PeriodCategory -
sap.businessone.administration: CompanyService_GetAdvancedGLAccount_body
Represents the request payload for the CompanyService_GetAdvancedGLAccount operation of the SAP Business One Service Layer
Fields
- advancedGLAccountParams? AdvancedGLAccountParams -
sap.businessone.administration: CompanyService_GetFinancePeriod_body
Represents the request payload for the CompanyService_GetFinancePeriod operation of the SAP Business One Service Layer
Fields
- financePeriodParams? FinancePeriodParams -
sap.businessone.administration: CompanyService_GetFinancePeriods_body
Represents the request payload for the CompanyService_GetFinancePeriods operation of the SAP Business One Service Layer
Fields
- periodCategoryParams? PeriodCategoryParams -
sap.businessone.administration: CompanyService_GetItemPrice_body
Represents the request payload for the CompanyService_GetItemPrice operation of the SAP Business One Service Layer
Fields
- itemPriceParams? ItemPriceParams -
sap.businessone.administration: CompanyService_GetPeriod_body
Represents the request payload for the CompanyService_GetPeriod operation of the SAP Business One Service Layer
Fields
- periodCategoryParams? PeriodCategoryParams -
sap.businessone.administration: CompanyService_LogLoginAction_body
Represents the request payload for the CompanyService_LogLoginAction operation of the SAP Business One Service Layer
Fields
- userAccessLog? UserAccessLog -
- supportUserLoginRecord? SupportUserLoginRecord -
sap.businessone.administration: CompanyService_LogLogoffAction_body
Represents the request payload for the CompanyService_LogLogoffAction operation of the SAP Business One Service Layer
Fields
- userAccessLog? UserAccessLog -
- supportUserLoginRecord? SupportUserLoginRecord -
sap.businessone.administration: CompanyService_RemoveFinancePeriod_body
Represents the request payload for the CompanyService_RemoveFinancePeriod operation of the SAP Business One Service Layer
Fields
- financePeriodParams? FinancePeriodParams -
sap.businessone.administration: CompanyService_RoundDecimal_body
Represents the request payload for the CompanyService_RoundDecimal operation of the SAP Business One Service Layer
Fields
- decimalData? DecimalData -
sap.businessone.administration: CompanyService_UpdateAdminInfo_body
Represents the request payload for the CompanyService_UpdateAdminInfo operation of the SAP Business One Service Layer
Fields
- adminInfo? AdminInfo -
sap.businessone.administration: CompanyService_UpdateCompanyInfo_body
Represents the request payload for the CompanyService_UpdateCompanyInfo operation of the SAP Business One Service Layer
Fields
- companyInfo? CompanyInfo -
sap.businessone.administration: CompanyService_UpdateFinancePeriod_body
Represents the request payload for the CompanyService_UpdateFinancePeriod operation of the SAP Business One Service Layer
Fields
- financePeriod? FinancePeriod -
sap.businessone.administration: CompanyService_UpdatePathAdmin_body
Represents the request payload for the CompanyService_UpdatePathAdmin operation of the SAP Business One Service Layer
Fields
- pathAdmin? PathAdmin -
sap.businessone.administration: CompanyService_UpdatePeriod_body
Represents the request payload for the CompanyService_UpdatePeriod operation of the SAP Business One Service Layer
Fields
- periodCategory? PeriodCategory -
sap.businessone.administration: ConnectionConfig
Provides a set of configurations for controlling the behaviours when communicating with a remote HTTP endpoint
Fields
- httpVersion HttpVersion(default http:HTTP_2_0) - The HTTP version understood by the client
- http1Settings ClientHttp1Settings(default {}) - Configurations related to HTTP/1.x protocol
- http2Settings ClientHttp2Settings(default {}) - Configurations related to HTTP/2 protocol
- timeout decimal(default 30) - The maximum time to wait (in seconds) for a response before closing the connection
- forwarded string(default "disable") - The choice of setting
forwarded/x-forwardedheader
- followRedirects? FollowRedirects - Configurations associated with Redirection
- poolConfig? PoolConfiguration - Configurations associated with request pooling
- cache CacheConfig(default {}) - HTTP caching related configurations
- compression Compression(default http:COMPRESSION_AUTO) - Specifies the way of handling compression (
accept-encoding) header
- circuitBreaker? CircuitBreakerConfig - Configurations associated with the behaviour of the Circuit Breaker
- retryConfig? RetryConfig - Configurations associated with retrying
- cookieConfig? CookieConfig - Configurations associated with cookies
- responseLimits ResponseLimitConfigs(default {}) - Configurations associated with inbound response size limits
- secureSocket? ClientSecureSocket - SSL/TLS-related options
- proxy? ProxyConfig - Proxy server related options
- socketConfig ClientSocketConfig(default {}) - Provides settings related to client socket configuration
- validation boolean(default true) - Enables the inbound payload validation functionality which provided by the constraint package. Enabled by default
- laxDataBinding boolean(default true) - Enables relaxed data binding on the client side. When enabled,
nilvalues are treated as optional, and absent fields are handled asnilabletypes. Enabled by default
sap.businessone.administration: CountiesCollectionResponse
A paged collection of Counties entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? County[] -
- odataNextLink? string -
sap.businessone.administration: CountriesCollectionResponse
A paged collection of Countries entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? Country[] -
- odataNextLink? string -
sap.businessone.administration: Country
The Country entity of the SAP Business One Service Layer
Fields
- Code? string -
- Name? string -
- CodeForReports? string -
- AddressFormat? Signed32 -
- EU? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- NumberOfDigitsForTaxID? Signed32 -
- BankCodeDigits? Signed32 -
- BankBranchDigits? Signed32 -
- BankAccountDigits? Signed32 -
- BankControlKeyDigits? Signed32 -
- DomesticAccountValidation? DomesticBankAccountValidationEnum - OData EnumType 'DomesticBankAccountValidationEnum'. Serialised by the Service Layer as the member name
- IbanValidation? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Blacklisted? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- UICCountryCode? string -
- EAEU? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ISOAlpha2Code? string -
- ISOAlpha3Code? string -
- ISONumeric? string -
- UserDefaultGroups? UserDefaultGroup[] -
- BusinessPlaces? BusinessPlace[] -
- States? State[] -
sap.businessone.administration: CountryParams
The CountryParams complex type of the SAP Business One Service Layer
Fields
- code? string -
- name? string -
sap.businessone.administration: County
The County entity of the SAP Business One Service Layer
Fields
- AbsId? Signed32 -
- Code? string -
- Country? string -
- State? string -
- Name? string -
- IbgeCode? string -
- GiaCode? string -
- TaxZone? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- BusinessPlaces? BusinessPlace[] -
sap.businessone.administration: CountyParams
The CountyParams complex type of the SAP Business One Service Layer
Fields
- code? string -
- absId? Signed32 -
- name? string -
sap.businessone.administration: CurrentServerTime
The CurrentServerTime complex type of the SAP Business One Service Layer
Fields
- currentTime? string -
- currentDate? string -
sap.businessone.administration: DashboardPackageImportParams
The DashboardPackageImportParams complex type of the SAP Business One Service Layer
Fields
- forceOverwriteQuery? BoYesNoEnum -
- forceOverwritePackage? BoYesNoEnum -
- packageFilePath? string -
- importQueries? BoYesNoEnum -
sap.businessone.administration: DashboardPackageParams
The DashboardPackageParams complex type of the SAP Business One Service Layer
Fields
- absEntry? Signed32 -
sap.businessone.administration: DashboardPackagesService_ImportDashboardPackage_body
Represents the request payload for the DashboardPackagesService_ImportDashboardPackage operation of the SAP Business One Service Layer
Fields
- dashboardPackageImportParams? DashboardPackageImportParams -
sap.businessone.administration: DataSensitiveStatus
The DataSensitiveStatus complex type of the SAP Business One Service Layer
Fields
- dataSensitiveStatus? DataSensitiveStatusEnum -
sap.businessone.administration: DecimalData
The DecimalData complex type of the SAP Business One Service Layer
Fields
- context? RoundingContextEnum -
- currency? string -
- value? decimal -
sap.businessone.administration: DefaultCreditCard
The DefaultCreditCard complex type of the SAP Business One Service Layer
Fields
- Code? string -
- CreditAccountCode? string -
- CreditCardCode? Signed32 -
sap.businessone.administration: DefaultDocument
The DefaultDocument complex type of the SAP Business One Service Layer
Fields
- AddExport? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- AddPrint? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Code? string -
- EnglishKeyboardEnteringBPC? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- NoofCopies? Signed32 -
- NoofCopiesforManualDoc? Signed32 -
- ObjectType? string -
- PermanentRemark? string -
- PrintDiscountData? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- PrintToals? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- PrintVendorCatalogNo? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- TotalsRounding? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
sap.businessone.administration: DefaultElectronicSeriesParams
The DefaultElectronicSeriesParams complex type of the SAP Business One Service Layer
Fields
- series? Signed32 -
- electronicSeries? Signed32 -
sap.businessone.administration: DefaultReportParams
The DefaultReportParams complex type of the SAP Business One Service Layer
Fields
- layoutCode? string -
- userID? Signed32 -
- reportCode? string -
- cardCode? string -
sap.businessone.administration: Department
The Department entity of the SAP Business One Service Layer
Fields
- description? string -
- users? User[] -
- code? Signed32 -
- name? string -
sap.businessone.administration: DepartmentParams
The DepartmentParams complex type of the SAP Business One Service Layer
Fields
- code? Signed32 -
- name? string -
sap.businessone.administration: DepartmentsCollectionResponse
A paged collection of Departments entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? Department[] -
- odataNextLink? string -
sap.businessone.administration: DistributionList
The DistributionList entity of the SAP Business One Service Layer
Fields
- Code? Signed32 -
- Name? string -
- DistributionListLines? DistributionListLine[] -
sap.businessone.administration: DistributionListLine
The DistributionListLine complex type of the SAP Business One Service Layer
Fields
- LineNumber? Signed32 -
- DistributionType? string -
- DistributionCode? string -
- Email? string -
- PortNum? string -
- Fax? string -
sap.businessone.administration: DistributionListParams
The DistributionListParams complex type of the SAP Business One Service Layer
Fields
- code? Signed32 -
- name? string -
sap.businessone.administration: DistributionListsCollectionResponse
A paged collection of DistributionLists entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? DistributionList[] -
- odataNextLink? string -
sap.businessone.administration: DocumentChangeMenuName
The DocumentChangeMenuName complex type of the SAP Business One Service Layer
Fields
- changedMenuName? string -
- document? string -
- documentSubType? string -
sap.businessone.administration: DocumentSeriesParams
The DocumentSeriesParams complex type of the SAP Business One Service Layer
Fields
- series? Signed32 -
- document? string -
- documentSubType? string -
sap.businessone.administration: DocumentSeriesUserParams
The DocumentSeriesUserParams complex type of the SAP Business One Service Layer
Fields
- series? Signed32 -
- user? Signed32 -
- document? string -
- documentSubType? string -
sap.businessone.administration: DocumentTypeParams
The DocumentTypeParams complex type of the SAP Business One Service Layer
Fields
- document? string -
- documentSubType? string -
sap.businessone.administration: DppChangeParams
The DppChangeParams complex type of the SAP Business One Service Layer
Fields
- fromDate? string -
- hasChanged? BoYesNoEnum -
- fromTime? string -
sap.businessone.administration: DynamicSystemString
The DynamicSystemString entity of the SAP Business One Service Layer
Fields
- FormID? string -
- ItemID? string -
- ColumnID? string -
- ItemString? string -
- IsBold? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- IsItalics? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
sap.businessone.administration: DynamicSystemStringsCollectionResponse
A paged collection of DynamicSystemStrings entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? DynamicSystemString[] -
- odataNextLink? string -
sap.businessone.administration: ElectronicReportInfo
The ElectronicReportInfo complex type of the SAP Business One Service Layer
Fields
- shareCapitalAmount? decimal -
- companyType? string -
sap.businessone.administration: ElectronicSeries
The ElectronicSeries complex type of the SAP Business One Service Layer
Fields
- series? Signed32 -
- nextNumber? string -
- initialNumber? string -
- remarks? string -
- approvalYear? Signed32 -
- approvalNumber? Signed32 -
- prefix? string -
- electronicSeries? Signed32 -
- lastNumber? string -
- name? string -
sap.businessone.administration: ElectronicSeriesParams
The ElectronicSeriesParams complex type of the SAP Business One Service Layer
Fields
- electronicSeries? Signed32 -
sap.businessone.administration: EmailGroup
The EmailGroup entity of the SAP Business One Service Layer
Fields
- emailGroupName? string -
- emailGroupCode? string -
sap.businessone.administration: EmailGroupParams
The EmailGroupParams complex type of the SAP Business One Service Layer
Fields
- emailGroupName? string -
- emailGroupCode? string -
sap.businessone.administration: EmailGroupsCollectionResponse
A paged collection of EmailGroups entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? EmailGroup[] -
- odataNextLink? string -
sap.businessone.administration: EmployeeFullNamesParams
The EmployeeFullNamesParams complex type of the SAP Business One Service Layer
Fields
- employeeFullName? string -
- employeeID? Signed32 -
sap.businessone.administration: Event
The Event complex type of the SAP Business One Service Layer
Fields
- webhookID? string -
- objectType? string -
- transactionType? TransactionTypeEnum -
- businessObject? string -
sap.businessone.administration: EventCatagory
The EventCatagory complex type of the SAP Business One Service Layer
Fields
- description? string -
- version? string -
- events? Event[] -
sap.businessone.administration: EventNotification
The EventNotification entity of the SAP Business One Service Layer
Fields
- status? EventStatusEnum -
- transactionType? string -
- replayState? EventReplayStateEnum -
- createTime? string -
- sourceDB? string -
- fieldsInKey? Signed32 -
- operation? string -
- businessObject? string -
- createDate? string -
- objectType? string -
- updateDate? string -
- fieldNames? string -
- userID? string -
- updateTime? string -
- eventID? string -
- fieldValues? string -
sap.businessone.administration: EventNotificationsCollectionResponse
A paged collection of EventNotifications entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? EventNotification[] -
- odataNextLink? string -
sap.businessone.administration: EventSubscription
The EventSubscription entity of the SAP Business One Service Layer
Fields
- verifyCertificate? BoYesNoEnum -
- lastSentTime? string -
- authenticationCred? string -
- createTime? string -
- createDate? string -
- lastSentDate? string -
- webhookURL? string -
- webhookID? string -
- updateDate? string -
- eventCollection? Event[] -
- state? WebhookStateEnum -
- updateTime? string -
- lastErrMsg? string -
- workMode? WebhookWorkModeEnum -
- authenticationType? AuthenticationTypeEnum -
- handshake? BoYesNoEnum -
sap.businessone.administration: EventSubscriptionsCollectionResponse
A paged collection of EventSubscriptions entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? EventSubscription[] -
- odataNextLink? string -
sap.businessone.administration: ExceptionalEvent
The ExceptionalEvent entity of the SAP Business One Service Layer
Fields
- description? string -
- code? string -
sap.businessone.administration: ExceptionalEventParams
The ExceptionalEventParams complex type of the SAP Business One Service Layer
Fields
- code? string -
sap.businessone.administration: ExceptionalEventsCollectionResponse
A paged collection of ExceptionalEvents entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? ExceptionalEvent[] -
- odataNextLink? string -
sap.businessone.administration: ExtendedAdminInfo
The ExtendedAdminInfo complex type of the SAP Business One Service Layer
Fields
- creditContributionOriginCode? string -
- email? string -
- telephone? string -
- companyQualificationCode? Signed32 -
- sTDCode? Signed32 -
- sTDCodeForeign? Signed32 -
- globalLocationNumber? string -
- enableSameURLforPaymentTypeService? BoYesNoEnum -
- commercialRegister? string -
- authorityPassword? string -
- economicActivityTypeCode? Signed32 -
- documentRemarksInclude? DocumentRemarksIncludeTypeEnum -
- cNPJOfIT? string -
- noWarningForLinkTypeUDF? BoYesNoEnum -
- electronicApprovalForInvoiceEnabled? BoYesNoEnum -
- authorityUser? string -
- streetNo? string -
- uRLforGoodsTransportService? string -
- profitTaxationCode? Signed32 -
- allowInactiveItemsInInventoryOpeningBalance? BoYesNoEnum -
- opting4ICMS? BoYesNoEnum -
- uRLforInvoiceTypeService? string -
- cnPerson? string -
- oKDPNumber? string -
- iPITaxContributor? BoYesNoEnum -
- allowInactiveItemsInInventoryCountingAndPosting? BoYesNoEnum -
- cooperativeAssociationTypeCode? Signed32 -
- sPEDProfile? string -
- copyRefDocFormOrigDocToDupDoc? BoYesNoEnum -
- electronicApprovalForGoodsTransEnabled? BoYesNoEnum -
- environmentType? Signed32 -
- autoAssignNewBranchToBP? BoYesNoEnum -
- enableIntrastat? BoYesNoEnum -
- declarerTypeCode? Signed32 -
- natureOfCompanyCode? Signed32 -
- iPIPeriodCode? string -
- addressType? string -
- dateOfIncorporation? string -
sap.businessone.administration: ExtendedTranslation
The ExtendedTranslation entity of the SAP Business One Service Layer
Fields
- sourceLanguage? Signed32 -
- updateDate? string -
- category? TranslationCategoryEnum -
- secondaryID? string -
- docEntry? Signed32 -
- extendedTranslationItemLines? ExtendedTranslationItemLine[] -
- iD? string -
- createDate? string -
sap.businessone.administration: ExtendedTranslationItemLine
The ExtendedTranslation_ItemLine complex type of the SAP Business One Service Layer
Fields
- slimType? string -
- itemCode? string -
- itemType? string -
- extendedTranslationResultLines? ExtendedTranslationResultLine[] -
- docEntry? Signed32 -
- sourceText? string -
- maxLength? Signed32 -
- lineNumber? Signed32 -
- memo? string -
sap.businessone.administration: ExtendedTranslationParams
The ExtendedTranslationParams complex type of the SAP Business One Service Layer
Fields
- category? TranslationCategoryEnum -
- secondaryID? string -
- docEntry? Signed32 -
- iD? string -
sap.businessone.administration: ExtendedTranslationResultLine
The ExtendedTranslation_ResultLine complex type of the SAP Business One Service Layer
Fields
- languageCode? Signed32 -
- translatedText? string -
- subLineNumber? Signed32 -
- docEntry? Signed32 -
- lineNumber? Signed32 -
sap.businessone.administration: ExtendedTranslationsCollectionResponse
A paged collection of ExtendedTranslations entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? ExtendedTranslation[] -
- odataNextLink? string -
sap.businessone.administration: ExternalCall
The ExternalCall complex type of the SAP Business One Service Layer
Fields
- status? ExternalCallStatusEnum -
- creationDate? string -
- category? Signed32 -
- lastUpdateTime? Signed32 -
- callMessages? CallMessage[] -
- creationTime? Signed32 -
- callArguments? CallArgument[] -
- iD? Signed32 -
- lastUpdateUserCode? string -
- lastUpdateDate? string -
sap.businessone.administration: ExternalCallParams
The ExternalCallParams complex type of the SAP Business One Service Layer
Fields
- iD? Signed32 -
sap.businessone.administration: ExternalCallsService_GetCall_body
Represents the request payload for the ExternalCallsService_GetCall operation of the SAP Business One Service Layer
Fields
- externalCallParams? ExternalCallParams -
sap.businessone.administration: ExternalCallsService_SendCall_body
Represents the request payload for the ExternalCallsService_SendCall operation of the SAP Business One Service Layer
Fields
- externalCall? ExternalCall -
sap.businessone.administration: ExternalCallsService_UpdateCall_body
Represents the request payload for the ExternalCallsService_UpdateCall operation of the SAP Business One Service Layer
Fields
- externalCall? ExternalCall -
sap.businessone.administration: FeatureStatus
The FeatureStatus complex type of the SAP Business One Service Layer
Fields
- featureID? string -
- blocked? BoYesNoEnum -
sap.businessone.administration: FieldID
The FieldID complex type of the SAP Business One Service Layer
Fields
- FieldID? string -
sap.businessone.administration: FinancePeriod
The FinancePeriod complex type of the SAP Business One Service Layer
Fields
- taxDateFrom? string -
- valueDateFrom? string -
- valueDateTo? string -
- activeforFeed? BoYesNoEnum -
- subNum? Signed32 -
- postingDateTo? string -
- additionalSubPeriods? BoYesNoEnum -
- periodIndicator? string -
- postingDateFrom? string -
- locked? BoYesNoEnum -
- absoluteEntry? Signed32 -
- periodName? string -
- periodStatus? PeriodStatusEnum -
- periodCode? string -
- taxDateTo? string -
sap.businessone.administration: FinancePeriodParams
The FinancePeriodParams complex type of the SAP Business One Service Layer
Fields
- absoluteEntry? Signed32 -
- periodIndicator? string -
sap.businessone.administration: FormattedSearch
The FormattedSearch entity of the SAP Business One Service Layer
Fields
- FormID? string -
- ItemID? string -
- ColumnID? string -
- Action? BoFormattedSearchActionEnum - OData EnumType 'BoFormattedSearchActionEnum'. Serialised by the Service Layer as the member name
- QueryID? Signed32 -
- Index? Signed32 -
- Refresh? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- FieldID? string -
- ForceRefresh? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ByField? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ByFieldEx? FormattedSearchByFieldEnum - OData EnumType 'FormattedSearchByFieldEnum'. Serialised by the Service Layer as the member name
- UserValidValues? UserValidValue[] -
- FieldIDs? FieldID[] -
sap.businessone.administration: FormattedSearchesCollectionResponse
A paged collection of FormattedSearches entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? FormattedSearch[] -
- odataNextLink? string -
sap.businessone.administration: FormPreferencesCollectionResponse
A paged collection of FormPreferences entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? ColumnPreferences[] -
- odataNextLink? string -
sap.businessone.administration: GetAdditionalExpensesQueries
Represents the Queries record for the operation: getAdditionalExpenses
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: GetAlertManagementsQueries
Represents the Queries record for the operation: getAlertManagements
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: GetApprovalRequestsQueries
Represents the Queries record for the operation: getApprovalRequests
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: GetApprovalStagesQueries
Represents the Queries record for the operation: getApprovalStages
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: GetApprovalTemplatesQueries
Represents the Queries record for the operation: getApprovalTemplates
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: GetAttachments2Queries
Represents the Queries record for the operation: getAttachments2
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: GetB1SessionsQueries
Represents the Queries record for the operation: getB1Sessions
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: GetBranchesQueries
Represents the Queries record for the operation: getBranches
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: GetBusinessPlacesQueries
Represents the Queries record for the operation: getBusinessPlaces
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: GetChangeLogParams
The GetChangeLogParams complex type of the SAP Business One Service Layer
Fields
- primaryKey? string -
- uDOObjectCode? string -
- 'object? BoChangeLogEnum -
sap.businessone.administration: GetChooseFromListQueries
Represents the Queries record for the operation: getChooseFromList
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: GetCockpitsQueries
Represents the Queries record for the operation: getCockpits
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: GetCountiesQueries
Represents the Queries record for the operation: getCounties
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: GetCountriesQueries
Represents the Queries record for the operation: getCountries
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: GetDepartmentsQueries
Represents the Queries record for the operation: getDepartments
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: GetDistributionListsQueries
Represents the Queries record for the operation: getDistributionLists
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: GetDynamicSystemStringsQueries
Represents the Queries record for the operation: getDynamicSystemStrings
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: GetEmailGroupsQueries
Represents the Queries record for the operation: getEmailGroups
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: GetEventNotificationsQueries
Represents the Queries record for the operation: getEventNotifications
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: GetEventSubscriptionsQueries
Represents the Queries record for the operation: getEventSubscriptions
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: GetExceptionalEventsQueries
Represents the Queries record for the operation: getExceptionalEvents
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: GetExtendedTranslationsQueries
Represents the Queries record for the operation: getExtendedTranslations
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: GetFormattedSearchesQueries
Represents the Queries record for the operation: getFormattedSearches
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: GetFormPreferencesQueries
Represents the Queries record for the operation: getFormPreferences
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: GetHolidaysQueries
Represents the Queries record for the operation: getHolidays
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: GetIntegrationPackagesConfigureQueries
Represents the Queries record for the operation: getIntegrationPackagesConfigure
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: GetKPIsQueries
Represents the Queries record for the operation: getKPIs
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: GetMessagesQueries
Represents the Queries record for the operation: getMessages
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: GetMobileAddOnSettingQueries
Represents the Queries record for the operation: getMobileAddOnSetting
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: GetMultiLanguageTranslationsQueries
Represents the Queries record for the operation: getMultiLanguageTranslations
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: GetPicturesQueries
Represents the Queries record for the operation: getPictures
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: GetPredefinedTextsQueries
Represents the Queries record for the operation: getPredefinedTexts
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: GetQueryAuthGroupsQueries
Represents the Queries record for the operation: getQueryAuthGroups
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: GetQueryCategoriesQueries
Represents the Queries record for the operation: getQueryCategories
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: GetReportFilterQueries
Represents the Queries record for the operation: getReportFilter
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: GetReportTypesQueries
Represents the Queries record for the operation: getReportTypes
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: GetSectionsQueries
Represents the Queries record for the operation: getSections
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: GetSingleUserConnectionsQueries
Represents the Queries record for the operation: getSingleUserConnections
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: GetSQLQueriesQueries
Represents the Queries record for the operation: getSQLQueries
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: GetSQLViewsQueries
Represents the Queries record for the operation: getSQLViews
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: GetStatesQueries
Represents the Queries record for the operation: getStates
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: GetTSRExceptionalEventsQueries
Represents the Queries record for the operation: getTSRExceptionalEvents
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: GetUserDefaultGroupsQueries
Represents the Queries record for the operation: getUserDefaultGroups
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: GetUserFieldsMDQueries
Represents the Queries record for the operation: getUserFieldsMD
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: GetUserGroupsQueries
Represents the Queries record for the operation: getUserGroups
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: GetUserKeysMDQueries
Represents the Queries record for the operation: getUserKeysMD
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: GetUserLanguagesQueries
Represents the Queries record for the operation: getUserLanguages
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: GetUserObjectsMDQueries
Represents the Queries record for the operation: getUserObjectsMD
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: GetUserPermissionTreeQueries
Represents the Queries record for the operation: getUserPermissionTree
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: GetUserQueriesQueries
Represents the Queries record for the operation: getUserQueries
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: GetUsersQueries
Represents the Queries record for the operation: getUsers
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: GetUserTablesMDQueries
Represents the Queries record for the operation: getUserTablesMD
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: GetValueMappingCommunicationQueries
Represents the Queries record for the operation: getValueMappingCommunication
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: GetValueMappingQueries
Represents the Queries record for the operation: getValueMapping
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: GetWebClientBookmarkTilesQueries
Represents the Queries record for the operation: getWebClientBookmarkTiles
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: GetWebClientDashboardsQueries
Represents the Queries record for the operation: getWebClientDashboards
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: GetWebClientFormSettingsQueries
Represents the Queries record for the operation: getWebClientFormSettings
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: GetWebClientLaunchpadsQueries
Represents the Queries record for the operation: getWebClientLaunchpads
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: GetWebClientListviewFiltersQueries
Represents the Queries record for the operation: getWebClientListviewFilters
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: GetWebClientNotificationsQueries
Represents the Queries record for the operation: getWebClientNotifications
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: GetWebClientPreferencesQueries
Represents the Queries record for the operation: getWebClientPreferences
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: GetWebClientRecentActivitiesQueries
Represents the Queries record for the operation: getWebClientRecentActivities
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: GetWebClientVariantGroupsQueries
Represents the Queries record for the operation: getWebClientVariantGroups
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: GetWebClientVariantsQueries
Represents the Queries record for the operation: getWebClientVariants
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: Holiday
The Holiday entity of the SAP Business One Service Layer
Fields
- setWeekendsAsWorkDays? string -
- weekNoRule? BoWeekNoRuleEnum -
- weekendTO? BoWeekEnum -
- holidayCode? string -
- holidayDates? HolidayDate[] -
- validForOneYearOnly? BoYesNoEnum -
- weekendFrom? BoWeekEnum -
sap.businessone.administration: HolidayDate
The HolidayDate complex type of the SAP Business One Service Layer
Fields
- startDate? string -
- remarks? string -
- holidayCode? string -
- endDate? string -
sap.businessone.administration: HolidayParams
The HolidayParams complex type of the SAP Business One Service Layer
Fields
- holidayCode? string -
sap.businessone.administration: HolidaysCollectionResponse
A paged collection of Holidays entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? Holiday[] -
- odataNextLink? string -
sap.businessone.administration: inline_response_200
Represents the response payload for the AlertManagements_GetAlertManagementList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? AlertManagementParams[] -
sap.businessone.administration: inline_response_200_1
Represents the response payload for the ApprovalRequestsService_GetAllApprovalRequestsList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? ApprovalRequestParams[] -
sap.businessone.administration: inline_response_200_10
Represents the response payload for the CockpitsService_GetTemplateCockpitList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? CockpitParams[] -
sap.businessone.administration: inline_response_200_11
Represents the response payload for the CockpitsService_GetUserCockpitList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? CockpitParams[] -
sap.businessone.administration: inline_response_200_12
Represents the response payload for the CompanyService_GetFeaturesStatus operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? FeatureStatus[] -
sap.businessone.administration: inline_response_200_13
Represents the response payload for the CompanyService_GetFinancePeriods operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? FinancePeriod[] -
sap.businessone.administration: inline_response_200_14
Represents the response payload for the CompanyService_GetPeriods operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? PeriodCategoryParams[] -
sap.businessone.administration: inline_response_200_15
Represents the response payload for the CountiesService_GetCountyList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? CountyParams[] -
sap.businessone.administration: inline_response_200_16
Represents the response payload for the CountriesService_GetCountryList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? CountryParams[] -
sap.businessone.administration: inline_response_200_17
Represents the response payload for the DepartmentsService_GetDepartmentList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? DepartmentParams[] -
sap.businessone.administration: inline_response_200_18
Represents the response payload for the DistributionListsService_GetList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? DistributionListParams[] -
sap.businessone.administration: inline_response_200_19
Represents the response payload for the EmailGroupsService_GetList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? EmailGroupParams[] -
sap.businessone.administration: inline_response_200_2
Represents the response payload for the ApprovalRequestsService_GetApprovalRequestList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? ApprovalRequestParams[] -
sap.businessone.administration: inline_response_200_20
Represents the response payload for the ExceptionalEventService_GetExceptionalEventList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? ExceptionalEventParams[] -
sap.businessone.administration: inline_response_200_21
Represents the response payload for the ExtendedTranslationsService_GetExtendedTranslationList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? ExtendedTranslationParams[] -
sap.businessone.administration: inline_response_200_22
Represents the response payload for the HolidayService_GetHolidayList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? HolidayParams[] -
sap.businessone.administration: inline_response_200_23
Represents the response payload for the IntegrationPackagesConfigureService_GetList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? IntegrationPackageParams[] -
sap.businessone.administration: inline_response_200_24
Represents the response payload for the KPIsService_GetList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? KPIParams[] -
sap.businessone.administration: inline_response_200_25
Represents the response payload for the MessagesService_GetInbox operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? MessageHeader[] -
sap.businessone.administration: inline_response_200_26
Represents the response payload for the MessagesService_GetOutbox operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? MessageHeader[] -
sap.businessone.administration: inline_response_200_27
Represents the response payload for the MessagesService_GetSentMessages operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? MessageHeader[] -
sap.businessone.administration: inline_response_200_28
Represents the response payload for the MobileAddOnSettingService_GetMobileAddOnSettingList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? MobileAddOnSettingParams[] -
sap.businessone.administration: inline_response_200_29
Represents the response payload for the MobileAppService_GetEmployeeFullNames operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? EmployeeFullNamesParams[] -
sap.businessone.administration: inline_response_200_3
Represents the response payload for the ApprovalRequestsService_GetOpenApprovalRequestList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? ApprovalRequestParams[] -
sap.businessone.administration: inline_response_200_30
Represents the response payload for the MobileAppService_GetTechnicianSchedulings operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? TechnicianSchedulings[] -
sap.businessone.administration: inline_response_200_31
Represents the response payload for the PredefinedTextsService_GetPredefinedTextList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? PredefinedTextParams[] -
sap.businessone.administration: inline_response_200_32
Represents the response payload for the QueryAuthGroupService_GetQueryAuthGroupList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? QueryAuthGroup[] -
sap.businessone.administration: inline_response_200_33
Represents the response payload for the ReportFilterService_GetTaxReportFilterList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? TaxReportFilterParams[] -
sap.businessone.administration: inline_response_200_34
Represents the response payload for the ReportLayoutsService_GetReportLayoutList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? ReportLayoutParams[] -
sap.businessone.administration: inline_response_200_35
Represents the response payload for the ReportTypesService_GetReportTypeList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? ReportTypeParams[] -
sap.businessone.administration: inline_response_200_36
Represents the response payload for the SectionsService_GetSectionList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? SectionParams[] -
sap.businessone.administration: inline_response_200_37
Represents the response payload for the SeriesService_GetDocumentSeries operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? Series[] -
sap.businessone.administration: inline_response_200_38
Represents the response payload for the ShortLinkMappingsService_GetList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? ShortLinkMappingParams[] -
sap.businessone.administration: inline_response_200_39
Represents the response payload for the StatesService_GetStateList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? StateParams[] -
sap.businessone.administration: inline_response_200_4
Represents the response payload for the ApprovalStagesService_GetApprovalStageList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? ApprovalStageParams[] -
sap.businessone.administration: inline_response_200_40
Represents the response payload for the TSRExceptionalEventService_GetList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? TSRExceptionalEventParams[] -
sap.businessone.administration: inline_response_200_41
Represents the response payload for the UserGroupService_GetUserGroupList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? UserGroupParams[] -
sap.businessone.administration: inline_response_200_42
Represents the response payload for the UserMenuService_GetCurrentUserMenu operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? UserMenuItem[] -
sap.businessone.administration: inline_response_200_43
Represents the response payload for the UserMenuService_GetUserMenu operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? UserMenuItem[] -
sap.businessone.administration: inline_response_200_44
Represents the response payload for the ValueMappingService_GetMappedB1Value operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? VMB1ValuesData[] -
sap.businessone.administration: inline_response_200_45
Represents the response payload for the ValueMappingService_GetThirdPartyValuesForB1Value operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? VMThirdPartyValuesData[] -
sap.businessone.administration: inline_response_200_46
Represents the response payload for the WebClientBookmarkTileService_GetList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? WebClientBookmarkTileParams[] -
sap.businessone.administration: inline_response_200_47
Represents the response payload for the WebClientDashboardService_GetList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? WebClientDashboardParams[] -
sap.businessone.administration: inline_response_200_48
Represents the response payload for the WebClientFormSettingService_GetList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? WebClientFormSettingParams[] -
sap.businessone.administration: inline_response_200_49
Represents the response payload for the WebClientLaunchpadService_GetList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? WebClientLaunchpadParams[] -
sap.businessone.administration: inline_response_200_5
Represents the response payload for the ApprovalTemplatesService_GetApprovalTemplateList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? ApprovalTemplateParams[] -
sap.businessone.administration: inline_response_200_50
Represents the response payload for the WebClientListviewFilterService_GetList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? WebClientListviewFilterParams[] -
sap.businessone.administration: inline_response_200_51
Represents the response payload for the WebClientNotificationService_GetList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? WebClientNotificationParams[] -
sap.businessone.administration: inline_response_200_52
Represents the response payload for the WebClientPreferenceService_GetList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? WebClientPreferenceParams[] -
sap.businessone.administration: inline_response_200_53
Represents the response payload for the WebClientRecentActivityService_GetList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? WebClientRecentActivityParams[] -
sap.businessone.administration: inline_response_200_54
Represents the response payload for the WebClientVariantGroupService_GetList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? WebClientVariantGroupParams[] -
sap.businessone.administration: inline_response_200_55
Represents the response payload for the WebClientVariantService_GetList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? WebClientVariantParams[] -
sap.businessone.administration: inline_response_200_56
Represents the response payload for the WorkflowTaskService_GetApprovalTaskList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? WorkflowTask[] -
sap.businessone.administration: inline_response_200_6
Represents the response payload for the BranchesService_GetBranchList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? BranchParams[] -
sap.businessone.administration: inline_response_200_7
Represents the response payload for the ChangeLogsService_GetChangeLog operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? ChangeLogParams[] -
sap.businessone.administration: inline_response_200_8
Represents the response payload for the ChangeLogsService_GetChangeLogDifferences operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? ChangeLogDifferenceParams[] -
sap.businessone.administration: inline_response_200_9
Represents the response payload for the CockpitsService_GetCockpitList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? CockpitParams[] -
sap.businessone.administration: IntegrationPackageConfigure
The IntegrationPackageConfigure entity of the SAP Business One Service Layer
Fields
- isEnable? BoYesNoEnum -
- absEntry? Signed32 -
- code? string -
- name? string -
sap.businessone.administration: IntegrationPackageParams
The IntegrationPackageParams complex type of the SAP Business One Service Layer
Fields
- absEntry? Signed32 -
sap.businessone.administration: IntegrationPackagesConfigureCollectionResponse
A paged collection of IntegrationPackagesConfigure entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? IntegrationPackageConfigure[] -
- odataNextLink? string -
sap.businessone.administration: ItemPriceParams
The ItemPriceParams complex type of the SAP Business One Service Layer
Fields
- uoMQuantity? decimal -
- inventoryQuantity? decimal -
- itemCode? string -
- uoMEntry? Signed32 -
- blanketAgreementNumber? Signed32 -
- currency? string -
- cardCode? string -
- blanketAgreementLine? Signed32 -
- priceList? Signed32 -
- date? string -
sap.businessone.administration: ItemPriceReturnParams
The ItemPriceReturnParams complex type of the SAP Business One Service Layer
Fields
- discount? decimal -
- price? decimal -
- currency? string -
sap.businessone.administration: KPI
The KPI entity of the SAP Business One Service Layer
Fields
- kPIItemLines? KPIItemLine[] -
- numberOfColumns? Signed32 -
- kPICode? string -
- kPIType? KPITypeEnum -
- kPIName? string -
sap.businessone.administration: KPIItemLine
The KPI_ItemLine complex type of the SAP Business One Service Layer
Fields
- kPIValue30? decimal -
- kPICode? string -
- kPIValue13? decimal -
- kPIValue12? decimal -
- kPIValue11? decimal -
- kPIName? string -
- kPIValue10? decimal -
- kPILineNumber? Signed32 -
- kPIValue8? decimal -
- kPIValue17? decimal -
- kPIValue7? decimal -
- kPIValue16? decimal -
- kPIValue6? decimal -
- kPIValue15? decimal -
- kPIValue5? decimal -
- kPIValue14? decimal -
- kPIValue19? decimal -
- kPIValue9? decimal -
- kPIValue18? decimal -
- kPIValue4? decimal -
- kPIValue3? decimal -
- kPIValue2? decimal -
- kPIValue1? decimal -
- kPIValue20? decimal -
- kPIValue24? decimal -
- kPIValue23? decimal -
- kPIValue22? decimal -
- kPIValue21? decimal -
- kPIValue28? decimal -
- kPIValue27? decimal -
- kPIValue26? decimal -
- kPIValue25? decimal -
- kPIValue29? decimal -
sap.businessone.administration: KPIParams
The KPIParams complex type of the SAP Business One Service Layer
Fields
- kPICode? string -
- kPIName? string -
sap.businessone.administration: KPIsCollectionResponse
A paged collection of KPIs entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? KPI[] -
- odataNextLink? string -
sap.businessone.administration: ListAdditionalExpensesHeaders
Represents the Headers record for the operation: listAdditionalExpenses
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.administration: ListAdditionalExpensesQueries
Represents the Queries record for the operation: listAdditionalExpenses
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: ListAlertManagementsHeaders
Represents the Headers record for the operation: listAlertManagements
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.administration: ListAlertManagementsQueries
Represents the Queries record for the operation: listAlertManagements
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: ListApprovalRequestsHeaders
Represents the Headers record for the operation: listApprovalRequests
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.administration: ListApprovalRequestsQueries
Represents the Queries record for the operation: listApprovalRequests
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: ListApprovalStagesHeaders
Represents the Headers record for the operation: listApprovalStages
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.administration: ListApprovalStagesQueries
Represents the Queries record for the operation: listApprovalStages
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: ListApprovalTemplatesHeaders
Represents the Headers record for the operation: listApprovalTemplates
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.administration: ListApprovalTemplatesQueries
Represents the Queries record for the operation: listApprovalTemplates
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: ListAttachments2Headers
Represents the Headers record for the operation: listAttachments2
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.administration: ListAttachments2Queries
Represents the Queries record for the operation: listAttachments2
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: ListB1SessionsHeaders
Represents the Headers record for the operation: listB1Sessions
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.administration: ListB1SessionsQueries
Represents the Queries record for the operation: listB1Sessions
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: ListBranchesHeaders
Represents the Headers record for the operation: listBranches
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.administration: ListBranchesQueries
Represents the Queries record for the operation: listBranches
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: ListBusinessPlacesHeaders
Represents the Headers record for the operation: listBusinessPlaces
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.administration: ListBusinessPlacesQueries
Represents the Queries record for the operation: listBusinessPlaces
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: ListChooseFromListHeaders
Represents the Headers record for the operation: listChooseFromList
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.administration: ListChooseFromListQueries
Represents the Queries record for the operation: listChooseFromList
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: ListCockpitsHeaders
Represents the Headers record for the operation: listCockpits
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.administration: ListCockpitsQueries
Represents the Queries record for the operation: listCockpits
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: ListCountiesHeaders
Represents the Headers record for the operation: listCounties
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.administration: ListCountiesQueries
Represents the Queries record for the operation: listCounties
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: ListCountriesHeaders
Represents the Headers record for the operation: listCountries
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.administration: ListCountriesQueries
Represents the Queries record for the operation: listCountries
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: ListDepartmentsHeaders
Represents the Headers record for the operation: listDepartments
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.administration: ListDepartmentsQueries
Represents the Queries record for the operation: listDepartments
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: ListDistributionListsHeaders
Represents the Headers record for the operation: listDistributionLists
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.administration: ListDistributionListsQueries
Represents the Queries record for the operation: listDistributionLists
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: ListDynamicSystemStringsHeaders
Represents the Headers record for the operation: listDynamicSystemStrings
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.administration: ListDynamicSystemStringsQueries
Represents the Queries record for the operation: listDynamicSystemStrings
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: ListEmailGroupsHeaders
Represents the Headers record for the operation: listEmailGroups
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.administration: ListEmailGroupsQueries
Represents the Queries record for the operation: listEmailGroups
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: ListEventNotificationsHeaders
Represents the Headers record for the operation: listEventNotifications
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.administration: ListEventNotificationsQueries
Represents the Queries record for the operation: listEventNotifications
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: ListEventSubscriptionsHeaders
Represents the Headers record for the operation: listEventSubscriptions
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.administration: ListEventSubscriptionsQueries
Represents the Queries record for the operation: listEventSubscriptions
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: ListExceptionalEventsHeaders
Represents the Headers record for the operation: listExceptionalEvents
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.administration: ListExceptionalEventsQueries
Represents the Queries record for the operation: listExceptionalEvents
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: ListExtendedTranslationsHeaders
Represents the Headers record for the operation: listExtendedTranslations
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.administration: ListExtendedTranslationsQueries
Represents the Queries record for the operation: listExtendedTranslations
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: ListFormattedSearchesHeaders
Represents the Headers record for the operation: listFormattedSearches
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.administration: ListFormattedSearchesQueries
Represents the Queries record for the operation: listFormattedSearches
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: ListFormPreferencesHeaders
Represents the Headers record for the operation: listFormPreferences
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.administration: ListFormPreferencesQueries
Represents the Queries record for the operation: listFormPreferences
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: ListHolidaysHeaders
Represents the Headers record for the operation: listHolidays
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.administration: ListHolidaysQueries
Represents the Queries record for the operation: listHolidays
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: ListIntegrationPackagesConfigureHeaders
Represents the Headers record for the operation: listIntegrationPackagesConfigure
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.administration: ListIntegrationPackagesConfigureQueries
Represents the Queries record for the operation: listIntegrationPackagesConfigure
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: ListKPIsHeaders
Represents the Headers record for the operation: listKPIs
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.administration: ListKPIsQueries
Represents the Queries record for the operation: listKPIs
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: ListMessagesHeaders
Represents the Headers record for the operation: listMessages
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.administration: ListMessagesQueries
Represents the Queries record for the operation: listMessages
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: ListMobileAddOnSettingHeaders
Represents the Headers record for the operation: listMobileAddOnSetting
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.administration: ListMobileAddOnSettingQueries
Represents the Queries record for the operation: listMobileAddOnSetting
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: ListMultiLanguageTranslationsHeaders
Represents the Headers record for the operation: listMultiLanguageTranslations
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.administration: ListMultiLanguageTranslationsQueries
Represents the Queries record for the operation: listMultiLanguageTranslations
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: ListPicturesHeaders
Represents the Headers record for the operation: listPictures
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.administration: ListPicturesQueries
Represents the Queries record for the operation: listPictures
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: ListPredefinedTextsHeaders
Represents the Headers record for the operation: listPredefinedTexts
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.administration: ListPredefinedTextsQueries
Represents the Queries record for the operation: listPredefinedTexts
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: ListQueryAuthGroupsHeaders
Represents the Headers record for the operation: listQueryAuthGroups
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.administration: ListQueryAuthGroupsQueries
Represents the Queries record for the operation: listQueryAuthGroups
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: ListQueryCategoriesHeaders
Represents the Headers record for the operation: listQueryCategories
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.administration: ListQueryCategoriesQueries
Represents the Queries record for the operation: listQueryCategories
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: ListReportFilterHeaders
Represents the Headers record for the operation: listReportFilter
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.administration: ListReportFilterQueries
Represents the Queries record for the operation: listReportFilter
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: ListReportTypesHeaders
Represents the Headers record for the operation: listReportTypes
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.administration: ListReportTypesQueries
Represents the Queries record for the operation: listReportTypes
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: ListSectionsHeaders
Represents the Headers record for the operation: listSections
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.administration: ListSectionsQueries
Represents the Queries record for the operation: listSections
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: ListSingleUserConnectionsHeaders
Represents the Headers record for the operation: listSingleUserConnections
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.administration: ListSingleUserConnectionsQueries
Represents the Queries record for the operation: listSingleUserConnections
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: ListSQLQueriesHeaders
Represents the Headers record for the operation: listSQLQueries
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.administration: ListSQLQueriesQueries
Represents the Queries record for the operation: listSQLQueries
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: ListSQLViewsHeaders
Represents the Headers record for the operation: listSQLViews
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.administration: ListSQLViewsQueries
Represents the Queries record for the operation: listSQLViews
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: ListStatesHeaders
Represents the Headers record for the operation: listStates
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.administration: ListStatesQueries
Represents the Queries record for the operation: listStates
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: ListTSRExceptionalEventsHeaders
Represents the Headers record for the operation: listTSRExceptionalEvents
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.administration: ListTSRExceptionalEventsQueries
Represents the Queries record for the operation: listTSRExceptionalEvents
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: ListUserDefaultGroupsHeaders
Represents the Headers record for the operation: listUserDefaultGroups
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.administration: ListUserDefaultGroupsQueries
Represents the Queries record for the operation: listUserDefaultGroups
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: ListUserFieldsMDHeaders
Represents the Headers record for the operation: listUserFieldsMD
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.administration: ListUserFieldsMDQueries
Represents the Queries record for the operation: listUserFieldsMD
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: ListUserGroupsHeaders
Represents the Headers record for the operation: listUserGroups
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.administration: ListUserGroupsQueries
Represents the Queries record for the operation: listUserGroups
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: ListUserKeysMDHeaders
Represents the Headers record for the operation: listUserKeysMD
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.administration: ListUserKeysMDQueries
Represents the Queries record for the operation: listUserKeysMD
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: ListUserLanguagesHeaders
Represents the Headers record for the operation: listUserLanguages
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.administration: ListUserLanguagesQueries
Represents the Queries record for the operation: listUserLanguages
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: ListUserObjectsMDHeaders
Represents the Headers record for the operation: listUserObjectsMD
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.administration: ListUserObjectsMDQueries
Represents the Queries record for the operation: listUserObjectsMD
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: ListUserPermissionTreeHeaders
Represents the Headers record for the operation: listUserPermissionTree
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.administration: ListUserPermissionTreeQueries
Represents the Queries record for the operation: listUserPermissionTree
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: ListUserQueriesHeaders
Represents the Headers record for the operation: listUserQueries
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.administration: ListUserQueriesQueries
Represents the Queries record for the operation: listUserQueries
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: ListUsersHeaders
Represents the Headers record for the operation: listUsers
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.administration: ListUsersQueries
Represents the Queries record for the operation: listUsers
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: ListUserTablesMDHeaders
Represents the Headers record for the operation: listUserTablesMD
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.administration: ListUserTablesMDQueries
Represents the Queries record for the operation: listUserTablesMD
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: ListValueMappingCommunicationHeaders
Represents the Headers record for the operation: listValueMappingCommunication
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.administration: ListValueMappingCommunicationQueries
Represents the Queries record for the operation: listValueMappingCommunication
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: ListValueMappingHeaders
Represents the Headers record for the operation: listValueMapping
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.administration: ListValueMappingQueries
Represents the Queries record for the operation: listValueMapping
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: ListWebClientBookmarkTilesHeaders
Represents the Headers record for the operation: listWebClientBookmarkTiles
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.administration: ListWebClientBookmarkTilesQueries
Represents the Queries record for the operation: listWebClientBookmarkTiles
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: ListWebClientDashboardsHeaders
Represents the Headers record for the operation: listWebClientDashboards
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.administration: ListWebClientDashboardsQueries
Represents the Queries record for the operation: listWebClientDashboards
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: ListWebClientFormSettingsHeaders
Represents the Headers record for the operation: listWebClientFormSettings
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.administration: ListWebClientFormSettingsQueries
Represents the Queries record for the operation: listWebClientFormSettings
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: ListWebClientLaunchpadsHeaders
Represents the Headers record for the operation: listWebClientLaunchpads
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.administration: ListWebClientLaunchpadsQueries
Represents the Queries record for the operation: listWebClientLaunchpads
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: ListWebClientListviewFiltersHeaders
Represents the Headers record for the operation: listWebClientListviewFilters
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.administration: ListWebClientListviewFiltersQueries
Represents the Queries record for the operation: listWebClientListviewFilters
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: ListWebClientNotificationsHeaders
Represents the Headers record for the operation: listWebClientNotifications
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.administration: ListWebClientNotificationsQueries
Represents the Queries record for the operation: listWebClientNotifications
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: ListWebClientPreferencesHeaders
Represents the Headers record for the operation: listWebClientPreferences
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.administration: ListWebClientPreferencesQueries
Represents the Queries record for the operation: listWebClientPreferences
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: ListWebClientRecentActivitiesHeaders
Represents the Headers record for the operation: listWebClientRecentActivities
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.administration: ListWebClientRecentActivitiesQueries
Represents the Queries record for the operation: listWebClientRecentActivities
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: ListWebClientVariantGroupsHeaders
Represents the Headers record for the operation: listWebClientVariantGroups
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.administration: ListWebClientVariantGroupsQueries
Represents the Queries record for the operation: listWebClientVariantGroups
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: ListWebClientVariantsHeaders
Represents the Headers record for the operation: listWebClientVariants
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.administration: ListWebClientVariantsQueries
Represents the Queries record for the operation: listWebClientVariants
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.administration: Login_body
Represents the request payload for the Login operation of the SAP Business One Service Layer
Fields
- userName? string -
- language? string -
- companyDB? string -
- password? string -
sap.businessone.administration: Message
The Message entity of the SAP Business One Service Layer
Fields
- user? Signed32 -
- priority? BoMsgPriorities -
- text? string -
- attachment? Signed32 -
- messageDataColumns? MessageDataColumn[] -
- recipientCollection? Recipient[] -
- code? Signed32 -
- subject? string -
sap.businessone.administration: MessageDataColumn
The MessageDataColumn complex type of the SAP Business One Service Layer
Fields
- columnName? string -
- messageDataLines? MessageDataLine[] -
- link? BoYesNoEnum -
sap.businessone.administration: MessageDataLine
The MessageDataLine complex type of the SAP Business One Service Layer
Fields
- value? string -
- objectKey? string -
- 'object? string -
sap.businessone.administration: MessageHeader
The MessageHeader complex type of the SAP Business One Service Layer
Fields
- read? BoYesNoEnum -
- receivedDate? string -
- sentTime? string -
- received? BoYesNoEnum -
- sentDate? string -
- receivedTime? string -
- code? Signed32 -
sap.businessone.administration: MessagesCollectionResponse
A paged collection of Messages entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? Message[] -
- odataNextLink? string -
sap.businessone.administration: MobileAddOnSetting
The MobileAddOnSetting entity of the SAP Business One Service Layer
Fields
- 'type? MobileAddonSettingTypeEnum -
- b1SalesApp? BoYesNoEnum -
- description? string -
- logonMethod? LogonMethodEnum -
- enable? BoYesNoEnum -
- viewStyle? ViewStyleTypeEnum -
- b1MobileApp? BoYesNoEnum -
- code? string -
- b1ServiceApp? BoYesNoEnum -
- url? string -
- provider? string -
sap.businessone.administration: MobileAddOnSettingCollectionResponse
A paged collection of MobileAddOnSetting entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? MobileAddOnSetting[] -
- odataNextLink? string -
sap.businessone.administration: MobileAddOnSettingParams
The MobileAddOnSettingParams complex type of the SAP Business One Service Layer
Fields
- description? string -
- code? string -
sap.businessone.administration: MobileAppService_GetDppChangeParams_body
Represents the request payload for the MobileAppService_GetDppChangeParams operation of the SAP Business One Service Layer
Fields
- dppChangeParams? DppChangeParams -
sap.businessone.administration: MobileAppService_GetEmployeeFullNames_body
Represents the request payload for the MobileAppService_GetEmployeeFullNames operation of the SAP Business One Service Layer
Fields
- employeeFullNamesParamsCollection? EmployeeFullNamesParams[] -
sap.businessone.administration: MobileAppService_GetSalesAppSetting_body
Represents the request payload for the MobileAppService_GetSalesAppSetting operation of the SAP Business One Service Layer
Fields
- salesAppSettingParams? SalesAppSettingParams -
sap.businessone.administration: MobileAppService_GetServiceAppReport_body
Represents the request payload for the MobileAppService_GetServiceAppReport operation of the SAP Business One Service Layer
Fields
- serviceAppReportParams? ServiceAppReportParams -
sap.businessone.administration: MobileAppService_GetServiceAppReportContent_body
Represents the request payload for the MobileAppService_GetServiceAppReportContent operation of the SAP Business One Service Layer
Fields
- serviceAppReportParams? ServiceAppReportParams -
sap.businessone.administration: MobileAppService_GetTechnicianSchedulings_body
Represents the request payload for the MobileAppService_GetTechnicianSchedulings operation of the SAP Business One Service Layer
Fields
- technicianSchedulingsParams? TechnicianSchedulingsParams -
sap.businessone.administration: MobileAppService_GetTechnicianSettings_body
Represents the request payload for the MobileAppService_GetTechnicianSettings operation of the SAP Business One Service Layer
Fields
- technicianSettingsParams? TechnicianSettingsParams -
sap.businessone.administration: MobileAppService_GetTechnicianSettingsGroup_body
Represents the request payload for the MobileAppService_GetTechnicianSettingsGroup operation of the SAP Business One Service Layer
Fields
- technicianSettingsGroupParams? TechnicianSettingsGroupParams -
sap.businessone.administration: MobileAppService_UpdateSalesAppSetting_body
Represents the request payload for the MobileAppService_UpdateSalesAppSetting operation of the SAP Business One Service Layer
Fields
- salesAppSetting? SalesAppSetting -
sap.businessone.administration: MobileAppService_UpdateServiceAppReport_body
Represents the request payload for the MobileAppService_UpdateServiceAppReport operation of the SAP Business One Service Layer
Fields
- serviceAppReport? ServiceAppReport -
sap.businessone.administration: MobileAppService_UpdateServiceAppReportContent_body
Represents the request payload for the MobileAppService_UpdateServiceAppReportContent operation of the SAP Business One Service Layer
Fields
- serviceAppReportParams? ServiceAppReportParams -
- serviceAppReportContent? ServiceAppReportContent -
sap.businessone.administration: MobileAppService_UpdateTechnicianSettings_body
Represents the request payload for the MobileAppService_UpdateTechnicianSettings operation of the SAP Business One Service Layer
Fields
- technicianSettings? TechnicianSettings -
sap.businessone.administration: MobileAppService_UpdateTechnicianSettingsGroup_body
Represents the request payload for the MobileAppService_UpdateTechnicianSettingsGroup operation of the SAP Business One Service Layer
Fields
- technicianSettingsGroup? TechnicianSettingsGroup -
sap.businessone.administration: MobileServerDateTime
The MobileServerDateTime complex type of the SAP Business One Service Layer
Fields
- time? string -
- date? string -
sap.businessone.administration: MultiLanguageTranslation
The MultiLanguageTranslation entity of the SAP Business One Service Layer
Fields
- Numerator? Signed32 -
- TableName? string -
- FieldAlias? string -
- PrimaryKeyofobject? string -
- TranslationsInUserLanguages? TranslationsInUserLanguage[] -
sap.businessone.administration: MultiLanguageTranslationsCollectionResponse
A paged collection of MultiLanguageTranslations entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? MultiLanguageTranslation[] -
- odataNextLink? string -
sap.businessone.administration: PathAdmin
The PathAdmin complex type of the SAP Business One Service Layer
Fields
- attachmentsFolderPath? string -
- extensionsFolderPath? string -
- wordTemplateFolderPath? string -
- picturesFolderPath? string -
- printId? string -
sap.businessone.administration: PeriodCategory
The PeriodCategory complex type of the SAP Business One Service Layer
Fields
- underpaymentsARAccount? string -
- vendorAssetsAccount? string -
- underpaymentsAPAccount? string -
- exchangeRateDifferencesAcct? string -
- exhRatesDiffAcctLnWTax? string -
- stockRevaluationOffsetAcct? string -
- financialYear? Signed32 -
- inventoryOffsetIncrease? string -
- gLGainRealizedConversionDiff? string -
- numberOfPeriods? Signed32 -
- aPLossRealizedConversionDiff? string -
- repomoAccount? string -
- varianceAcc? string -
- subPeriodType? BoSubPeriodTypeEnum -
- aRCashDiscountAccount? string -
- aPExRateInterim? string -
- toDocumentDate? string -
- toDueDate? string -
- negativeInventoryAdjustmentAccount? string -
- increaseGLAccount? string -
- aRLossRealizedConversionDiff? string -
- invoicePaymentBP? string -
- rateDifferencesDefaultAcc? string -
- downPaymentVATAcctSale? string -
- allocationAcc? string -
- wIPMappingCollection? WIPMapping[] -
- aRGainRealizedConversionDiff? string -
- outgoingTaxAccount? string -
- acountforOpeningWHBalance? string -
- wIPMaterialVarianceAccount? string -
- salesDownPaymentInterimAccount? string -
- selfInvoiceExpenseAccount? string -
- customerDoubtfulDebtsAcct? string -
- stockRevaluationAccount? string -
- overpaymentsARAccount? string -
- absoluteEntry? Signed32 -
- accountforOutgoingChecks? string -
- customerUnpaidBoE? string -
- selfInvoiceRevenueAccount? string -
- billofExchangeAccountsRece? string -
- costOfGoodsSold? string -
- goodsClearingAcc? string -
- salesCreditAcc? string -
- downPaymentVATAcctPurch? string -
- inventoryOffsetDecrease? string -
- debitorsFollowUpAccount? string -
- openingBalancesAccount? string -
- salesCreditForeignAcc? string -
- priceDifferenceAccount? string -
- wIPMaterialAccount? string -
- aPGainRealizedConversionDiff? string -
- accountforCashReceipt? string -
- decreaseGLAcc? string -
- customerBillofExchangePres? string -
- salesRevenueEU? string -
- foreignAccountsReceivables? string -
- purchaseInterimAcctLnWTax? string -
- customerDownPaymentsAccount? string -
- toPostingDate? string -
- aPLossRealizedExchangeDif? string -
- purchaseCreditAcc? string -
- purchaseDownPaymentInterimAccount? string -
- eUPurchaseCreditAcc? string -
- boEAccountsPayable2? string -
- expensesAccountForeign? string -
- eOYControlAccount? string -
- aPCashDiscountAccount? string -
- purchaseAccount? string -
- salesCreditEUAcc? string -
- stockInTransitAccount? string -
- eUAccountsPayable? string -
- exemptedCredits? string -
- taxExemptRevenuesDefault? string -
- salesReturns? string -
- aPCashDiscountInterim? string -
- periodCategory? string -
- revenuesAccountForeign? string -
- downPaymentPClearingAcct? string -
- downPaymentSClearingAcct? string -
- customerBillofExchngeDisc? string -
- vendorDownPaymentsAccount? string -
- aRExRateInterim? string -
- withholodingTax? string -
- purchaseOffsetAccount? string -
- expenseOffsetAccount? string -
- periodName? string -
- salesInterimAcctLnWTax? string -
- expenseAccountDefault? string -
- gLRevaluationOffsetAccount? string -
- accountforCreditMemoPayme? string -
- costofSaleRevaluationAcct? string -
- aRGainRealizedExchngeDif? string -
- costofSaleRevOffsetAcct? string -
- customersDeductionatSource? string -
- creditorsFollowUpAccount? string -
- purchaseReturnAccount? string -
- fromDocumentDate? string -
- dunningFeeAccount? string -
- aPGainRealizedExchngeDif? string -
- eUAccountsReceivable? string -
- overpaymentsAPAccount? string -
- aRCashDiscountInterim? string -
- custBillofExchangeonC? string -
- wipOffsetProfitAndLossAccount? string -
- fromPostingDate? string -
- aRLossRealizedExchangeDi? string -
- fromDueDate? string -
- defaultSaleAccount? string -
- foreignPurchaseCreditAcc? string -
- purchaseTax? string -
- outgoingChecksAccount? string -
- taxDefinition? string -
- stockAccount? string -
- boEAccountsPayable? string -
- inputTaxAccount? string -
- beginningofFinancialYear? string -
- expenseVarianceAccount? string -
- inventoryOffsetProfitAndLossAccount? string -
- roundingAccount? string -
- expenseClearingAccount? string -
- outgoingCashAccount? string -
- aPLossCashDiscountAccount? string -
- dunningInterestAccount? string -
- gLLossRealizedConversionDiff? string -
- commissionAccountDefault? string -
- eUExpenseAccount? string -
- vendorDoubtfulDebtsAcct? string -
- reconciliationDifference? string -
sap.businessone.administration: PeriodCategoryParams
The PeriodCategoryParams complex type of the SAP Business One Service Layer
Fields
- absoluteEntry? Signed32 -
sap.businessone.administration: Picture
The Picture entity of the SAP Business One Service Layer
Fields
- pictureSize? Signed32 -
- pictureName? string -
- pictureCreateDate? string -
- picturePath? string -
- pictureModifyDate? string -
sap.businessone.administration: PicturesCollectionResponse
A paged collection of Pictures entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? Picture[] -
- odataNextLink? string -
sap.businessone.administration: PredefinedText
The PredefinedText entity of the SAP Business One Service Layer
Fields
- numerator? Signed32 -
- textCode? string -
- text? string -
sap.businessone.administration: PredefinedTextParams
The PredefinedTextParams complex type of the SAP Business One Service Layer
Fields
- numerator? Signed32 -
- textCode? string -
sap.businessone.administration: PredefinedTextsCollectionResponse
A paged collection of PredefinedTexts entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? PredefinedText[] -
- odataNextLink? string -
sap.businessone.administration: QRCodeData
The QRCodeData complex type of the SAP Business One Service Layer
Fields
- objectType? Signed32 -
- objectAbsEntry? string -
- fieldName? string -
- qRCodeText? string -
sap.businessone.administration: QRCodeService_AddOrUpdateQRCode_body
Represents the request payload for the QRCodeService_AddOrUpdateQRCode operation of the SAP Business One Service Layer
Fields
- qRCodeData? QRCodeData -
sap.businessone.administration: QueryAuthGroup
The QueryAuthGroup entity of the SAP Business One Service Layer
Fields
- authGroupCode? string -
- authGroupDes? string -
- authGroupId? Signed32 -
- categoryGroupCollection? CategoryGroup[] -
sap.businessone.administration: QueryAuthGroupsCollectionResponse
A paged collection of QueryAuthGroups entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? QueryAuthGroup[] -
- odataNextLink? string -
sap.businessone.administration: QueryCategoriesCollectionResponse
A paged collection of QueryCategories entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? QueryCategory[] -
- odataNextLink? string -
sap.businessone.administration: QueryCategory
The QueryCategory entity of the SAP Business One Service Layer
Fields
- Code? Signed32 -
- Name? string -
- Permissions? string -
- UserQueries? UserQuery[] -
sap.businessone.administration: QueryService_PostQuery_body
Represents the request payload for the QueryService_PostQuery operation of the SAP Business One Service Layer
Fields
- queryPath? string -
- queryOption? string -
sap.businessone.administration: Recipient
The Recipient complex type of the SAP Business One Service Layer
Fields
- sendInternal? BoYesNoEnum -
- cellularNumber? string -
- nameTo? string -
- faxNumber? string -
- userCode? string -
- sendSMS? BoYesNoEnum -
- sendEmail? BoYesNoEnum -
- userType? BoMsgRcpTypes -
- emailAddress? string -
- sendFax? BoYesNoEnum -
sap.businessone.administration: RefreshPathsDocuments
The RefreshPathsDocuments complex type of the SAP Business One Service Layer
Fields
- attachmentsFolderPath? string -
sap.businessone.administration: ReportFilterCollectionResponse
A paged collection of ReportFilter entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? TaxReportFilter[] -
- odataNextLink? string -
sap.businessone.administration: ReportFilterService_GetTaxReportFilterList_body
Represents the request payload for the ReportFilterService_GetTaxReportFilterList operation of the SAP Business One Service Layer
Fields
- taxReportFilterParams? TaxReportFilterParams -
sap.businessone.administration: ReportInputParams
The ReportInputParams complex type of the SAP Business One Service Layer
Fields
- reportLayoutMenuID? string -
sap.businessone.administration: ReportLayout
The ReportLayout complex type of the SAP Business One Service Layer
Fields
- topMargin? Signed32 -
- extensionName? string -
- b1Version? string -
- bottomMargin? Signed32 -
- category? ReportLayoutCategoryEnum -
- query? string -
- foreignLanguageReport? BoYesNoEnum -
- gridSize? Signed32 -
- language? Signed32 -
- printer? string -
- reportLayoutTranslationLines? ReportLayoutTranslationLine[] -
- name? string -
- gridType? BoGridTypeEnum -
- repetitiveAreasNumber? Signed32 -
- typeDetail? string -
- reportLayoutItems? ReportLayoutItem[] -
- changeFontSizeInPreview? Signed32 -
- remarks? string -
- picture? string -
- followUpReport? string -
- editable? BoYesNoEnum -
- height? Signed32 -
- localization? string -
- width? Signed32 -
- impExpObjCode? Signed32 -
- cRVersion? string -
- printerFirstPage? string -
- showGrid? BoYesNoEnum -
- eMailFont? string -
- typeCode? string -
- numberOfCopies? Signed32 -
- convertFontForEMail? BoYesNoEnum -
- leaderReport? string -
- changeFontSizeForEMail? Signed32 -
- orientation? BoOrientationEnum -
- rightMargin? Signed32 -
- useFirstPrinter? BoYesNoEnum -
- allignFooterToBottom? BoYesNoEnum -
- layoutCode? string -
- snapToGrid? BoYesNoEnum -
- previewPrintingFont? string -
- sortable? BoYesNoEnum -
- paperSize? string -
- author? string -
- extensionErrorAction? BoExtensionErrorActionEnum -
- leftMargin? Signed32 -
- convertFontInPrintPreview? BoYesNoEnum -
- queryType? BoQueryTypeEnum -
sap.businessone.administration: ReportLayoutItem
The ReportLayoutItem complex type of the SAP Business One Service Layer
Fields
- displayTotalAsAWord? BoYesNoEnum -
- topMargin? Signed32 -
- lineBreak? BoLineBreakEnum -
- left? Signed32 -
- bottomMargin? Signed32 -
- nextSegmentItemNumber? string -
- heightAdjustments? BoYesNoEnum -
- 'string? string -
- distanceToRepetitiveDuplicate? Signed32 -
- suppressZeros? BoYesNoEnum -
- borderRed? Signed32 -
- textStyle? Signed32 -
- topBorderLineThickness? Signed32 -
- reverseSort? BoYesNoEnum -
- parentType? Signed32 -
- parentIndex? Signed32 -
- backgroundBlue? Signed32 -
- newPage? BoYesNoEnum -
- displayRepetitiveAreaFooterOnAllPages? BoYesNoEnum -
- stringLength? Signed32 -
- backgroundRed? Signed32 -
- leftBorderLineThickness? Signed32 -
- groupNumber? Signed32 -
- variableNumber? Signed32 -
- borderGreen? Signed32 -
- dataSource? BoDataSourceEnum -
- textRed? Signed32 -
- tableName? string -
- relateToField? string -
- top? Signed32 -
- fontSize? Signed32 -
- textBlue? Signed32 -
- fontName? string -
- unique? BoYesNoEnum -
- bottomBorderLineThickness? Signed32 -
- barCodeStandard? BoBarCodeStandardEnum -
- displayDescription? BoYesNoEnum -
- itemIndex? Signed32 -
- borderBlue? Signed32 -
- sortLevel? Signed32 -
- linkToField? string -
- backgroundGreen? Signed32 -
- stringFiller? string -
- itemNumber? Signed32 -
- visible? BoYesNoEnum -
- editable? Signed32 -
- height? Signed32 -
- verticalAlignment? BoVerticalAlignmentEnum -
- width? Signed32 -
- fieldName? string -
- rightBorderLineThickness? Signed32 -
- horizontalAlignment? BoHorizontalAlignmentEnum -
- highlightRed? Signed32 -
- numberOfLinesInRepetitiveArea? Signed32 -
- printAsBarCode? BoYesNoEnum -
- blockFontChange? BoYesNoEnum -
- duplicateRepetitiveArea? BoYesNoEnum -
- setAsGroup? BoYesNoEnum -
- hideRepetitiveAreaIfEmpty? BoYesNoEnum -
- highlightBlue? Signed32 -
- fieldIdentifier? string -
- shadowThickness? Signed32 -
- rightMargin? Signed32 -
- textGreen? Signed32 -
- sortType? BoSortTypeEnum -
- highlightGreen? Signed32 -
- pictureSize? BoPictureSizeEnum -
- 'type? BoReportLayoutItemTypeEnum -
- leftMargin? Signed32 -
sap.businessone.administration: ReportLayoutParams
The ReportLayoutParams complex type of the SAP Business One Service Layer
Fields
- layoutCode? string -
- category? ReportLayoutCategoryEnum -
- layoutName? string -
sap.businessone.administration: ReportLayoutsService_AddReportLayout_body
Represents the request payload for the ReportLayoutsService_AddReportLayout operation of the SAP Business One Service Layer
Fields
- reportLayout? ReportLayout -
sap.businessone.administration: ReportLayoutsService_AddReportLayoutToMenu_body
Represents the request payload for the ReportLayoutsService_AddReportLayoutToMenu operation of the SAP Business One Service Layer
Fields
- reportInputParams? ReportInputParams -
- reportLayout? ReportLayout -
sap.businessone.administration: ReportLayoutsService_DeleteReportLayout_body
Represents the request payload for the ReportLayoutsService_DeleteReportLayout operation of the SAP Business One Service Layer
Fields
- reportLayoutParams? ReportLayoutParams -
sap.businessone.administration: ReportLayoutsService_DeleteReportLayoutAndMenu_body
Represents the request payload for the ReportLayoutsService_DeleteReportLayoutAndMenu operation of the SAP Business One Service Layer
Fields
- reportLayoutParams? ReportLayoutParams -
sap.businessone.administration: ReportLayoutsService_GetDefaultReport_body
Represents the request payload for the ReportLayoutsService_GetDefaultReport operation of the SAP Business One Service Layer
Fields
- reportParams? ReportParams -
sap.businessone.administration: ReportLayoutsService_GetDefaultReportLayout_body
Represents the request payload for the ReportLayoutsService_GetDefaultReportLayout operation of the SAP Business One Service Layer
Fields
- reportParams? ReportParams -
sap.businessone.administration: ReportLayoutsService_GetReportLayout_body
Represents the request payload for the ReportLayoutsService_GetReportLayout operation of the SAP Business One Service Layer
Fields
- reportLayoutParams? ReportLayoutParams -
sap.businessone.administration: ReportLayoutsService_GetReportLayoutList_body
Represents the request payload for the ReportLayoutsService_GetReportLayoutList operation of the SAP Business One Service Layer
Fields
- reportParams? ReportParams -
sap.businessone.administration: ReportLayoutsService_SetDefaultReport_body
Represents the request payload for the ReportLayoutsService_SetDefaultReport operation of the SAP Business One Service Layer
Fields
- defaultReportParams? DefaultReportParams -
sap.businessone.administration: ReportLayoutsService_UpdateLanguageReport_body
Represents the request payload for the ReportLayoutsService_UpdateLanguageReport operation of the SAP Business One Service Layer
Fields
- reportLayout? ReportLayout -
sap.businessone.administration: ReportLayoutsService_UpdatePrinterSettings_body
Represents the request payload for the ReportLayoutsService_UpdatePrinterSettings operation of the SAP Business One Service Layer
Fields
- reportLayout? ReportLayout -
sap.businessone.administration: ReportLayoutTranslationLine
The ReportLayout_TranslationLine complex type of the SAP Business One Service Layer
Fields
- languageCode? Signed32 -
- updateDate? string -
- createTime? Signed32 -
- updateTime? Signed32 -
- docEntry? string -
- docName? string -
- createDate? string -
- lineNumber? Signed32 -
sap.businessone.administration: ReportParams
The ReportParams complex type of the SAP Business One Service Layer
Fields
- userID? Signed32 -
- reportCode? string -
- cardCode? string -
sap.businessone.administration: ReportType
The ReportType entity of the SAP Business One Service Layer
Fields
- typeName? string -
- menuID? string -
- typeCode? string -
- addonName? string -
- addonFormType? string -
- defaultReportLayout? string -
sap.businessone.administration: ReportTypeParams
The ReportTypeParams complex type of the SAP Business One Service Layer
Fields
- typeName? string -
- menuID? string -
- typeCode? string -
- addonName? string -
- addonFormType? string -
sap.businessone.administration: ReportTypesCollectionResponse
A paged collection of ReportTypes entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? ReportType[] -
- odataNextLink? string -
sap.businessone.administration: RoundedData
The RoundedData complex type of the SAP Business One Service Layer
Fields
- value? decimal -
sap.businessone.administration: SalesAppSetting
The SalesAppSetting complex type of the SAP Business One Service Layer
Fields
- customerAdvancedDashBoard? Signed32 -
- code? Signed32 -
- advancedDashBoard? Signed32 -
- name? string -
sap.businessone.administration: SalesAppSettingParams
The SalesAppSettingParams complex type of the SAP Business One Service Layer
Fields
- code? Signed32 -
- name? string -
sap.businessone.administration: SBOBobService_Format_MoneyToString_body
Represents the request payload for the SBOBobService_Format_MoneyToString operation of the SAP Business One Service Layer
Fields
- inMoney? decimal -
- inPrecision? string -
sap.businessone.administration: SBOBobService_GetCurrencyRate_body
Represents the request payload for the SBOBobService_GetCurrencyRate operation of the SAP Business One Service Layer
Fields
- currency? string -
- date? string -
sap.businessone.administration: SBOBobService_GetDueDate_body
Represents the request payload for the SBOBobService_GetDueDate operation of the SAP Business One Service Layer
Fields
- refDate? string -
- cardCode? string -
sap.businessone.administration: SBOBobService_GetIndexRate_body
Represents the request payload for the SBOBobService_GetIndexRate operation of the SAP Business One Service Layer
Fields
- index? string -
- date? string -
sap.businessone.administration: SBOBobService_GetSystemPermission_body
Represents the request payload for the SBOBobService_GetSystemPermission operation of the SAP Business One Service Layer
Fields
- userCode? string -
- permissionID? string -
sap.businessone.administration: SBOBobService_SetCurrencyRate_body
Represents the request payload for the SBOBobService_SetCurrencyRate operation of the SAP Business One Service Layer
Fields
- rateDate? string -
- rate? string -
- currency? string -
sap.businessone.administration: SBOBobService_SetSystemPermission_body
Represents the request payload for the SBOBobService_SetSystemPermission operation of the SAP Business One Service Layer
Fields
- userCode? string -
- permission? Signed32 -
- permissionID? string -
sap.businessone.administration: Section
The Section entity of the SAP Business One Service Layer
Fields
- description? string -
- absEntry? Signed32 -
- code? string -
- eCode? string -
sap.businessone.administration: SectionParams
The SectionParams complex type of the SAP Business One Service Layer
Fields
- description? string -
- absEntry? Signed32 -
- code? string -
sap.businessone.administration: SectionsCollectionResponse
A paged collection of Sections entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? Section[] -
- odataNextLink? string -
sap.businessone.administration: SensitiveDataAccess
The SensitiveDataAccess complex type of the SAP Business One Service Layer
Fields
- key2? string -
- key1? string -
- propertyName? string -
- 'table? string -
- key4? string -
- key3? string -
- propertyValue? string -
- propertyID? Signed32 -
sap.businessone.administration: SensitiveDataAccessService_Access_body
Represents the request payload for the SensitiveDataAccessService_Access operation of the SAP Business One Service Layer
Fields
- sensitiveDataAccess? SensitiveDataAccess -
sap.businessone.administration: SensitiveDataAccessService_IsDataSensitive_body
Represents the request payload for the SensitiveDataAccessService_IsDataSensitive operation of the SAP Business One Service Layer
Fields
- sensitiveDataAccess? SensitiveDataAccess -
sap.businessone.administration: Series
The Series complex type of the SAP Business One Service Layer
Fields
- Document? string -
- DocumentSubType? string -
- InitialNumber? Signed32 -
- LastNumber? Signed32 -
- NextNumber? Signed32 -
- Prefix? string -
- Suffix? string -
- Remarks? string -
- GroupCode? BoSeriesGroupEnum - OData EnumType 'BoSeriesGroupEnum'. Serialised by the Service Layer as the member name
- Locked? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- PeriodIndicator? string -
- Name? string -
- Series? Signed32 -
- IsDigitalSeries? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- DigitNumber? Signed32 -
- SeriesType? BoSeriesTypeEnum - OData EnumType 'BoSeriesTypeEnum'. Serialised by the Service Layer as the member name
- IsManual? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- BPLID? Signed32 -
- ATDocumentType? string -
- IsElectronicCommEnabled? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- CostAccountOnly? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- InvoiceType? Signed32 -
- InvoiceTypeOfNegativeInvoice? Signed32 -
- PortugalSeriesAction? string -
- PortugalSeriesStatus? string -
- PortugalSeriesPhase? string -
sap.businessone.administration: SeriesParams
The SeriesParams complex type of the SAP Business One Service Layer
Fields
- series? Signed32 -
sap.businessone.administration: SeriesService_AddElectronicSeries_body
Represents the request payload for the SeriesService_AddElectronicSeries operation of the SAP Business One Service Layer
Fields
- electronicSeries? ElectronicSeries -
sap.businessone.administration: SeriesService_AddSeries_body
Represents the request payload for the SeriesService_AddSeries operation of the SAP Business One Service Layer
Fields
- series? Series -
sap.businessone.administration: SeriesService_AttachSeriesToDocument_body
Represents the request payload for the SeriesService_AttachSeriesToDocument operation of the SAP Business One Service Layer
Fields
- documentSeriesParams? DocumentSeriesParams -
sap.businessone.administration: SeriesService_ChangeDocumentMenuName_body
Represents the request payload for the SeriesService_ChangeDocumentMenuName operation of the SAP Business One Service Layer
Fields
- documentChangeMenuName? DocumentChangeMenuName -
sap.businessone.administration: SeriesService_GetDefaultElectronicSeries_body
Represents the request payload for the SeriesService_GetDefaultElectronicSeries operation of the SAP Business One Service Layer
Fields
- seriesParams? SeriesParams -
sap.businessone.administration: SeriesService_GetDefaultSeries_body
Represents the request payload for the SeriesService_GetDefaultSeries operation of the SAP Business One Service Layer
Fields
- documentTypeParams? DocumentTypeParams -
sap.businessone.administration: SeriesService_GetDocumentChangedMenuName_body
Represents the request payload for the SeriesService_GetDocumentChangedMenuName operation of the SAP Business One Service Layer
Fields
- documentTypeParams? DocumentTypeParams -
sap.businessone.administration: SeriesService_GetDocumentSeries_body
Represents the request payload for the SeriesService_GetDocumentSeries operation of the SAP Business One Service Layer
Fields
- documentTypeParams? DocumentTypeParams -
sap.businessone.administration: SeriesService_GetElectronicSeries_body
Represents the request payload for the SeriesService_GetElectronicSeries operation of the SAP Business One Service Layer
Fields
- electronicSeriesParams? ElectronicSeriesParams -
sap.businessone.administration: SeriesService_GetSeries_body
Represents the request payload for the SeriesService_GetSeries operation of the SAP Business One Service Layer
Fields
- seriesParams? SeriesParams -
sap.businessone.administration: SeriesService_RemoveElectronicSeries_body
Represents the request payload for the SeriesService_RemoveElectronicSeries operation of the SAP Business One Service Layer
Fields
- electronicSeriesParams? ElectronicSeriesParams -
sap.businessone.administration: SeriesService_RemoveSeries_body
Represents the request payload for the SeriesService_RemoveSeries operation of the SAP Business One Service Layer
Fields
- seriesParams? SeriesParams -
sap.businessone.administration: SeriesService_SetDefaultElectronicSeries_body
Represents the request payload for the SeriesService_SetDefaultElectronicSeries operation of the SAP Business One Service Layer
Fields
- defaultElectronicSeriesParams? DefaultElectronicSeriesParams -
sap.businessone.administration: SeriesService_SetDefaultSeriesForAllUsers_body
Represents the request payload for the SeriesService_SetDefaultSeriesForAllUsers operation of the SAP Business One Service Layer
Fields
- documentSeriesParams? DocumentSeriesParams -
sap.businessone.administration: SeriesService_SetDefaultSeriesForCurrentUser_body
Represents the request payload for the SeriesService_SetDefaultSeriesForCurrentUser operation of the SAP Business One Service Layer
Fields
- documentSeriesParams? DocumentSeriesParams -
sap.businessone.administration: SeriesService_SetDefaultSeriesForUser_body
Represents the request payload for the SeriesService_SetDefaultSeriesForUser operation of the SAP Business One Service Layer
Fields
- documentSeriesUserParams? DocumentSeriesUserParams -
sap.businessone.administration: SeriesService_UnattachSeriesFromDocument_body
Represents the request payload for the SeriesService_UnattachSeriesFromDocument operation of the SAP Business One Service Layer
Fields
- documentSeriesParams? DocumentSeriesParams -
sap.businessone.administration: SeriesService_UpdateElectronicSeries_body
Represents the request payload for the SeriesService_UpdateElectronicSeries operation of the SAP Business One Service Layer
Fields
- electronicSeries? ElectronicSeries -
sap.businessone.administration: SeriesService_UpdateSeries_body
Represents the request payload for the SeriesService_UpdateSeries operation of the SAP Business One Service Layer
Fields
- series? Series -
sap.businessone.administration: ServiceAppReport
The ServiceAppReport complex type of the SAP Business One Service Layer
Fields
- customizedReportName? string -
- systemReportName? string -
- code? Signed32 -
- reportChoice? MobileAppReportChoiceEnum -
sap.businessone.administration: ServiceAppReportContent
The ServiceAppReportContent complex type of the SAP Business One Service Layer
Fields
- reportContent? string -
sap.businessone.administration: ServiceAppReportParams
The ServiceAppReportParams complex type of the SAP Business One Service Layer
Fields
- code? Signed32 -
- reportChoice? MobileAppReportChoiceEnum -
sap.businessone.administration: ShortLinkMappingParams
The ShortLinkMappingParams complex type of the SAP Business One Service Layer
Fields
- guid? string -
sap.businessone.administration: ShowDifferenceParams
The ShowDifferenceParams complex type of the SAP Business One Service Layer
Fields
- logInstance2? Signed32 -
- primaryKey? string -
- uDOObjectCode? string -
- 'object? BoChangeLogEnum -
- logInstance? Signed32 -
sap.businessone.administration: SingleUserConnection
The SingleUserConnection entity of the SAP Business One Service Layer
Fields
- action? SingleUserConnectionActionEnum -
- code? Signed32 -
sap.businessone.administration: SingleUserConnectionsCollectionResponse
A paged collection of SingleUserConnections entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? SingleUserConnection[] -
- odataNextLink? string -
sap.businessone.administration: SQLQueriesCollectionResponse
A paged collection of SQLQueries entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? SQLQuery[] -
- odataNextLink? string -
sap.businessone.administration: SQLQueriessqlCode_List_body
Represents the request payload for the SQLQueries_List_2 operation of the SAP Business One Service Layer
Fields
- paramList? string -
sap.businessone.administration: SQLQuery
The SQLQuery entity of the SAP Business One Service Layer
Fields
- sqlCode? string -
- updateDate? string -
- sqlName? string -
- sqlText? string -
- createDate? string -
- paramList? string -
sap.businessone.administration: SQLQueryResult
The SQLQueryResult complex type of the SAP Business One Service Layer
Fields
- SqlText? string -
sap.businessone.administration: SQLView
The SQLView entity of the SAP Business One Service Layer
Fields
- dBType? string -
- createDate? string -
- schemaName? string -
- name? string -
sap.businessone.administration: SQLViewsCollectionResponse
A paged collection of SQLViews entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? SQLView[] -
- odataNextLink? string -
sap.businessone.administration: State
The State entity of the SAP Business One Service Layer
Fields
- country2? Country -
- isUnionTerritory? BoYesNoEnum -
- country? string -
- gSTCode? string -
- code? string -
- name? string -
sap.businessone.administration: StateParams
The StateParams complex type of the SAP Business One Service Layer
Fields
- country? string -
- code? string -
- name? string -
sap.businessone.administration: StatesCollectionResponse
A paged collection of States entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? State[] -
- odataNextLink? string -
sap.businessone.administration: SupportUserLoginRecord
The SupportUserLoginRecord complex type of the SAP Business One Service Layer
Fields
- logDetail? string -
- logReason? SupportUserLoginRecordLogReasonTypeEnum -
- iD? Signed32 -
- realName? string -
sap.businessone.administration: TaxReportAccount
The TaxReportAccount complex type of the SAP Business One Service Layer
Fields
- code? string -
sap.businessone.administration: TaxReportBusinessPartner
The TaxReportBusinessPartner complex type of the SAP Business One Service Layer
Fields
- code? string -
sap.businessone.administration: TaxReportDocument
The TaxReportDocument complex type of the SAP Business One Service Layer
Fields
- toNumber? Signed32 -
- fromNumber? Signed32 -
- documentType? TaxReportFilterDocumentType -
sap.businessone.administration: TaxReportFilter
The TaxReportFilter entity of the SAP Business One Service Layer
Fields
- quarter? Signed32 -
- firstPrintedNumber? Signed32 -
- includeCustomers? BoYesNoEnum -
- includeGLAccounts? BoYesNoEnum -
- diplayCreditMemosInSeparateColumn? BoYesNoEnum -
- taxReportSeriesCollection? TaxReportSeries[] -
- includeVendors? BoYesNoEnum -
- taxReportBusinessPartners? TaxReportBusinessPartner[] -
- roundAmount? BoYesNoEnum -
- includeDocumentType? BoYesNoEnum -
- taxReportGroups? TaxReportGroup[] -
- taxReportAccounts? TaxReportAccount[] -
- name? string -
- appendixOorPSelection? BoYesNoEnum -
- includeSeriesFilter? BoYesNoEnum -
- taxReportDocuments? TaxReportDocument[] -
- taxDate? BoYesNoEnum -
- cancellation? BoYesNoEnum -
- reportLayout? TaxReportFilterReportLayoutType -
- firstRegisterNumber? Signed32 -
- excludeWT? BoYesNoEnum -
- openingAndClosingBalance? BoYesNoEnum -
- period? TaxReportFilterPeriod -
- documentType? TaxReportFilterApArDocumentType -
- showPaymentsWithDeferredTax? BoYesNoEnum -
- code? Signed32 -
- toSeries? Signed32 -
- declarationType? TaxReportFilterDeclarationType -
- filterType? TaxReportFilterType -
- hideTaxWithoutTransaction? BoYesNoEnum -
- year? Signed32 -
- quarterOrDates? TaxReportFilterQuarterOrDates -
- fromDate? string -
- toDate? string -
- fromSeries? Signed32 -
sap.businessone.administration: TaxReportFilterParams
The TaxReportFilterParams complex type of the SAP Business One Service Layer
Fields
- filterType? TaxReportFilterType -
- code? Signed32 -
- name? string -
sap.businessone.administration: TaxReportGroup
The TaxReportGroup complex type of the SAP Business One Service Layer
Fields
- sum? BoYesNoEnum -
- code? string -
sap.businessone.administration: TaxReportSeries
The TaxReportSeries complex type of the SAP Business One Service Layer
Fields
- seriesCode? Signed32 -
- documentType? TaxReportFilterDocumentType -
sap.businessone.administration: TechnicianSchedulings
The TechnicianSchedulings complex type of the SAP Business One Service Layer
Fields
- startDate? string -
- serviceCallID? Signed32 -
- schedulingLineNum? Signed32 -
- isClosed? BoYesNoEnum -
- endDate? string -
sap.businessone.administration: TechnicianSchedulingsParams
The TechnicianSchedulingsParams complex type of the SAP Business One Service Layer
Fields
- startDate? string -
- technician? Signed32 -
- endDate? string -
sap.businessone.administration: TechnicianSettings
The TechnicianSettings complex type of the SAP Business One Service Layer
Fields
- technician? Signed32 -
- groupCode? Signed32 -
sap.businessone.administration: TechnicianSettingsGroup
The TechnicianSettingsGroup complex type of the SAP Business One Service Layer
Fields
- enableResign? BoYesNoEnum -
- customizedGroup? BoYesNoEnum -
- enableEditTime? BoYesNoEnum -
- enableStarRating? BoYesNoEnum -
- enableActualDuration? BoYesNoEnum -
- enableFollowup? BoYesNoEnum -
- code? Signed32 -
- enableReject? BoYesNoEnum -
- enableSignature? BoYesNoEnum -
- advancedDashBoard? Signed32 -
- name? string -
sap.businessone.administration: TechnicianSettingsGroupParams
The TechnicianSettingsGroupParams complex type of the SAP Business One Service Layer
Fields
- code? Signed32 -
- name? string -
sap.businessone.administration: TechnicianSettingsParams
The TechnicianSettingsParams complex type of the SAP Business One Service Layer
Fields
- technician? Signed32 -
sap.businessone.administration: TranslationsInUserLanguage
The TranslationsInUserLanguage complex type of the SAP Business One Service Layer
Fields
- KeyFromHeaderTable? Signed32 -
- LanguageCodeOfUserLanguage? Signed32 -
- Translationscontent? string -
sap.businessone.administration: TSRExceptionalEvent
The TSRExceptionalEvent entity of the SAP Business One Service Layer
Fields
- description? string -
- code? string -
sap.businessone.administration: TSRExceptionalEventParams
The TSRExceptionalEventParams complex type of the SAP Business One Service Layer
Fields
- code? string -
sap.businessone.administration: TSRExceptionalEventsCollectionResponse
A paged collection of TSRExceptionalEvents entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? TSRExceptionalEvent[] -
- odataNextLink? string -
sap.businessone.administration: User
The User entity of the SAP Business One Service Layer
Fields
- InternalKey? Signed32 -
- UserPassword? string -
- UserCode? string -
- UserName? string -
- Superuser? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- eMail? string -
- MobilePhoneNumber? string -
- Defaults? string -
- FaxNumber? string -
- Branch? Signed32 -
- Department? Signed32 -
- LanguageCode? BoSuppLangs - OData EnumType 'BoSuppLangs'. Serialised by the Service Layer as the member name
- Locked? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Group? BoUserGroup - OData EnumType 'BoUserGroup'. Serialised by the Service Layer as the member name
- MaxDiscountGeneral? decimal -
- MaxDiscountSales? decimal -
- MaxDiscountPurchase? decimal -
- CashLimit? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- MaxCashAmtForIncmngPayts? decimal -
- LastLogoutDate? string -
- LastLoginTime? string -
- LastLogoutTime? string -
- LastPasswordChangeTime? string -
- LastPasswordChangedBy? string -
- NaturalPer? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- UserPermission? UserPermissionItem[] -
- UserActionRecord? UserActionRecordItem[] -
- UserGroupByUser? UserGroupByUserItem[] -
- UserBranchAssignment? UserBranchAssignmentItem[] -
- UserDefaultGroups? UserDefaultGroup[] -
- FormPreferences? ColumnPreferences[] -
- ApprovalRequests? ApprovalRequest[] -
- Branch2? Branch - The
Branchentity of the SAP Business One Service Layer
- Department2? Department - The
Departmententity of the SAP Business One Service Layer
- Cockpits? Cockpit[] -
- UserPermissionTree? UserPermissionTree[] -
sap.businessone.administration: UserAccessLog
The UserAccessLog complex type of the SAP Business One Service Layer
Fields
- winUsrName? string -
- action? UserActionTypeEnum -
- procName? string -
- userCode? string -
- reasonDesc? string -
- winSessnID? Signed32 -
- clientIP? string -
- actionBy? string -
- 'source? string -
- actionDate? string -
- actionTime? string -
- clientName? string -
- userID? Signed32 -
- processID? Signed32 -
- reasonID? UserAccessLogReasonIDTypeEnum -
- sessionID? Signed32 -
sap.businessone.administration: UserActionRecordItem
The UserActionRecordItem complex type of the SAP Business One Service Layer
Fields
- UserCode? string -
- Action? UserActionTypeEnum - OData EnumType 'UserActionTypeEnum'. Serialised by the Service Layer as the member name
- ActionBy? string -
- ClientIP? string -
- ClientName? string -
- ActionDate? string -
- ActionTime? string -
- WindowsSession? Signed32 -
- WindowsUser? string -
- ProcessName? string -
- ProcessID? Signed32 -
- AliveDuration? Signed32 -
sap.businessone.administration: UserBranchAssignmentItem
The UserBranchAssignmentItem complex type of the SAP Business One Service Layer
Fields
- UserCode? string -
- BPLID? Signed32 -
sap.businessone.administration: UserDefaultGroup
The UserDefaultGroup entity of the SAP Business One Service Layer
Fields
- Code? string -
- Name? string -
- Warehouse? string -
- SalesEmployee? Signed32 -
- BPforInvoicePayment? string -
- CashAccount? string -
- CheckingAcct? string -
- PrintReceipt? BoPrintReceiptEnum - OData EnumType 'BoPrintReceiptEnum'. Serialised by the Service Layer as the member name
- PrintInvoiceandPaymentinS? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- WindowsColor? Signed32 -
- Address? string -
- Country? string -
- PrintingHeader? string -
- PhoneNumber1? string -
- PhoneNumber2? string -
- FaxNumber? string -
- eMail? string -
- AddressinForeignLanguage? string -
- PrintingHeaderInForeignLangu? string -
- PhoneNumber1ForeignLang? string -
- PhoneNumber2ForeignLang? string -
- FaxNumberForeignLang? string -
- DefaultTaxCode? string -
- AdditionalIdNumber? string -
- UserSignature? Signed32 -
- UseTax? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- UseWarehouseAddressinAPD? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- BPLID? Signed32 -
- AssetInDoc? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- LanguageCode? BoSuppLangs - OData EnumType 'BoSuppLangs'. Serialised by the Service Layer as the member name
- DefaultDocuments? DefaultDocument[] -
- DefaultCreditCards? DefaultCreditCard[] -
- Country2? Country - The
Countryentity of the SAP Business One Service Layer
- User? User - The
Userentity of the SAP Business One Service Layer
- BusinessPlace? BusinessPlace - The
BusinessPlaceentity of the SAP Business One Service Layer
- UserLanguage? UserLanguage - The
UserLanguageentity of the SAP Business One Service Layer
sap.businessone.administration: UserDefaultGroupsCollectionResponse
A paged collection of UserDefaultGroups entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? UserDefaultGroup[] -
- odataNextLink? string -
sap.businessone.administration: UserFieldMD
The UserFieldMD entity of the SAP Business One Service Layer
Fields
- userTablesMD? UserTablesMD -
- validValuesMD? ValidValueMD[] -
- description? string -
- subType? BoFldSubTypes -
- linkedTable? string -
- size? Signed32 -
- linkedSystemObject? UDFLinkedSystemObjectTypesEnum -
- linkedUDO? string -
- name? string -
- defaultValue? string -
- tableName? string -
- 'type? BoFieldTypes -
- fieldID? Signed32 -
- editSize? Signed32 -
- mandatory? BoYesNoEnum -
sap.businessone.administration: UserFieldsMDCollectionResponse
A paged collection of UserFieldsMD entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? UserFieldMD[] -
- odataNextLink? string -
sap.businessone.administration: UserGroup
The UserGroup entity of the SAP Business One Service Layer
Fields
- startDate? string -
- userGroupType? UserGroupCategoryEnum -
- userGroupId? Signed32 -
- userGroupName? string -
- dueDate? string -
- userGroupDec? string -
- tPLId? Signed32 -
sap.businessone.administration: UserGroupByUserItem
The UserGroupByUserItem complex type of the SAP Business One Service Layer
Fields
- USERId? Signed32 -
- GroupId? Signed32 -
- StartDate? string -
- DueDate? string -
sap.businessone.administration: UserGroupParams
The UserGroupParams complex type of the SAP Business One Service Layer
Fields
- userGroupId? Signed32 -
- userGroupName? string -
sap.businessone.administration: UserGroupsCollectionResponse
A paged collection of UserGroups entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? UserGroup[] -
- odataNextLink? string -
sap.businessone.administration: UserKeysMD
The UserKeysMD entity of the SAP Business One Service Layer
Fields
- TableName? string -
- KeyIndex? Signed32 -
- KeyName? string -
- Unique? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- UserKeysMD_Elements? UserKeysMDElement[] -
sap.businessone.administration: UserKeysMDCollectionResponse
A paged collection of UserKeysMD entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? UserKeysMD[] -
- odataNextLink? string -
sap.businessone.administration: UserKeysMDElement
The UserKeysMD_Element complex type of the SAP Business One Service Layer
Fields
- SubKeyIndex? Signed32 -
- ColumnAlias? string -
sap.businessone.administration: UserLanguage
The UserLanguage entity of the SAP Business One Service Layer
Fields
- Code? Signed32 -
- LanguageShortName? string -
- LanguageFullName? string -
- RelatedSystemLanguage? Signed32 -
- UserDefaultGroups? UserDefaultGroup[] -
sap.businessone.administration: UserLanguagesCollectionResponse
A paged collection of UserLanguages entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? UserLanguage[] -
- odataNextLink? string -
sap.businessone.administration: UserMenuItem
The UserMenuItem complex type of the SAP Business One Service Layer
Fields
- 'type? UserMenuItemTypeEnum -
- position? Signed32 -
- reportPath? string -
- linkedFormMenuID? Signed32 -
- linkedObjType? string -
- name? string -
- linkedObjKey? string -
- linkedFormNum? Signed32 -
sap.businessone.administration: UserMenuParams
The UserMenuParams complex type of the SAP Business One Service Layer
Fields
- userID? Signed32 -
sap.businessone.administration: UserMenuService_GetUserMenu_body
Represents the request payload for the UserMenuService_GetUserMenu operation of the SAP Business One Service Layer
Fields
- userMenuParams? UserMenuParams -
sap.businessone.administration: UserMenuService_UpdateCurrentUserMenu_body
Represents the request payload for the UserMenuService_UpdateCurrentUserMenu operation of the SAP Business One Service Layer
Fields
- userMenuItems? UserMenuItem[] -
sap.businessone.administration: UserMenuService_UpdateUserMenu_body
Represents the request payload for the UserMenuService_UpdateUserMenu operation of the SAP Business One Service Layer
Fields
- userMenuParams? UserMenuParams -
- userMenuItems? UserMenuItem[] -
sap.businessone.administration: UserObjectMDChildTable
The UserObjectMD_ChildTable complex type of the SAP Business One Service Layer
Fields
- SonNumber? Signed32 -
- TableName? string -
- LogTableName? string -
- Code? string -
- ObjectName? string -
sap.businessone.administration: UserObjectMDEnhancedFormColumn
The UserObjectMD_EnhancedFormColumn complex type of the SAP Business One Service Layer
Fields
- Code? string -
- ColumnNumber? Signed32 -
- ChildNumber? Signed32 -
- ColumnAlias? string -
- ColumnDescription? string -
- ColumnIsUsed? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Editable? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
sap.businessone.administration: UserObjectMDFindColumn
The UserObjectMD_FindColumn complex type of the SAP Business One Service Layer
Fields
- ColumnNumber? Signed32 -
- ColumnAlias? string -
- ColumnDescription? string -
- Code? string -
sap.businessone.administration: UserObjectMDFormColumn
The UserObjectMD_FormColumn complex type of the SAP Business One Service Layer
Fields
- FormColumnAlias? string -
- FormColumnDescription? string -
- FormColumnNumber? Signed32 -
- SonNumber? Signed32 -
- Code? string -
- Editable? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
sap.businessone.administration: UserObjectsMD
The UserObjectsMD entity of the SAP Business One Service Layer
Fields
- TableName? string -
- Code? string -
- LogTableName? string -
- CanCreateDefaultForm? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ObjectType? BoUDOObjType - OData EnumType 'BoUDOObjType'. Serialised by the Service Layer as the member name
- ExtensionName? string -
- CanCancel? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- CanDelete? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- CanLog? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ManageSeries? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- CanFind? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- CanYearTransfer? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Name? string -
- CanClose? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- OverwriteDllfile? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- UseUniqueFormType? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- CanArchive? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- MenuItem? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- MenuCaption? string -
- FatherMenuID? Signed32 -
- Position? Signed32 -
- MenuUID? string -
- EnableEnhancedForm? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- RebuildEnhancedForm? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- FormSRF? string -
- ApplyAuthorization? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- PersonalDataProtection? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- UserObjectMD_ChildTables? UserObjectMDChildTable[] -
- UserObjectMD_FindColumns? UserObjectMDFindColumn[] -
- UserObjectMD_FormColumns? UserObjectMDFormColumn[] -
- UserObjectMD_EnhancedFormColumns? UserObjectMDEnhancedFormColumn[] -
- UserTablesMD? UserTablesMD - The
UserTablesMDentity of the SAP Business One Service Layer
sap.businessone.administration: UserObjectsMDCollectionResponse
A paged collection of UserObjectsMD entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? UserObjectsMD[] -
- odataNextLink? string -
sap.businessone.administration: UserPermissionForm
The UserPermissionForm complex type of the SAP Business One Service Layer
Fields
- FormType? string -
- DisplayOrder? Signed32 -
- PermissionID? string -
sap.businessone.administration: UserPermissionItem
The UserPermissionItem complex type of the SAP Business One Service Layer
Fields
- UserCode? Signed32 -
- PermissionID? string -
- Permission? BoPermission - OData EnumType 'BoPermission'. Serialised by the Service Layer as the member name
- EffectivePermission? BoPermission - OData EnumType 'BoPermission'. Serialised by the Service Layer as the member name
sap.businessone.administration: UserPermissionTree
The UserPermissionTree entity of the SAP Business One Service Layer
Fields
- UserSignature? Signed32 -
- DisplayOrder? Signed32 -
- PermissionID? string -
- Options? BoUPTOptions - OData EnumType 'BoUPTOptions'. Serialised by the Service Layer as the member name
- Name? string -
- Levels? Signed32 -
- IsItem? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ParentID? string -
- UserPermissionForms? UserPermissionForm[] -
- User? User - The
Userentity of the SAP Business One Service Layer
sap.businessone.administration: UserPermissionTreeCollectionResponse
A paged collection of UserPermissionTree entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? UserPermissionTree[] -
- odataNextLink? string -
sap.businessone.administration: UserQueriesCollectionResponse
A paged collection of UserQueries entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? UserQuery[] -
- odataNextLink? string -
sap.businessone.administration: UserQuery
The UserQuery entity of the SAP Business One Service Layer
Fields
- InternalKey? Signed32 -
- QueryCategory? Signed32 -
- QueryDescription? string -
- Query? string -
- ProcedureAlias? string -
- ProcedureName? string -
- QueryType? UserQueryTypeEnum - OData EnumType 'UserQueryTypeEnum'. Serialised by the Service Layer as the member name
- MenuCaption? string -
- ParentMenuID? Signed32 -
- MenuPosition? Signed32 -
- MenuUniqueID? string -
- EnableMenuEntry? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- QueryCategory2? QueryCategory - The
QueryCategoryentity of the SAP Business One Service Layer
sap.businessone.administration: UsersCollectionResponse
A paged collection of Users entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? User[] -
- odataNextLink? string -
sap.businessone.administration: UserTablesMD
The UserTablesMD entity of the SAP Business One Service Layer
Fields
- TableName? string -
- TableDescription? string -
- TableType? BoUTBTableType - OData EnumType 'BoUTBTableType'. Serialised by the Service Layer as the member name
- Archivable? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ArchiveDateField? string -
- DisplayMenu? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ApplyAuthorization? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- UserFieldsMD? UserFieldMD[] -
- UserObjectsMD? UserObjectsMD[] -
sap.businessone.administration: UserTablesMDCollectionResponse
A paged collection of UserTablesMD entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? UserTablesMD[] -
- odataNextLink? string -
sap.businessone.administration: UserValidValue
The UserValidValue complex type of the SAP Business One Service Layer
Fields
- FieldValue? string -
sap.businessone.administration: ValidValueMD
The ValidValueMD complex type of the SAP Business One Service Layer
Fields
- description? string -
- value? string -
sap.businessone.administration: ValueMappingCollectionResponse
A paged collection of ValueMapping entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? VMB1ValuesData[] -
- odataNextLink? string -
sap.businessone.administration: ValueMappingCommunicationCollectionResponse
A paged collection of ValueMappingCommunication entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? ValueMappingCommunicationData[] -
- odataNextLink? string -
sap.businessone.administration: ValueMappingCommunicationData
The ValueMappingCommunicationData entity of the SAP Business One Service Layer
Fields
- startDate? string -
- status? VMCommunicationStatusEnum -
- thirdPartySystemId? Signed32 -
- endTime? Signed32 -
- message? string -
- objectId? Signed32 -
- startTime? Signed32 -
- absEntry? Signed32 -
- endDate? string -
- communicationType? VMCommunicationTypeEnum -
sap.businessone.administration: ValueMappingService_GetMappedB1Value_body
Represents the request payload for the ValueMappingService_GetMappedB1Value operation of the SAP Business One Service Layer
Fields
- vMB1ValuesData? VMB1ValuesData -
sap.businessone.administration: ValueMappingService_GetThirdPartyValuesForB1Value_body
Represents the request payload for the ValueMappingService_GetThirdPartyValuesForB1Value operation of the SAP Business One Service Layer
Fields
- vMB1ValuesData? VMB1ValuesData -
sap.businessone.administration: ValueMappingService_RemoveMappedValue_body
Represents the request payload for the ValueMappingService_RemoveMappedValue operation of the SAP Business One Service Layer
Fields
- vMThirdPartyValuesData? VMThirdPartyValuesData -
sap.businessone.administration: VMB1ValuesData
The VM_B1ValuesData entity of the SAP Business One Service Layer
Fields
- vMThirdPartyValuesCollection? VMThirdPartyValuesData[] -
- objectId? Signed32 -
- objectAbsEntry? string -
- absEntry? Signed32 -
sap.businessone.administration: VMThirdPartyValuesData
The VM_ThirdPartyValuesData complex type of the SAP Business One Service Layer
Fields
- thirdPartySystemId? Signed32 -
- lineId? Signed32 -
- thirdPartyValue? string -
- absEntry? Signed32 -
sap.businessone.administration: WebClientBookmarkTile
The WebClientBookmarkTile entity of the SAP Business One Service Layer
Fields
- urlTarget? string -
- endpoint? string -
- title? string -
- guid? string -
- info? string -
- bindType? string -
- subTitle? string -
sap.businessone.administration: WebClientBookmarkTileParams
The WebClientBookmarkTileParams complex type of the SAP Business One Service Layer
Fields
- guid? string -
sap.businessone.administration: WebClientBookmarkTilesCollectionResponse
A paged collection of WebClientBookmarkTiles entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? WebClientBookmarkTile[] -
- odataNextLink? string -
sap.businessone.administration: WebClientDashboard
The WebClientDashboard entity of the SAP Business One Service Layer
Fields
- userId? Signed32 -
- content? string -
- guid? string -
- webClientDashboardCards? WebClientDashboardCard[] -
- sys? BoYesNoEnum -
sap.businessone.administration: WebClientDashboardCard
The WebClientDashboardCard complex type of the SAP Business One Service Layer
Fields
- version? string -
- userId? Signed32 -
- content? string -
- guid? string -
- sys? BoYesNoEnum -
sap.businessone.administration: WebClientDashboardParams
The WebClientDashboardParams complex type of the SAP Business One Service Layer
Fields
- guid? string -
sap.businessone.administration: WebClientDashboardsCollectionResponse
A paged collection of WebClientDashboards entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? WebClientDashboard[] -
- odataNextLink? string -
sap.businessone.administration: WebClientFormSetting
The WebClientFormSetting entity of the SAP Business One Service Layer
Fields
- webClientFormSettingItems? WebClientFormSettingItem[] -
- docObjectCode? string -
- userId? Signed32 -
- guid? string -
- formId? string -
sap.businessone.administration: WebClientFormSettingItem
The WebClientFormSettingItem complex type of the SAP Business One Service Layer
Fields
- 'order? Signed32 -
- visible? string -
- visibleInGrid? string -
- editable? string -
- guid? string -
- itemId? string -
- editableInGrid? string -
sap.businessone.administration: WebClientFormSettingParams
The WebClientFormSettingParams complex type of the SAP Business One Service Layer
Fields
- guid? string -
sap.businessone.administration: WebClientFormSettingsCollectionResponse
A paged collection of WebClientFormSettings entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? WebClientFormSetting[] -
- odataNextLink? string -
sap.businessone.administration: WebClientLaunchpad
The WebClientLaunchpad entity of the SAP Business One Service Layer
Fields
- themeId? string -
- notificationShowDays? Signed32 -
- userId? Signed32 -
- guid? string -
- webClientLaunchpadGroups? WebClientLaunchpadGroup[] -
- displayQuickView? BoYesNoEnum -
sap.businessone.administration: WebClientLaunchpadGroup
The WebClientLaunchpadGroup complex type of the SAP Business One Service Layer
Fields
- 'order? Signed32 -
- groupName? string -
- visible? BoYesNoEnum -
- guid? string -
- webClientLaunchpadTiles? WebClientLaunchpadTile[] -
- groupId? string -
sap.businessone.administration: WebClientLaunchpadParams
The WebClientLaunchpadParams complex type of the SAP Business One Service Layer
Fields
- guid? string -
sap.businessone.administration: WebClientLaunchpadsCollectionResponse
A paged collection of WebClientLaunchpads entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? WebClientLaunchpad[] -
- odataNextLink? string -
sap.businessone.administration: WebClientLaunchpadTile
The WebClientLaunchpadTile complex type of the SAP Business One Service Layer
Fields
- 'order? Signed32 -
- tileId? string -
- guid? string -
sap.businessone.administration: WebClientListviewFilter
The WebClientListviewFilter entity of the SAP Business One Service Layer
Fields
- tableName? string -
- userId? Signed32 -
- guid? string -
- filterName? string -
- webClientListviewFilterConditions? WebClientListviewFilterCondition[] -
sap.businessone.administration: WebClientListviewFilterCondition
The WebClientListviewFilterCondition complex type of the SAP Business One Service Layer
Fields
- 'order? Signed32 -
- columnName? string -
- value? string -
- guid? string -
- compareExpression? string -
sap.businessone.administration: WebClientListviewFilterParams
The WebClientListviewFilterParams complex type of the SAP Business One Service Layer
Fields
- guid? string -
sap.businessone.administration: WebClientListviewFiltersCollectionResponse
A paged collection of WebClientListviewFilters entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? WebClientListviewFilter[] -
- odataNextLink? string -
sap.businessone.administration: WebClientNotification
The WebClientNotification entity of the SAP Business One Service Layer
Fields
- readStatus? string -
- notiType? Signed32 -
- activityDate? string -
- userId? Signed32 -
- isDismissed? string -
- guid? string -
sap.businessone.administration: WebClientNotificationParams
The WebClientNotificationParams complex type of the SAP Business One Service Layer
Fields
- guid? string -
sap.businessone.administration: WebClientNotificationsCollectionResponse
A paged collection of WebClientNotifications entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? WebClientNotification[] -
- odataNextLink? string -
sap.businessone.administration: WebClientPreference
The WebClientPreference entity of the SAP Business One Service Layer
Fields
- tableName? string -
- columnName? string -
- defaultValue? string -
- userId? Signed32 -
- guid? string -
sap.businessone.administration: WebClientPreferenceParams
The WebClientPreferenceParams complex type of the SAP Business One Service Layer
Fields
- guid? string -
sap.businessone.administration: WebClientPreferencesCollectionResponse
A paged collection of WebClientPreferences entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? WebClientPreference[] -
- odataNextLink? string -
sap.businessone.administration: WebClientRecentActivitiesCollectionResponse
A paged collection of WebClientRecentActivities entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? WebClientRecentActivity[] -
- odataNextLink? string -
sap.businessone.administration: WebClientRecentActivity
The WebClientRecentActivity entity of the SAP Business One Service Layer
Fields
- appId? string -
- userId? Signed32 -
- title? string -
- recentDay? string -
- guid? string -
- count? Signed32 -
- appType? string -
- timestamp? string -
- url? string -
- usageArray? string -
sap.businessone.administration: WebClientRecentActivityParams
The WebClientRecentActivityParams complex type of the SAP Business One Service Layer
Fields
- guid? string -
sap.businessone.administration: WebClientVariant
The WebClientVariant entity of the SAP Business One Service Layer
Fields
- 'order? Signed32 -
- overviewCustomization? string -
- reportCustomization? string -
- userFilter? string -
- webClientVariantGroupByCollection? WebClientVariantGroupBy[] -
- webClientVariantMChartCollection? WebClientVariantMChart[] -
- chartCustomization? string -
- guid? string -
- filterBarLayout? string -
- objectName? string -
- name? string -
- webClientVariantSortByCollection? WebClientVariantSortBy[] -
- webClientVariantEmbeddedChartCollection? WebClientVariantEmbeddedChart[] -
- subViewType? string -
- version? Signed32 -
- userId? Signed32 -
- isPublic? BoYesNoEnum -
- viewId? string -
- webClientVariantSelectedColumnCollection? WebClientVariantSelectedColumn[] -
- isSystem? BoYesNoEnum -
- systemFilter? string -
- viewType? string -
- conditionFilter? string -
sap.businessone.administration: WebClientVariantEmbeddedChart
The WebClientVariantEmbeddedChart complex type of the SAP Business One Service Layer
Fields
- timeAxis? string -
- webClientVariantEmbeddedChartValue2Collection? WebClientVariantEmbeddedChartValue2[] -
- shape? string -
- webClientVariantEmbeddedChartValue1Collection? WebClientVariantEmbeddedChartValue1[] -
- color? string -
- bubbleWidth? string -
- chartType? string -
- guid? string -
- isShowLegend? BoYesNoEnum -
- webClientVariantEmbeddedChartSizeCollection? WebClientVariantEmbeddedChartSize[] -
- categoryAxis1? string -
- categoryAxis2? string -
sap.businessone.administration: WebClientVariantEmbeddedChartSize
The WebClientVariantEmbeddedChartSize complex type of the SAP Business One Service Layer
Fields
- 'order? Signed32 -
- columnName? string -
- guid? string -
sap.businessone.administration: WebClientVariantEmbeddedChartValue1
The WebClientVariantEmbeddedChartValue1 complex type of the SAP Business One Service Layer
Fields
- 'order? Signed32 -
- columnName? string -
- guid? string -
sap.businessone.administration: WebClientVariantEmbeddedChartValue2
The WebClientVariantEmbeddedChartValue2 complex type of the SAP Business One Service Layer
Fields
- 'order? Signed32 -
- columnName? string -
- guid? string -
sap.businessone.administration: WebClientVariantGroup
The WebClientVariantGroup entity of the SAP Business One Service Layer
Fields
- userId? Signed32 -
- viewId? string -
- guid? string -
- defaultVariant? string -
- viewType? string -
- objectName? string -
sap.businessone.administration: WebClientVariantGroupBy
The WebClientVariantGroupBy complex type of the SAP Business One Service Layer
Fields
- 'order? Signed32 -
- columnName? string -
- guid? string -
sap.businessone.administration: WebClientVariantGroupParams
The WebClientVariantGroupParams complex type of the SAP Business One Service Layer
Fields
- guid? string -
sap.businessone.administration: WebClientVariantGroupsCollectionResponse
A paged collection of WebClientVariantGroups entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? WebClientVariantGroup[] -
- odataNextLink? string -
sap.businessone.administration: WebClientVariantMChart
The WebClientVariantMChart complex type of the SAP Business One Service Layer
Fields
- timeAxis? string -
- shape? string -
- color? string -
- webClientVariantMChartSizeCollection? WebClientVariantMChartSize[] -
- bubbleWidth? string -
- webClientVariantMChartValue2Collection? WebClientVariantMChartValue2[] -
- chartType? string -
- guid? string -
- isShowLegend? BoYesNoEnum -
- categoryAxis1? string -
- categoryAxis2? string -
- webClientVariantMChartValue1Collection? WebClientVariantMChartValue1[] -
sap.businessone.administration: WebClientVariantMChartSize
The WebClientVariantMChartSize complex type of the SAP Business One Service Layer
Fields
- 'order? Signed32 -
- columnName? string -
- guid? string -
sap.businessone.administration: WebClientVariantMChartValue1
The WebClientVariantMChartValue1 complex type of the SAP Business One Service Layer
Fields
- 'order? Signed32 -
- columnName? string -
- guid? string -
sap.businessone.administration: WebClientVariantMChartValue2
The WebClientVariantMChartValue2 complex type of the SAP Business One Service Layer
Fields
- 'order? Signed32 -
- columnName? string -
- guid? string -
sap.businessone.administration: WebClientVariantParams
The WebClientVariantParams complex type of the SAP Business One Service Layer
Fields
- guid? string -
sap.businessone.administration: WebClientVariantsCollectionResponse
A paged collection of WebClientVariants entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? WebClientVariant[] -
- odataNextLink? string -
sap.businessone.administration: WebClientVariantSelectedColumn
The WebClientVariantSelectedColumn complex type of the SAP Business One Service Layer
Fields
- 'order? Signed32 -
- columnName? string -
- guid? string -
sap.businessone.administration: WebClientVariantSortBy
The WebClientVariantSortBy complex type of the SAP Business One Service Layer
Fields
- 'order? Signed32 -
- columnName? string -
- guid? string -
- direction? string -
sap.businessone.administration: WIPMapping
The WIPMapping complex type of the SAP Business One Service Layer
Fields
- accountTo? string -
- absoluteEntry? Signed32 -
- accountFrom? string -
- lineNumber? Signed32 -
sap.businessone.administration: WorkflowApprovalTaskListParams
The WorkflowApprovalTaskListParams complex type of the SAP Business One Service Layer
Fields
- status? string -
sap.businessone.administration: WorkflowTask
The WorkflowTask complex type of the SAP Business One Service Layer
Fields
- status? string -
- owner? string -
- taskID? Signed32 -
- description? string -
- instanceID? Signed32 -
- priority? Signed32 -
- operation? string -
- name? string -
- workflowTaskNoteCollection? WorkflowTaskNote[] -
- 'type? string -
- workflowTaskOutputObjectCollection? WorkflowTaskOutputObject[] -
- workflowTaskInputObjectCollection? WorkflowTaskInputObject[] -
- templateName? string -
- templateID? string -
sap.businessone.administration: WorkflowTaskCompleteParams
The WorkflowTaskCompleteParams complex type of the SAP Business One Service Layer
Fields
- taskID? Signed32 -
- note? string -
- triggerParams? string -
sap.businessone.administration: WorkflowTaskInputObject
The WorkflowTaskInputObject complex type of the SAP Business One Service Layer
Fields
- 'type? string -
- taskID? Signed32 -
- subType? string -
- lineId? Signed32 -
- 'key? string -
- detail? string -
sap.businessone.administration: WorkflowTaskNote
The WorkflowTaskNote complex type of the SAP Business One Service Layer
Fields
- noteDate? string -
- taskID? Signed32 -
- lineId? Signed32 -
- note? string -
- creator? string -
sap.businessone.administration: WorkflowTaskOutputObject
The WorkflowTaskOutputObject complex type of the SAP Business One Service Layer
Fields
- 'type? string -
- taskID? Signed32 -
- subType? string -
- lineId? string -
- 'key? string -
sap.businessone.administration: WorkflowTaskService_Complete_body
Represents the request payload for the WorkflowTaskService_Complete operation of the SAP Business One Service Layer
Fields
- workflowTaskCompleteParams? WorkflowTaskCompleteParams -
sap.businessone.administration: WorkflowTaskService_GetApprovalTaskList_body
Represents the request payload for the WorkflowTaskService_GetApprovalTaskList operation of the SAP Business One Service Layer
Fields
- workflowApprovalTaskListParams? WorkflowApprovalTaskListParams -
Union types
sap.businessone.administration: BoWeekNoRuleEnum
BoWeekNoRuleEnum
OData EnumType 'BoWeekNoRuleEnum'. Serialised by the Service Layer as the member name
sap.businessone.administration: TransactionTypeEnum
TransactionTypeEnum
OData EnumType 'TransactionTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.administration: BoUTBTableType
BoUTBTableType
OData EnumType 'BoUTBTableType'. Serialised by the Service Layer as the member name
sap.businessone.administration: FormattedSearchByFieldEnum
FormattedSearchByFieldEnum
OData EnumType 'FormattedSearchByFieldEnum'. Serialised by the Service Layer as the member name
sap.businessone.administration: BoConsumptionMethod
BoConsumptionMethod
OData EnumType 'BoConsumptionMethod'. Serialised by the Service Layer as the member name
sap.businessone.administration: BoUPTOptions
BoUPTOptions
OData EnumType 'BoUPTOptions'. Serialised by the Service Layer as the member name
sap.businessone.administration: BoReportLayoutItemTypeEnum
BoReportLayoutItemTypeEnum
OData EnumType 'BoReportLayoutItemTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.administration: ApprovalTemplateConditionTypeEnum
ApprovalTemplateConditionTypeEnum
OData EnumType 'ApprovalTemplateConditionTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.administration: DrawingMethodEnum
DrawingMethodEnum
OData EnumType 'DrawingMethodEnum'. Serialised by the Service Layer as the member name
sap.businessone.administration: BoSubPeriodTypeEnum
BoSubPeriodTypeEnum
OData EnumType 'BoSubPeriodTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.administration: TaxRateDeterminationEnum
TaxRateDeterminationEnum
OData EnumType 'TaxRateDeterminationEnum'. Serialised by the Service Layer as the member name
sap.businessone.administration: DomesticBankAccountValidationEnum
DomesticBankAccountValidationEnum
OData EnumType 'DomesticBankAccountValidationEnum'. Serialised by the Service Layer as the member name
sap.businessone.administration: VMCommunicationTypeEnum
VMCommunicationTypeEnum
OData EnumType 'VMCommunicationTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.administration: AlertManagementFrequencyType
AlertManagementFrequencyType
OData EnumType 'AlertManagementFrequencyType'. Serialised by the Service Layer as the member name
sap.businessone.administration: UserActionTypeEnum
UserActionTypeEnum
OData EnumType 'UserActionTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.administration: BoFieldTypes
BoFieldTypes
OData EnumType 'BoFieldTypes'. Serialised by the Service Layer as the member name
sap.businessone.administration: TaxReportFilterReportLayoutType
TaxReportFilterReportLayoutType
OData EnumType 'TaxReportFilterReportLayoutType'. Serialised by the Service Layer as the member name
sap.businessone.administration: BoSuppLangs
BoSuppLangs
OData EnumType 'BoSuppLangs'. Serialised by the Service Layer as the member name
sap.businessone.administration: UserMenuItemTypeEnum
UserMenuItemTypeEnum
OData EnumType 'UserMenuItemTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.administration: TaxReportFilterPeriod
TaxReportFilterPeriod
OData EnumType 'TaxReportFilterPeriod'. Serialised by the Service Layer as the member name
sap.businessone.administration: TaxReportFilterQuarterOrDates
TaxReportFilterQuarterOrDates
OData EnumType 'TaxReportFilterQuarterOrDates'. Serialised by the Service Layer as the member name
sap.businessone.administration: MobileAddonSettingTypeEnum
MobileAddonSettingTypeEnum
OData EnumType 'MobileAddonSettingTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.administration: DataSensitiveStatusEnum
DataSensitiveStatusEnum
OData EnumType 'DataSensitiveStatusEnum'. Serialised by the Service Layer as the member name
sap.businessone.administration: ApprovalTemplatesDocumentTypeEnum
ApprovalTemplatesDocumentTypeEnum
OData EnumType 'ApprovalTemplatesDocumentTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.administration: SAFTProductTypeEnum
SAFTProductTypeEnum
OData EnumType 'SAFTProductTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.administration: BoApprovalRequestDecisionEnum
BoApprovalRequestDecisionEnum
OData EnumType 'BoApprovalRequestDecisionEnum'. Serialised by the Service Layer as the member name
sap.businessone.administration: BoSeriesTypeEnum
BoSeriesTypeEnum
OData EnumType 'BoSeriesTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.administration: SortOrderEnum
SortOrderEnum
OData EnumType 'SortOrderEnum'. Serialised by the Service Layer as the member name
sap.businessone.administration: GTSResponseToExceedingEnum
GTSResponseToExceedingEnum
OData EnumType 'GTSResponseToExceedingEnum'. Serialised by the Service Layer as the member name
sap.businessone.administration: BoPermission
BoPermission
OData EnumType 'BoPermission'. Serialised by the Service Layer as the member name
sap.businessone.administration: BoAlertTypeforWHStockEnum
BoAlertTypeforWHStockEnum
OData EnumType 'BoAlertTypeforWHStockEnum'. Serialised by the Service Layer as the member name
sap.businessone.administration: BoQueryTypeEnum
BoQueryTypeEnum
OData EnumType 'BoQueryTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.administration: BoDataOwnershipManageMethodEnum
BoDataOwnershipManageMethodEnum
OData EnumType 'BoDataOwnershipManageMethodEnum'. Serialised by the Service Layer as the member name
sap.businessone.administration: ReportLayoutCategoryEnum
ReportLayoutCategoryEnum
OData EnumType 'ReportLayoutCategoryEnum'. Serialised by the Service Layer as the member name
sap.businessone.administration: BoPrintReceiptEnum
BoPrintReceiptEnum
OData EnumType 'BoPrintReceiptEnum'. Serialised by the Service Layer as the member name
sap.businessone.administration: DisplayBatchQtyUoMByEnum
DisplayBatchQtyUoMByEnum
OData EnumType 'DisplayBatchQtyUoMByEnum'. Serialised by the Service Layer as the member name
sap.businessone.administration: BoOrientationEnum
BoOrientationEnum
OData EnumType 'BoOrientationEnum'. Serialised by the Service Layer as the member name
sap.businessone.administration: BoApprovalRequestStatusEnum
BoApprovalRequestStatusEnum
OData EnumType 'BoApprovalRequestStatusEnum'. Serialised by the Service Layer as the member name
sap.businessone.administration: BoMsgPriorities
BoMsgPriorities
OData EnumType 'BoMsgPriorities'. Serialised by the Service Layer as the member name
sap.businessone.administration: TaxReportFilterType
TaxReportFilterType
OData EnumType 'TaxReportFilterType'. Serialised by the Service Layer as the member name
sap.businessone.administration: BoBudgetAlert
BoBudgetAlert
OData EnumType 'BoBudgetAlert'. Serialised by the Service Layer as the member name
sap.businessone.administration: AlertManagementPriorityEnum
AlertManagementPriorityEnum
OData EnumType 'AlertManagementPriorityEnum'. Serialised by the Service Layer as the member name
sap.businessone.administration: BoFormattedSearchActionEnum
BoFormattedSearchActionEnum
OData EnumType 'BoFormattedSearchActionEnum'. Serialised by the Service Layer as the member name
sap.businessone.administration: BoUDOObjType
BoUDOObjType
OData EnumType 'BoUDOObjType'. Serialised by the Service Layer as the member name
sap.businessone.administration: BoBlockBudget
BoBlockBudget
OData EnumType 'BoBlockBudget'. Serialised by the Service Layer as the member name
sap.businessone.administration: BoGLMethods
BoGLMethods
OData EnumType 'BoGLMethods'. Serialised by the Service Layer as the member name
sap.businessone.administration: AuthenticationTypeEnum
AuthenticationTypeEnum
OData EnumType 'AuthenticationTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.administration: BoManageMethod
BoManageMethod
OData EnumType 'BoManageMethod'. Serialised by the Service Layer as the member name
sap.businessone.administration: BoBarCodeStandardEnum
BoBarCodeStandardEnum
OData EnumType 'BoBarCodeStandardEnum'. Serialised by the Service Layer as the member name
sap.businessone.administration: BoAeDistMthd
BoAeDistMthd
OData EnumType 'BoAeDistMthd'. Serialised by the Service Layer as the member name
sap.businessone.administration: UserQueryTypeEnum
UserQueryTypeEnum
OData EnumType 'UserQueryTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.administration: BoBaseDateRateEnum
BoBaseDateRateEnum
OData EnumType 'BoBaseDateRateEnum'. Serialised by the Service Layer as the member name
sap.businessone.administration: BoCockpitTypeEnum
BoCockpitTypeEnum
OData EnumType 'BoCockpitTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.administration: BoPictureSizeEnum
BoPictureSizeEnum
OData EnumType 'BoPictureSizeEnum'. Serialised by the Service Layer as the member name
sap.businessone.administration: CallMessageTypeEnum
CallMessageTypeEnum
OData EnumType 'CallMessageTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.administration: TaxReportFilterDeclarationType
TaxReportFilterDeclarationType
OData EnumType 'TaxReportFilterDeclarationType'. Serialised by the Service Layer as the member name
sap.businessone.administration: BoCurrencyCheck
BoCurrencyCheck
OData EnumType 'BoCurrencyCheck'. Serialised by the Service Layer as the member name
sap.businessone.administration: BoWeekEnum
BoWeekEnum
OData EnumType 'BoWeekEnum'. Serialised by the Service Layer as the member name
sap.businessone.administration: KPITypeEnum
KPITypeEnum
OData EnumType 'KPITypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.administration: BoTimeTemplate
BoTimeTemplate
OData EnumType 'BoTimeTemplate'. Serialised by the Service Layer as the member name
sap.businessone.administration: ExternalCallStatusEnum
ExternalCallStatusEnum
OData EnumType 'ExternalCallStatusEnum'. Serialised by the Service Layer as the member name
sap.businessone.administration: BoSeriesGroupEnum
BoSeriesGroupEnum
OData EnumType 'BoSeriesGroupEnum'. Serialised by the Service Layer as the member name
sap.businessone.administration: BoHorizontalAlignmentEnum
BoHorizontalAlignmentEnum
OData EnumType 'BoHorizontalAlignmentEnum'. Serialised by the Service Layer as the member name
sap.businessone.administration: TranslationCategoryEnum
TranslationCategoryEnum
OData EnumType 'TranslationCategoryEnum'. Serialised by the Service Layer as the member name
sap.businessone.administration: UserGroupCategoryEnum
UserGroupCategoryEnum
OData EnumType 'UserGroupCategoryEnum'. Serialised by the Service Layer as the member name
sap.businessone.administration: VMCommunicationStatusEnum
VMCommunicationStatusEnum
OData EnumType 'VMCommunicationStatusEnum'. Serialised by the Service Layer as the member name
sap.businessone.administration: PeriodStatusEnum
PeriodStatusEnum
OData EnumType 'PeriodStatusEnum'. Serialised by the Service Layer as the member name
sap.businessone.administration: BoDefaultBatchStatus
BoDefaultBatchStatus
OData EnumType 'BoDefaultBatchStatus'. Serialised by the Service Layer as the member name
sap.businessone.administration: BoDateTemplate
BoDateTemplate
OData EnumType 'BoDateTemplate'. Serialised by the Service Layer as the member name
sap.businessone.administration: BoChangeLogEnum
BoChangeLogEnum
OData EnumType 'BoChangeLogEnum'. Serialised by the Service Layer as the member name
sap.businessone.administration: EventReplayStateEnum
EventReplayStateEnum
OData EnumType 'EventReplayStateEnum'. Serialised by the Service Layer as the member name
sap.businessone.administration: ApprovalTemplateOperationTypeEnum
ApprovalTemplateOperationTypeEnum
OData EnumType 'ApprovalTemplateOperationTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.administration: BoUserGroup
BoUserGroup
OData EnumType 'BoUserGroup'. Serialised by the Service Layer as the member name
sap.businessone.administration: BoFldSubTypes
BoFldSubTypes
OData EnumType 'BoFldSubTypes'. Serialised by the Service Layer as the member name
sap.businessone.administration: DocumentRemarksIncludeTypeEnum
DocumentRemarksIncludeTypeEnum
OData EnumType 'DocumentRemarksIncludeTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.administration: MobileAppReportChoiceEnum
MobileAppReportChoiceEnum
OData EnumType 'MobileAppReportChoiceEnum'. Serialised by the Service Layer as the member name
sap.businessone.administration: BoExtensionErrorActionEnum
BoExtensionErrorActionEnum
OData EnumType 'BoExtensionErrorActionEnum'. Serialised by the Service Layer as the member name
sap.businessone.administration: BADivationAlertLevelEnum
BADivationAlertLevelEnum
OData EnumType 'BADivationAlertLevelEnum'. Serialised by the Service Layer as the member name
sap.businessone.administration: PriceProceedMethodEnum
PriceProceedMethodEnum
OData EnumType 'PriceProceedMethodEnum'. Serialised by the Service Layer as the member name
sap.businessone.administration: BoSortTypeEnum
BoSortTypeEnum
OData EnumType 'BoSortTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.administration: LogonMethodEnum
LogonMethodEnum
OData EnumType 'LogonMethodEnum'. Serialised by the Service Layer as the member name
sap.businessone.administration: WebhookWorkModeEnum
WebhookWorkModeEnum
OData EnumType 'WebhookWorkModeEnum'. Serialised by the Service Layer as the member name
sap.businessone.administration: TaxReportFilterApArDocumentType
TaxReportFilterApArDocumentType
OData EnumType 'TaxReportFilterApArDocumentType'. Serialised by the Service Layer as the member name
sap.businessone.administration: BoYesNoEnum
BoYesNoEnum
OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
sap.businessone.administration: CallMessageStatusEnum
CallMessageStatusEnum
OData EnumType 'CallMessageStatusEnum'. Serialised by the Service Layer as the member name
sap.businessone.administration: IssuePrimarilyByEnum
IssuePrimarilyByEnum
OData EnumType 'IssuePrimarilyByEnum'. Serialised by the Service Layer as the member name
sap.businessone.administration: RoundingContextEnum
RoundingContextEnum
OData EnumType 'RoundingContextEnum'. Serialised by the Service Layer as the member name
sap.businessone.administration: TaxCalcSysEnum
TaxCalcSysEnum
OData EnumType 'TaxCalcSysEnum'. Serialised by the Service Layer as the member name
sap.businessone.administration: BoDataSourceEnum
BoDataSourceEnum
OData EnumType 'BoDataSourceEnum'. Serialised by the Service Layer as the member name
sap.businessone.administration: FreightTypeEnum
FreightTypeEnum
OData EnumType 'FreightTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.administration: AlertManagementDocumentEnum
AlertManagementDocumentEnum
OData EnumType 'AlertManagementDocumentEnum'. Serialised by the Service Layer as the member name
sap.businessone.administration: UserAccessLogReasonIDTypeEnum
UserAccessLogReasonIDTypeEnum
OData EnumType 'UserAccessLogReasonIDTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.administration: ViewStyleTypeEnum
ViewStyleTypeEnum
OData EnumType 'ViewStyleTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.administration: BoInventorySystem
BoInventorySystem
OData EnumType 'BoInventorySystem'. Serialised by the Service Layer as the member name
sap.businessone.administration: SingleUserConnectionActionEnum
SingleUserConnectionActionEnum
OData EnumType 'SingleUserConnectionActionEnum'. Serialised by the Service Layer as the member name
sap.businessone.administration: BoMsgRcpTypes
BoMsgRcpTypes
OData EnumType 'BoMsgRcpTypes'. Serialised by the Service Layer as the member name
sap.businessone.administration: AlertManagementTypeEnum
AlertManagementTypeEnum
OData EnumType 'AlertManagementTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.administration: TaxReportFilterDocumentType
TaxReportFilterDocumentType
OData EnumType 'TaxReportFilterDocumentType'. Serialised by the Service Layer as the member name
sap.businessone.administration: BoUniqueSerialNumber
BoUniqueSerialNumber
OData EnumType 'BoUniqueSerialNumber'. Serialised by the Service Layer as the member name
sap.businessone.administration: BoLineBreakEnum
BoLineBreakEnum
OData EnumType 'BoLineBreakEnum'. Serialised by the Service Layer as the member name
sap.businessone.administration: WebhookStateEnum
WebhookStateEnum
OData EnumType 'WebhookStateEnum'. Serialised by the Service Layer as the member name
sap.businessone.administration: SupportUserLoginRecordLogReasonTypeEnum
SupportUserLoginRecordLogReasonTypeEnum
OData EnumType 'SupportUserLoginRecordLogReasonTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.administration: UDFLinkedSystemObjectTypesEnum
UDFLinkedSystemObjectTypesEnum
OData EnumType 'UDFLinkedSystemObjectTypesEnum'. Serialised by the Service Layer as the member name
sap.businessone.administration: EventStatusEnum
EventStatusEnum
OData EnumType 'EventStatusEnum'. Serialised by the Service Layer as the member name
sap.businessone.administration: BoGridTypeEnum
BoGridTypeEnum
OData EnumType 'BoGridTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.administration: InventoryAccountTypeEnum
InventoryAccountTypeEnum
OData EnumType 'InventoryAccountTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.administration: BoVerticalAlignmentEnum
BoVerticalAlignmentEnum
OData EnumType 'BoVerticalAlignmentEnum'. Serialised by the Service Layer as the member name
Import
import ballerinax/sap.businessone.administration;Metadata
Released date: 12 days ago
Version: 1.0.0
License: Apache-2.0
Compatibility
Platform: any
Ballerina version: 2201.13.0
GraalVM compatible: Yes
Pull count
Total: 2
Current verison: 0
Weekly downloads
Keywords
Name/SAP Business One Administration
Area/ERP & Business Operations
Vendor/SAP
Cost/Paid
Type/Connector
SAP Business One
Administration
ERP
Contributors