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.
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.
To connect, you need three values from the SAP Business One desktop client's login screen: the company database, your user name, and your password.
Click the company name at the top of the SAP Business One desktop application, or contact your administrator.

The Service Layer endpoint follows the pattern https://<host>:50000/b1s/v1.
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 - Name field
- RevenuesAccount? string - Revenues account field
- ExpenseAccount? string - Expense account field
- TaxLiable? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- FixedAmountRevenues? decimal - Fixed amount revenues field
- FixedAmountExpenses? decimal - Fixed amount expenses field
- OutputVATGroup? string - Output VAT group field
- InputVATGroup? string - Input VAT group field
- 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 - Freight offset account field
- WTLiable? string - Withholding tax liable field
- ExpensCode? Signed32 - Expens code field
- ExpenseExemptedAccount? string - Expense exempted account field
- RevenuesExemptedAccount? string - Revenues exempted account field
- DistributionRule? string - Distribution rule field
- 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 - Project field
- DistributionRule2? string - Distribution rule2 field
- DistributionRule3? string - Distribution rule3 field
- DistributionRule4? string - Distribution rule4 field
- DistributionRule5? string - Distribution rule5 field
- DataVersion? Signed32 - Data version field
- SAFTProductType? SAFTProductTypeEnum - OData EnumType 'SAFTProductTypeEnum'. Serialised by the Service Layer as the member name
- SAFTProductTypeEx? string - SAFT product type ex field
sap.businessone.administration: AdditionalExpensesCollectionResponse
A paged collection of AdditionalExpenses entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? AdditionalExpense[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.administration: AdminInfo
The AdminInfo complex type of the SAP Business One Service Layer
Fields
- alertTypeforWHStock? BoAlertTypeforWHStockEnum - Alert typefor warehouse stock field
- inventoryPostingHighlightVariance? decimal - Inventory posting highlight variance field
- autoAssignOnlyValidARBA? BoYesNoEnum - Auto assign only valid ARBA field
- bankCountry? string - Bank country field
- systemCurrency? string - System currency field
- bankStatementInstalled? BoYesNoEnum - Bank statement installed field
- blockMultipleBAOnSameAPDocument? BoYesNoEnum - Block multiple BA on same accounts payable document field
- fileNumberinIncomeTax? string - File numberin income tax field
- altNameforCreditMemo? string - Alt namefor credit memo field
- eMail? string - E mail field
- deferredTaxforVendors? BoYesNoEnum - Deferred taxfor vendors field
- wTAccumAmountAR? decimal - W t accum amount accounts receivable field
- periodStatusAutoChange? BoYesNoEnum - Period status auto change field
- altNameForGoodsReturn? string - Alt name for goods return field
- wTAccumAmountAP? decimal - W t accum amount accounts payable field
- faxNumber? string - Fax number field
- aliasName? string - Alias name field
- calculateInWhseQtyBasedOnPostingDate? BoYesNoEnum - Calculate in whse quantity based on posting date field
- webhookRetryTimes? Signed32 - Webhook retry times field
- defaultBudgetCostAssessMt? Signed32 - Default budget cost assess mt field
- enableWebhook? BoYesNoEnum - Enable webhook field
- setItemsWarehouses? BoYesNoEnum - Set items warehouses field
- messageBatchLimit? Signed32 - Message batch limit field
- displayInactivePriceListInReports? BoYesNoEnum - Display inactive price list in reports field
- inventoryCountingHighlightVariance? decimal - Inventory counting highlight variance field
- defaultBankAccountKey? Signed32 - Default bank account key field
- withholdingTaxTdctPercnt? decimal - Withholding tax tdct percnt field
- servicePassword? string - Service password field
- useProductionProfitAndLossAccount? BoYesNoEnum - Use production profit and loss account field
- gTSOutboundFolder? string - G TS outbound folder field
- extendedAdminInfo? ExtendedAdminInfo - Extended admin information field
- roundingMethod? BoYesNoEnum - Rounding method field
- boletoFolderPath? string - Boleto folder path field
- displayInactivePriceListInDocuments? BoYesNoEnum - Display inactive price list in documents field
- code? Signed32 - Code field
- allowBPWithNoOwner? BoYesNoEnum - Allow business partner with number owner field
- defaultVendorPaymentTerms? Signed32 - Default vendor payment terms field
- priceListforCostPrice? Signed32 - Price listfor cost price field
- chartofAccountsTemplate? string - Chartof accounts template field
- blockSystemCurrencyEditing? BoYesNoEnum - Block system currency editing field
- holidaysName? string - Holidays name field
- iSRType? Signed32 - I SR type field
- enableUpdateDraftDuringApproval? BoYesNoEnum - Enable update draft during approval field
- printingHeader? string - Printing header field
- multiCurrencyCheck? BoCurrencyCheck - Multi currency check field
- uniqueSerialNo? BoUniqueSerialNumber - Unique serial number field
- closeCountedRowsWithZeroDifference? BoYesNoEnum - Close counted rows with zero difference field
- dataOwnershipManageBy? BoDataOwnershipManageMethodEnum - Data ownership manage by field
- maximumNumberOfDaysForDueDate? Signed32 - Maximum number of days for due date field
- localCurrency? string - Local currency field
- iSRBillerID? string - I SR biller ID field
- altNameForGoodsReceipt? string - Alt name for goods receipt field
- sHandleWT? BoYesNoEnum - S handle withholding tax field
- inventoryCountingHighlightMaxVariance? decimal - Inventory counting highlight max variance field
- customerIdNumber? string - Customer ID number field
- serviceCode? string - Service code field
- maxNumberOfWebHooks? Signed32 - Max number of web hooks field
- blockDelNotesforPurchase? BoYesNoEnum - Block del notesfor purchase field
- enablePaymentDueDates? BoYesNoEnum - Enable payment due dates field
- defaultCustomerPriceList? Signed32 - Default customer price list field
- withholdingTaxVendorDdct? BoYesNoEnum - Withholding tax vendor ddct field
- salesLnWTax? BoYesNoEnum - Sales ln w tax field
- considerDelNotesinSalesR? BoYesNoEnum - Consider del notesin sales r field
- docConfirmation? BoYesNoEnum - Document confirmation field
- excelFolderPath? string - Excel folder path field
- defaultVendorPriceList? Signed32 - Default vendor price list field
- applyBaseInactiveStatusToSpecialPrices? BoYesNoEnum - Apply base inactive status to special prices field
- addressinForeignLanguage? string - Addressin foreign language field
- consumptionMethod? BoConsumptionMethod - Consumption method field
- salesPostPaymentCategoryLnWTax? BoYesNoEnum - Sales post payment category ln w tax field
- displayPriceforPriceOnly? BoYesNoEnum - Display pricefor price only field
- queryAccuracy? Signed32 - Query accuracy field
- weightUnitDefault? Signed32 - Weight unit default field
- companyColor? Signed32 - Company color field
- wholdingTaxDedHierarchy? BoYesNoEnum - Wholding tax ded hierarchy field
- reuseNotaFiscalNum? BoYesNoEnum - Reuse nota fiscal number field
- setResourcesWarehouses? BoYesNoEnum - Set resources warehouses field
- displayBatchQtyUoMBy? DisplayBatchQtyUoMByEnum - Display batch quantity uo m by field
- inventoryCountingHighlightCountersDifference? decimal - Inventory counting highlight counters difference field
- electronicReportInfo? ElectronicReportInfo - Electronic report information field
- actionWhenDeviateFromBAForAccounting? BADivationAlertLevelEnum - Action when deviate from BA for accounting field
- defaultforBatchStatus? BoDefaultBatchStatus - Defaultfor batch status field
- enableMultipleSchedulings? string - Enable multiple schedulings field
- deferredTax? BoYesNoEnum - Deferred tax field
- enableDigitalPayments? BoYesNoEnum - Enable digital payments field
- faxNumberForeignLang? string - Fax number foreign lang field
- messageTTL? Signed32 - Message TTL field
- pDefaultWTCode? string - P default withholding tax code field
- federalTaxID? string - Federal tax ID field
- accuracyofQuantities? Signed32 - Accuracyof quantities field
- messageRetentionTime? Signed32 - Message retention time field
- adressFromWH? BoYesNoEnum - Adress from warehouse field
- defaultTaxCode? string - Default tax code field
- pBSNumber? string - P BS number field
- pBSGroupNumber? string - P BS group number field
- generalManager? string - General manager field
- usePASystem? BoYesNoEnum - Use PA system field
- isPrinterConnected? BoYesNoEnum - Is printer connected field
- totalsAccuracy? Signed32 - Totals accuracy field
- allowClosedSalesQuotations? BoYesNoEnum - Allow closed sales quotations field
- certificateNo? string - Certificate number field
- dontDuplicatwAttachment? BoYesNoEnum - Dont duplicatw attachment field
- enableExternalTax? BoYesNoEnum - Enable external tax field
- minimumAmountfor347Report? decimal - Minimum amountfor347 report field
- state? string - State field
- altNameForPurchase? string - Alt name for purchase field
- enableCentralizedIncomingPayments? BoYesNoEnum - Enable centralized incoming payments field
- rateAccuracy? Signed32 - Rate accuracy field
- maxHistory? Signed32 - Max history field
- withholdingTaxDdctExpired? string - Withholding tax ddct expired field
- phoneNumber2ForeignLang? string - Phone number2 foreign lang field
- creditRestriction? BoYesNoEnum - Credit restriction field
- dateSeparator? string - Date separator field
- continuousStockManagement? BoYesNoEnum - Continuous stock management field
- webhookRetryInterval? Signed32 - Webhook retry interval field
- gTSInboundFolder? string - G TS inbound folder field
- attachmentEntryForFileStorage? Signed32 - Attachment entry for file storage field
- enableAdvancedGLAccountDetermination? BoYesNoEnum - Enable advanced general ledger account determination field
- customersDeductionatSource? BoYesNoEnum - Customers deductionat source field
- gLMethod? BoGLMethods - G l method field
- userConversionCode? BoYesNoEnum - User conversion code field
- additionalIdNumber? string - Additional ID number field
- restrictDelNotesPO? BoYesNoEnum - Restrict del notes purchase order field
- daysBackward? Signed32 - Days backward field
- autoAddPackage? BoYesNoEnum - Auto add package field
- dontOverwriteAtcWithSameName? BoYesNoEnum - Dont overwrite atc with same name field
- consumeForecast? BoYesNoEnum - Consume forecast field
- enableApprovalProcedureInDI? BoYesNoEnum - Enable approval procedure in DI field
- taxPercentage? decimal - Tax percentage field
- gTSDefaultPayee? Signed32 - G TS default payee field
- displayInactivePriceListInSettings? BoYesNoEnum - Display inactive price list in settings field
- reportAccordingTo? Signed32 - Report according to field
- allowFuturePostingDate? BoYesNoEnum - Allow future posting date field
- iEMandatoryValidation? BoYesNoEnum - I e mandatory validation field
- useDefaultPriceList? BoYesNoEnum - Use default price list field
- useParentWIPInComponents? BoYesNoEnum - Use parent WIP in components field
- taxDefinitionforVatitem? string - Tax definitionfor vatitem field
- generalManagerForeignLanguage? string - General manager foreign language field
- gTSSeparateCode? string - G TS separate code field
- multiLanguageSupportEnable? BoYesNoEnum - Multi language support enable field
- calculateRowDiscount? BoYesNoEnum - Calculate row discount field
- salesApplyExhRatesLnWTax? BoYesNoEnum - Sales apply exh rates ln w tax field
- taxCollection? BoYesNoEnum - Tax collection field
- account? string - Account field
- organizationNumber? string - Organization number field
- accountSegmentsSeparator? string - Account segments separator field
- address? string - Address field
- blockStockNegativeQuantity? BoYesNoEnum - Block stock negative quantity field
- defaultBankNo? string - Default bank number field
- institutionCode? string - Institution code field
- createAutoVATLineinJDT? BoYesNoEnum - Create auto VAT linein JDT field
- defaultWarehouse? string - Default warehouse field
- refreshInWhseQtyInDI? BoYesNoEnum - Refresh in whse quantity in DI field
- taxGroupforPurchaseItem? string - Tax groupfor purchase item field
- priceSystem? BoYesNoEnum - Price system field
- applyBaseInactiveStatusToPriceLists? BoYesNoEnum - Apply base inactive status to price lists field
- blockPurchaseOrders? BoYesNoEnum - Block purchase orders field
- copyAttachmentsFromBOM? BoYesNoEnum - Copy attachments from bill of materials field
- copyOpenRowsToDelivery? BoYesNoEnum - Copy open rows to delivery field
- paramFolderPath? string - Param folder path field
- withTax? decimal - With tax field
- numberOfCharInMonth? Signed32 - Number of char in month field
- thousandsSeparator? string - Thousands separator field
- enableUpdateBAPriceAndPlannedAmount? BoYesNoEnum - Enable update BA price and planned amount field
- autoAddUoM? BoYesNoEnum - Auto add uo m field
- isRemoveUnpricedValue? BoYesNoEnum - Is remove unpriced value field
- useNegativeAmounts? BoYesNoEnum - Use negative amounts field
- purchaseOrderConfirmed? BoYesNoEnum - Purchase order confirmed field
- restrictSales? BoYesNoEnum - Restrict sales field
- calculateGrossProfitperTra? BoYesNoEnum - Calculate gross profitper tra field
- setCommissionbySE? BoYesNoEnum - Set commissionby SE field
- country? string - Country field
- startingInFiscalYear? Signed32 - Starting in fiscal year field
- defaultAccountCurrency? BoYesNoEnum - Default account currency field
- actionWhenDeviateFromBAForGRPO? BADivationAlertLevelEnum - Action when deviate from BA for GRPO field
- blockBudget? BoBlockBudget - Block budget field
- baseField? BoYesNoEnum - Base field field
- reuseDocumentNum? BoYesNoEnum - Reuse document number field
- displayBookkeepingWindow? BoYesNoEnum - Display bookkeeping window field
- webhookRequestTimeout? Signed32 - Webhook request timeout field
- useTax? BoYesNoEnum - Use tax field
- blockTaxDate? BoYesNoEnum - Block tax date field
- taxDefinitionforVatservice? string - Tax definitionfor vatservice field
- xMLFileFolderPath? string - X ML file folder path field
- priceAccuracy? Signed32 - Price accuracy field
- sirenNo? string - Siren number field
- salesOrderConfirmed? BoYesNoEnum - Sales order confirmed field
- copySingleCounterToIndividualCounter? BoYesNoEnum - Copy single counter to individual counter field
- displayRoundingRemark? BoYesNoEnum - Display rounding remark field
- creditDepositType? BoYesNoEnum - Credit deposit type field
- dateTemplate? BoDateTemplate - Date template field
- purchasePostPaymentCategoryLnWTax? BoYesNoEnum - Purchase post payment category ln w tax field
- closeCountedRowsWithoutConfirmation? BoYesNoEnum - Close counted rows without confirmation field
- decimalSeparator? string - Decimal separator field
- bPTypeCode? string - B p type code field
- changeDefReconAPAccounts? BoYesNoEnum - Change def recon accounts payable accounts field
- displayCancelDocInReport? BoYesNoEnum - Display cancel document in report field
- eORINumber? string - E ORI number field
- copyAttachmentsFromBaseToTarget? BoYesNoEnum - Copy attachments from base to target field
- percentageAccuracy? Signed32 - Percentage accuracy field
- gTSMaxAmount? decimal - G TS max amount field
- taxOffice? string - Tax office field
- grossProfitPercentForServiceDocuments? decimal - Gross profit percent for service documents field
- changedExistingOrders? BoYesNoEnum - Changed existing orders field
- expirationDate? string - Expiration date field
- managingDirector? string - Managing director field
- creditBalancewithMinusSign? BoYesNoEnum - Credit balancewith minus sign field
- restrictOrders? BoYesNoEnum - Restrict orders field
- priceProceedMethod? PriceProceedMethodEnum - Price proceed method field
- allowInBoundPostingWithZeroPrice? BoYesNoEnum - Allow in bound posting with zero price field
- measuringAccuracy? Signed32 - Measuring accuracy field
- actionWhenDeviateFromBAForPO? BADivationAlertLevelEnum - Action when deviate from BA for purchase order field
- enableCentralizedOutgoingPayments? BoYesNoEnum - Enable centralized outgoing payments field
- blockMultipleBAOnSameARDocument? BoYesNoEnum - Block multiple BA on same accounts receivable document field
- autoAssignOnlyValidAPBA? BoYesNoEnum - Auto assign only valid APBA field
- displayCurrencyontheRight? BoYesNoEnum - Display currencyonthe right field
- taxGroupforServicePurchase? string - Tax groupfor service purchase field
- grossProfitAfterSale? BoYesNoEnum - Gross profit after sale field
- companyName? string - Company name field
- removeUpdatePricesBasedOnNonStandardPriceLists? BoYesNoEnum - Remove update prices based on non standard price lists field
- fCCheckAccount? BoCurrencyCheck - F c check account field
- enableSeparatePriceMode? BoYesNoEnum - Enable separate price mode field
- uniqueTaxPayerReference? string - Unique tax payer reference field
- purchaseApplyExhRatesLnWTaxWX? BoYesNoEnum - Purchase apply exh rates ln w tax WX field
- setCommissionbyItem? BoYesNoEnum - Set commissionby item field
- issuePrimarilyBy? IssuePrimarilyByEnum - Issue primarily by field
- splitPO? BoYesNoEnum - Split purchase order field
- budgetAlert? BoBudgetAlert - Budget alert field
- defaultBranch? string - Default branch field
- daysForward? Signed32 - Days forward field
- roundTaxAmounts? BoYesNoEnum - Round tax amounts field
- phoneNumber2? string - Phone number2 field
- orderingParty? string - Ordering party field
- phoneNumber1? string - Phone number1 field
- standardUnitofLength? Signed32 - Standard unitof length field
- defaultCustomerPaymentTerms? Signed32 - Default customer payment terms field
- directIndirectRate? BoYesNoEnum - Direct indirect rate field
- phoneNumber1ForeignLang? string - Phone number1 foreign lang field
- setCommissionbyCustomer? BoYesNoEnum - Set commissionby customer field
- purchaseLnWTax? BoYesNoEnum - Purchase ln w tax field
- nationalInsuranceNo? string - National insurance number field
- orderBlock? string - Order block field
- blockBookkeeping? BoYesNoEnum - Block bookkeeping field
- taxRateDetermination? TaxRateDeterminationEnum - Tax rate determination field
- pickList? BoYesNoEnum - Pick list field
- withholdingTaxDdctOffice? string - Withholding tax ddct office field
- federalTaxID3? string - Federal tax ID3 field
- federalTaxID2? string - Federal tax ID2 field
- maxDaysForCancel? Signed32 - Max days for cancel field
- withholdingTaxPHandle? string - Withholding tax p handle field
- defaultDunningTerm? string - Default dunning term field
- inventoryPostingReleaseOnlySerialAndBatch? BoYesNoEnum - Inventory posting release only serial and batch field
- employerReference? string - Employer reference field
- sDfltITWT? string - S dflt ITWT field
- gTSDefaultChecker? Signed32 - G TS default checker field
- letterHeaderinForeignLangu? string - Letter headerin foreign langu field
- enableBranches? BoYesNoEnum - Enable branches field
- sEPACreditorID? string - S EPA creditor ID field
- applicationOfIFRS? BoYesNoEnum - Application of IFRS field
- sDefaultWTCode? string - S default withholding tax code field
- altNameForApInvoice? string - Alt name for accounts payable invoice field
- calculateBudget? BoYesNoEnum - Calculate budget field
- createOnlineQuotation? BoYesNoEnum - Create online quotation field
- advancesonCorpIncomeTax? decimal - Advanceson corp income tax field
- calculateTaxinSalesQuotati? BoYesNoEnum - Calculate taxin sales quotati field
- continuousStockSystem? BoInventorySystem - Continuous stock system field
- commitmentRestriction? BoYesNoEnum - Commitment restriction field
- taxDefinition? BoYesNoEnum - Tax definition field
- changeDefReconARAccounts? BoYesNoEnum - Change def recon accounts receivable accounts field
- periodStatusChangeDelay? Signed32 - Period status change delay field
- wTLiableExpense? BoYesNoEnum - W t liable expense field
- alertbyWarehouse? BoYesNoEnum - Alertby warehouse field
- enableUpdateDocAfterApproval? BoYesNoEnum - Enable update document after approval field
- gTSResponseToExceeding? GTSResponseToExceedingEnum - G TS response to exceeding field
- blockPostingDateEditing? BoYesNoEnum - Block posting date editing field
- managingDirectorForeignLan? string - Managing director foreign lan field
- deductionFileNo? string - Deduction file number field
- enableAuthorizerUpdatePendingDraft? BoYesNoEnum - Enable authorizer update pending draft field
- series? Signed32 - Series field
- defaultBankAccount? string - Default bank account field
- copyExchangeRateInCopyTo? BoYesNoEnum - Copy exchange rate in copy to field
- timeTemplate? BoTimeTemplate - Time template field
- pDfltITWT? string - P dflt ITWT field
- allowMultipleBAOnSamePeriod? BoYesNoEnum - Allow multiple BA on same period field
- applyBaseInactiveStatusToPeriodVolumeDiscounts? BoYesNoEnum - Apply base inactive status to period volume discounts field
sap.businessone.administration: AdvancedGLAccountParams
The AdvancedGLAccountParams complex type of the SAP Business One Service Layer
Fields
- itemCode? string - Item code field
- warehouse? string - Warehouse field
- usage? Signed32 - Usage field
- shipToCountry? string - Ship to country field
- vatGroup? string - VAT group field
- accountType? InventoryAccountTypeEnum - Account type field
- federalTaxID? string - Federal tax ID field
- shipToState? string - Ship to state field
- postingDate? string - Posting date field
- uDF5? string - U DF5 field
- uDF4? string - U DF4 field
- uDF3? string - U DF3 field
- bPCode? string - B p code field
- uDF2? string - U DF2 field
- uDF1? string - U DF1 field
sap.businessone.administration: AdvancedGLAccountReturnParams
The AdvancedGLAccountReturnParams complex type of the SAP Business One Service Layer
Fields
- accountCode? string - Account code field
sap.businessone.administration: AlertManagement
The AlertManagement entity of the SAP Business One Service Layer
Fields
- Code? Signed32 - Code field
- Name? string - Name field
- 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 - Param field
- QueryID? Signed32 - Query ID field
- FrequencyType? AlertManagementFrequencyType - OData EnumType 'AlertManagementFrequencyType'. Serialised by the Service Layer as the member name
- DayOfExecution? Signed32 - Day of execution field
- ExecutionTime? string - Execution time field
- LastExecutionDate? string - Last execution date field
- LastExecutionTime? Signed32 - Last execution time field
- NextExecutionDate? string - Next execution date field
- NextExecutionTime? string - Next execution time field
- SaveHistory? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- FrequencyInterval? Signed32 - Frequency interval field
- AlertManagementRecipients? AlertManagementRecipient[] - Alert management recipients field
- AlertManagementDocuments? AlertManagementDocument[] - Alert management documents field
sap.businessone.administration: AlertManagementDocument
The AlertManagementDocument complex type of the SAP Business One Service Layer
Fields
- active? BoYesNoEnum - Active field
- document? AlertManagementDocumentEnum - Document field
sap.businessone.administration: AlertManagementParams
The AlertManagementParams complex type of the SAP Business One Service Layer
Fields
- 'type? AlertManagementTypeEnum - Type field
- code? Signed32 - Code field
- name? string - Name field
sap.businessone.administration: AlertManagementRecipient
The AlertManagementRecipient complex type of the SAP Business One Service Layer
Fields
- sendInternal? BoYesNoEnum - Send internal field
- userCode? Signed32 - User code field
- sendSMS? BoYesNoEnum - Send SMS field
- sendEMail? BoYesNoEnum - Send e mail field
- sendFax? BoYesNoEnum - Send fax field
sap.businessone.administration: AlertManagementsCollectionResponse
A paged collection of AlertManagements entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? AlertManagement[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.administration: ApprovalRequest
The ApprovalRequest entity of the SAP Business One Service Layer
Fields
- isDraft? string - Is draft field
- status? BoApprovalRequestStatusEnum - Status field
- originatorID? Signed32 - Originator ID field
- creationDate? string - Creation date field
- approvalRequestDecisions? ApprovalRequestDecision[] - Approval request decisions field
- user? User - User field
- approvalTemplatesID? Signed32 - Approval templates ID field
- approvalRequestLines? ApprovalRequestLine[] - Approval request lines field
- currentStage? Signed32 - Current stage field
- draftEntry? Signed32 - Draft entry field
- objectEntry? Signed32 - Object entry field
- code? Signed32 - Code field
- objectType? string - Object type field
- draftType? string - Draft type field
- remarks? string - Remarks field
- creationTime? string - Creation time field
- approvalTemplate? ApprovalTemplate - Approval template field
- approvalStage? ApprovalStage - Approval stage field
sap.businessone.administration: ApprovalRequestDecision
The ApprovalRequestDecision complex type of the SAP Business One Service Layer
Fields
- status? BoApprovalRequestDecisionEnum - Status field
- approverPassword? string - Approver password field
- remarks? string - Remarks field
- approverUserName? string - Approver user name field
sap.businessone.administration: ApprovalRequestLine
The ApprovalRequestLine complex type of the SAP Business One Service Layer
Fields
- status? BoApprovalRequestDecisionEnum - Status field
- updateDate? string - Update date field
- creationDate? string - Creation date field
- remarks? string - Remarks field
- userID? Signed32 - User ID field
- updateTime? string - Update time field
- creationTime? string - Creation time field
- stageCode? Signed32 - Stage code field
sap.businessone.administration: ApprovalRequestParams
The ApprovalRequestParams complex type of the SAP Business One Service Layer
Fields
- status? BoApprovalRequestStatusEnum - Status field
- remarks? string - Remarks field
- code? Signed32 - Code field
sap.businessone.administration: ApprovalRequestsCollectionResponse
A paged collection of ApprovalRequests entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? ApprovalRequest[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.administration: ApprovalStage
The ApprovalStage entity of the SAP Business One Service Layer
Fields
- approvalRequests? ApprovalRequest[] - Approval requests field
- remarks? string - Remarks field
- code? Signed32 - Code field
- approvalStageApprovers? ApprovalStageApprover[] - Approval stage approvers field
- name? string - Name field
- noOfApproversRequired? Signed32 - Number of approvers required field
sap.businessone.administration: ApprovalStageApprover
The ApprovalStageApprover complex type of the SAP Business One Service Layer
Fields
- userID? Signed32 - User ID field
sap.businessone.administration: ApprovalStageParams
The ApprovalStageParams complex type of the SAP Business One Service Layer
Fields
- code? Signed32 - Code field
- name? string - Name field
sap.businessone.administration: ApprovalStagesCollectionResponse
A paged collection of ApprovalStages entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? ApprovalStage[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.administration: ApprovalTemplate
The ApprovalTemplate entity of the SAP Business One Service Layer
Fields
- approvalTemplateStages? ApprovalTemplateStage[] - Approval template stages field
- approvalRequests? ApprovalRequest[] - Approval requests field
- isActiveWhenUpdatingDocuments? BoYesNoEnum - Is active when updating documents field
- approvalTemplateQueries? ApprovalTemplateQuery[] - Approval template queries field
- remarks? string - Remarks field
- approvalTemplateTerms? ApprovalTemplateTerm[] - Approval template terms field
- isActive? BoYesNoEnum - Is active field
- useTerms? BoYesNoEnum - Use terms field
- code? Signed32 - Code field
- approvalTemplateDocuments? ApprovalTemplateDocument[] - Approval template documents field
- name? string - Name field
- approvalTemplateUsers? ApprovalTemplateUser[] - Approval template users field
sap.businessone.administration: ApprovalTemplateDocument
The ApprovalTemplateDocument complex type of the SAP Business One Service Layer
Fields
- documentType? ApprovalTemplatesDocumentTypeEnum - Document type field
sap.businessone.administration: ApprovalTemplateParams
The ApprovalTemplateParams complex type of the SAP Business One Service Layer
Fields
- code? Signed32 - Code field
- name? string - Name field
sap.businessone.administration: ApprovalTemplateQuery
The ApprovalTemplateQuery complex type of the SAP Business One Service Layer
Fields
- queryID? Signed32 - Query ID field
sap.businessone.administration: ApprovalTemplatesCollectionResponse
A paged collection of ApprovalTemplates entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? ApprovalTemplate[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.administration: ApprovalTemplateStage
The ApprovalTemplateStage complex type of the SAP Business One Service Layer
Fields
- remarks? string - Remarks field
- approvalStageCode? Signed32 - Approval stage code field
- sortID? Signed32 - Sort ID field
sap.businessone.administration: ApprovalTemplateTerm
The ApprovalTemplateTerm complex type of the SAP Business One Service Layer
Fields
- value? string - Value field
- conditionType? ApprovalTemplateConditionTypeEnum - Condition type field
- operationType? ApprovalTemplateOperationTypeEnum - Operation type field
sap.businessone.administration: ApprovalTemplateUser
The ApprovalTemplateUser complex type of the SAP Business One Service Layer
Fields
- userID? Signed32 - User ID field
sap.businessone.administration: Attachments2
The Attachments2 entity of the SAP Business One Service Layer
Fields
- AbsoluteEntry? Signed32 - Absolute entry field
- Attachments2_Lines? Attachments2Line[] - Attachments2 lines field
sap.businessone.administration: Attachments2CollectionResponse
A paged collection of Attachments2 entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? Attachments2[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.administration: Attachments2Line
The Attachments2_Line complex type of the SAP Business One Service Layer
Fields
- AbsoluteEntry? Signed32 - Absolute entry field
- LineNum? Signed32 - Line number field
- SourcePath? string - Source path field
- FileName? string - File name field
- FileExtension? string - File extension field
- AttachmentDate? string - Attachment date field
- UserID? Signed32 - User ID field
- Override? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- FreeText? string - Free text field
- 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 - Target path field
- SubPath? string - Sub path field
- SendInMail? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- FileSize? Signed32 - File size field
- CopyFile? string - Copy file field
- 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 - Session timeout field
- version? string - Version field
- sessionId? string - Session ID field
sap.businessone.administration: B1SessionsCollectionResponse
A paged collection of B1Sessions entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? B1Session[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.administration: Branch
The Branch entity of the SAP Business One Service Layer
Fields
- description? string - Description field
- users? User[] - Users field
- code? Signed32 - Code field
- name? string - Name field
sap.businessone.administration: BranchesCollectionResponse
A paged collection of Branches entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? Branch[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.administration: BranchParams
The BranchParams complex type of the SAP Business One Service Layer
Fields
- code? Signed32 - Code field
- name? string - Name field
sap.businessone.administration: BusinessPlace
The BusinessPlace entity of the SAP Business One Service Layer
Fields
- BPLID? Signed32 - BPLID field
- BPLName? string - BPL name field
- BPLNameForeign? string - BPL name foreign field
- VATRegNum? string - VAT reg number field
- RepName? string - Rep name field
- Industry? string - Industry field
- Business? string - Business field
- Address? string - Address field
- Addressforeign? string - Addressforeign field
- MainBPL? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- TaxOfficeNo? string - Tax office number field
- Disabled? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- DefaultCustomerID? string - Default customer ID field
- DefaultVendorID? string - Default vendor ID field
- DefaultWarehouseID? string - Default warehouse ID field
- DefaultTaxCode? string - Default tax code field
- TaxOffice? string - Tax office field
- FederalTaxID? string - Federal tax ID field
- FederalTaxID2? string - Federal tax ID2 field
- FederalTaxID3? string - Federal tax ID3 field
- AdditionalIdNumber? string - Additional ID number field
- NatureOfCompanyCode? Signed32 - Nature of company code field
- EconomicActivityTypeCode? Signed32 - Economic activity type code field
- CreditContributionOriginCode? string - Credit contribution origin code field
- IPIPeriodCode? string - IPI period code field
- CooperativeAssociationTypeCode? Signed32 - Cooperative association type code field
- ProfitTaxationCode? Signed32 - Profit taxation code field
- CompanyQualificationCode? Signed32 - Company qualification code field
- DeclarerTypeCode? Signed32 - Declarer type code field
- PreferredStateCode? string - Preferred state code field
- AddressType? string - Address type field
- Street? string - Street field
- StreetNo? string - Street number field
- Building? string - Building field
- ZipCode? string - Zip code field
- Block? string - Block field
- City? string - City field
- State? string - State field
- County? string - County field
- Country? string - Country field
- AliasName? string - Alias name field
- CommercialRegister? string - Commercial register field
- DateOfIncorporation? string - Date of incorporation field
- SPEDProfile? string - SPED profile field
- EnvironmentType? Signed32 - Environment type field
- Opting4ICMS? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- PaymentClearingAccount? string - Payment clearing account field
- GlobalLocationNumber? string - Global location number field
- DefaultResourceWarehouseID? string - Default resource warehouse ID field
- BusinessPlaceIENumbers? BusinessPlaceIENumber[] - Business place IE numbers field
- BusinessPlaceTributaryInfos? BusinessPlaceTributaryInfo[] - Business place tributary infos field
- UserDefaultGroups? UserDefaultGroup[] - User default groups field
- 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 - BPLID field
- State? string - State field
- IENumber? string - IE number field
sap.businessone.administration: BusinessPlacesCollectionResponse
A paged collection of BusinessPlaces entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? BusinessPlace[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.administration: BusinessPlaceTributaryInfo
The BusinessPlaceTributaryInfo complex type of the SAP Business One Service Layer
Fields
- BPLID? Signed32 - BPLID field
- TributaryID? Signed32 - Tributary ID field
- TributaryType? Signed32 - Tributary type field
- TTStartDate? string - TT start date field
- TTEndDate? string - TT end date field
- TributaryRegimeCode? Signed32 - Tributary regime code field
- TRCStartDate? string - TRC start date field
- TRCEndDate? string - TRC end date field
sap.businessone.administration: CallArgument
The CallArgument complex type of the SAP Business One Service Layer
Fields
- value? string - Value field
- name? string - Name field
sap.businessone.administration: CallMessage
The CallMessage complex type of the SAP Business One Service Layer
Fields
- status? CallMessageStatusEnum - Status field
- creationDate? string - Creation date field
- 'type? CallMessageTypeEnum - Type field
- callMessageArguments? CallMessageArgument[] - Call message arguments field
- creationTime? Signed32 - Creation time field
- iD? Signed32 - I d field
- errorCode? string - Error code field
- messageBody? string - Message body field
sap.businessone.administration: CallMessageArgument
The CallMessageArgument complex type of the SAP Business One Service Layer
Fields
- value? string - Value field
- name? string - Name field
sap.businessone.administration: CategoryGroup
The CategoryGroup complex type of the SAP Business One Service Layer
Fields
- categoryId? Signed32 - Category ID field
- authGroupId? Signed32 - Auth group ID field
sap.businessone.administration: ChangeLogDifferenceParams
The ChangeLogDifferenceParams complex type of the SAP Business One Service Layer
Fields
- userName? string - User name field
- arrayOffset? Signed32 - Array offset field
- oldValue? string - Old value field
- changedField? string - Changed field field
- newValue? string - New value field
- date? string - Date field
- lineNumber? string - Line number field
sap.businessone.administration: ChangeLogParams
The ChangeLogParams complex type of the SAP Business One Service Layer
Fields
- userName? string - User name field
- updatedDate? string - Updated date field
- objectCode? string - Object code field
- logInstance? Signed32 - Log instance field
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 - Get change log params field
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 - Show difference params field
sap.businessone.administration: ChooseFromList
The ChooseFromList entity of the SAP Business One Service Layer
Fields
- ObjectName? string - Object name field
- ChooseFromList_Lines? ChooseFromListLine[] - Choose from list lines field
sap.businessone.administration: ChooseFromListCollectionResponse
A paged collection of ChooseFromList entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? ChooseFromList[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.administration: ChooseFromListLine
The ChooseFromList_Line complex type of the SAP Business One Service Layer
Fields
- ObjectName? string - Object name field
- FieldIndex? Signed32 - Field index field
- FieldNo? string - Field number field
- DisplayedName? string - Displayed name field
- 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 - Visual index field
sap.businessone.administration: Cockpit
The Cockpit entity of the SAP Business One Service Layer
Fields
- userSignature? Signed32 - User signature field
- description? string - Description field
- user? User - User field
- manufacturer? string - Manufacturer field
- cockpitType? BoCockpitTypeEnum - Cockpit type field
- time? string - Time field
- publisher? string - Publisher field
- absEntry? Signed32 - Abs entry field
- code? Signed32 - Code field
- date? string - Date field
- name? string - Name field
sap.businessone.administration: CockpitParams
The CockpitParams complex type of the SAP Business One Service Layer
Fields
- cockpitType? BoCockpitTypeEnum - Cockpit type field
- absEntry? Signed32 - Abs entry field
sap.businessone.administration: CockpitsCollectionResponse
A paged collection of Cockpits entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? Cockpit[] - Value field
- odataNextLink? string - Odata next link field
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 - Cockpit field
sap.businessone.administration: ColumnPreferences
The ColumnPreferences entity of the SAP Business One Service Layer
Fields
- visibleInExpanded? BoYesNoEnum - Visible in expanded field
- editableInForm? BoYesNoEnum - Editable in form field
- user? Signed32 - User field
- itemNumber? string - Item number field
- user2? User - User2 field
- column? string - Column field
- editableInExpanded? BoYesNoEnum - Editable in expanded field
- formID? string - Form ID field
- width? Signed32 - Width field
- tabsLayout? Signed32 - Tabs layout field
- expandedIndex? Signed32 - Expanded index field
- visibleInForm? BoYesNoEnum - Visible in form field
sap.businessone.administration: CompanyInfo
The CompanyInfo complex type of the SAP Business One Service Layer
Fields
- minimumAmountForAnnualList? decimal - Minimum amount for annual list field
- percentOfTotalAcquisition? decimal - Percent of total acquisition field
- blockStockNegativeQuantity? BoYesNoEnum - Block stock negative quantity field
- bISRBankAccount? string - B ISR bank account field
- groupLinesInVATCalculation? BoYesNoEnum - Group lines in VAT calculation field
- displayTransactionsByDflt? BoYesNoEnum - Display transactions by dflt field
- enableExpensesManagement? BoYesNoEnum - Enable expenses management field
- b1iTimeOut? Signed32 - B1i time out field
- taxCalculationSystem? TaxCalcSysEnum - Tax calculation system field
- sRIManagementSystem? BoManageMethod - S RI management system field
- companyName? string - Company name field
- languageCode? BoSuppLangs - Language code field
- enableStockRelNoCostPrice? BoYesNoEnum - Enable stock rel number cost price field
- maxNumberOfDocumentsInPmt? Signed32 - Max number of documents in pmt field
- version? Signed32 - Version field
- enableCheckQuantityInRDR? BoYesNoEnum - Enable check quantity in RDR field
- baseDateForExchangeRate? BoBaseDateRateEnum - Base date for exchange rate field
- minimumAmountForAppndixOP? decimal - Minimum amount for appndix OP field
- localization? string - Localization field
- bISRBankActKey? Signed32 - B ISR bank act key field
- dataOwnershipIndication? BoYesNoEnum - Data ownership indication field
- minimumBaseAmountPerDoc? decimal - Minimum base amount per document field
- bISRBankCountry? string - B ISR bank country field
- maxRecordsInChooseFromList? Signed32 - Max records in choose from list field
- enableAccountSegmentation? BoYesNoEnum - Enable account segmentation field
- iEPSPayer? BoYesNoEnum - I EPS payer field
- autoSRICreationOnReceipt? BoYesNoEnum - Auto SRI creation on receipt field
- enableSharingSeries? BoYesNoEnum - Enable sharing series field
- enableTransactionNotification? BoYesNoEnum - Enable transaction notification field
- bISRBranch? string - B ISR branch field
- autoCreateCustomerEqCard? BoYesNoEnum - Auto create customer eq card field
- enableBillOfExchange? BoYesNoEnum - Enable bill of exchange field
- defaultStampTax? string - Default stamp tax field
- enableConversionDifferentAcct? BoYesNoEnum - Enable conversion different account field
- bISRBankNo? string - B ISR bank number field
- defaultDaysForOrdCanc? Signed32 - Default days for ord canc field
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 - Period category field
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 - Finance period params field
- periodCategory? PeriodCategory - Period category field
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 - Advanced general ledger account params field
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 - Finance period params field
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 - Period category params field
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 - Item price params field
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 - Period category params field
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 - User access log field
- supportUserLoginRecord? SupportUserLoginRecord - Support user login record field
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 - User access log field
- supportUserLoginRecord? SupportUserLoginRecord - Support user login record field
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 - Finance period params field
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 - Decimal data field
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 - Admin information field
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 - Company information field
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 - Finance period field
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 - Path admin field
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 - Period category field
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 - Odata metadata field
- value? County[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.administration: CountriesCollectionResponse
A paged collection of Countries entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? Country[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.administration: Country
The Country entity of the SAP Business One Service Layer
Fields
- Code? string - Code field
- Name? string - Name field
- CodeForReports? string - Code for reports field
- AddressFormat? Signed32 - Address format field
- EU? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- NumberOfDigitsForTaxID? Signed32 - Number of digits for tax ID field
- BankCodeDigits? Signed32 - Bank code digits field
- BankBranchDigits? Signed32 - Bank branch digits field
- BankAccountDigits? Signed32 - Bank account digits field
- BankControlKeyDigits? Signed32 - Bank control key digits field
- 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 - UIC country code field
- EAEU? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ISOAlpha2Code? string - ISO alpha2 code field
- ISOAlpha3Code? string - ISO alpha3 code field
- ISONumeric? string - ISO numeric field
- UserDefaultGroups? UserDefaultGroup[] - User default groups field
- BusinessPlaces? BusinessPlace[] - Business places field
- States? State[] - States field
sap.businessone.administration: CountryParams
The CountryParams complex type of the SAP Business One Service Layer
Fields
- code? string - Code field
- name? string - Name field
sap.businessone.administration: County
The County entity of the SAP Business One Service Layer
Fields
- AbsId? Signed32 - Abs ID field
- Code? string - Code field
- Country? string - Country field
- State? string - State field
- Name? string - Name field
- IbgeCode? string - Ibge code field
- GiaCode? string - Gia code field
- TaxZone? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- BusinessPlaces? BusinessPlace[] - Business places field
sap.businessone.administration: CountyParams
The CountyParams complex type of the SAP Business One Service Layer
Fields
- code? string - Code field
- absId? Signed32 - Abs ID field
- name? string - Name field
sap.businessone.administration: CurrentServerTime
The CurrentServerTime complex type of the SAP Business One Service Layer
Fields
- currentTime? string - Current time field
- currentDate? string - Current date field
sap.businessone.administration: DashboardPackageImportParams
The DashboardPackageImportParams complex type of the SAP Business One Service Layer
Fields
- forceOverwriteQuery? BoYesNoEnum - Force overwrite query field
- forceOverwritePackage? BoYesNoEnum - Force overwrite package field
- packageFilePath? string - Package file path field
- importQueries? BoYesNoEnum - Import queries field
sap.businessone.administration: DashboardPackageParams
The DashboardPackageParams complex type of the SAP Business One Service Layer
Fields
- absEntry? Signed32 - Abs entry field
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 - Dashboard package import params field
sap.businessone.administration: DataSensitiveStatus
The DataSensitiveStatus complex type of the SAP Business One Service Layer
Fields
- dataSensitiveStatus? DataSensitiveStatusEnum - Data sensitive status field
sap.businessone.administration: DecimalData
The DecimalData complex type of the SAP Business One Service Layer
Fields
- context? RoundingContextEnum - Context field
- currency? string - Currency field
- value? decimal - Value field
sap.businessone.administration: DefaultCreditCard
The DefaultCreditCard complex type of the SAP Business One Service Layer
Fields
- Code? string - Code field
- CreditAccountCode? string - Credit account code field
- CreditCardCode? Signed32 - Credit card code field
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 - Code field
- EnglishKeyboardEnteringBPC? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- NoofCopies? Signed32 - Noof copies field
- NoofCopiesforManualDoc? Signed32 - Noof copiesfor manual document field
- ObjectType? string - Object type field
- PermanentRemark? string - Permanent remark field
- 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 - Series field
- electronicSeries? Signed32 - Electronic series field
sap.businessone.administration: DefaultReportParams
The DefaultReportParams complex type of the SAP Business One Service Layer
Fields
- layoutCode? string - Layout code field
- userID? Signed32 - User ID field
- reportCode? string - Report code field
- cardCode? string - Card code field
sap.businessone.administration: Department
The Department entity of the SAP Business One Service Layer
Fields
- description? string - Description field
- users? User[] - Users field
- code? Signed32 - Code field
- name? string - Name field
sap.businessone.administration: DepartmentParams
The DepartmentParams complex type of the SAP Business One Service Layer
Fields
- code? Signed32 - Code field
- name? string - Name field
sap.businessone.administration: DepartmentsCollectionResponse
A paged collection of Departments entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? Department[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.administration: DistributionList
The DistributionList entity of the SAP Business One Service Layer
Fields
- Code? Signed32 - Code field
- Name? string - Name field
- DistributionListLines? DistributionListLine[] - Distribution list lines field
sap.businessone.administration: DistributionListLine
The DistributionListLine complex type of the SAP Business One Service Layer
Fields
- LineNumber? Signed32 - Line number field
- DistributionType? string - Distribution type field
- DistributionCode? string - Distribution code field
- Email? string - Email field
- PortNum? string - Port number field
- Fax? string - Fax field
sap.businessone.administration: DistributionListParams
The DistributionListParams complex type of the SAP Business One Service Layer
Fields
- code? Signed32 - Code field
- name? string - Name field
sap.businessone.administration: DistributionListsCollectionResponse
A paged collection of DistributionLists entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? DistributionList[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.administration: DocumentChangeMenuName
The DocumentChangeMenuName complex type of the SAP Business One Service Layer
Fields
- changedMenuName? string - Changed menu name field
- document? string - Document field
- documentSubType? string - Document sub type field
sap.businessone.administration: DocumentSeriesParams
The DocumentSeriesParams complex type of the SAP Business One Service Layer
Fields
- series? Signed32 - Series field
- document? string - Document field
- documentSubType? string - Document sub type field
sap.businessone.administration: DocumentSeriesUserParams
The DocumentSeriesUserParams complex type of the SAP Business One Service Layer
Fields
- series? Signed32 - Series field
- user? Signed32 - User field
- document? string - Document field
- documentSubType? string - Document sub type field
sap.businessone.administration: DocumentTypeParams
The DocumentTypeParams complex type of the SAP Business One Service Layer
Fields
- document? string - Document field
- documentSubType? string - Document sub type field
sap.businessone.administration: DppChangeParams
The DppChangeParams complex type of the SAP Business One Service Layer
Fields
- fromDate? string - From date field
- hasChanged? BoYesNoEnum - Has changed field
- fromTime? string - From time field
sap.businessone.administration: DynamicSystemString
The DynamicSystemString entity of the SAP Business One Service Layer
Fields
- FormID? string - Form ID field
- ItemID? string - Item ID field
- ColumnID? string - Column ID field
- ItemString? string - Item string field
- 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 - Odata metadata field
- value? DynamicSystemString[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.administration: ElectronicReportInfo
The ElectronicReportInfo complex type of the SAP Business One Service Layer
Fields
- shareCapitalAmount? decimal - Share capital amount field
- companyType? string - Company type field
sap.businessone.administration: ElectronicSeries
The ElectronicSeries complex type of the SAP Business One Service Layer
Fields
- series? Signed32 - Series field
- nextNumber? string - Next number field
- initialNumber? string - Initial number field
- remarks? string - Remarks field
- approvalYear? Signed32 - Approval year field
- approvalNumber? Signed32 - Approval number field
- prefix? string - Prefix field
- electronicSeries? Signed32 - Electronic series field
- lastNumber? string - Last number field
- name? string - Name field
sap.businessone.administration: ElectronicSeriesParams
The ElectronicSeriesParams complex type of the SAP Business One Service Layer
Fields
- electronicSeries? Signed32 - Electronic series field
sap.businessone.administration: EmailGroup
The EmailGroup entity of the SAP Business One Service Layer
Fields
- emailGroupName? string - Email group name field
- emailGroupCode? string - Email group code field
sap.businessone.administration: EmailGroupParams
The EmailGroupParams complex type of the SAP Business One Service Layer
Fields
- emailGroupName? string - Email group name field
- emailGroupCode? string - Email group code field
sap.businessone.administration: EmailGroupsCollectionResponse
A paged collection of EmailGroups entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? EmailGroup[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.administration: EmployeeFullNamesParams
The EmployeeFullNamesParams complex type of the SAP Business One Service Layer
Fields
- employeeFullName? string - Employee full name field
- employeeID? Signed32 - Employee ID field
sap.businessone.administration: Event
The Event complex type of the SAP Business One Service Layer
Fields
- webhookID? string - Webhook ID field
- objectType? string - Object type field
- transactionType? TransactionTypeEnum - Transaction type field
- businessObject? string - Business object field
sap.businessone.administration: EventCatagory
The EventCatagory complex type of the SAP Business One Service Layer
Fields
- description? string - Description field
- version? string - Version field
- events? Event[] - Events field
sap.businessone.administration: EventNotification
The EventNotification entity of the SAP Business One Service Layer
Fields
- status? EventStatusEnum - Status field
- transactionType? string - Transaction type field
- replayState? EventReplayStateEnum - Replay state field
- createTime? string - Create time field
- sourceDB? string - Source DB field
- fieldsInKey? Signed32 - Fields in key field
- operation? string - Operation field
- businessObject? string - Business object field
- createDate? string - Create date field
- objectType? string - Object type field
- updateDate? string - Update date field
- fieldNames? string - Field names field
- userID? string - User ID field
- updateTime? string - Update time field
- eventID? string - Event ID field
- fieldValues? string - Field values field
sap.businessone.administration: EventNotificationsCollectionResponse
A paged collection of EventNotifications entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? EventNotification[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.administration: EventSubscription
The EventSubscription entity of the SAP Business One Service Layer
Fields
- verifyCertificate? BoYesNoEnum - Verify certificate field
- lastSentTime? string - Last sent time field
- authenticationCred? string - Authentication cred field
- createTime? string - Create time field
- createDate? string - Create date field
- lastSentDate? string - Last sent date field
- webhookURL? string - Webhook URL field
- webhookID? string - Webhook ID field
- updateDate? string - Update date field
- eventCollection? Event[] - Event collection field
- state? WebhookStateEnum - State field
- updateTime? string - Update time field
- lastErrMsg? string - Last err msg field
- workMode? WebhookWorkModeEnum - Work mode field
- authenticationType? AuthenticationTypeEnum - Authentication type field
- handshake? BoYesNoEnum - Handshake field
sap.businessone.administration: EventSubscriptionsCollectionResponse
A paged collection of EventSubscriptions entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? EventSubscription[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.administration: ExceptionalEvent
The ExceptionalEvent entity of the SAP Business One Service Layer
Fields
- description? string - Description field
- code? string - Code field
sap.businessone.administration: ExceptionalEventParams
The ExceptionalEventParams complex type of the SAP Business One Service Layer
Fields
- code? string - Code field
sap.businessone.administration: ExceptionalEventsCollectionResponse
A paged collection of ExceptionalEvents entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? ExceptionalEvent[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.administration: ExtendedAdminInfo
The ExtendedAdminInfo complex type of the SAP Business One Service Layer
Fields
- creditContributionOriginCode? string - Credit contribution origin code field
- email? string - Email field
- telephone? string - Telephone field
- companyQualificationCode? Signed32 - Company qualification code field
- sTDCode? Signed32 - S TD code field
- sTDCodeForeign? Signed32 - S TD code foreign field
- globalLocationNumber? string - Global location number field
- enableSameURLforPaymentTypeService? BoYesNoEnum - Enable same UR lfor payment type service field
- commercialRegister? string - Commercial register field
- authorityPassword? string - Authority password field
- economicActivityTypeCode? Signed32 - Economic activity type code field
- documentRemarksInclude? DocumentRemarksIncludeTypeEnum - Document remarks include field
- cNPJOfIT? string - C NPJ of IT field
- noWarningForLinkTypeUDF? BoYesNoEnum - Number warning for link type UDF field
- electronicApprovalForInvoiceEnabled? BoYesNoEnum - Electronic approval for invoice enabled field
- authorityUser? string - Authority user field
- streetNo? string - Street number field
- uRLforGoodsTransportService? string - U r lfor goods transport service field
- profitTaxationCode? Signed32 - Profit taxation code field
- allowInactiveItemsInInventoryOpeningBalance? BoYesNoEnum - Allow inactive items in inventory opening balance field
- opting4ICMS? BoYesNoEnum - Opting4 ICMS field
- uRLforInvoiceTypeService? string - U r lfor invoice type service field
- cnPerson? string - Cn person field
- oKDPNumber? string - O KDP number field
- iPITaxContributor? BoYesNoEnum - I PI tax contributor field
- allowInactiveItemsInInventoryCountingAndPosting? BoYesNoEnum - Allow inactive items in inventory counting and posting field
- cooperativeAssociationTypeCode? Signed32 - Cooperative association type code field
- sPEDProfile? string - S PED profile field
- copyRefDocFormOrigDocToDupDoc? BoYesNoEnum - Copy reference document form orig document to dup document field
- electronicApprovalForGoodsTransEnabled? BoYesNoEnum - Electronic approval for goods trans enabled field
- environmentType? Signed32 - Environment type field
- autoAssignNewBranchToBP? BoYesNoEnum - Auto assign new branch to business partner field
- enableIntrastat? BoYesNoEnum - Enable intrastat field
- declarerTypeCode? Signed32 - Declarer type code field
- natureOfCompanyCode? Signed32 - Nature of company code field
- iPIPeriodCode? string - I PI period code field
- addressType? string - Address type field
- dateOfIncorporation? string - Date of incorporation field
sap.businessone.administration: ExtendedTranslation
The ExtendedTranslation entity of the SAP Business One Service Layer
Fields
- sourceLanguage? Signed32 - Source language field
- updateDate? string - Update date field
- category? TranslationCategoryEnum - Category field
- secondaryID? string - Secondary ID field
- docEntry? Signed32 - Document entry field
- extendedTranslationItemLines? ExtendedTranslationItemLine[] - Extended translation item lines field
- iD? string - I d field
- createDate? string - Create date field
sap.businessone.administration: ExtendedTranslationItemLine
The ExtendedTranslation_ItemLine complex type of the SAP Business One Service Layer
Fields
- slimType? string - Slim type field
- itemCode? string - Item code field
- itemType? string - Item type field
- extendedTranslationResultLines? ExtendedTranslationResultLine[] - Extended translation result lines field
- docEntry? Signed32 - Document entry field
- sourceText? string - Source text field
- maxLength? Signed32 - Max length field
- lineNumber? Signed32 - Line number field
- memo? string - Memo field
sap.businessone.administration: ExtendedTranslationParams
The ExtendedTranslationParams complex type of the SAP Business One Service Layer
Fields
- category? TranslationCategoryEnum - Category field
- secondaryID? string - Secondary ID field
- docEntry? Signed32 - Document entry field
- iD? string - I d field
sap.businessone.administration: ExtendedTranslationResultLine
The ExtendedTranslation_ResultLine complex type of the SAP Business One Service Layer
Fields
- languageCode? Signed32 - Language code field
- translatedText? string - Translated text field
- subLineNumber? Signed32 - Sub line number field
- docEntry? Signed32 - Document entry field
- lineNumber? Signed32 - Line number field
sap.businessone.administration: ExtendedTranslationsCollectionResponse
A paged collection of ExtendedTranslations entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? ExtendedTranslation[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.administration: ExternalCall
The ExternalCall complex type of the SAP Business One Service Layer
Fields
- status? ExternalCallStatusEnum - Status field
- creationDate? string - Creation date field
- category? Signed32 - Category field
- lastUpdateTime? Signed32 - Last update time field
- callMessages? CallMessage[] - Call messages field
- creationTime? Signed32 - Creation time field
- callArguments? CallArgument[] - Call arguments field
- iD? Signed32 - I d field
- lastUpdateUserCode? string - Last update user code field
- lastUpdateDate? string - Last update date field
sap.businessone.administration: ExternalCallParams
The ExternalCallParams complex type of the SAP Business One Service Layer
Fields
- iD? Signed32 - I d field
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 - External call params field
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 - External call field
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 - External call field
sap.businessone.administration: FeatureStatus
The FeatureStatus complex type of the SAP Business One Service Layer
Fields
- featureID? string - Feature ID field
- blocked? BoYesNoEnum - Blocked field
sap.businessone.administration: FieldID
The FieldID complex type of the SAP Business One Service Layer
Fields
- FieldID? string - Field ID field
sap.businessone.administration: FinancePeriod
The FinancePeriod complex type of the SAP Business One Service Layer
Fields
- taxDateFrom? string - Tax date from field
- valueDateFrom? string - Value date from field
- valueDateTo? string - Value date to field
- activeforFeed? BoYesNoEnum - Activefor feed field
- subNum? Signed32 - Sub number field
- postingDateTo? string - Posting date to field
- additionalSubPeriods? BoYesNoEnum - Additional sub periods field
- periodIndicator? string - Period indicator field
- postingDateFrom? string - Posting date from field
- locked? BoYesNoEnum - Locked field
- absoluteEntry? Signed32 - Absolute entry field
- periodName? string - Period name field
- periodStatus? PeriodStatusEnum - Period status field
- periodCode? string - Period code field
- taxDateTo? string - Tax date to field
sap.businessone.administration: FinancePeriodParams
The FinancePeriodParams complex type of the SAP Business One Service Layer
Fields
- absoluteEntry? Signed32 - Absolute entry field
- periodIndicator? string - Period indicator field
sap.businessone.administration: FormattedSearch
The FormattedSearch entity of the SAP Business One Service Layer
Fields
- FormID? string - Form ID field
- ItemID? string - Item ID field
- ColumnID? string - Column ID field
- Action? BoFormattedSearchActionEnum - OData EnumType 'BoFormattedSearchActionEnum'. Serialised by the Service Layer as the member name
- QueryID? Signed32 - Query ID field
- Index? Signed32 - Index field
- Refresh? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- FieldID? string - Field ID field
- 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[] - User valid values field
- FieldIDs? FieldID[] - Field i ds field
sap.businessone.administration: FormattedSearchesCollectionResponse
A paged collection of FormattedSearches entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? FormattedSearch[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.administration: FormPreferencesCollectionResponse
A paged collection of FormPreferences entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? ColumnPreferences[] - Value field
- odataNextLink? string - Odata next link field
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 - Primary key field
- uDOObjectCode? string - U DO object code field
- 'object? BoChangeLogEnum - Object field
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 - Set weekends as work days field
- weekNoRule? BoWeekNoRuleEnum - Week number rule field
- weekendTO? BoWeekEnum - Weekend TO field
- holidayCode? string - Holiday code field
- holidayDates? HolidayDate[] - Holiday dates field
- validForOneYearOnly? BoYesNoEnum - Valid for one year only field
- weekendFrom? BoWeekEnum - Weekend from field
sap.businessone.administration: HolidayDate
The HolidayDate complex type of the SAP Business One Service Layer
Fields
- startDate? string - Start date field
- remarks? string - Remarks field
- holidayCode? string - Holiday code field
- endDate? string - End date field
sap.businessone.administration: HolidayParams
The HolidayParams complex type of the SAP Business One Service Layer
Fields
- holidayCode? string - Holiday code field
sap.businessone.administration: HolidaysCollectionResponse
A paged collection of Holidays entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? Holiday[] - Value field
- odataNextLink? string - Odata next link field
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 - Odata metadata field
- value? AlertManagementParams[] - Value field
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 - Odata metadata field
- value? ApprovalRequestParams[] - Value field
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 - Odata metadata field
- value? CockpitParams[] - Value field
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 - Odata metadata field
- value? CockpitParams[] - Value field
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 - Odata metadata field
- value? FeatureStatus[] - Value field
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 - Odata metadata field
- value? FinancePeriod[] - Value field
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 - Odata metadata field
- value? PeriodCategoryParams[] - Value field
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 - Odata metadata field
- value? CountyParams[] - Value field
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 - Odata metadata field
- value? CountryParams[] - Value field
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 - Odata metadata field
- value? DepartmentParams[] - Value field
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 - Odata metadata field
- value? DistributionListParams[] - Value field
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 - Odata metadata field
- value? EmailGroupParams[] - Value field
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 - Odata metadata field
- value? ApprovalRequestParams[] - Value field
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 - Odata metadata field
- value? ExceptionalEventParams[] - Value field
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 - Odata metadata field
- value? ExtendedTranslationParams[] - Value field
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 - Odata metadata field
- value? HolidayParams[] - Value field
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 - Odata metadata field
- value? IntegrationPackageParams[] - Value field
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 - Odata metadata field
- value? KPIParams[] - Value field
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 - Odata metadata field
- value? MessageHeader[] - Value field
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 - Odata metadata field
- value? MessageHeader[] - Value field
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 - Odata metadata field
- value? MessageHeader[] - Value field
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 - Odata metadata field
- value? MobileAddOnSettingParams[] - Value field
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 - Odata metadata field
- value? EmployeeFullNamesParams[] - Value field
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 - Odata metadata field
- value? ApprovalRequestParams[] - Value field
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 - Odata metadata field
- value? TechnicianSchedulings[] - Value field
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 - Odata metadata field
- value? PredefinedTextParams[] - Value field
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 - Odata metadata field
- value? QueryAuthGroup[] - Value field
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 - Odata metadata field
- value? TaxReportFilterParams[] - Value field
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 - Odata metadata field
- value? ReportLayoutParams[] - Value field
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 - Odata metadata field
- value? ReportTypeParams[] - Value field
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 - Odata metadata field
- value? SectionParams[] - Value field
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 - Odata metadata field
- value? Series[] - Value field
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 - Odata metadata field
- value? ShortLinkMappingParams[] - Value field
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 - Odata metadata field
- value? StateParams[] - Value field
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 - Odata metadata field
- value? ApprovalStageParams[] - Value field
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 - Odata metadata field
- value? TSRExceptionalEventParams[] - Value field
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 - Odata metadata field
- value? UserGroupParams[] - Value field
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 - Odata metadata field
- value? UserMenuItem[] - Value field
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 - Odata metadata field
- value? UserMenuItem[] - Value field
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 - Odata metadata field
- value? VMB1ValuesData[] - Value field
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 - Odata metadata field
- value? VMThirdPartyValuesData[] - Value field
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 - Odata metadata field
- value? WebClientBookmarkTileParams[] - Value field
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 - Odata metadata field
- value? WebClientDashboardParams[] - Value field
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 - Odata metadata field
- value? WebClientFormSettingParams[] - Value field
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 - Odata metadata field
- value? WebClientLaunchpadParams[] - Value field
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 - Odata metadata field
- value? ApprovalTemplateParams[] - Value field
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 - Odata metadata field
- value? WebClientListviewFilterParams[] - Value field
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 - Odata metadata field
- value? WebClientNotificationParams[] - Value field
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 - Odata metadata field
- value? WebClientPreferenceParams[] - Value field
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 - Odata metadata field
- value? WebClientRecentActivityParams[] - Value field
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 - Odata metadata field
- value? WebClientVariantGroupParams[] - Value field
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 - Odata metadata field
- value? WebClientVariantParams[] - Value field
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 - Odata metadata field
- value? WorkflowTask[] - Value field
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 - Odata metadata field
- value? BranchParams[] - Value field
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 - Odata metadata field
- value? ChangeLogParams[] - Value field
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 - Odata metadata field
- value? ChangeLogDifferenceParams[] - Value field
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 - Odata metadata field
- value? CockpitParams[] - Value field
sap.businessone.administration: IntegrationPackageConfigure
The IntegrationPackageConfigure entity of the SAP Business One Service Layer
Fields
- isEnable? BoYesNoEnum - Is enable field
- absEntry? Signed32 - Abs entry field
- code? string - Code field
- name? string - Name field
sap.businessone.administration: IntegrationPackageParams
The IntegrationPackageParams complex type of the SAP Business One Service Layer
Fields
- absEntry? Signed32 - Abs entry field
sap.businessone.administration: IntegrationPackagesConfigureCollectionResponse
A paged collection of IntegrationPackagesConfigure entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? IntegrationPackageConfigure[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.administration: ItemPriceParams
The ItemPriceParams complex type of the SAP Business One Service Layer
Fields
- uoMQuantity? decimal - Uo m quantity field
- inventoryQuantity? decimal - Inventory quantity field
- itemCode? string - Item code field
- uoMEntry? Signed32 - Uo m entry field
- blanketAgreementNumber? Signed32 - Blanket agreement number field
- currency? string - Currency field
- cardCode? string - Card code field
- blanketAgreementLine? Signed32 - Blanket agreement line field
- priceList? Signed32 - Price list field
- date? string - Date field
sap.businessone.administration: ItemPriceReturnParams
The ItemPriceReturnParams complex type of the SAP Business One Service Layer
Fields
- discount? decimal - Discount field
- price? decimal - Price field
- currency? string - Currency field
sap.businessone.administration: KPI
The KPI entity of the SAP Business One Service Layer
Fields
- kPIItemLines? KPIItemLine[] - K PI item lines field
- numberOfColumns? Signed32 - Number of columns field
- kPICode? string - K PI code field
- kPIType? KPITypeEnum - K PI type field
- kPIName? string - K PI name field
sap.businessone.administration: KPIItemLine
The KPI_ItemLine complex type of the SAP Business One Service Layer
Fields
- kPIValue30? decimal - K PI value30 field
- kPICode? string - K PI code field
- kPIValue13? decimal - K PI value13 field
- kPIValue12? decimal - K PI value12 field
- kPIValue11? decimal - K PI value11 field
- kPIName? string - K PI name field
- kPIValue10? decimal - K PI value10 field
- kPILineNumber? Signed32 - K PI line number field
- kPIValue8? decimal - K PI value8 field
- kPIValue17? decimal - K PI value17 field
- kPIValue7? decimal - K PI value7 field
- kPIValue16? decimal - K PI value16 field
- kPIValue6? decimal - K PI value6 field
- kPIValue15? decimal - K PI value15 field
- kPIValue5? decimal - K PI value5 field
- kPIValue14? decimal - K PI value14 field
- kPIValue19? decimal - K PI value19 field
- kPIValue9? decimal - K PI value9 field
- kPIValue18? decimal - K PI value18 field
- kPIValue4? decimal - K PI value4 field
- kPIValue3? decimal - K PI value3 field
- kPIValue2? decimal - K PI value2 field
- kPIValue1? decimal - K PI value1 field
- kPIValue20? decimal - K PI value20 field
- kPIValue24? decimal - K PI value24 field
- kPIValue23? decimal - K PI value23 field
- kPIValue22? decimal - K PI value22 field
- kPIValue21? decimal - K PI value21 field
- kPIValue28? decimal - K PI value28 field
- kPIValue27? decimal - K PI value27 field
- kPIValue26? decimal - K PI value26 field
- kPIValue25? decimal - K PI value25 field
- kPIValue29? decimal - K PI value29 field
sap.businessone.administration: KPIParams
The KPIParams complex type of the SAP Business One Service Layer
Fields
- kPICode? string - K PI code field
- kPIName? string - K PI name field
sap.businessone.administration: KPIsCollectionResponse
A paged collection of KPIs entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? KPI[] - Value field
- odataNextLink? string - Odata next link field
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 - User name field
- language? string - Language field
- companyDB? string - Company DB field
- password? string - Password field
sap.businessone.administration: Message
The Message entity of the SAP Business One Service Layer
Fields
- user? Signed32 - User field
- priority? BoMsgPriorities - Priority field
- text? string - Text field
- attachment? Signed32 - Attachment field
- messageDataColumns? MessageDataColumn[] - Message data columns field
- recipientCollection? Recipient[] - Recipient collection field
- code? Signed32 - Code field
- subject? string - Subject field
sap.businessone.administration: MessageDataColumn
The MessageDataColumn complex type of the SAP Business One Service Layer
Fields
- columnName? string - Column name field
- messageDataLines? MessageDataLine[] - Message data lines field
- link? BoYesNoEnum - Link field
sap.businessone.administration: MessageDataLine
The MessageDataLine complex type of the SAP Business One Service Layer
Fields
- value? string - Value field
- objectKey? string - Object key field
- 'object? string - Object field
sap.businessone.administration: MessageHeader
The MessageHeader complex type of the SAP Business One Service Layer
Fields
- read? BoYesNoEnum - Read field
- receivedDate? string - Received date field
- sentTime? string - Sent time field
- received? BoYesNoEnum - Received field
- sentDate? string - Sent date field
- receivedTime? string - Received time field
- code? Signed32 - Code field
sap.businessone.administration: MessagesCollectionResponse
A paged collection of Messages entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? Message[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.administration: MobileAddOnSetting
The MobileAddOnSetting entity of the SAP Business One Service Layer
Fields
- 'type? MobileAddonSettingTypeEnum - Type field
- b1SalesApp? BoYesNoEnum - B1 sales app field
- description? string - Description field
- logonMethod? LogonMethodEnum - Logon method field
- enable? BoYesNoEnum - Enable field
- viewStyle? ViewStyleTypeEnum - View style field
- b1MobileApp? BoYesNoEnum - B1 mobile app field
- code? string - Code field
- b1ServiceApp? BoYesNoEnum - B1 service app field
- url? string - URL field
- provider? string - Provider field
sap.businessone.administration: MobileAddOnSettingCollectionResponse
A paged collection of MobileAddOnSetting entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? MobileAddOnSetting[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.administration: MobileAddOnSettingParams
The MobileAddOnSettingParams complex type of the SAP Business One Service Layer
Fields
- description? string - Description field
- code? string - Code field
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 - Dpp change params field
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[] - Employee full names params collection field
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 - Sales app setting params field
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 - Service app report params field
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 - Service app report params field
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 - Technician schedulings params field
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 - Technician settings params field
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 - Technician settings group params field
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 - Sales app setting field
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 - Service app report field
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 - Service app report params field
- serviceAppReportContent? ServiceAppReportContent - Service app report content field
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 - Technician settings field
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 - Technician settings group field
sap.businessone.administration: MobileServerDateTime
The MobileServerDateTime complex type of the SAP Business One Service Layer
Fields
- time? string - Time field
- date? string - Date field
sap.businessone.administration: MultiLanguageTranslation
The MultiLanguageTranslation entity of the SAP Business One Service Layer
Fields
- Numerator? Signed32 - Numerator field
- TableName? string - Table name field
- FieldAlias? string - Field alias field
- PrimaryKeyofobject? string - Primary keyofobject field
- TranslationsInUserLanguages? TranslationsInUserLanguage[] - Translations in user languages field
sap.businessone.administration: MultiLanguageTranslationsCollectionResponse
A paged collection of MultiLanguageTranslations entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? MultiLanguageTranslation[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.administration: PathAdmin
The PathAdmin complex type of the SAP Business One Service Layer
Fields
- attachmentsFolderPath? string - Attachments folder path field
- extensionsFolderPath? string - Extensions folder path field
- wordTemplateFolderPath? string - Word template folder path field
- picturesFolderPath? string - Pictures folder path field
- printId? string - Print ID field
sap.businessone.administration: PeriodCategory
The PeriodCategory complex type of the SAP Business One Service Layer
Fields
- underpaymentsARAccount? string - Underpayments accounts receivable account field
- vendorAssetsAccount? string - Vendor assets account field
- underpaymentsAPAccount? string - Underpayments accounts payable account field
- exchangeRateDifferencesAcct? string - Exchange rate differences account field
- exhRatesDiffAcctLnWTax? string - Exh rates diff account ln w tax field
- stockRevaluationOffsetAcct? string - Stock revaluation offset account field
- financialYear? Signed32 - Financial year field
- inventoryOffsetIncrease? string - Inventory offset increase field
- gLGainRealizedConversionDiff? string - G l gain realized conversion diff field
- numberOfPeriods? Signed32 - Number of periods field
- aPLossRealizedConversionDiff? string - A p loss realized conversion diff field
- repomoAccount? string - Repomo account field
- varianceAcc? string - Variance acc field
- subPeriodType? BoSubPeriodTypeEnum - Sub period type field
- aRCashDiscountAccount? string - A r cash discount account field
- aPExRateInterim? string - A p ex rate interim field
- toDocumentDate? string - To document date field
- toDueDate? string - To due date field
- negativeInventoryAdjustmentAccount? string - Negative inventory adjustment account field
- increaseGLAccount? string - Increase general ledger account field
- aRLossRealizedConversionDiff? string - A r loss realized conversion diff field
- invoicePaymentBP? string - Invoice payment business partner field
- rateDifferencesDefaultAcc? string - Rate differences default acc field
- downPaymentVATAcctSale? string - Down payment VAT account sale field
- allocationAcc? string - Allocation acc field
- wIPMappingCollection? WIPMapping[] - W IP mapping collection field
- aRGainRealizedConversionDiff? string - A r gain realized conversion diff field
- outgoingTaxAccount? string - Outgoing tax account field
- acountforOpeningWHBalance? string - Acountfor opening warehouse balance field
- wIPMaterialVarianceAccount? string - W IP material variance account field
- salesDownPaymentInterimAccount? string - Sales down payment interim account field
- selfInvoiceExpenseAccount? string - Self invoice expense account field
- customerDoubtfulDebtsAcct? string - Customer doubtful debts account field
- stockRevaluationAccount? string - Stock revaluation account field
- overpaymentsARAccount? string - Overpayments accounts receivable account field
- absoluteEntry? Signed32 - Absolute entry field
- accountforOutgoingChecks? string - Accountfor outgoing checks field
- customerUnpaidBoE? string - Customer unpaid bo e field
- selfInvoiceRevenueAccount? string - Self invoice revenue account field
- billofExchangeAccountsRece? string - Billof exchange accounts rece field
- costOfGoodsSold? string - Cost of goods sold field
- goodsClearingAcc? string - Goods clearing acc field
- salesCreditAcc? string - Sales credit acc field
- downPaymentVATAcctPurch? string - Down payment VAT account purch field
- inventoryOffsetDecrease? string - Inventory offset decrease field
- debitorsFollowUpAccount? string - Debitors follow up account field
- openingBalancesAccount? string - Opening balances account field
- salesCreditForeignAcc? string - Sales credit foreign acc field
- priceDifferenceAccount? string - Price difference account field
- wIPMaterialAccount? string - W IP material account field
- aPGainRealizedConversionDiff? string - A p gain realized conversion diff field
- accountforCashReceipt? string - Accountfor cash receipt field
- decreaseGLAcc? string - Decrease general ledger acc field
- customerBillofExchangePres? string - Customer billof exchange pres field
- salesRevenueEU? string - Sales revenue EU field
- foreignAccountsReceivables? string - Foreign accounts receivables field
- purchaseInterimAcctLnWTax? string - Purchase interim account ln w tax field
- customerDownPaymentsAccount? string - Customer down payments account field
- toPostingDate? string - To posting date field
- aPLossRealizedExchangeDif? string - A p loss realized exchange dif field
- purchaseCreditAcc? string - Purchase credit acc field
- purchaseDownPaymentInterimAccount? string - Purchase down payment interim account field
- eUPurchaseCreditAcc? string - E u purchase credit acc field
- boEAccountsPayable2? string - Bo e accounts payable2 field
- expensesAccountForeign? string - Expenses account foreign field
- eOYControlAccount? string - E OY control account field
- aPCashDiscountAccount? string - A p cash discount account field
- purchaseAccount? string - Purchase account field
- salesCreditEUAcc? string - Sales credit EU acc field
- stockInTransitAccount? string - Stock in transit account field
- eUAccountsPayable? string - E u accounts payable field
- exemptedCredits? string - Exempted credits field
- taxExemptRevenuesDefault? string - Tax exempt revenues default field
- salesReturns? string - Sales returns field
- aPCashDiscountInterim? string - A p cash discount interim field
- periodCategory? string - Period category field
- revenuesAccountForeign? string - Revenues account foreign field
- downPaymentPClearingAcct? string - Down payment p clearing account field
- downPaymentSClearingAcct? string - Down payment s clearing account field
- customerBillofExchngeDisc? string - Customer billof exchnge disc field
- vendorDownPaymentsAccount? string - Vendor down payments account field
- aRExRateInterim? string - A r ex rate interim field
- withholodingTax? string - Withholoding tax field
- purchaseOffsetAccount? string - Purchase offset account field
- expenseOffsetAccount? string - Expense offset account field
- periodName? string - Period name field
- salesInterimAcctLnWTax? string - Sales interim account ln w tax field
- expenseAccountDefault? string - Expense account default field
- gLRevaluationOffsetAccount? string - G l revaluation offset account field
- accountforCreditMemoPayme? string - Accountfor credit memo payme field
- costofSaleRevaluationAcct? string - Costof sale revaluation account field
- aRGainRealizedExchngeDif? string - A r gain realized exchnge dif field
- costofSaleRevOffsetAcct? string - Costof sale rev offset account field
- customersDeductionatSource? string - Customers deductionat source field
- creditorsFollowUpAccount? string - Creditors follow up account field
- purchaseReturnAccount? string - Purchase return account field
- fromDocumentDate? string - From document date field
- dunningFeeAccount? string - Dunning fee account field
- aPGainRealizedExchngeDif? string - A p gain realized exchnge dif field
- eUAccountsReceivable? string - E u accounts receivable field
- overpaymentsAPAccount? string - Overpayments accounts payable account field
- aRCashDiscountInterim? string - A r cash discount interim field
- custBillofExchangeonC? string - Customer billof exchangeon c field
- wipOffsetProfitAndLossAccount? string - Wip offset profit and loss account field
- fromPostingDate? string - From posting date field
- aRLossRealizedExchangeDi? string - A r loss realized exchange di field
- fromDueDate? string - From due date field
- defaultSaleAccount? string - Default sale account field
- foreignPurchaseCreditAcc? string - Foreign purchase credit acc field
- purchaseTax? string - Purchase tax field
- outgoingChecksAccount? string - Outgoing checks account field
- taxDefinition? string - Tax definition field
- stockAccount? string - Stock account field
- boEAccountsPayable? string - Bo e accounts payable field
- inputTaxAccount? string - Input tax account field
- beginningofFinancialYear? string - Beginningof financial year field
- expenseVarianceAccount? string - Expense variance account field
- inventoryOffsetProfitAndLossAccount? string - Inventory offset profit and loss account field
- roundingAccount? string - Rounding account field
- expenseClearingAccount? string - Expense clearing account field
- outgoingCashAccount? string - Outgoing cash account field
- aPLossCashDiscountAccount? string - A p loss cash discount account field
- dunningInterestAccount? string - Dunning interest account field
- gLLossRealizedConversionDiff? string - G l loss realized conversion diff field
- commissionAccountDefault? string - Commission account default field
- eUExpenseAccount? string - E u expense account field
- vendorDoubtfulDebtsAcct? string - Vendor doubtful debts account field
- reconciliationDifference? string - Reconciliation difference field
sap.businessone.administration: PeriodCategoryParams
The PeriodCategoryParams complex type of the SAP Business One Service Layer
Fields
- absoluteEntry? Signed32 - Absolute entry field
sap.businessone.administration: Picture
The Picture entity of the SAP Business One Service Layer
Fields
- pictureSize? Signed32 - Picture size field
- pictureName? string - Picture name field
- pictureCreateDate? string - Picture create date field
- picturePath? string - Picture path field
- pictureModifyDate? string - Picture modify date field
sap.businessone.administration: PicturesCollectionResponse
A paged collection of Pictures entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? Picture[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.administration: PredefinedText
The PredefinedText entity of the SAP Business One Service Layer
Fields
- numerator? Signed32 - Numerator field
- textCode? string - Text code field
- text? string - Text field
sap.businessone.administration: PredefinedTextParams
The PredefinedTextParams complex type of the SAP Business One Service Layer
Fields
- numerator? Signed32 - Numerator field
- textCode? string - Text code field
sap.businessone.administration: PredefinedTextsCollectionResponse
A paged collection of PredefinedTexts entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? PredefinedText[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.administration: QRCodeData
The QRCodeData complex type of the SAP Business One Service Layer
Fields
- objectType? Signed32 - Object type field
- objectAbsEntry? string - Object abs entry field
- fieldName? string - Field name field
- qRCodeText? string - Q r code text field
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 - Q r code data field
sap.businessone.administration: QueryAuthGroup
The QueryAuthGroup entity of the SAP Business One Service Layer
Fields
- authGroupCode? string - Auth group code field
- authGroupDes? string - Auth group des field
- authGroupId? Signed32 - Auth group ID field
- categoryGroupCollection? CategoryGroup[] - Category group collection field
sap.businessone.administration: QueryAuthGroupsCollectionResponse
A paged collection of QueryAuthGroups entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? QueryAuthGroup[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.administration: QueryCategoriesCollectionResponse
A paged collection of QueryCategories entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? QueryCategory[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.administration: QueryCategory
The QueryCategory entity of the SAP Business One Service Layer
Fields
- Code? Signed32 - Code field
- Name? string - Name field
- Permissions? string - Permissions field
- UserQueries? UserQuery[] - User queries field
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 - Query path field
- queryOption? string - Query option field
sap.businessone.administration: Recipient
The Recipient complex type of the SAP Business One Service Layer
Fields
- sendInternal? BoYesNoEnum - Send internal field
- cellularNumber? string - Cellular number field
- nameTo? string - Name to field
- faxNumber? string - Fax number field
- userCode? string - User code field
- sendSMS? BoYesNoEnum - Send SMS field
- sendEmail? BoYesNoEnum - Send email field
- userType? BoMsgRcpTypes - User type field
- emailAddress? string - Email address field
- sendFax? BoYesNoEnum - Send fax field
sap.businessone.administration: RefreshPathsDocuments
The RefreshPathsDocuments complex type of the SAP Business One Service Layer
Fields
- attachmentsFolderPath? string - Attachments folder path field
sap.businessone.administration: ReportFilterCollectionResponse
A paged collection of ReportFilter entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? TaxReportFilter[] - Value field
- odataNextLink? string - Odata next link field
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 - Tax report filter params field
sap.businessone.administration: ReportInputParams
The ReportInputParams complex type of the SAP Business One Service Layer
Fields
- reportLayoutMenuID? string - Report layout menu ID field
sap.businessone.administration: ReportLayout
The ReportLayout complex type of the SAP Business One Service Layer
Fields
- topMargin? Signed32 - Top margin field
- extensionName? string - Extension name field
- b1Version? string - B1 version field
- bottomMargin? Signed32 - Bottom margin field
- category? ReportLayoutCategoryEnum - Category field
- query? string - Query field
- foreignLanguageReport? BoYesNoEnum - Foreign language report field
- gridSize? Signed32 - Grid size field
- language? Signed32 - Language field
- printer? string - Printer field
- reportLayoutTranslationLines? ReportLayoutTranslationLine[] - Report layout translation lines field
- name? string - Name field
- gridType? BoGridTypeEnum - Grid type field
- repetitiveAreasNumber? Signed32 - Repetitive areas number field
- typeDetail? string - Type detail field
- reportLayoutItems? ReportLayoutItem[] - Report layout items field
- changeFontSizeInPreview? Signed32 - Change font size in preview field
- remarks? string - Remarks field
- picture? string - Picture field
- followUpReport? string - Follow up report field
- editable? BoYesNoEnum - Editable field
- height? Signed32 - Height field
- localization? string - Localization field
- width? Signed32 - Width field
- impExpObjCode? Signed32 - Imp exp obj code field
- cRVersion? string - C r version field
- printerFirstPage? string - Printer first page field
- showGrid? BoYesNoEnum - Show grid field
- eMailFont? string - E mail font field
- typeCode? string - Type code field
- numberOfCopies? Signed32 - Number of copies field
- convertFontForEMail? BoYesNoEnum - Convert font for e mail field
- leaderReport? string - Leader report field
- changeFontSizeForEMail? Signed32 - Change font size for e mail field
- orientation? BoOrientationEnum - Orientation field
- rightMargin? Signed32 - Right margin field
- useFirstPrinter? BoYesNoEnum - Use first printer field
- allignFooterToBottom? BoYesNoEnum - Allign footer to bottom field
- layoutCode? string - Layout code field
- snapToGrid? BoYesNoEnum - Snap to grid field
- previewPrintingFont? string - Preview printing font field
- sortable? BoYesNoEnum - Sortable field
- paperSize? string - Paper size field
- author? string - Author field
- extensionErrorAction? BoExtensionErrorActionEnum - Extension error action field
- leftMargin? Signed32 - Left margin field
- convertFontInPrintPreview? BoYesNoEnum - Convert font in print preview field
- queryType? BoQueryTypeEnum - Query type field
sap.businessone.administration: ReportLayoutItem
The ReportLayoutItem complex type of the SAP Business One Service Layer
Fields
- displayTotalAsAWord? BoYesNoEnum - Display total as a word field
- topMargin? Signed32 - Top margin field
- lineBreak? BoLineBreakEnum - Line break field
- left? Signed32 - Left field
- bottomMargin? Signed32 - Bottom margin field
- nextSegmentItemNumber? string - Next segment item number field
- heightAdjustments? BoYesNoEnum - Height adjustments field
- 'string? string - String field
- distanceToRepetitiveDuplicate? Signed32 - Distance to repetitive duplicate field
- suppressZeros? BoYesNoEnum - Suppress zeros field
- borderRed? Signed32 - Border red field
- textStyle? Signed32 - Text style field
- topBorderLineThickness? Signed32 - Top border line thickness field
- reverseSort? BoYesNoEnum - Reverse sort field
- parentType? Signed32 - Parent type field
- parentIndex? Signed32 - Parent index field
- backgroundBlue? Signed32 - Background blue field
- newPage? BoYesNoEnum - New page field
- displayRepetitiveAreaFooterOnAllPages? BoYesNoEnum - Display repetitive area footer on all pages field
- stringLength? Signed32 - String length field
- backgroundRed? Signed32 - Background red field
- leftBorderLineThickness? Signed32 - Left border line thickness field
- groupNumber? Signed32 - Group number field
- variableNumber? Signed32 - Variable number field
- borderGreen? Signed32 - Border green field
- dataSource? BoDataSourceEnum - Data source field
- textRed? Signed32 - Text red field
- tableName? string - Table name field
- relateToField? string - Relate to field field
- top? Signed32 - Top field
- fontSize? Signed32 - Font size field
- textBlue? Signed32 - Text blue field
- fontName? string - Font name field
- unique? BoYesNoEnum - Unique field
- bottomBorderLineThickness? Signed32 - Bottom border line thickness field
- barCodeStandard? BoBarCodeStandardEnum - Bar code standard field
- displayDescription? BoYesNoEnum - Display description field
- itemIndex? Signed32 - Item index field
- borderBlue? Signed32 - Border blue field
- sortLevel? Signed32 - Sort level field
- linkToField? string - Link to field field
- backgroundGreen? Signed32 - Background green field
- stringFiller? string - String filler field
- itemNumber? Signed32 - Item number field
- visible? BoYesNoEnum - Visible field
- editable? Signed32 - Editable field
- height? Signed32 - Height field
- verticalAlignment? BoVerticalAlignmentEnum - Vertical alignment field
- width? Signed32 - Width field
- fieldName? string - Field name field
- rightBorderLineThickness? Signed32 - Right border line thickness field
- horizontalAlignment? BoHorizontalAlignmentEnum - Horizontal alignment field
- highlightRed? Signed32 - Highlight red field
- numberOfLinesInRepetitiveArea? Signed32 - Number of lines in repetitive area field
- printAsBarCode? BoYesNoEnum - Print as bar code field
- blockFontChange? BoYesNoEnum - Block font change field
- duplicateRepetitiveArea? BoYesNoEnum - Duplicate repetitive area field
- setAsGroup? BoYesNoEnum - Set as group field
- hideRepetitiveAreaIfEmpty? BoYesNoEnum - Hide repetitive area if empty field
- highlightBlue? Signed32 - Highlight blue field
- fieldIdentifier? string - Field identifier field
- shadowThickness? Signed32 - Shadow thickness field
- rightMargin? Signed32 - Right margin field
- textGreen? Signed32 - Text green field
- sortType? BoSortTypeEnum - Sort type field
- highlightGreen? Signed32 - Highlight green field
- pictureSize? BoPictureSizeEnum - Picture size field
- 'type? BoReportLayoutItemTypeEnum - Type field
- leftMargin? Signed32 - Left margin field
sap.businessone.administration: ReportLayoutParams
The ReportLayoutParams complex type of the SAP Business One Service Layer
Fields
- layoutCode? string - Layout code field
- category? ReportLayoutCategoryEnum - Category field
- layoutName? string - Layout name field
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 - Report layout field
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 - Report input params field
- reportLayout? ReportLayout - Report layout field
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 - Report layout params field
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 - Report layout params field
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 - Report params field
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 - Report params field
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 - Report layout params field
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 - Report params field
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 - Default report params field
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 - Report layout field
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 - Report layout field
sap.businessone.administration: ReportLayoutTranslationLine
The ReportLayout_TranslationLine complex type of the SAP Business One Service Layer
Fields
- languageCode? Signed32 - Language code field
- updateDate? string - Update date field
- createTime? Signed32 - Create time field
- updateTime? Signed32 - Update time field
- docEntry? string - Document entry field
- docName? string - Document name field
- createDate? string - Create date field
- lineNumber? Signed32 - Line number field
sap.businessone.administration: ReportParams
The ReportParams complex type of the SAP Business One Service Layer
Fields
- userID? Signed32 - User ID field
- reportCode? string - Report code field
- cardCode? string - Card code field
sap.businessone.administration: ReportType
The ReportType entity of the SAP Business One Service Layer
Fields
- typeName? string - Type name field
- menuID? string - Menu ID field
- typeCode? string - Type code field
- addonName? string - Addon name field
- addonFormType? string - Addon form type field
- defaultReportLayout? string - Default report layout field
sap.businessone.administration: ReportTypeParams
The ReportTypeParams complex type of the SAP Business One Service Layer
Fields
- typeName? string - Type name field
- menuID? string - Menu ID field
- typeCode? string - Type code field
- addonName? string - Addon name field
- addonFormType? string - Addon form type field
sap.businessone.administration: ReportTypesCollectionResponse
A paged collection of ReportTypes entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? ReportType[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.administration: RoundedData
The RoundedData complex type of the SAP Business One Service Layer
Fields
- value? decimal - Value field
sap.businessone.administration: SalesAppSetting
The SalesAppSetting complex type of the SAP Business One Service Layer
Fields
- customerAdvancedDashBoard? Signed32 - Customer advanced dash board field
- code? Signed32 - Code field
- advancedDashBoard? Signed32 - Advanced dash board field
- name? string - Name field
sap.businessone.administration: SalesAppSettingParams
The SalesAppSettingParams complex type of the SAP Business One Service Layer
Fields
- code? Signed32 - Code field
- name? string - Name field
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 - In money field
- inPrecision? string - In precision field
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 - Currency field
- date? string - Date field
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 - Reference date field
- cardCode? string - Card code field
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 - Index field
- date? string - Date field
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 - User code field
- permissionID? string - Permission ID field
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 date field
- rate? string - Rate field
- currency? string - Currency field
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 - User code field
- permission? Signed32 - Permission field
- permissionID? string - Permission ID field
sap.businessone.administration: Section
The Section entity of the SAP Business One Service Layer
Fields
- description? string - Description field
- absEntry? Signed32 - Abs entry field
- code? string - Code field
- eCode? string - E code field
sap.businessone.administration: SectionParams
The SectionParams complex type of the SAP Business One Service Layer
Fields
- description? string - Description field
- absEntry? Signed32 - Abs entry field
- code? string - Code field
sap.businessone.administration: SectionsCollectionResponse
A paged collection of Sections entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? Section[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.administration: SensitiveDataAccess
The SensitiveDataAccess complex type of the SAP Business One Service Layer
Fields
- key2? string - Key2 field
- key1? string - Key1 field
- propertyName? string - Property name field
- 'table? string - Table field
- key4? string - Key4 field
- key3? string - Key3 field
- propertyValue? string - Property value field
- propertyID? Signed32 - Property ID field
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 - Sensitive data access field
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 - Sensitive data access field
sap.businessone.administration: Series
The Series complex type of the SAP Business One Service Layer
Fields
- Document? string - Document field
- DocumentSubType? string - Document sub type field
- InitialNumber? Signed32 - Initial number field
- LastNumber? Signed32 - Last number field
- NextNumber? Signed32 - Next number field
- Prefix? string - Prefix field
- Suffix? string - Suffix field
- Remarks? string - Remarks field
- 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 - Period indicator field
- Name? string - Name field
- Series? Signed32 - Series field
- IsDigitalSeries? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- DigitNumber? Signed32 - Digit number field
- 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 - BPLID field
- ATDocumentType? string - AT document type field
- 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 - Invoice type field
- InvoiceTypeOfNegativeInvoice? Signed32 - Invoice type of negative invoice field
- PortugalSeriesAction? string - Portugal series action field
- PortugalSeriesStatus? string - Portugal series status field
- PortugalSeriesPhase? string - Portugal series phase field
sap.businessone.administration: SeriesParams
The SeriesParams complex type of the SAP Business One Service Layer
Fields
- series? Signed32 - Series field
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 - Electronic series field
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 - Series field
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 - Document series params field
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 - Document change menu name field
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 - Series params field
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 - Document type params field
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 - Document type params field
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 - Document type params field
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 - Electronic series params field
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 - Series params field
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 - Electronic series params field
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 - Series params field
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 - Default electronic series params field
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 - Document series params field
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 - Document series params field
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 - Document series user params field
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 - Document series params field
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 - Electronic series field
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 - Series field
sap.businessone.administration: ServiceAppReport
The ServiceAppReport complex type of the SAP Business One Service Layer
Fields
- customizedReportName? string - Customized report name field
- systemReportName? string - System report name field
- code? Signed32 - Code field
- reportChoice? MobileAppReportChoiceEnum - Report choice field
sap.businessone.administration: ServiceAppReportContent
The ServiceAppReportContent complex type of the SAP Business One Service Layer
Fields
- reportContent? string - Report content field
sap.businessone.administration: ServiceAppReportParams
The ServiceAppReportParams complex type of the SAP Business One Service Layer
Fields
- code? Signed32 - Code field
- reportChoice? MobileAppReportChoiceEnum - Report choice field
sap.businessone.administration: ShortLinkMappingParams
The ShortLinkMappingParams complex type of the SAP Business One Service Layer
Fields
- guid? string - Guid field
sap.businessone.administration: ShowDifferenceParams
The ShowDifferenceParams complex type of the SAP Business One Service Layer
Fields
- logInstance2? Signed32 - Log instance2 field
- primaryKey? string - Primary key field
- uDOObjectCode? string - U DO object code field
- 'object? BoChangeLogEnum - Object field
- logInstance? Signed32 - Log instance field
sap.businessone.administration: SingleUserConnection
The SingleUserConnection entity of the SAP Business One Service Layer
Fields
- action? SingleUserConnectionActionEnum - Action field
- code? Signed32 - Code field
sap.businessone.administration: SingleUserConnectionsCollectionResponse
A paged collection of SingleUserConnections entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? SingleUserConnection[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.administration: SQLQueriesCollectionResponse
A paged collection of SQLQueries entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? SQLQuery[] - Value field
- odataNextLink? string - Odata next link field
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 - Param list field
sap.businessone.administration: SQLQuery
The SQLQuery entity of the SAP Business One Service Layer
Fields
- sqlCode? string - Sql code field
- updateDate? string - Update date field
- sqlName? string - Sql name field
- sqlText? string - Sql text field
- createDate? string - Create date field
- paramList? string - Param list field
sap.businessone.administration: SQLQueryResult
The SQLQueryResult complex type of the SAP Business One Service Layer
Fields
- SqlText? string - Sql text field
sap.businessone.administration: SQLView
The SQLView entity of the SAP Business One Service Layer
Fields
- dBType? string - D b type field
- createDate? string - Create date field
- schemaName? string - Schema name field
- name? string - Name field
sap.businessone.administration: SQLViewsCollectionResponse
A paged collection of SQLViews entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? SQLView[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.administration: State
The State entity of the SAP Business One Service Layer
Fields
- country2? Country - Country2 field
- isUnionTerritory? BoYesNoEnum - Is union territory field
- country? string - Country field
- gSTCode? string - G ST code field
- code? string - Code field
- name? string - Name field
sap.businessone.administration: StateParams
The StateParams complex type of the SAP Business One Service Layer
Fields
- country? string - Country field
- code? string - Code field
- name? string - Name field
sap.businessone.administration: StatesCollectionResponse
A paged collection of States entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? State[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.administration: SupportUserLoginRecord
The SupportUserLoginRecord complex type of the SAP Business One Service Layer
Fields
- logDetail? string - Log detail field
- logReason? SupportUserLoginRecordLogReasonTypeEnum - Log reason field
- iD? Signed32 - I d field
- realName? string - Real name field
sap.businessone.administration: TaxReportAccount
The TaxReportAccount complex type of the SAP Business One Service Layer
Fields
- code? string - Code field
sap.businessone.administration: TaxReportBusinessPartner
The TaxReportBusinessPartner complex type of the SAP Business One Service Layer
Fields
- code? string - Code field
sap.businessone.administration: TaxReportDocument
The TaxReportDocument complex type of the SAP Business One Service Layer
Fields
- toNumber? Signed32 - To number field
- fromNumber? Signed32 - From number field
- documentType? TaxReportFilterDocumentType - Document type field
sap.businessone.administration: TaxReportFilter
The TaxReportFilter entity of the SAP Business One Service Layer
Fields
- quarter? Signed32 - Quarter field
- firstPrintedNumber? Signed32 - First printed number field
- includeCustomers? BoYesNoEnum - Include customers field
- includeGLAccounts? BoYesNoEnum - Include general ledger accounts field
- diplayCreditMemosInSeparateColumn? BoYesNoEnum - Diplay credit memos in separate column field
- taxReportSeriesCollection? TaxReportSeries[] - Tax report series collection field
- includeVendors? BoYesNoEnum - Include vendors field
- taxReportBusinessPartners? TaxReportBusinessPartner[] - Tax report business partners field
- roundAmount? BoYesNoEnum - Round amount field
- includeDocumentType? BoYesNoEnum - Include document type field
- taxReportGroups? TaxReportGroup[] - Tax report groups field
- taxReportAccounts? TaxReportAccount[] - Tax report accounts field
- name? string - Name field
- appendixOorPSelection? BoYesNoEnum - Appendix oor p selection field
- includeSeriesFilter? BoYesNoEnum - Include series filter field
- taxReportDocuments? TaxReportDocument[] - Tax report documents field
- taxDate? BoYesNoEnum - Tax date field
- cancellation? BoYesNoEnum - Cancellation field
- reportLayout? TaxReportFilterReportLayoutType - Report layout field
- firstRegisterNumber? Signed32 - First register number field
- excludeWT? BoYesNoEnum - Exclude withholding tax field
- openingAndClosingBalance? BoYesNoEnum - Opening and closing balance field
- period? TaxReportFilterPeriod - Period field
- documentType? TaxReportFilterApArDocumentType - Document type field
- showPaymentsWithDeferredTax? BoYesNoEnum - Show payments with deferred tax field
- code? Signed32 - Code field
- toSeries? Signed32 - To series field
- declarationType? TaxReportFilterDeclarationType - Declaration type field
- filterType? TaxReportFilterType - Filter type field
- hideTaxWithoutTransaction? BoYesNoEnum - Hide tax without transaction field
- year? Signed32 - Year field
- quarterOrDates? TaxReportFilterQuarterOrDates - Quarter or dates field
- fromDate? string - From date field
- toDate? string - To date field
- fromSeries? Signed32 - From series field
sap.businessone.administration: TaxReportFilterParams
The TaxReportFilterParams complex type of the SAP Business One Service Layer
Fields
- filterType? TaxReportFilterType - Filter type field
- code? Signed32 - Code field
- name? string - Name field
sap.businessone.administration: TaxReportGroup
The TaxReportGroup complex type of the SAP Business One Service Layer
Fields
- sum? BoYesNoEnum - Sum field
- code? string - Code field
sap.businessone.administration: TaxReportSeries
The TaxReportSeries complex type of the SAP Business One Service Layer
Fields
- seriesCode? Signed32 - Series code field
- documentType? TaxReportFilterDocumentType - Document type field
sap.businessone.administration: TechnicianSchedulings
The TechnicianSchedulings complex type of the SAP Business One Service Layer
Fields
- startDate? string - Start date field
- serviceCallID? Signed32 - Service call ID field
- schedulingLineNum? Signed32 - Scheduling line number field
- isClosed? BoYesNoEnum - Is closed field
- endDate? string - End date field
sap.businessone.administration: TechnicianSchedulingsParams
The TechnicianSchedulingsParams complex type of the SAP Business One Service Layer
Fields
- startDate? string - Start date field
- technician? Signed32 - Technician field
- endDate? string - End date field
sap.businessone.administration: TechnicianSettings
The TechnicianSettings complex type of the SAP Business One Service Layer
Fields
- technician? Signed32 - Technician field
- groupCode? Signed32 - Group code field
sap.businessone.administration: TechnicianSettingsGroup
The TechnicianSettingsGroup complex type of the SAP Business One Service Layer
Fields
- enableResign? BoYesNoEnum - Enable resign field
- customizedGroup? BoYesNoEnum - Customized group field
- enableEditTime? BoYesNoEnum - Enable edit time field
- enableStarRating? BoYesNoEnum - Enable star rating field
- enableActualDuration? BoYesNoEnum - Enable actual duration field
- enableFollowup? BoYesNoEnum - Enable followup field
- code? Signed32 - Code field
- enableReject? BoYesNoEnum - Enable reject field
- enableSignature? BoYesNoEnum - Enable signature field
- advancedDashBoard? Signed32 - Advanced dash board field
- name? string - Name field
sap.businessone.administration: TechnicianSettingsGroupParams
The TechnicianSettingsGroupParams complex type of the SAP Business One Service Layer
Fields
- code? Signed32 - Code field
- name? string - Name field
sap.businessone.administration: TechnicianSettingsParams
The TechnicianSettingsParams complex type of the SAP Business One Service Layer
Fields
- technician? Signed32 - Technician field
sap.businessone.administration: TranslationsInUserLanguage
The TranslationsInUserLanguage complex type of the SAP Business One Service Layer
Fields
- KeyFromHeaderTable? Signed32 - Key from header table field
- LanguageCodeOfUserLanguage? Signed32 - Language code of user language field
- Translationscontent? string - Translationscontent field
sap.businessone.administration: TSRExceptionalEvent
The TSRExceptionalEvent entity of the SAP Business One Service Layer
Fields
- description? string - Description field
- code? string - Code field
sap.businessone.administration: TSRExceptionalEventParams
The TSRExceptionalEventParams complex type of the SAP Business One Service Layer
Fields
- code? string - Code field
sap.businessone.administration: TSRExceptionalEventsCollectionResponse
A paged collection of TSRExceptionalEvents entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? TSRExceptionalEvent[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.administration: User
The User entity of the SAP Business One Service Layer
Fields
- InternalKey? Signed32 - Internal key field
- UserPassword? string - User password field
- UserCode? string - User code field
- UserName? string - User name field
- Superuser? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- eMail? string - E mail field
- MobilePhoneNumber? string - Mobile phone number field
- Defaults? string - Defaults field
- FaxNumber? string - Fax number field
- Branch? Signed32 - Branch field
- Department? Signed32 - Department field
- 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 - Max discount general field
- MaxDiscountSales? decimal - Max discount sales field
- MaxDiscountPurchase? decimal - Max discount purchase field
- CashLimit? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- MaxCashAmtForIncmngPayts? decimal - Max cash amount for incmng payts field
- LastLogoutDate? string - Last logout date field
- LastLoginTime? string - Last login time field
- LastLogoutTime? string - Last logout time field
- LastPasswordChangeTime? string - Last password change time field
- LastPasswordChangedBy? string - Last password changed by field
- NaturalPer? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- UserPermission? UserPermissionItem[] - User permission field
- UserActionRecord? UserActionRecordItem[] - User action record field
- UserGroupByUser? UserGroupByUserItem[] - User group by user field
- UserBranchAssignment? UserBranchAssignmentItem[] - User branch assignment field
- UserDefaultGroups? UserDefaultGroup[] - User default groups field
- FormPreferences? ColumnPreferences[] - Form preferences field
- ApprovalRequests? ApprovalRequest[] - Approval requests field
- Branch2? Branch - The
Branchentity of the SAP Business One Service Layer
- Department2? Department - The
Departmententity of the SAP Business One Service Layer
- Cockpits? Cockpit[] - Cockpits field
- UserPermissionTree? UserPermissionTree[] - User permission tree field
sap.businessone.administration: UserAccessLog
The UserAccessLog complex type of the SAP Business One Service Layer
Fields
- winUsrName? string - Win usr name field
- action? UserActionTypeEnum - Action field
- procName? string - Proc name field
- userCode? string - User code field
- reasonDesc? string - Reason description field
- winSessnID? Signed32 - Win sessn ID field
- clientIP? string - Client IP field
- actionBy? string - Action by field
- 'source? string - Source field
- actionDate? string - Action date field
- actionTime? string - Action time field
- clientName? string - Client name field
- userID? Signed32 - User ID field
- processID? Signed32 - Process ID field
- reasonID? UserAccessLogReasonIDTypeEnum - Reason ID field
- sessionID? Signed32 - Session ID field
sap.businessone.administration: UserActionRecordItem
The UserActionRecordItem complex type of the SAP Business One Service Layer
Fields
- UserCode? string - User code field
- Action? UserActionTypeEnum - OData EnumType 'UserActionTypeEnum'. Serialised by the Service Layer as the member name
- ActionBy? string - Action by field
- ClientIP? string - Client IP field
- ClientName? string - Client name field
- ActionDate? string - Action date field
- ActionTime? string - Action time field
- WindowsSession? Signed32 - Windows session field
- WindowsUser? string - Windows user field
- ProcessName? string - Process name field
- ProcessID? Signed32 - Process ID field
- AliveDuration? Signed32 - Alive duration field
sap.businessone.administration: UserBranchAssignmentItem
The UserBranchAssignmentItem complex type of the SAP Business One Service Layer
Fields
- UserCode? string - User code field
- BPLID? Signed32 - BPLID field
sap.businessone.administration: UserDefaultGroup
The UserDefaultGroup entity of the SAP Business One Service Layer
Fields
- Code? string - Code field
- Name? string - Name field
- Warehouse? string - Warehouse field
- SalesEmployee? Signed32 - Sales employee field
- BPforInvoicePayment? string - B pfor invoice payment field
- CashAccount? string - Cash account field
- CheckingAcct? string - Checking account field
- 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 - Windows color field
- Address? string - Address field
- Country? string - Country field
- PrintingHeader? string - Printing header field
- PhoneNumber1? string - Phone number1 field
- PhoneNumber2? string - Phone number2 field
- FaxNumber? string - Fax number field
- eMail? string - E mail field
- AddressinForeignLanguage? string - Addressin foreign language field
- PrintingHeaderInForeignLangu? string - Printing header in foreign langu field
- PhoneNumber1ForeignLang? string - Phone number1 foreign lang field
- PhoneNumber2ForeignLang? string - Phone number2 foreign lang field
- FaxNumberForeignLang? string - Fax number foreign lang field
- DefaultTaxCode? string - Default tax code field
- AdditionalIdNumber? string - Additional ID number field
- UserSignature? Signed32 - User signature field
- 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 - BPLID field
- 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[] - Default documents field
- DefaultCreditCards? DefaultCreditCard[] - Default credit cards field
- 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 - Odata metadata field
- value? UserDefaultGroup[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.administration: UserFieldMD
The UserFieldMD entity of the SAP Business One Service Layer
Fields
- userTablesMD? UserTablesMD - User tables MD field
- validValuesMD? ValidValueMD[] - Valid values MD field
- description? string - Description field
- subType? BoFldSubTypes - Sub type field
- linkedTable? string - Linked table field
- size? Signed32 - Size field
- linkedSystemObject? UDFLinkedSystemObjectTypesEnum - Linked system object field
- linkedUDO? string - Linked UDO field
- name? string - Name field
- defaultValue? string - Default value field
- tableName? string - Table name field
- 'type? BoFieldTypes - Type field
- fieldID? Signed32 - Field ID field
- editSize? Signed32 - Edit size field
- mandatory? BoYesNoEnum - Mandatory field
sap.businessone.administration: UserFieldsMDCollectionResponse
A paged collection of UserFieldsMD entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? UserFieldMD[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.administration: UserGroup
The UserGroup entity of the SAP Business One Service Layer
Fields
- startDate? string - Start date field
- userGroupType? UserGroupCategoryEnum - User group type field
- userGroupId? Signed32 - User group ID field
- userGroupName? string - User group name field
- dueDate? string - Due date field
- userGroupDec? string - User group dec field
- tPLId? Signed32 - T PL ID field
sap.businessone.administration: UserGroupByUserItem
The UserGroupByUserItem complex type of the SAP Business One Service Layer
Fields
- USERId? Signed32 - USER ID field
- GroupId? Signed32 - Group ID field
- StartDate? string - Start date field
- DueDate? string - Due date field
sap.businessone.administration: UserGroupParams
The UserGroupParams complex type of the SAP Business One Service Layer
Fields
- userGroupId? Signed32 - User group ID field
- userGroupName? string - User group name field
sap.businessone.administration: UserGroupsCollectionResponse
A paged collection of UserGroups entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? UserGroup[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.administration: UserKeysMD
The UserKeysMD entity of the SAP Business One Service Layer
Fields
- TableName? string - Table name field
- KeyIndex? Signed32 - Key index field
- KeyName? string - Key name field
- Unique? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- UserKeysMD_Elements? UserKeysMDElement[] - User keys MD elements field
sap.businessone.administration: UserKeysMDCollectionResponse
A paged collection of UserKeysMD entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? UserKeysMD[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.administration: UserKeysMDElement
The UserKeysMD_Element complex type of the SAP Business One Service Layer
Fields
- SubKeyIndex? Signed32 - Sub key index field
- ColumnAlias? string - Column alias field
sap.businessone.administration: UserLanguage
The UserLanguage entity of the SAP Business One Service Layer
Fields
- Code? Signed32 - Code field
- LanguageShortName? string - Language short name field
- LanguageFullName? string - Language full name field
- RelatedSystemLanguage? Signed32 - Related system language field
- UserDefaultGroups? UserDefaultGroup[] - User default groups field
sap.businessone.administration: UserLanguagesCollectionResponse
A paged collection of UserLanguages entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? UserLanguage[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.administration: UserMenuItem
The UserMenuItem complex type of the SAP Business One Service Layer
Fields
- 'type? UserMenuItemTypeEnum - Type field
- position? Signed32 - Position field
- reportPath? string - Report path field
- linkedFormMenuID? Signed32 - Linked form menu ID field
- linkedObjType? string - Linked obj type field
- name? string - Name field
- linkedObjKey? string - Linked obj key field
- linkedFormNum? Signed32 - Linked form number field
sap.businessone.administration: UserMenuParams
The UserMenuParams complex type of the SAP Business One Service Layer
Fields
- userID? Signed32 - User ID field
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 - User menu params field
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[] - User menu items field
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 - User menu params field
- userMenuItems? UserMenuItem[] - User menu items field
sap.businessone.administration: UserObjectMDChildTable
The UserObjectMD_ChildTable complex type of the SAP Business One Service Layer
Fields
- SonNumber? Signed32 - Son number field
- TableName? string - Table name field
- LogTableName? string - Log table name field
- Code? string - Code field
- ObjectName? string - Object name field
sap.businessone.administration: UserObjectMDEnhancedFormColumn
The UserObjectMD_EnhancedFormColumn complex type of the SAP Business One Service Layer
Fields
- Code? string - Code field
- ColumnNumber? Signed32 - Column number field
- ChildNumber? Signed32 - Child number field
- ColumnAlias? string - Column alias field
- ColumnDescription? string - Column description field
- 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 - Column number field
- ColumnAlias? string - Column alias field
- ColumnDescription? string - Column description field
- Code? string - Code field
sap.businessone.administration: UserObjectMDFormColumn
The UserObjectMD_FormColumn complex type of the SAP Business One Service Layer
Fields
- FormColumnAlias? string - Form column alias field
- FormColumnDescription? string - Form column description field
- FormColumnNumber? Signed32 - Form column number field
- SonNumber? Signed32 - Son number field
- Code? string - Code field
- 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 - Table name field
- Code? string - Code field
- LogTableName? string - Log table name field
- 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 - Extension name field
- 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 - Name field
- 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 - Menu caption field
- FatherMenuID? Signed32 - Father menu ID field
- Position? Signed32 - Position field
- MenuUID? string - Menu UID field
- 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 - Form SRF field
- 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[] - User object MD child tables field
- UserObjectMD_FindColumns? UserObjectMDFindColumn[] - User object MD find columns field
- UserObjectMD_FormColumns? UserObjectMDFormColumn[] - User object MD form columns field
- UserObjectMD_EnhancedFormColumns? UserObjectMDEnhancedFormColumn[] - User object MD enhanced form columns field
- 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 - Odata metadata field
- value? UserObjectsMD[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.administration: UserPermissionForm
The UserPermissionForm complex type of the SAP Business One Service Layer
Fields
- FormType? string - Form type field
- DisplayOrder? Signed32 - Display order field
- PermissionID? string - Permission ID field
sap.businessone.administration: UserPermissionItem
The UserPermissionItem complex type of the SAP Business One Service Layer
Fields
- UserCode? Signed32 - User code field
- PermissionID? string - Permission ID field
- 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 - User signature field
- DisplayOrder? Signed32 - Display order field
- PermissionID? string - Permission ID field
- Options? BoUPTOptions - OData EnumType 'BoUPTOptions'. Serialised by the Service Layer as the member name
- Name? string - Name field
- Levels? Signed32 - Levels field
- IsItem? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ParentID? string - Parent ID field
- UserPermissionForms? UserPermissionForm[] - User permission forms field
- 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 - Odata metadata field
- value? UserPermissionTree[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.administration: UserQueriesCollectionResponse
A paged collection of UserQueries entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? UserQuery[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.administration: UserQuery
The UserQuery entity of the SAP Business One Service Layer
Fields
- InternalKey? Signed32 - Internal key field
- QueryCategory? Signed32 - Query category field
- QueryDescription? string - Query description field
- Query? string - Query field
- ProcedureAlias? string - Procedure alias field
- ProcedureName? string - Procedure name field
- QueryType? UserQueryTypeEnum - OData EnumType 'UserQueryTypeEnum'. Serialised by the Service Layer as the member name
- MenuCaption? string - Menu caption field
- ParentMenuID? Signed32 - Parent menu ID field
- MenuPosition? Signed32 - Menu position field
- MenuUniqueID? string - Menu unique ID field
- 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 - Odata metadata field
- value? User[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.administration: UserTablesMD
The UserTablesMD entity of the SAP Business One Service Layer
Fields
- TableName? string - Table name field
- TableDescription? string - Table description field
- 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 - Archive date field field
- 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[] - User fields MD field
- UserObjectsMD? UserObjectsMD[] - User objects MD field
sap.businessone.administration: UserTablesMDCollectionResponse
A paged collection of UserTablesMD entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? UserTablesMD[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.administration: UserValidValue
The UserValidValue complex type of the SAP Business One Service Layer
Fields
- FieldValue? string - Field value field
sap.businessone.administration: ValidValueMD
The ValidValueMD complex type of the SAP Business One Service Layer
Fields
- description? string - Description field
- value? string - Value field
sap.businessone.administration: ValueMappingCollectionResponse
A paged collection of ValueMapping entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? VMB1ValuesData[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.administration: ValueMappingCommunicationCollectionResponse
A paged collection of ValueMappingCommunication entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? ValueMappingCommunicationData[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.administration: ValueMappingCommunicationData
The ValueMappingCommunicationData entity of the SAP Business One Service Layer
Fields
- startDate? string - Start date field
- status? VMCommunicationStatusEnum - Status field
- thirdPartySystemId? Signed32 - Third party system ID field
- endTime? Signed32 - End time field
- message? string - Message field
- objectId? Signed32 - Object ID field
- startTime? Signed32 - Start time field
- absEntry? Signed32 - Abs entry field
- endDate? string - End date field
- communicationType? VMCommunicationTypeEnum - Communication type field
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 - V MB1V alues data field
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 - V MB1V alues data field
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 - V m third party values data field
sap.businessone.administration: VMB1ValuesData
The VM_B1ValuesData entity of the SAP Business One Service Layer
Fields
- vMThirdPartyValuesCollection? VMThirdPartyValuesData[] - V m third party values collection field
- objectId? Signed32 - Object ID field
- objectAbsEntry? string - Object abs entry field
- absEntry? Signed32 - Abs entry field
sap.businessone.administration: VMThirdPartyValuesData
The VM_ThirdPartyValuesData complex type of the SAP Business One Service Layer
Fields
- thirdPartySystemId? Signed32 - Third party system ID field
- lineId? Signed32 - Line ID field
- thirdPartyValue? string - Third party value field
- absEntry? Signed32 - Abs entry field
sap.businessone.administration: WebClientBookmarkTile
The WebClientBookmarkTile entity of the SAP Business One Service Layer
Fields
- urlTarget? string - URL target field
- endpoint? string - Endpoint field
- title? string - Title field
- guid? string - Guid field
- info? string - Information field
- bindType? string - Bind type field
- subTitle? string - Sub title field
sap.businessone.administration: WebClientBookmarkTileParams
The WebClientBookmarkTileParams complex type of the SAP Business One Service Layer
Fields
- guid? string - Guid field
sap.businessone.administration: WebClientBookmarkTilesCollectionResponse
A paged collection of WebClientBookmarkTiles entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? WebClientBookmarkTile[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.administration: WebClientDashboard
The WebClientDashboard entity of the SAP Business One Service Layer
Fields
- userId? Signed32 - User ID field
- content? string - Content field
- guid? string - Guid field
- webClientDashboardCards? WebClientDashboardCard[] - Web client dashboard cards field
- sys? BoYesNoEnum - Sys field
sap.businessone.administration: WebClientDashboardCard
The WebClientDashboardCard complex type of the SAP Business One Service Layer
Fields
- version? string - Version field
- userId? Signed32 - User ID field
- content? string - Content field
- guid? string - Guid field
- sys? BoYesNoEnum - Sys field
sap.businessone.administration: WebClientDashboardParams
The WebClientDashboardParams complex type of the SAP Business One Service Layer
Fields
- guid? string - Guid field
sap.businessone.administration: WebClientDashboardsCollectionResponse
A paged collection of WebClientDashboards entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? WebClientDashboard[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.administration: WebClientFormSetting
The WebClientFormSetting entity of the SAP Business One Service Layer
Fields
- webClientFormSettingItems? WebClientFormSettingItem[] - Web client form setting items field
- docObjectCode? string - Document object code field
- userId? Signed32 - User ID field
- guid? string - Guid field
- formId? string - Form ID field
sap.businessone.administration: WebClientFormSettingItem
The WebClientFormSettingItem complex type of the SAP Business One Service Layer
Fields
- 'order? Signed32 - Order field
- visible? string - Visible field
- visibleInGrid? string - Visible in grid field
- editable? string - Editable field
- guid? string - Guid field
- itemId? string - Item ID field
- editableInGrid? string - Editable in grid field
sap.businessone.administration: WebClientFormSettingParams
The WebClientFormSettingParams complex type of the SAP Business One Service Layer
Fields
- guid? string - Guid field
sap.businessone.administration: WebClientFormSettingsCollectionResponse
A paged collection of WebClientFormSettings entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? WebClientFormSetting[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.administration: WebClientLaunchpad
The WebClientLaunchpad entity of the SAP Business One Service Layer
Fields
- themeId? string - Theme ID field
- notificationShowDays? Signed32 - Notification show days field
- userId? Signed32 - User ID field
- guid? string - Guid field
- webClientLaunchpadGroups? WebClientLaunchpadGroup[] - Web client launchpad groups field
- displayQuickView? BoYesNoEnum - Display quick view field
sap.businessone.administration: WebClientLaunchpadGroup
The WebClientLaunchpadGroup complex type of the SAP Business One Service Layer
Fields
- 'order? Signed32 - Order field
- groupName? string - Group name field
- visible? BoYesNoEnum - Visible field
- guid? string - Guid field
- webClientLaunchpadTiles? WebClientLaunchpadTile[] - Web client launchpad tiles field
- groupId? string - Group ID field
sap.businessone.administration: WebClientLaunchpadParams
The WebClientLaunchpadParams complex type of the SAP Business One Service Layer
Fields
- guid? string - Guid field
sap.businessone.administration: WebClientLaunchpadsCollectionResponse
A paged collection of WebClientLaunchpads entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? WebClientLaunchpad[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.administration: WebClientLaunchpadTile
The WebClientLaunchpadTile complex type of the SAP Business One Service Layer
Fields
- 'order? Signed32 - Order field
- tileId? string - Tile ID field
- guid? string - Guid field
sap.businessone.administration: WebClientListviewFilter
The WebClientListviewFilter entity of the SAP Business One Service Layer
Fields
- tableName? string - Table name field
- userId? Signed32 - User ID field
- guid? string - Guid field
- filterName? string - Filter name field
- webClientListviewFilterConditions? WebClientListviewFilterCondition[] - Web client listview filter conditions field
sap.businessone.administration: WebClientListviewFilterCondition
The WebClientListviewFilterCondition complex type of the SAP Business One Service Layer
Fields
- 'order? Signed32 - Order field
- columnName? string - Column name field
- value? string - Value field
- guid? string - Guid field
- compareExpression? string - Compare expression field
sap.businessone.administration: WebClientListviewFilterParams
The WebClientListviewFilterParams complex type of the SAP Business One Service Layer
Fields
- guid? string - Guid field
sap.businessone.administration: WebClientListviewFiltersCollectionResponse
A paged collection of WebClientListviewFilters entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? WebClientListviewFilter[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.administration: WebClientNotification
The WebClientNotification entity of the SAP Business One Service Layer
Fields
- readStatus? string - Read status field
- notiType? Signed32 - Noti type field
- activityDate? string - Activity date field
- userId? Signed32 - User ID field
- isDismissed? string - Is dismissed field
- guid? string - Guid field
sap.businessone.administration: WebClientNotificationParams
The WebClientNotificationParams complex type of the SAP Business One Service Layer
Fields
- guid? string - Guid field
sap.businessone.administration: WebClientNotificationsCollectionResponse
A paged collection of WebClientNotifications entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? WebClientNotification[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.administration: WebClientPreference
The WebClientPreference entity of the SAP Business One Service Layer
Fields
- tableName? string - Table name field
- columnName? string - Column name field
- defaultValue? string - Default value field
- userId? Signed32 - User ID field
- guid? string - Guid field
sap.businessone.administration: WebClientPreferenceParams
The WebClientPreferenceParams complex type of the SAP Business One Service Layer
Fields
- guid? string - Guid field
sap.businessone.administration: WebClientPreferencesCollectionResponse
A paged collection of WebClientPreferences entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? WebClientPreference[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.administration: WebClientRecentActivitiesCollectionResponse
A paged collection of WebClientRecentActivities entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? WebClientRecentActivity[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.administration: WebClientRecentActivity
The WebClientRecentActivity entity of the SAP Business One Service Layer
Fields
- appId? string - App ID field
- userId? Signed32 - User ID field
- title? string - Title field
- recentDay? string - Recent day field
- guid? string - Guid field
- count? Signed32 - Count field
- appType? string - App type field
- timestamp? string - Timestamp field
- url? string - URL field
- usageArray? string - Usage array field
sap.businessone.administration: WebClientRecentActivityParams
The WebClientRecentActivityParams complex type of the SAP Business One Service Layer
Fields
- guid? string - Guid field
sap.businessone.administration: WebClientVariant
The WebClientVariant entity of the SAP Business One Service Layer
Fields
- 'order? Signed32 - Order field
- overviewCustomization? string - Overview customization field
- reportCustomization? string - Report customization field
- userFilter? string - User filter field
- webClientVariantGroupByCollection? WebClientVariantGroupBy[] - Web client variant group by collection field
- webClientVariantMChartCollection? WebClientVariantMChart[] - Web client variant m chart collection field
- chartCustomization? string - Chart customization field
- guid? string - Guid field
- filterBarLayout? string - Filter bar layout field
- objectName? string - Object name field
- name? string - Name field
- webClientVariantSortByCollection? WebClientVariantSortBy[] - Web client variant sort by collection field
- webClientVariantEmbeddedChartCollection? WebClientVariantEmbeddedChart[] - Web client variant embedded chart collection field
- subViewType? string - Sub view type field
- version? Signed32 - Version field
- userId? Signed32 - User ID field
- isPublic? BoYesNoEnum - Is public field
- viewId? string - View ID field
- webClientVariantSelectedColumnCollection? WebClientVariantSelectedColumn[] - Web client variant selected column collection field
- isSystem? BoYesNoEnum - Is system field
- systemFilter? string - System filter field
- viewType? string - View type field
- conditionFilter? string - Condition filter field
sap.businessone.administration: WebClientVariantEmbeddedChart
The WebClientVariantEmbeddedChart complex type of the SAP Business One Service Layer
Fields
- timeAxis? string - Time axis field
- webClientVariantEmbeddedChartValue2Collection? WebClientVariantEmbeddedChartValue2[] - Web client variant embedded chart value2 collection field
- shape? string - Shape field
- webClientVariantEmbeddedChartValue1Collection? WebClientVariantEmbeddedChartValue1[] - Web client variant embedded chart value1 collection field
- color? string - Color field
- bubbleWidth? string - Bubble width field
- chartType? string - Chart type field
- guid? string - Guid field
- isShowLegend? BoYesNoEnum - Is show legend field
- webClientVariantEmbeddedChartSizeCollection? WebClientVariantEmbeddedChartSize[] - Web client variant embedded chart size collection field
- categoryAxis1? string - Category axis1 field
- categoryAxis2? string - Category axis2 field
sap.businessone.administration: WebClientVariantEmbeddedChartSize
The WebClientVariantEmbeddedChartSize complex type of the SAP Business One Service Layer
Fields
- 'order? Signed32 - Order field
- columnName? string - Column name field
- guid? string - Guid field
sap.businessone.administration: WebClientVariantEmbeddedChartValue1
The WebClientVariantEmbeddedChartValue1 complex type of the SAP Business One Service Layer
Fields
- 'order? Signed32 - Order field
- columnName? string - Column name field
- guid? string - Guid field
sap.businessone.administration: WebClientVariantEmbeddedChartValue2
The WebClientVariantEmbeddedChartValue2 complex type of the SAP Business One Service Layer
Fields
- 'order? Signed32 - Order field
- columnName? string - Column name field
- guid? string - Guid field
sap.businessone.administration: WebClientVariantGroup
The WebClientVariantGroup entity of the SAP Business One Service Layer
Fields
- userId? Signed32 - User ID field
- viewId? string - View ID field
- guid? string - Guid field
- defaultVariant? string - Default variant field
- viewType? string - View type field
- objectName? string - Object name field
sap.businessone.administration: WebClientVariantGroupBy
The WebClientVariantGroupBy complex type of the SAP Business One Service Layer
Fields
- 'order? Signed32 - Order field
- columnName? string - Column name field
- guid? string - Guid field
sap.businessone.administration: WebClientVariantGroupParams
The WebClientVariantGroupParams complex type of the SAP Business One Service Layer
Fields
- guid? string - Guid field
sap.businessone.administration: WebClientVariantGroupsCollectionResponse
A paged collection of WebClientVariantGroups entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? WebClientVariantGroup[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.administration: WebClientVariantMChart
The WebClientVariantMChart complex type of the SAP Business One Service Layer
Fields
- timeAxis? string - Time axis field
- shape? string - Shape field
- color? string - Color field
- webClientVariantMChartSizeCollection? WebClientVariantMChartSize[] - Web client variant m chart size collection field
- bubbleWidth? string - Bubble width field
- webClientVariantMChartValue2Collection? WebClientVariantMChartValue2[] - Web client variant m chart value2 collection field
- chartType? string - Chart type field
- guid? string - Guid field
- isShowLegend? BoYesNoEnum - Is show legend field
- categoryAxis1? string - Category axis1 field
- categoryAxis2? string - Category axis2 field
- webClientVariantMChartValue1Collection? WebClientVariantMChartValue1[] - Web client variant m chart value1 collection field
sap.businessone.administration: WebClientVariantMChartSize
The WebClientVariantMChartSize complex type of the SAP Business One Service Layer
Fields
- 'order? Signed32 - Order field
- columnName? string - Column name field
- guid? string - Guid field
sap.businessone.administration: WebClientVariantMChartValue1
The WebClientVariantMChartValue1 complex type of the SAP Business One Service Layer
Fields
- 'order? Signed32 - Order field
- columnName? string - Column name field
- guid? string - Guid field
sap.businessone.administration: WebClientVariantMChartValue2
The WebClientVariantMChartValue2 complex type of the SAP Business One Service Layer
Fields
- 'order? Signed32 - Order field
- columnName? string - Column name field
- guid? string - Guid field
sap.businessone.administration: WebClientVariantParams
The WebClientVariantParams complex type of the SAP Business One Service Layer
Fields
- guid? string - Guid field
sap.businessone.administration: WebClientVariantsCollectionResponse
A paged collection of WebClientVariants entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? WebClientVariant[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.administration: WebClientVariantSelectedColumn
The WebClientVariantSelectedColumn complex type of the SAP Business One Service Layer
Fields
- 'order? Signed32 - Order field
- columnName? string - Column name field
- guid? string - Guid field
sap.businessone.administration: WebClientVariantSortBy
The WebClientVariantSortBy complex type of the SAP Business One Service Layer
Fields
- 'order? Signed32 - Order field
- columnName? string - Column name field
- guid? string - Guid field
- direction? string - Direction field
sap.businessone.administration: WIPMapping
The WIPMapping complex type of the SAP Business One Service Layer
Fields
- accountTo? string - Account to field
- absoluteEntry? Signed32 - Absolute entry field
- accountFrom? string - Account from field
- lineNumber? Signed32 - Line number field
sap.businessone.administration: WorkflowApprovalTaskListParams
The WorkflowApprovalTaskListParams complex type of the SAP Business One Service Layer
Fields
- status? string - Status field
sap.businessone.administration: WorkflowTask
The WorkflowTask complex type of the SAP Business One Service Layer
Fields
- status? string - Status field
- owner? string - Owner field
- taskID? Signed32 - Task ID field
- description? string - Description field
- instanceID? Signed32 - Instance ID field
- priority? Signed32 - Priority field
- operation? string - Operation field
- name? string - Name field
- workflowTaskNoteCollection? WorkflowTaskNote[] - Workflow task note collection field
- 'type? string - Type field
- workflowTaskOutputObjectCollection? WorkflowTaskOutputObject[] - Workflow task output object collection field
- workflowTaskInputObjectCollection? WorkflowTaskInputObject[] - Workflow task input object collection field
- templateName? string - Template name field
- templateID? string - Template ID field
sap.businessone.administration: WorkflowTaskCompleteParams
The WorkflowTaskCompleteParams complex type of the SAP Business One Service Layer
Fields
- taskID? Signed32 - Task ID field
- note? string - Note field
- triggerParams? string - Trigger params field
sap.businessone.administration: WorkflowTaskInputObject
The WorkflowTaskInputObject complex type of the SAP Business One Service Layer
Fields
- 'type? string - Type field
- taskID? Signed32 - Task ID field
- subType? string - Sub type field
- lineId? Signed32 - Line ID field
- 'key? string - Key field
- detail? string - Detail field
sap.businessone.administration: WorkflowTaskNote
The WorkflowTaskNote complex type of the SAP Business One Service Layer
Fields
- noteDate? string - Note date field
- taskID? Signed32 - Task ID field
- lineId? Signed32 - Line ID field
- note? string - Note field
- creator? string - Creator field
sap.businessone.administration: WorkflowTaskOutputObject
The WorkflowTaskOutputObject complex type of the SAP Business One Service Layer
Fields
- 'type? string - Type field
- taskID? Signed32 - Task ID field
- subType? string - Sub type field
- lineId? string - Line ID field
- 'key? string - Key field
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 - Workflow task complete params field
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 - Workflow approval task list params field
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: 6 days ago
Version: 1.0.2
License: Apache-2.0
Compatibility
Platform: any
Ballerina version: 2201.13.0
GraalVM compatible: Yes
Pull count
Total: 2
Current verison: 2
Weekly downloads
Keywords
Name/SAP Business One Administration
Area/ERP & Business Operations
Vendor/SAP
Cost/Paid
Type/Connector
SAP Business One
Administration
ERP
Contributors