sap.businessone.localization
Module sap.businessone.localization
API
Definitions
ballerinax/sap.businessone.localization Ballerina library
Overview
SAP Business One is an enterprise resource planning (ERP) solution designed for small and midsize businesses by SAP SE. Its Service Layer exposes the Business One business objects through an OData web service interface.
The SAP Business One Localization & Electronic Documents connector provides APIs for the country-specific and electronic document objects of SAP Business One: electronic documents and file formats, Brazil Nota Fiscal codes, India GST data, Israel deduction documents, and more, exposed through the SAP Business One Service Layer (OData).
Key Features
- Process electronic documents and communication actions
- Maintain Brazil Nota Fiscal, CEST, and NCM code setup
- Manage India HSN/SAC codes and e-way bill transporters
- Work with Israel deduction (ISD) documents
Setup guide
The connector requires an SAP Business One installation with the Service Layer component enabled (available for
SAP Business One, version for SAP HANA, and SAP Business One on Microsoft SQL Server 9.3 PL10+). The Service Layer
endpoint is https://<host>:50000/b1s/v1 by default. A Business One user with a license and the relevant object
authorizations is needed; sessions are opened against a specific company database (schema).
Quickstart
To use the sap.businessone.localization connector in your Ballerina application, modify the .bal file as follows:
Step 1: Import the module
import ballerinax/sap.businessone.localization;
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 = ?; localization:Client b1Client = check new ( {companyDb, username, password}, serviceUrl = serviceUrl );
Step 3: Invoke the connector operation
localization:ElectronicDocuments_CollectionResponse response = check b1Client->electronicDocumentsList();
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.localization: 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
bEMReplicationPeriodServiceGetList
function bEMReplicationPeriodServiceGetList(map<string|string[]> headers) returns inline_response_200|errorGet list
Return Type
- inline_response_200|error - Function result
listBEMReplicationPeriods
function listBEMReplicationPeriods(ListBEMReplicationPeriodsHeaders headers, *ListBEMReplicationPeriodsQueries queries) returns BEMReplicationPeriodsCollectionResponse|errorQuery the BEMReplicationPeriods collection
Parameters
- headers ListBEMReplicationPeriodsHeaders (default {}) - Headers to be sent with the request
- queries *ListBEMReplicationPeriodsQueries - Queries to be sent with the request
Return Type
- BEMReplicationPeriodsCollectionResponse|error - A page of entities
createBEMReplicationPeriods
function createBEMReplicationPeriods(BEMReplicationPeriod payload, map<string|string[]> headers) returns BEMReplicationPeriod|errorCreate a new BEMReplicationPeriod
Parameters
- payload BEMReplicationPeriod - Request payload
Return Type
- BEMReplicationPeriod|error - The created entity
getBEMReplicationPeriods
function getBEMReplicationPeriods(Signed32 absEntry, map<string|string[]> headers, *GetBEMReplicationPeriodsQueries queries) returns BEMReplicationPeriod|errorGet a single BEMReplicationPeriod by key
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
- queries *GetBEMReplicationPeriodsQueries - Queries to be sent with the request
Return Type
- BEMReplicationPeriod|error - The requested entity
deleteBEMReplicationPeriods
function deleteBEMReplicationPeriods(Signed32 absEntry, map<string|string[]> headers) returns error?Delete a BEMReplicationPeriod
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateBEMReplicationPeriods
function updateBEMReplicationPeriods(Signed32 absEntry, BEMReplicationPeriod payload, map<string|string[]> headers) returns error?Partially update a BEMReplicationPeriod (PATCH/MERGE semantics)
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
- payload BEMReplicationPeriod - Request payload
Return Type
- error? - Updated. No content returned
listBrazilBeverageIndexers
function listBrazilBeverageIndexers(ListBrazilBeverageIndexersHeaders headers, *ListBrazilBeverageIndexersQueries queries) returns BrazilBeverageIndexersCollectionResponse|errorQuery the BrazilBeverageIndexers collection
Parameters
- headers ListBrazilBeverageIndexersHeaders (default {}) - Headers to be sent with the request
- queries *ListBrazilBeverageIndexersQueries - Queries to be sent with the request
Return Type
- BrazilBeverageIndexersCollectionResponse|error - A page of entities
createBrazilBeverageIndexers
function createBrazilBeverageIndexers(BrazilBeverageIndexer payload, map<string|string[]> headers) returns BrazilBeverageIndexer|errorCreate a new BrazilBeverageIndexer
Parameters
- payload BrazilBeverageIndexer - Request payload
Return Type
- BrazilBeverageIndexer|error - The created entity
getBrazilBeverageIndexers
function getBrazilBeverageIndexers(Signed32 beverageID, map<string|string[]> headers, *GetBrazilBeverageIndexersQueries queries) returns BrazilBeverageIndexer|errorGet a single BrazilBeverageIndexer by key
Parameters
- beverageID Signed32 - Key property 'BeverageID' (Edm.Int32)
- queries *GetBrazilBeverageIndexersQueries - Queries to be sent with the request
Return Type
- BrazilBeverageIndexer|error - The requested entity
deleteBrazilBeverageIndexers
function deleteBrazilBeverageIndexers(Signed32 beverageID, map<string|string[]> headers) returns error?Delete a BrazilBeverageIndexer
Parameters
- beverageID Signed32 - Key property 'BeverageID' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateBrazilBeverageIndexers
function updateBrazilBeverageIndexers(Signed32 beverageID, BrazilBeverageIndexer payload, map<string|string[]> headers) returns error?Partially update a BrazilBeverageIndexer (PATCH/MERGE semantics)
Parameters
- beverageID Signed32 - Key property 'BeverageID' (Edm.Int32)
- payload BrazilBeverageIndexer - Request payload
Return Type
- error? - Updated. No content returned
brazilBeverageIndexersServiceGetList
function brazilBeverageIndexersServiceGetList(map<string|string[]> headers) returns inline_response_200_1|errorGet list
Return Type
- inline_response_200_1|error - Function result
listBrazilFuelIndexers
function listBrazilFuelIndexers(ListBrazilFuelIndexersHeaders headers, *ListBrazilFuelIndexersQueries queries) returns BrazilFuelIndexersCollectionResponse|errorQuery the BrazilFuelIndexers collection
Parameters
- headers ListBrazilFuelIndexersHeaders (default {}) - Headers to be sent with the request
- queries *ListBrazilFuelIndexersQueries - Queries to be sent with the request
Return Type
- BrazilFuelIndexersCollectionResponse|error - A page of entities
createBrazilFuelIndexers
function createBrazilFuelIndexers(BrazilFuelIndexer payload, map<string|string[]> headers) returns BrazilFuelIndexer|errorCreate a new BrazilFuelIndexer
Parameters
- payload BrazilFuelIndexer - Request payload
Return Type
- BrazilFuelIndexer|error - The created entity
getBrazilFuelIndexers
function getBrazilFuelIndexers(Signed32 fuelID, map<string|string[]> headers, *GetBrazilFuelIndexersQueries queries) returns BrazilFuelIndexer|errorGet a single BrazilFuelIndexer by key
Parameters
- fuelID Signed32 - Key property 'FuelID' (Edm.Int32)
- queries *GetBrazilFuelIndexersQueries - Queries to be sent with the request
Return Type
- BrazilFuelIndexer|error - The requested entity
deleteBrazilFuelIndexers
Delete a BrazilFuelIndexer
Parameters
- fuelID Signed32 - Key property 'FuelID' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateBrazilFuelIndexers
function updateBrazilFuelIndexers(Signed32 fuelID, BrazilFuelIndexer payload, map<string|string[]> headers) returns error?Partially update a BrazilFuelIndexer (PATCH/MERGE semantics)
Parameters
- fuelID Signed32 - Key property 'FuelID' (Edm.Int32)
- payload BrazilFuelIndexer - Request payload
Return Type
- error? - Updated. No content returned
brazilFuelIndexersServiceGetList
function brazilFuelIndexersServiceGetList(map<string|string[]> headers) returns inline_response_200_2|errorGet list
Return Type
- inline_response_200_2|error - Function result
listBrazilMultiIndexers
function listBrazilMultiIndexers(ListBrazilMultiIndexersHeaders headers, *ListBrazilMultiIndexersQueries queries) returns BrazilMultiIndexersCollectionResponse|errorQuery the BrazilMultiIndexers collection
Parameters
- headers ListBrazilMultiIndexersHeaders (default {}) - Headers to be sent with the request
- queries *ListBrazilMultiIndexersQueries - Queries to be sent with the request
Return Type
- BrazilMultiIndexersCollectionResponse|error - A page of entities
createBrazilMultiIndexers
function createBrazilMultiIndexers(BrazilMultiIndexer payload, map<string|string[]> headers) returns BrazilMultiIndexer|errorCreate a new BrazilMultiIndexer
Parameters
- payload BrazilMultiIndexer - Request payload
Return Type
- BrazilMultiIndexer|error - The created entity
getBrazilMultiIndexers
function getBrazilMultiIndexers(Signed32 iD, map<string|string[]> headers, *GetBrazilMultiIndexersQueries queries) returns BrazilMultiIndexer|errorGet a single BrazilMultiIndexer by key
Parameters
- iD Signed32 - Key property 'ID' (Edm.Int32)
- queries *GetBrazilMultiIndexersQueries - Queries to be sent with the request
Return Type
- BrazilMultiIndexer|error - The requested entity
deleteBrazilMultiIndexers
Delete a BrazilMultiIndexer
Parameters
- iD Signed32 - Key property 'ID' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateBrazilMultiIndexers
function updateBrazilMultiIndexers(Signed32 iD, BrazilMultiIndexer payload, map<string|string[]> headers) returns error?Partially update a BrazilMultiIndexer (PATCH/MERGE semantics)
Return Type
- error? - Updated. No content returned
brazilMultiIndexersGetIndexerTypeList
function brazilMultiIndexersGetIndexerTypeList(Signed32 iD, map<string|string[]> headers) returns inline_response_200_3|errorBound action 'GetIndexerTypeList' on BrazilMultiIndexers (binding type BrazilMultiIndexer)
Parameters
- iD Signed32 - Key property 'ID' (Edm.Int32)
Return Type
- inline_response_200_3|error - Function result
listBrazilNumericIndexers
function listBrazilNumericIndexers(ListBrazilNumericIndexersHeaders headers, *ListBrazilNumericIndexersQueries queries) returns BrazilNumericIndexersCollectionResponse|errorQuery the BrazilNumericIndexers collection
Parameters
- headers ListBrazilNumericIndexersHeaders (default {}) - Headers to be sent with the request
- queries *ListBrazilNumericIndexersQueries - Queries to be sent with the request
Return Type
- BrazilNumericIndexersCollectionResponse|error - A page of entities
createBrazilNumericIndexers
function createBrazilNumericIndexers(BrazilNumericIndexer payload, map<string|string[]> headers) returns BrazilNumericIndexer|errorCreate a new BrazilNumericIndexer
Parameters
- payload BrazilNumericIndexer - Request payload
Return Type
- BrazilNumericIndexer|error - The created entity
getBrazilNumericIndexers
function getBrazilNumericIndexers(Signed32 iD, map<string|string[]> headers, *GetBrazilNumericIndexersQueries queries) returns BrazilNumericIndexer|errorGet a single BrazilNumericIndexer by key
Parameters
- iD Signed32 - Key property 'ID' (Edm.Int32)
- queries *GetBrazilNumericIndexersQueries - Queries to be sent with the request
Return Type
- BrazilNumericIndexer|error - The requested entity
deleteBrazilNumericIndexers
Delete a BrazilNumericIndexer
Parameters
- iD Signed32 - Key property 'ID' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateBrazilNumericIndexers
function updateBrazilNumericIndexers(Signed32 iD, BrazilNumericIndexer payload, map<string|string[]> headers) returns error?Partially update a BrazilNumericIndexer (PATCH/MERGE semantics)
Return Type
- error? - Updated. No content returned
brazilNumericIndexersGetIndexerTypeList
function brazilNumericIndexersGetIndexerTypeList(Signed32 iD, map<string|string[]> headers) returns inline_response_200_4|errorBound action 'GetIndexerTypeList' on BrazilNumericIndexers (binding type BrazilNumericIndexer)
Parameters
- iD Signed32 - Key property 'ID' (Edm.Int32)
Return Type
- inline_response_200_4|error - Function result
listBrazilStringIndexers
function listBrazilStringIndexers(ListBrazilStringIndexersHeaders headers, *ListBrazilStringIndexersQueries queries) returns BrazilStringIndexersCollectionResponse|errorQuery the BrazilStringIndexers collection
Parameters
- headers ListBrazilStringIndexersHeaders (default {}) - Headers to be sent with the request
- queries *ListBrazilStringIndexersQueries - Queries to be sent with the request
Return Type
- BrazilStringIndexersCollectionResponse|error - A page of entities
createBrazilStringIndexers
function createBrazilStringIndexers(BrazilStringIndexer payload, map<string|string[]> headers) returns BrazilStringIndexer|errorCreate a new BrazilStringIndexer
Parameters
- payload BrazilStringIndexer - Request payload
Return Type
- BrazilStringIndexer|error - The created entity
getBrazilStringIndexers
function getBrazilStringIndexers(Signed32 iD, map<string|string[]> headers, *GetBrazilStringIndexersQueries queries) returns BrazilStringIndexer|errorGet a single BrazilStringIndexer by key
Parameters
- iD Signed32 - Key property 'ID' (Edm.Int32)
- queries *GetBrazilStringIndexersQueries - Queries to be sent with the request
Return Type
- BrazilStringIndexer|error - The requested entity
deleteBrazilStringIndexers
Delete a BrazilStringIndexer
Parameters
- iD Signed32 - Key property 'ID' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateBrazilStringIndexers
function updateBrazilStringIndexers(Signed32 iD, BrazilStringIndexer payload, map<string|string[]> headers) returns error?Partially update a BrazilStringIndexer (PATCH/MERGE semantics)
Return Type
- error? - Updated. No content returned
brazilStringIndexersGetIndexerTypeList
function brazilStringIndexersGetIndexerTypeList(Signed32 iD, map<string|string[]> headers) returns inline_response_200_5|errorBound action 'GetIndexerTypeList' on BrazilStringIndexers (binding type BrazilStringIndexer)
Parameters
- iD Signed32 - Key property 'ID' (Edm.Int32)
Return Type
- inline_response_200_5|error - Function result
listCESTCodes
function listCESTCodes(ListCESTCodesHeaders headers, *ListCESTCodesQueries queries) returns CESTCodesCollectionResponse|errorQuery the CESTCodes collection
Parameters
- headers ListCESTCodesHeaders (default {}) - Headers to be sent with the request
- queries *ListCESTCodesQueries - Queries to be sent with the request
Return Type
- CESTCodesCollectionResponse|error - A page of entities
createCESTCodes
function createCESTCodes(CESTCodeData payload, map<string|string[]> headers) returns CESTCodeData|errorCreate a new CESTCodeData
Parameters
- payload CESTCodeData - Request payload
Return Type
- CESTCodeData|error - The created entity
getCESTCodes
function getCESTCodes(Signed32 absEntry, map<string|string[]> headers, *GetCESTCodesQueries queries) returns CESTCodeData|errorGet a single CESTCodeData by key
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
- queries *GetCESTCodesQueries - Queries to be sent with the request
Return Type
- CESTCodeData|error - The requested entity
deleteCESTCodes
Delete a CESTCodeData
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateCESTCodes
function updateCESTCodes(Signed32 absEntry, CESTCodeData payload, map<string|string[]> headers) returns error?Partially update a CESTCodeData (PATCH/MERGE semantics)
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
- payload CESTCodeData - Request payload
Return Type
- error? - Updated. No content returned
cIGCodeServiceGetList
function cIGCodeServiceGetList(map<string|string[]> headers) returns inline_response_200_6|errorGet list
Return Type
- inline_response_200_6|error - Function result
listCIGCodes
function listCIGCodes(ListCIGCodesHeaders headers, *ListCIGCodesQueries queries) returns CIGCodesCollectionResponse|errorQuery the CIGCodes collection
Parameters
- headers ListCIGCodesHeaders (default {}) - Headers to be sent with the request
- queries *ListCIGCodesQueries - Queries to be sent with the request
Return Type
- CIGCodesCollectionResponse|error - A page of entities
createCIGCodes
Create a new CIGCode
Parameters
- payload CIGCode - Request payload
getCIGCodes
function getCIGCodes(Signed32 absEntry, map<string|string[]> headers, *GetCIGCodesQueries queries) returns CIGCode|errorGet a single CIGCode by key
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
- queries *GetCIGCodesQueries - Queries to be sent with the request
deleteCIGCodes
Delete a CIGCode
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateCIGCodes
function updateCIGCodes(Signed32 absEntry, CIGCode payload, map<string|string[]> headers) returns error?Partially update a CIGCode (PATCH/MERGE semantics)
Return Type
- error? - Updated. No content returned
cUPCodeServiceGetList
function cUPCodeServiceGetList(map<string|string[]> headers) returns inline_response_200_7|errorGet list
Return Type
- inline_response_200_7|error - Function result
listCUPCodes
function listCUPCodes(ListCUPCodesHeaders headers, *ListCUPCodesQueries queries) returns CUPCodesCollectionResponse|errorQuery the CUPCodes collection
Parameters
- headers ListCUPCodesHeaders (default {}) - Headers to be sent with the request
- queries *ListCUPCodesQueries - Queries to be sent with the request
Return Type
- CUPCodesCollectionResponse|error - A page of entities
createCUPCodes
Create a new CUPCode
Parameters
- payload CUPCode - Request payload
getCUPCodes
function getCUPCodes(Signed32 absEntry, map<string|string[]> headers, *GetCUPCodesQueries queries) returns CUPCode|errorGet a single CUPCode by key
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
- queries *GetCUPCodesQueries - Queries to be sent with the request
deleteCUPCodes
Delete a CUPCode
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateCUPCodes
function updateCUPCodes(Signed32 absEntry, CUPCode payload, map<string|string[]> headers) returns error?Partially update a CUPCode (PATCH/MERGE semantics)
Return Type
- error? - Updated. No content returned
listCertificateSeries
function listCertificateSeries(ListCertificateSeriesHeaders headers, *ListCertificateSeriesQueries queries) returns CertificateSeriesCollectionResponse|errorQuery the CertificateSeries collection
Parameters
- headers ListCertificateSeriesHeaders (default {}) - Headers to be sent with the request
- queries *ListCertificateSeriesQueries - Queries to be sent with the request
Return Type
- CertificateSeriesCollectionResponse|error - A page of entities
createCertificateSeries
function createCertificateSeries(CertificateSeries payload, map<string|string[]> headers) returns CertificateSeries|errorCreate a new CertificateSeries
Parameters
- payload CertificateSeries - Request payload
Return Type
- CertificateSeries|error - The created entity
getCertificateSeries
function getCertificateSeries(Signed32 absEntry, map<string|string[]> headers, *GetCertificateSeriesQueries queries) returns CertificateSeries|errorGet a single CertificateSeries by key
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
- queries *GetCertificateSeriesQueries - Queries to be sent with the request
Return Type
- CertificateSeries|error - The requested entity
deleteCertificateSeries
Delete a CertificateSeries
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateCertificateSeries
function updateCertificateSeries(Signed32 absEntry, CertificateSeries payload, map<string|string[]> headers) returns error?Partially update a CertificateSeries (PATCH/MERGE semantics)
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
- payload CertificateSeries - Request payload
Return Type
- error? - Updated. No content returned
certificateSeriesServiceGetCertificateSeriesList
function certificateSeriesServiceGetCertificateSeriesList(map<string|string[]> headers) returns inline_response_200_8|errorGet certificate series list
Return Type
- inline_response_200_8|error - Function result
listCustomsDeclaration
function listCustomsDeclaration(ListCustomsDeclarationHeaders headers, *ListCustomsDeclarationQueries queries) returns CustomsDeclarationCollectionResponse|errorQuery the CustomsDeclaration collection
Parameters
- headers ListCustomsDeclarationHeaders (default {}) - Headers to be sent with the request
- queries *ListCustomsDeclarationQueries - Queries to be sent with the request
Return Type
- CustomsDeclarationCollectionResponse|error - A page of entities
createCustomsDeclaration
function createCustomsDeclaration(CustomsDeclaration payload, map<string|string[]> headers) returns CustomsDeclaration|errorCreate a new CustomsDeclaration
Parameters
- payload CustomsDeclaration - Request payload
Return Type
- CustomsDeclaration|error - The created entity
getCustomsDeclaration
function getCustomsDeclaration(string cCDNum, map<string|string[]> headers, *GetCustomsDeclarationQueries queries) returns CustomsDeclaration|errorGet a single CustomsDeclaration by key
Parameters
- cCDNum string - Key property 'CCDNum' (Edm.String)
- queries *GetCustomsDeclarationQueries - Queries to be sent with the request
Return Type
- CustomsDeclaration|error - The requested entity
deleteCustomsDeclaration
Delete a CustomsDeclaration
Parameters
- cCDNum string - Key property 'CCDNum' (Edm.String)
Return Type
- error? - Deleted. No content returned
updateCustomsDeclaration
function updateCustomsDeclaration(string cCDNum, CustomsDeclaration payload, map<string|string[]> headers) returns error?Partially update a CustomsDeclaration (PATCH/MERGE semantics)
Parameters
- cCDNum string - Key property 'CCDNum' (Edm.String)
- payload CustomsDeclaration - Request payload
Return Type
- error? - Updated. No content returned
listDNFCodeSetup
function listDNFCodeSetup(ListDNFCodeSetupHeaders headers, *ListDNFCodeSetupQueries queries) returns DNFCodeSetupCollectionResponse|errorQuery the DNFCodeSetup collection
Parameters
- headers ListDNFCodeSetupHeaders (default {}) - Headers to be sent with the request
- queries *ListDNFCodeSetupQueries - Queries to be sent with the request
Return Type
- DNFCodeSetupCollectionResponse|error - A page of entities
createDNFCodeSetup
function createDNFCodeSetup(DNFCodeSetup payload, map<string|string[]> headers) returns DNFCodeSetup|errorCreate a new DNFCodeSetup
Parameters
- payload DNFCodeSetup - Request payload
Return Type
- DNFCodeSetup|error - The created entity
getDNFCodeSetup
function getDNFCodeSetup(Signed32 absEntry, map<string|string[]> headers, *GetDNFCodeSetupQueries queries) returns DNFCodeSetup|errorGet a single DNFCodeSetup by key
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
- queries *GetDNFCodeSetupQueries - Queries to be sent with the request
Return Type
- DNFCodeSetup|error - The requested entity
deleteDNFCodeSetup
Delete a DNFCodeSetup
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateDNFCodeSetup
function updateDNFCodeSetup(Signed32 absEntry, DNFCodeSetup payload, map<string|string[]> headers) returns error?Partially update a DNFCodeSetup (PATCH/MERGE semantics)
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
- payload DNFCodeSetup - Request payload
Return Type
- error? - Updated. No content returned
dNFCodeSetupServiceGetDNFCodeSetupList
function dNFCodeSetupServiceGetDNFCodeSetupList(map<string|string[]> headers) returns inline_response_200_9|errorGet DNF code setup list
Return Type
- inline_response_200_9|error - Function result
listDatevRuns
function listDatevRuns(ListDatevRunsHeaders headers, *ListDatevRunsQueries queries) returns DatevRunsCollectionResponse|errorQuery the DatevRuns collection
Parameters
- headers ListDatevRunsHeaders (default {}) - Headers to be sent with the request
- queries *ListDatevRunsQueries - Queries to be sent with the request
Return Type
- DatevRunsCollectionResponse|error - A page of entities
createDatevRuns
Create a new DatevRun
Parameters
- payload DatevRun - Request payload
getDatevRuns
function getDatevRuns(Signed32 runId, map<string|string[]> headers, *GetDatevRunsQueries queries) returns DatevRun|errorGet a single DatevRun by key
Parameters
- runId Signed32 - Key property 'RunId' (Edm.Int32)
- queries *GetDatevRunsQueries - Queries to be sent with the request
deleteDatevRuns
Delete a DatevRun
Parameters
- runId Signed32 - Key property 'RunId' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateDatevRuns
function updateDatevRuns(Signed32 runId, DatevRun payload, map<string|string[]> headers) returns error?Partially update a DatevRun (PATCH/MERGE semantics)
Return Type
- error? - Updated. No content returned
listDefaultElementsforCR
function listDefaultElementsforCR(ListDefaultElementsforCRHeaders headers, *ListDefaultElementsforCRQueries queries) returns DefaultElementsforCRCollectionResponse|errorQuery the DefaultElementsforCR collection
Parameters
- headers ListDefaultElementsforCRHeaders (default {}) - Headers to be sent with the request
- queries *ListDefaultElementsforCRQueries - Queries to be sent with the request
Return Type
- DefaultElementsforCRCollectionResponse|error - A page of entities
createDefaultElementsforCR
function createDefaultElementsforCR(DefaultElementsforCR payload, map<string|string[]> headers) returns DefaultElementsforCR|errorCreate a new DefaultElementsforCR
Parameters
- payload DefaultElementsforCR - Request payload
Return Type
- DefaultElementsforCR|error - The created entity
getDefaultElementsforCR
function getDefaultElementsforCR(Signed32 code, map<string|string[]> headers, *GetDefaultElementsforCRQueries queries) returns DefaultElementsforCR|errorGet a single DefaultElementsforCR by key
Parameters
- code Signed32 - Key property 'Code' (Edm.Int32)
- queries *GetDefaultElementsforCRQueries - Queries to be sent with the request
Return Type
- DefaultElementsforCR|error - The requested entity
deleteDefaultElementsforCR
Delete a DefaultElementsforCR
Parameters
- code Signed32 - Key property 'Code' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateDefaultElementsforCR
function updateDefaultElementsforCR(Signed32 code, DefaultElementsforCR payload, map<string|string[]> headers) returns error?Partially update a DefaultElementsforCR (PATCH/MERGE semantics)
Parameters
- code Signed32 - Key property 'Code' (Edm.Int32)
- payload DefaultElementsforCR - Request payload
Return Type
- error? - Updated. No content returned
listEBooks
function listEBooks(ListEBooksHeaders headers, *ListEBooksQueries queries) returns EBooksCollectionResponse|errorQuery the EBooks collection
Parameters
- headers ListEBooksHeaders (default {}) - Headers to be sent with the request
- queries *ListEBooksQueries - Queries to be sent with the request
Return Type
- EBooksCollectionResponse|error - A page of entities
createEBooks
Create a new EBooks
Parameters
- payload EBooks - Request payload
getEBooks
function getEBooks(Signed32 absEntry, map<string|string[]> headers, *GetEBooksQueries queries) returns EBooks|errorGet a single EBooks by key
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
- queries *GetEBooksQueries - Queries to be sent with the request
deleteEBooks
Delete a EBooks
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateEBooks
function updateEBooks(Signed32 absEntry, EBooks payload, map<string|string[]> headers) returns error?Partially update a EBooks (PATCH/MERGE semantics)
Return Type
- error? - Updated. No content returned
eBooksGetByDocKey
function eBooksGetByDocKey(Signed32 absEntry, map<string|string[]> headers) returns inline_response_200_10|errorBound action 'GetByDocKey' on EBooks (binding type EBooks)
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
Return Type
- inline_response_200_10|error - Function result
eBooksGetByMark
Bound action 'GetByMark' on EBooks (binding type EBooks)
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
eWBTransporterServiceGetEWBTransporterList
function eWBTransporterServiceGetEWBTransporterList(map<string|string[]> headers) returns inline_response_200_11|errorGet EWB transporter list
Return Type
- inline_response_200_11|error - Function result
listEWBTransporters
function listEWBTransporters(ListEWBTransportersHeaders headers, *ListEWBTransportersQueries queries) returns EWBTransportersCollectionResponse|errorQuery the EWBTransporters collection
Parameters
- headers ListEWBTransportersHeaders (default {}) - Headers to be sent with the request
- queries *ListEWBTransportersQueries - Queries to be sent with the request
Return Type
- EWBTransportersCollectionResponse|error - A page of entities
createEWBTransporters
function createEWBTransporters(EWBTransporter payload, map<string|string[]> headers) returns EWBTransporter|errorCreate a new EWBTransporter
Parameters
- payload EWBTransporter - Request payload
Return Type
- EWBTransporter|error - The created entity
getEWBTransporters
function getEWBTransporters(Signed32 absEntry, map<string|string[]> headers, *GetEWBTransportersQueries queries) returns EWBTransporter|errorGet a single EWBTransporter by key
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
- queries *GetEWBTransportersQueries - Queries to be sent with the request
Return Type
- EWBTransporter|error - The requested entity
deleteEWBTransporters
Delete a EWBTransporter
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateEWBTransporters
function updateEWBTransporters(Signed32 absEntry, EWBTransporter payload, map<string|string[]> headers) returns error?Partially update a EWBTransporter (PATCH/MERGE semantics)
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
- payload EWBTransporter - Request payload
Return Type
- error? - Updated. No content returned
electronicCommunicationActionServiceAFEFceAPCheckECM2Entry
function electronicCommunicationActionServiceAFEFceAPCheckECM2Entry(ElectronicCommunicationActionService_AFE_FceAP_CheckECM2Entry_body payload, map<string|string[]> headers) returns inline_response_200_12|errorCheck ECM2 entry
Parameters
- payload ElectronicCommunicationActionService_AFE_FceAP_CheckECM2Entry_body - Request payload
Return Type
- inline_response_200_12|error - Function result
electronicCommunicationActionServiceAFEFceAPGetLatestAFIPDate
function electronicCommunicationActionServiceAFEFceAPGetLatestAFIPDate(map<string|string[]> headers) returns AFEFceAPGetLatestAFIPDate|errorGet latest AFIP date
Return Type
- AFEFceAPGetLatestAFIPDate|error - Function result
electronicCommunicationActionServiceAFEFceARGetDateFromTo
function electronicCommunicationActionServiceAFEFceARGetDateFromTo(map<string|string[]> headers) returns AFEFceARGetDateFromTo|errorGet date from to
Return Type
- AFEFceARGetDateFromTo|error - Function result
electronicCommunicationActionServiceAFEFceARGetDocuments
function electronicCommunicationActionServiceAFEFceARGetDocuments(map<string|string[]> headers) returns inline_response_200_13|errorGet documents
Return Type
- inline_response_200_13|error - Function result
electronicCommunicationActionServiceAFEFceActionGetByFceID
function electronicCommunicationActionServiceAFEFceActionGetByFceID(ElectronicCommunicationActionService_AFE_FceAction_GetByFceID_body payload, map<string|string[]> headers) returns inline_response_200_14|errorGet by fce ID
Parameters
- payload ElectronicCommunicationActionService_AFE_FceAction_GetByFceID_body - Request payload
Return Type
- inline_response_200_14|error - Function result
electronicCommunicationActionServiceAFEFceActionGetPaymentData
function electronicCommunicationActionServiceAFEFceActionGetPaymentData(ElectronicCommunicationActionService_AFE_FceAction_GetPaymentData_body payload, map<string|string[]> headers) returns inline_response_200_15|errorGet payment data
Parameters
- payload ElectronicCommunicationActionService_AFE_FceAction_GetPaymentData_body - Request payload
Return Type
- inline_response_200_15|error - Function result
electronicCommunicationActionServiceAFERenumberFolioNumbers
function electronicCommunicationActionServiceAFERenumberFolioNumbers(ElectronicCommunicationActionService_AFE_RenumberFolioNumbers_body payload, map<string|string[]> headers) returns error?Renumber folio numbers
Parameters
- payload ElectronicCommunicationActionService_AFE_RenumberFolioNumbers_body - Request payload
Return Type
- error? - Success. No content returned
electronicCommunicationActionServiceAFEUpdFceAPARGetDocuments
function electronicCommunicationActionServiceAFEUpdFceAPARGetDocuments(map<string|string[]> headers) returns inline_response_200_16|errorGet documents
Return Type
- inline_response_200_16|error - Function result
electronicCommunicationActionServiceConfirmSuccessOfCommunication
function electronicCommunicationActionServiceConfirmSuccessOfCommunication(ElectronicCommunicationActionService_ConfirmSuccessOfCommunication_body payload, map<string|string[]> headers) returns error?Confirm success of communication
Parameters
- payload ElectronicCommunicationActionService_ConfirmSuccessOfCommunication_body - Request payload
Return Type
- error? - Success. No content returned
electronicCommunicationActionServiceGetAction
function electronicCommunicationActionServiceGetAction(ElectronicCommunicationActionService_GetAction_body payload, map<string|string[]> headers) returns ECMActionStatusData|errorGet action
Parameters
- payload ElectronicCommunicationActionService_GetAction_body - Request payload
Return Type
- ECMActionStatusData|error - Function result
electronicCommunicationActionServiceReportErrorAndContinue
function electronicCommunicationActionServiceReportErrorAndContinue(ElectronicCommunicationActionService_ReportErrorAndContinue_body payload, map<string|string[]> headers) returns error?Report error and continue
Parameters
- payload ElectronicCommunicationActionService_ReportErrorAndContinue_body - Request payload
Return Type
- error? - Success. No content returned
electronicCommunicationActionServiceReportErrorAndStop
function electronicCommunicationActionServiceReportErrorAndStop(ElectronicCommunicationActionService_ReportErrorAndStop_body payload, map<string|string[]> headers) returns error?Report error and stop
Parameters
- payload ElectronicCommunicationActionService_ReportErrorAndStop_body - Request payload
Return Type
- error? - Success. No content returned
electronicCommunicationActionServiceUpdateAction
function electronicCommunicationActionServiceUpdateAction(ElectronicCommunicationActionService_UpdateAction_body payload, map<string|string[]> headers) returns error?Update action
Parameters
- payload ElectronicCommunicationActionService_UpdateAction_body - Request payload
Return Type
- error? - Success. No content returned
electronicCommunicationActionsServiceAddEcmAction
function electronicCommunicationActionsServiceAddEcmAction(ElectronicCommunicationActionsService_AddEcmAction_body payload, map<string|string[]> headers) returns EcmAction|errorAdd ecm action
Parameters
- payload ElectronicCommunicationActionsService_AddEcmAction_body - Request payload
electronicCommunicationActionsServiceAddEcmActionLog
function electronicCommunicationActionsServiceAddEcmActionLog(ElectronicCommunicationActionsService_AddEcmActionLog_body payload, map<string|string[]> headers) returns EcmActionLog|errorAdd ecm action log
Parameters
- payload ElectronicCommunicationActionsService_AddEcmActionLog_body - Request payload
Return Type
- EcmActionLog|error - Function result
electronicCommunicationActionsServiceDeleteEcmAction
function electronicCommunicationActionsServiceDeleteEcmAction(ElectronicCommunicationActionsService_DeleteEcmAction_body payload, map<string|string[]> headers) returns error?Delete ecm action
Parameters
- payload ElectronicCommunicationActionsService_DeleteEcmAction_body - Request payload
Return Type
- error? - Success. No content returned
electronicCommunicationActionsServiceGetEcmAction
function electronicCommunicationActionsServiceGetEcmAction(ElectronicCommunicationActionsService_GetEcmAction_body payload, map<string|string[]> headers) returns EcmAction|errorGet ecm action
Parameters
- payload ElectronicCommunicationActionsService_GetEcmAction_body - Request payload
electronicCommunicationActionsServiceGetEcmActionByDoc
function electronicCommunicationActionsServiceGetEcmActionByDoc(ElectronicCommunicationActionsService_GetEcmActionByDoc_body payload, map<string|string[]> headers) returns EcmAction|errorGet ecm action by doc
Parameters
- payload ElectronicCommunicationActionsService_GetEcmActionByDoc_body - Request payload
electronicCommunicationActionsServiceGetEcmActionLog
function electronicCommunicationActionsServiceGetEcmActionLog(ElectronicCommunicationActionsService_GetEcmActionLog_body payload, map<string|string[]> headers) returns EcmActionLog|errorGet ecm action log
Parameters
- payload ElectronicCommunicationActionsService_GetEcmActionLog_body - Request payload
Return Type
- EcmActionLog|error - Function result
electronicCommunicationActionsServiceGetEcmActionLogList
function electronicCommunicationActionsServiceGetEcmActionLogList(ElectronicCommunicationActionsService_GetEcmActionLogList_body payload, map<string|string[]> headers) returns inline_response_200_17|errorGet ecm action log list
Parameters
- payload ElectronicCommunicationActionsService_GetEcmActionLogList_body - Request payload
Return Type
- inline_response_200_17|error - Function result
electronicCommunicationActionsServiceUpdateEcmAction
function electronicCommunicationActionsServiceUpdateEcmAction(ElectronicCommunicationActionsService_UpdateEcmAction_body payload, map<string|string[]> headers) returns error?Update ecm action
Parameters
- payload ElectronicCommunicationActionsService_UpdateEcmAction_body - Request payload
Return Type
- error? - Success. No content returned
electronicDocumentServiceAddEmergencyNumber
function electronicDocumentServiceAddEmergencyNumber(ElectronicDocumentService_AddEmergencyNumber_body payload, map<string|string[]> headers) returns error?Add emergency number
Parameters
- payload ElectronicDocumentService_AddEmergencyNumber_body - Request payload
Return Type
- error? - Success. No content returned
electronicDocumentServiceAddImportEntry
function electronicDocumentServiceAddImportEntry(ElectronicDocumentService_AddImportEntry_body payload, map<string|string[]> headers) returns error?Add import entry
Parameters
- payload ElectronicDocumentService_AddImportEntry_body - Request payload
Return Type
- error? - Success. No content returned
electronicDocumentServiceAddLog
function electronicDocumentServiceAddLog(ElectronicDocumentService_AddLog_body payload, map<string|string[]> headers) returns error?Add log
Parameters
- payload ElectronicDocumentService_AddLog_body - Request payload
Return Type
- error? - Success. No content returned
electronicDocumentServiceCreateEntry
function electronicDocumentServiceCreateEntry(ElectronicDocumentService_CreateEntry_body payload, map<string|string[]> headers) returns error?Create entry
Parameters
- payload ElectronicDocumentService_CreateEntry_body - Request payload
Return Type
- error? - Success. No content returned
electronicDocumentServiceExportEntryLog
function electronicDocumentServiceExportEntryLog(ElectronicDocumentService_ExportEntryLog_body payload, map<string|string[]> headers) returns error?Export entry log
Parameters
- payload ElectronicDocumentService_ExportEntryLog_body - Request payload
Return Type
- error? - Success. No content returned
electronicDocumentServiceGetDocMappingList
function electronicDocumentServiceGetDocMappingList(ElectronicDocumentService_GetDocMappingList_body payload, map<string|string[]> headers) returns inline_response_200_18|errorGet doc mapping list
Parameters
- payload ElectronicDocumentService_GetDocMappingList_body - Request payload
Return Type
- inline_response_200_18|error - Function result
electronicDocumentServiceGetEmergencyNumbers
function electronicDocumentServiceGetEmergencyNumbers(map<string|string[]> headers) returns inline_response_200_19|errorGet emergency numbers
Return Type
- inline_response_200_19|error - Function result
electronicDocumentServiceGetEntry
function electronicDocumentServiceGetEntry(ElectronicDocumentService_GetEntry_body payload, map<string|string[]> headers) returns EDFEntry|errorGet entry
Parameters
- payload ElectronicDocumentService_GetEntry_body - Request payload
electronicDocumentServiceGetEntryList
function electronicDocumentServiceGetEntryList(ElectronicDocumentService_GetEntryList_body payload, map<string|string[]> headers) returns inline_response_200_20|errorGet entry list
Parameters
- payload ElectronicDocumentService_GetEntryList_body - Request payload
Return Type
- inline_response_200_20|error - Function result
electronicDocumentServiceGetLastLog
function electronicDocumentServiceGetLastLog(ElectronicDocumentService_GetLastLog_body payload, map<string|string[]> headers) returns EDFEntryLog|errorGet last log
Parameters
- payload ElectronicDocumentService_GetLastLog_body - Request payload
Return Type
- EDFEntryLog|error - Function result
electronicDocumentServiceGetLogs
function electronicDocumentServiceGetLogs(ElectronicDocumentService_GetLogs_body payload, map<string|string[]> headers) returns inline_response_200_21|errorGet logs
Parameters
- payload ElectronicDocumentService_GetLogs_body - Request payload
Return Type
- inline_response_200_21|error - Function result
electronicDocumentServiceGetMappingByHash
function electronicDocumentServiceGetMappingByHash(ElectronicDocumentService_GetMappingByHash_body payload, map<string|string[]> headers) returns EDFMapping|errorGet mapping by hash
Parameters
- payload ElectronicDocumentService_GetMappingByHash_body - Request payload
Return Type
- EDFMapping|error - Function result
electronicDocumentServiceGetProtocolParameter
function electronicDocumentServiceGetProtocolParameter(ElectronicDocumentService_GetProtocolParameter_body payload, map<string|string[]> headers) returns EDFProtocolParameter|errorGet protocol parameter
Parameters
- payload ElectronicDocumentService_GetProtocolParameter_body - Request payload
Return Type
- EDFProtocolParameter|error - Function result
electronicDocumentServiceGetProtocols
function electronicDocumentServiceGetProtocols(map<string|string[]> headers) returns inline_response_200_22|errorGet protocols
Return Type
- inline_response_200_22|error - Function result
electronicDocumentServiceUpdateEntry
function electronicDocumentServiceUpdateEntry(ElectronicDocumentService_UpdateEntry_body payload, map<string|string[]> headers) returns error?Update entry
Parameters
- payload ElectronicDocumentService_UpdateEntry_body - Request payload
Return Type
- error? - Success. No content returned
electronicDocumentServiceUpdateExtendedProperties
function electronicDocumentServiceUpdateExtendedProperties(ElectronicDocumentService_UpdateExtendedProperties_body payload, map<string|string[]> headers) returns error?Update extended properties
Parameters
- payload ElectronicDocumentService_UpdateExtendedProperties_body - Request payload
Return Type
- error? - Success. No content returned
electronicDocumentServiceUpdateProtocolParameter
function electronicDocumentServiceUpdateProtocolParameter(ElectronicDocumentService_UpdateProtocolParameter_body payload, map<string|string[]> headers) returns error?Update protocol parameter
Parameters
- payload ElectronicDocumentService_UpdateProtocolParameter_body - Request payload
Return Type
- error? - Success. No content returned
listElectronicDocuments
function listElectronicDocuments(ListElectronicDocumentsHeaders headers, *ListElectronicDocumentsQueries queries) returns ElectronicDocumentsCollectionResponse|errorQuery the ElectronicDocuments collection
Parameters
- headers ListElectronicDocumentsHeaders (default {}) - Headers to be sent with the request
- queries *ListElectronicDocumentsQueries - Queries to be sent with the request
Return Type
- ElectronicDocumentsCollectionResponse|error - A page of entities
createElectronicDocuments
function createElectronicDocuments(EDFProtocol payload, map<string|string[]> headers) returns EDFProtocol|errorCreate a new EDFProtocol
Parameters
- payload EDFProtocol - Request payload
Return Type
- EDFProtocol|error - The created entity
getElectronicDocuments
function getElectronicDocuments(ElectronicDocProtocolCodeStrEnum code, map<string|string[]> headers, *GetElectronicDocumentsQueries queries) returns EDFProtocol|errorGet a single EDFProtocol by key
Parameters
- code ElectronicDocProtocolCodeStrEnum - Key property 'Code' (SAPB1.ElectronicDocProtocolCodeStrEnum)
- queries *GetElectronicDocumentsQueries - Queries to be sent with the request
Return Type
- EDFProtocol|error - The requested entity
deleteElectronicDocuments
function deleteElectronicDocuments(ElectronicDocProtocolCodeStrEnum code, map<string|string[]> headers) returns error?Delete a EDFProtocol
Parameters
- code ElectronicDocProtocolCodeStrEnum - Key property 'Code' (SAPB1.ElectronicDocProtocolCodeStrEnum)
Return Type
- error? - Deleted. No content returned
updateElectronicDocuments
function updateElectronicDocuments(ElectronicDocProtocolCodeStrEnum code, EDFProtocol payload, map<string|string[]> headers) returns error?Partially update a EDFProtocol (PATCH/MERGE semantics)
Parameters
- code ElectronicDocProtocolCodeStrEnum - Key property 'Code' (SAPB1.ElectronicDocProtocolCodeStrEnum)
- payload EDFProtocol - Request payload
Return Type
- error? - Updated. No content returned
listElectronicFileFormats
function listElectronicFileFormats(ListElectronicFileFormatsHeaders headers, *ListElectronicFileFormatsQueries queries) returns ElectronicFileFormatsCollectionResponse|errorQuery the ElectronicFileFormats collection
Parameters
- headers ListElectronicFileFormatsHeaders (default {}) - Headers to be sent with the request
- queries *ListElectronicFileFormatsQueries - Queries to be sent with the request
Return Type
- ElectronicFileFormatsCollectionResponse|error - A page of entities
createElectronicFileFormats
function createElectronicFileFormats(ElectronicFileFormat payload, map<string|string[]> headers) returns ElectronicFileFormat|errorCreate a new ElectronicFileFormat
Parameters
- payload ElectronicFileFormat - Request payload
Return Type
- ElectronicFileFormat|error - The created entity
getElectronicFileFormats
function getElectronicFileFormats(Signed32 formatID, map<string|string[]> headers, *GetElectronicFileFormatsQueries queries) returns ElectronicFileFormat|errorGet a single ElectronicFileFormat by key
Parameters
- formatID Signed32 - Key property 'FormatID' (Edm.Int32)
- queries *GetElectronicFileFormatsQueries - Queries to be sent with the request
Return Type
- ElectronicFileFormat|error - The requested entity
deleteElectronicFileFormats
function deleteElectronicFileFormats(Signed32 formatID, map<string|string[]> headers) returns error?Delete a ElectronicFileFormat
Parameters
- formatID Signed32 - Key property 'FormatID' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateElectronicFileFormats
function updateElectronicFileFormats(Signed32 formatID, ElectronicFileFormat payload, map<string|string[]> headers) returns error?Partially update a ElectronicFileFormat (PATCH/MERGE semantics)
Parameters
- formatID Signed32 - Key property 'FormatID' (Edm.Int32)
- payload ElectronicFileFormat - Request payload
Return Type
- error? - Updated. No content returned
electronicFileFormatsServiceGetElectronicFileFormatList
function electronicFileFormatsServiceGetElectronicFileFormatList(map<string|string[]> headers) returns inline_response_200_23|errorGet electronic file format list
Return Type
- inline_response_200_23|error - Function result
exportDeterminationServiceGetDeterminations
function exportDeterminationServiceGetDeterminations(ExportDeterminationService_GetDeterminations_body payload, map<string|string[]> headers) returns inline_response_200_24|errorGet determinations
Parameters
- payload ExportDeterminationService_GetDeterminations_body - Request payload
Return Type
- inline_response_200_24|error - Function result
listExportDeterminations
function listExportDeterminations(ListExportDeterminationsHeaders headers, *ListExportDeterminationsQueries queries) returns ExportDeterminationsCollectionResponse|errorQuery the ExportDeterminations collection
Parameters
- headers ListExportDeterminationsHeaders (default {}) - Headers to be sent with the request
- queries *ListExportDeterminationsQueries - Queries to be sent with the request
Return Type
- ExportDeterminationsCollectionResponse|error - A page of entities
createExportDeterminations
function createExportDeterminations(ExportDetermination payload, map<string|string[]> headers) returns ExportDetermination|errorCreate a new ExportDetermination
Parameters
- payload ExportDetermination - Request payload
Return Type
- ExportDetermination|error - The created entity
getExportDeterminations
function getExportDeterminations(Signed32 absEntry, map<string|string[]> headers, *GetExportDeterminationsQueries queries) returns ExportDetermination|errorGet a single ExportDetermination by key
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
- queries *GetExportDeterminationsQueries - Queries to be sent with the request
Return Type
- ExportDetermination|error - The requested entity
deleteExportDeterminations
Delete a ExportDetermination
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateExportDeterminations
function updateExportDeterminations(Signed32 absEntry, ExportDetermination payload, map<string|string[]> headers) returns error?Partially update a ExportDetermination (PATCH/MERGE semantics)
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
- payload ExportDetermination - Request payload
Return Type
- error? - Updated. No content returned
listFiscalPrinter
function listFiscalPrinter(ListFiscalPrinterHeaders headers, *ListFiscalPrinterQueries queries) returns FiscalPrinterCollectionResponse|errorQuery the FiscalPrinter collection
Parameters
- headers ListFiscalPrinterHeaders (default {}) - Headers to be sent with the request
- queries *ListFiscalPrinterQueries - Queries to be sent with the request
Return Type
- FiscalPrinterCollectionResponse|error - A page of entities
createFiscalPrinter
function createFiscalPrinter(FiscalPrinter payload, map<string|string[]> headers) returns FiscalPrinter|errorCreate a new FiscalPrinter
Parameters
- payload FiscalPrinter - Request payload
Return Type
- FiscalPrinter|error - The created entity
getFiscalPrinter
function getFiscalPrinter(string equipmentNo, map<string|string[]> headers, *GetFiscalPrinterQueries queries) returns FiscalPrinter|errorGet a single FiscalPrinter by key
Parameters
- equipmentNo string - Key property 'EquipmentNo' (Edm.String)
- queries *GetFiscalPrinterQueries - Queries to be sent with the request
Return Type
- FiscalPrinter|error - The requested entity
deleteFiscalPrinter
Delete a FiscalPrinter
Parameters
- equipmentNo string - Key property 'EquipmentNo' (Edm.String)
Return Type
- error? - Deleted. No content returned
updateFiscalPrinter
function updateFiscalPrinter(string equipmentNo, FiscalPrinter payload, map<string|string[]> headers) returns error?Partially update a FiscalPrinter (PATCH/MERGE semantics)
Parameters
- equipmentNo string - Key property 'EquipmentNo' (Edm.String)
- payload FiscalPrinter - Request payload
Return Type
- error? - Updated. No content returned
fiscalPrinterServiceGetFiscalPrinterList
function fiscalPrinterServiceGetFiscalPrinterList(map<string|string[]> headers) returns inline_response_200_25|errorGet fiscal printer list
Return Type
- inline_response_200_25|error - Function result
gTIsServiceImport
function gTIsServiceImport(GTIsService_Import_body payload, map<string|string[]> headers) returns inline_response_200_26|errorImport
Parameters
- payload GTIsService_Import_body - Request payload
Return Type
- inline_response_200_26|error - Function result
listISDCreditMemos
function listISDCreditMemos(ListISDCreditMemosHeaders headers, *ListISDCreditMemosQueries queries) returns ISDCreditMemosCollectionResponse|errorQuery the ISDCreditMemos collection
Parameters
- headers ListISDCreditMemosHeaders (default {}) - Headers to be sent with the request
- queries *ListISDCreditMemosQueries - Queries to be sent with the request
Return Type
- ISDCreditMemosCollectionResponse|error - A page of entities
createISDCreditMemos
function createISDCreditMemos(ISDCreditMemo payload, map<string|string[]> headers) returns ISDCreditMemo|errorCreate a new ISDCreditMemo
Parameters
- payload ISDCreditMemo - Request payload
Return Type
- ISDCreditMemo|error - The created entity
getISDCreditMemos
function getISDCreditMemos(Signed32 documentEntry, map<string|string[]> headers, *GetISDCreditMemosQueries queries) returns ISDCreditMemo|errorGet a single ISDCreditMemo by key
Parameters
- documentEntry Signed32 - Key property 'DocumentEntry' (Edm.Int32)
- queries *GetISDCreditMemosQueries - Queries to be sent with the request
Return Type
- ISDCreditMemo|error - The requested entity
deleteISDCreditMemos
Delete a ISDCreditMemo
Parameters
- documentEntry Signed32 - Key property 'DocumentEntry' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateISDCreditMemos
function updateISDCreditMemos(Signed32 documentEntry, ISDCreditMemo payload, map<string|string[]> headers) returns error?Partially update a ISDCreditMemo (PATCH/MERGE semantics)
Parameters
- documentEntry Signed32 - Key property 'DocumentEntry' (Edm.Int32)
- payload ISDCreditMemo - Request payload
Return Type
- error? - Updated. No content returned
iSDCreditMemosCancel
Bound action 'Cancel' on ISDCreditMemos (binding type ISDCreditMemo)
Parameters
- documentEntry Signed32 - Key property 'DocumentEntry' (Edm.Int32)
Return Type
- error? - Success. No content returned
iSDCreditMemosServiceGetList
function iSDCreditMemosServiceGetList(map<string|string[]> headers) returns inline_response_200_27|errorGet list
Return Type
- inline_response_200_27|error - Function result
listISDDocuments
function listISDDocuments(ListISDDocumentsHeaders headers, *ListISDDocumentsQueries queries) returns ISDDocumentsCollectionResponse|errorQuery the ISDDocuments collection
Parameters
- headers ListISDDocumentsHeaders (default {}) - Headers to be sent with the request
- queries *ListISDDocumentsQueries - Queries to be sent with the request
Return Type
- ISDDocumentsCollectionResponse|error - A page of entities
createISDDocuments
function createISDDocuments(ISDDocument payload, map<string|string[]> headers) returns ISDDocument|errorCreate a new ISDDocument
Parameters
- payload ISDDocument - Request payload
Return Type
- ISDDocument|error - The created entity
getISDDocuments
function getISDDocuments(Signed32 documentEntry, map<string|string[]> headers, *GetISDDocumentsQueries queries) returns ISDDocument|errorGet a single ISDDocument by key
Parameters
- documentEntry Signed32 - Key property 'DocumentEntry' (Edm.Int32)
- queries *GetISDDocumentsQueries - Queries to be sent with the request
Return Type
- ISDDocument|error - The requested entity
deleteISDDocuments
Delete a ISDDocument
Parameters
- documentEntry Signed32 - Key property 'DocumentEntry' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateISDDocuments
function updateISDDocuments(Signed32 documentEntry, ISDDocument payload, map<string|string[]> headers) returns error?Partially update a ISDDocument (PATCH/MERGE semantics)
Parameters
- documentEntry Signed32 - Key property 'DocumentEntry' (Edm.Int32)
- payload ISDDocument - Request payload
Return Type
- error? - Updated. No content returned
iSDDocumentsServiceCancel
function iSDDocumentsServiceCancel(ISDDocumentsService_Cancel_body payload, map<string|string[]> headers) returns error?Cancel
Parameters
- payload ISDDocumentsService_Cancel_body - Request payload
Return Type
- error? - Success. No content returned
iSDDocumentsServiceGetList
function iSDDocumentsServiceGetList(map<string|string[]> headers) returns inline_response_200_28|errorGet list
Return Type
- inline_response_200_28|error - Function result
listISDInvoices
function listISDInvoices(ListISDInvoicesHeaders headers, *ListISDInvoicesQueries queries) returns ISDInvoicesCollectionResponse|errorQuery the ISDInvoices collection
Parameters
- headers ListISDInvoicesHeaders (default {}) - Headers to be sent with the request
- queries *ListISDInvoicesQueries - Queries to be sent with the request
Return Type
- ISDInvoicesCollectionResponse|error - A page of entities
createISDInvoices
function createISDInvoices(ISDInvoice payload, map<string|string[]> headers) returns ISDInvoice|errorCreate a new ISDInvoice
Parameters
- payload ISDInvoice - Request payload
Return Type
- ISDInvoice|error - The created entity
getISDInvoices
function getISDInvoices(Signed32 documentEntry, map<string|string[]> headers, *GetISDInvoicesQueries queries) returns ISDInvoice|errorGet a single ISDInvoice by key
Parameters
- documentEntry Signed32 - Key property 'DocumentEntry' (Edm.Int32)
- queries *GetISDInvoicesQueries - Queries to be sent with the request
Return Type
- ISDInvoice|error - The requested entity
deleteISDInvoices
Delete a ISDInvoice
Parameters
- documentEntry Signed32 - Key property 'DocumentEntry' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateISDInvoices
function updateISDInvoices(Signed32 documentEntry, ISDInvoice payload, map<string|string[]> headers) returns error?Partially update a ISDInvoice (PATCH/MERGE semantics)
Parameters
- documentEntry Signed32 - Key property 'DocumentEntry' (Edm.Int32)
- payload ISDInvoice - Request payload
Return Type
- error? - Updated. No content returned
iSDInvoicesCancel
Bound action 'Cancel' on ISDInvoices (binding type ISDInvoice)
Parameters
- documentEntry Signed32 - Key property 'DocumentEntry' (Edm.Int32)
Return Type
- error? - Success. No content returned
iSDInvoicesServiceGetList
function iSDInvoicesServiceGetList(map<string|string[]> headers) returns inline_response_200_29|errorGet list
Return Type
- inline_response_200_29|error - Function result
listISDRecipientCreditMemos
function listISDRecipientCreditMemos(ListISDRecipientCreditMemosHeaders headers, *ListISDRecipientCreditMemosQueries queries) returns ISDRecipientCreditMemosCollectionResponse|errorQuery the ISDRecipientCreditMemos collection
Parameters
- headers ListISDRecipientCreditMemosHeaders (default {}) - Headers to be sent with the request
- queries *ListISDRecipientCreditMemosQueries - Queries to be sent with the request
Return Type
- ISDRecipientCreditMemosCollectionResponse|error - A page of entities
createISDRecipientCreditMemos
function createISDRecipientCreditMemos(ISDRecipientCreditMemo payload, map<string|string[]> headers) returns ISDRecipientCreditMemo|errorCreate a new ISDRecipientCreditMemo
Parameters
- payload ISDRecipientCreditMemo - Request payload
Return Type
- ISDRecipientCreditMemo|error - The created entity
getISDRecipientCreditMemos
function getISDRecipientCreditMemos(Signed32 documentEntry, map<string|string[]> headers, *GetISDRecipientCreditMemosQueries queries) returns ISDRecipientCreditMemo|errorGet a single ISDRecipientCreditMemo by key
Parameters
- documentEntry Signed32 - Key property 'DocumentEntry' (Edm.Int32)
- queries *GetISDRecipientCreditMemosQueries - Queries to be sent with the request
Return Type
- ISDRecipientCreditMemo|error - The requested entity
deleteISDRecipientCreditMemos
function deleteISDRecipientCreditMemos(Signed32 documentEntry, map<string|string[]> headers) returns error?Delete a ISDRecipientCreditMemo
Parameters
- documentEntry Signed32 - Key property 'DocumentEntry' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateISDRecipientCreditMemos
function updateISDRecipientCreditMemos(Signed32 documentEntry, ISDRecipientCreditMemo payload, map<string|string[]> headers) returns error?Partially update a ISDRecipientCreditMemo (PATCH/MERGE semantics)
Parameters
- documentEntry Signed32 - Key property 'DocumentEntry' (Edm.Int32)
- payload ISDRecipientCreditMemo - Request payload
Return Type
- error? - Updated. No content returned
iSDRecipientCreditMemosCancel
function iSDRecipientCreditMemosCancel(Signed32 documentEntry, map<string|string[]> headers) returns error?Bound action 'Cancel' on ISDRecipientCreditMemos (binding type ISDRecipientCreditMemo)
Parameters
- documentEntry Signed32 - Key property 'DocumentEntry' (Edm.Int32)
Return Type
- error? - Success. No content returned
iSDRecipientCreditMemosServiceGetList
function iSDRecipientCreditMemosServiceGetList(map<string|string[]> headers) returns inline_response_200_30|errorGet list
Return Type
- inline_response_200_30|error - Function result
listISDRecipientInvoices
function listISDRecipientInvoices(ListISDRecipientInvoicesHeaders headers, *ListISDRecipientInvoicesQueries queries) returns ISDRecipientInvoicesCollectionResponse|errorQuery the ISDRecipientInvoices collection
Parameters
- headers ListISDRecipientInvoicesHeaders (default {}) - Headers to be sent with the request
- queries *ListISDRecipientInvoicesQueries - Queries to be sent with the request
Return Type
- ISDRecipientInvoicesCollectionResponse|error - A page of entities
createISDRecipientInvoices
function createISDRecipientInvoices(ISDRecipientInvoice payload, map<string|string[]> headers) returns ISDRecipientInvoice|errorCreate a new ISDRecipientInvoice
Parameters
- payload ISDRecipientInvoice - Request payload
Return Type
- ISDRecipientInvoice|error - The created entity
getISDRecipientInvoices
function getISDRecipientInvoices(Signed32 documentEntry, map<string|string[]> headers, *GetISDRecipientInvoicesQueries queries) returns ISDRecipientInvoice|errorGet a single ISDRecipientInvoice by key
Parameters
- documentEntry Signed32 - Key property 'DocumentEntry' (Edm.Int32)
- queries *GetISDRecipientInvoicesQueries - Queries to be sent with the request
Return Type
- ISDRecipientInvoice|error - The requested entity
deleteISDRecipientInvoices
function deleteISDRecipientInvoices(Signed32 documentEntry, map<string|string[]> headers) returns error?Delete a ISDRecipientInvoice
Parameters
- documentEntry Signed32 - Key property 'DocumentEntry' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateISDRecipientInvoices
function updateISDRecipientInvoices(Signed32 documentEntry, ISDRecipientInvoice payload, map<string|string[]> headers) returns error?Partially update a ISDRecipientInvoice (PATCH/MERGE semantics)
Parameters
- documentEntry Signed32 - Key property 'DocumentEntry' (Edm.Int32)
- payload ISDRecipientInvoice - Request payload
Return Type
- error? - Updated. No content returned
iSDRecipientInvoicesCancel
function iSDRecipientInvoicesCancel(Signed32 documentEntry, map<string|string[]> headers) returns error?Bound action 'Cancel' on ISDRecipientInvoices (binding type ISDRecipientInvoice)
Parameters
- documentEntry Signed32 - Key property 'DocumentEntry' (Edm.Int32)
Return Type
- error? - Success. No content returned
iSDRecipientInvoicesServiceGetList
function iSDRecipientInvoicesServiceGetList(map<string|string[]> headers) returns inline_response_200_31|errorGet list
Return Type
- inline_response_200_31|error - Function result
identificationCodeServiceGetList
function identificationCodeServiceGetList(map<string|string[]> headers) returns inline_response_200_32|errorGet list
Return Type
- inline_response_200_32|error - Function result
listIdentificationCodes
function listIdentificationCodes(ListIdentificationCodesHeaders headers, *ListIdentificationCodesQueries queries) returns IdentificationCodesCollectionResponse|errorQuery the IdentificationCodes collection
Parameters
- headers ListIdentificationCodesHeaders (default {}) - Headers to be sent with the request
- queries *ListIdentificationCodesQueries - Queries to be sent with the request
Return Type
- IdentificationCodesCollectionResponse|error - A page of entities
createIdentificationCodes
function createIdentificationCodes(IdentificationCode payload, map<string|string[]> headers) returns IdentificationCode|errorCreate a new IdentificationCode
Parameters
- payload IdentificationCode - Request payload
Return Type
- IdentificationCode|error - The created entity
getIdentificationCodes
function getIdentificationCodes(Signed32 absEntry, map<string|string[]> headers, *GetIdentificationCodesQueries queries) returns IdentificationCode|errorGet a single IdentificationCode by key
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
- queries *GetIdentificationCodesQueries - Queries to be sent with the request
Return Type
- IdentificationCode|error - The requested entity
deleteIdentificationCodes
Delete a IdentificationCode
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateIdentificationCodes
function updateIdentificationCodes(Signed32 absEntry, IdentificationCode payload, map<string|string[]> headers) returns error?Partially update a IdentificationCode (PATCH/MERGE semantics)
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
- payload IdentificationCode - Request payload
Return Type
- error? - Updated. No content returned
importDeterminationServiceGetDeterminations
function importDeterminationServiceGetDeterminations(ImportDeterminationService_GetDeterminations_body payload, map<string|string[]> headers) returns inline_response_200_33|errorGet determinations
Parameters
- payload ImportDeterminationService_GetDeterminations_body - Request payload
Return Type
- inline_response_200_33|error - Function result
listImportDeterminations
function listImportDeterminations(ListImportDeterminationsHeaders headers, *ListImportDeterminationsQueries queries) returns ImportDeterminationsCollectionResponse|errorQuery the ImportDeterminations collection
Parameters
- headers ListImportDeterminationsHeaders (default {}) - Headers to be sent with the request
- queries *ListImportDeterminationsQueries - Queries to be sent with the request
Return Type
- ImportDeterminationsCollectionResponse|error - A page of entities
createImportDeterminations
function createImportDeterminations(ImportDetermination payload, map<string|string[]> headers) returns ImportDetermination|errorCreate a new ImportDetermination
Parameters
- payload ImportDetermination - Request payload
Return Type
- ImportDetermination|error - The created entity
getImportDeterminations
function getImportDeterminations(Signed32 absEntry, map<string|string[]> headers, *GetImportDeterminationsQueries queries) returns ImportDetermination|errorGet a single ImportDetermination by key
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
- queries *GetImportDeterminationsQueries - Queries to be sent with the request
Return Type
- ImportDetermination|error - The requested entity
deleteImportDeterminations
Delete a ImportDetermination
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateImportDeterminations
function updateImportDeterminations(Signed32 absEntry, ImportDetermination payload, map<string|string[]> headers) returns error?Partially update a ImportDetermination (PATCH/MERGE semantics)
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
- payload ImportDetermination - Request payload
Return Type
- error? - Updated. No content returned
listIndiaHsn
function listIndiaHsn(ListIndiaHsnHeaders headers, *ListIndiaHsnQueries queries) returns IndiaHsnCollectionResponse|errorQuery the IndiaHsn collection
Parameters
- headers ListIndiaHsnHeaders (default {}) - Headers to be sent with the request
- queries *ListIndiaHsnQueries - Queries to be sent with the request
Return Type
- IndiaHsnCollectionResponse|error - A page of entities
createIndiaHsn
Create a new IndiaHsn
Parameters
- payload IndiaHsn - Request payload
getIndiaHsn
function getIndiaHsn(Signed32 absEntry, map<string|string[]> headers, *GetIndiaHsnQueries queries) returns IndiaHsn|errorGet a single IndiaHsn by key
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
- queries *GetIndiaHsnQueries - Queries to be sent with the request
deleteIndiaHsn
Delete a IndiaHsn
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateIndiaHsn
function updateIndiaHsn(Signed32 absEntry, IndiaHsn payload, map<string|string[]> headers) returns error?Partially update a IndiaHsn (PATCH/MERGE semantics)
Return Type
- error? - Updated. No content returned
indiaHsnServiceGetList
function indiaHsnServiceGetList(map<string|string[]> headers) returns inline_response_200_34|errorGet list
Return Type
- inline_response_200_34|error - Function result
listIndiaSacCode
function listIndiaSacCode(ListIndiaSacCodeHeaders headers, *ListIndiaSacCodeQueries queries) returns IndiaSacCodeCollectionResponse|errorQuery the IndiaSacCode collection
Parameters
- headers ListIndiaSacCodeHeaders (default {}) - Headers to be sent with the request
- queries *ListIndiaSacCodeQueries - Queries to be sent with the request
Return Type
- IndiaSacCodeCollectionResponse|error - A page of entities
createIndiaSacCode
function createIndiaSacCode(IndiaSacCode payload, map<string|string[]> headers) returns IndiaSacCode|errorCreate a new IndiaSacCode
Parameters
- payload IndiaSacCode - Request payload
Return Type
- IndiaSacCode|error - The created entity
getIndiaSacCode
function getIndiaSacCode(Signed32 absEntry, map<string|string[]> headers, *GetIndiaSacCodeQueries queries) returns IndiaSacCode|errorGet a single IndiaSacCode by key
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
- queries *GetIndiaSacCodeQueries - Queries to be sent with the request
Return Type
- IndiaSacCode|error - The requested entity
deleteIndiaSacCode
Delete a IndiaSacCode
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateIndiaSacCode
function updateIndiaSacCode(Signed32 absEntry, IndiaSacCode payload, map<string|string[]> headers) returns error?Partially update a IndiaSacCode (PATCH/MERGE semantics)
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
- payload IndiaSacCode - Request payload
Return Type
- error? - Updated. No content returned
indiaSacCodeServiceGetList
function indiaSacCodeServiceGetList(map<string|string[]> headers) returns inline_response_200_35|errorGet list
Return Type
- inline_response_200_35|error - Function result
listIntrastatConfiguration
function listIntrastatConfiguration(ListIntrastatConfigurationHeaders headers, *ListIntrastatConfigurationQueries queries) returns IntrastatConfigurationCollectionResponse|errorQuery the IntrastatConfiguration collection
Parameters
- headers ListIntrastatConfigurationHeaders (default {}) - Headers to be sent with the request
- queries *ListIntrastatConfigurationQueries - Queries to be sent with the request
Return Type
- IntrastatConfigurationCollectionResponse|error - A page of entities
createIntrastatConfiguration
function createIntrastatConfiguration(IntrastatConfiguration payload, map<string|string[]> headers) returns IntrastatConfiguration|errorCreate a new IntrastatConfiguration
Parameters
- payload IntrastatConfiguration - Request payload
Return Type
- IntrastatConfiguration|error - The created entity
getIntrastatConfiguration
function getIntrastatConfiguration(Signed32 absEntry, map<string|string[]> headers, *GetIntrastatConfigurationQueries queries) returns IntrastatConfiguration|errorGet a single IntrastatConfiguration by key
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
- queries *GetIntrastatConfigurationQueries - Queries to be sent with the request
Return Type
- IntrastatConfiguration|error - The requested entity
deleteIntrastatConfiguration
function deleteIntrastatConfiguration(Signed32 absEntry, map<string|string[]> headers) returns error?Delete a IntrastatConfiguration
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateIntrastatConfiguration
function updateIntrastatConfiguration(Signed32 absEntry, IntrastatConfiguration payload, map<string|string[]> headers) returns error?Partially update a IntrastatConfiguration (PATCH/MERGE semantics)
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
- payload IntrastatConfiguration - Request payload
Return Type
- error? - Updated. No content returned
intrastatConfigurationServiceGetList
function intrastatConfigurationServiceGetList(map<string|string[]> headers) returns inline_response_200_36|errorGet list
Return Type
- inline_response_200_36|error - Function result
listLegalData
function listLegalData(ListLegalDataHeaders headers, *ListLegalDataQueries queries) returns LegalDataCollectionResponse|errorQuery the LegalData collection
Parameters
- headers ListLegalDataHeaders (default {}) - Headers to be sent with the request
- queries *ListLegalDataQueries - Queries to be sent with the request
Return Type
- LegalDataCollectionResponse|error - A page of entities
createLegalData
Create a new LegalData
Parameters
- payload LegalData - Request payload
getLegalData
function getLegalData(Signed32 docEntry, map<string|string[]> headers, *GetLegalDataQueries queries) returns LegalData|errorGet a single LegalData by key
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
- queries *GetLegalDataQueries - Queries to be sent with the request
deleteLegalData
Delete a LegalData
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateLegalData
function updateLegalData(Signed32 docEntry, LegalData payload, map<string|string[]> headers) returns error?Partially update a LegalData (PATCH/MERGE semantics)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
- payload LegalData - Request payload
Return Type
- error? - Updated. No content returned
listLocalEra
function listLocalEra(ListLocalEraHeaders headers, *ListLocalEraQueries queries) returns LocalEraCollectionResponse|errorQuery the LocalEra collection
Parameters
- headers ListLocalEraHeaders (default {}) - Headers to be sent with the request
- queries *ListLocalEraQueries - Queries to be sent with the request
Return Type
- LocalEraCollectionResponse|error - A page of entities
createLocalEra
Create a new LocalEra
Parameters
- payload LocalEra - Request payload
getLocalEra
function getLocalEra(string code, map<string|string[]> headers, *GetLocalEraQueries queries) returns LocalEra|errorGet a single LocalEra by key
Parameters
- code string - Key property 'Code' (Edm.String)
- queries *GetLocalEraQueries - Queries to be sent with the request
deleteLocalEra
Delete a LocalEra
Parameters
- code string - Key property 'Code' (Edm.String)
Return Type
- error? - Deleted. No content returned
updateLocalEra
Partially update a LocalEra (PATCH/MERGE semantics)
Return Type
- error? - Updated. No content returned
listMaterialGroups
function listMaterialGroups(ListMaterialGroupsHeaders headers, *ListMaterialGroupsQueries queries) returns MaterialGroupsCollectionResponse|errorQuery the MaterialGroups collection
Parameters
- headers ListMaterialGroupsHeaders (default {}) - Headers to be sent with the request
- queries *ListMaterialGroupsQueries - Queries to be sent with the request
Return Type
- MaterialGroupsCollectionResponse|error - A page of entities
createMaterialGroups
function createMaterialGroups(MaterialGroup payload, map<string|string[]> headers) returns MaterialGroup|errorCreate a new MaterialGroup
Parameters
- payload MaterialGroup - Request payload
Return Type
- MaterialGroup|error - The created entity
getMaterialGroups
function getMaterialGroups(Signed32 absEntry, map<string|string[]> headers, *GetMaterialGroupsQueries queries) returns MaterialGroup|errorGet a single MaterialGroup by key
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
- queries *GetMaterialGroupsQueries - Queries to be sent with the request
Return Type
- MaterialGroup|error - The requested entity
deleteMaterialGroups
Delete a MaterialGroup
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateMaterialGroups
function updateMaterialGroups(Signed32 absEntry, MaterialGroup payload, map<string|string[]> headers) returns error?Partially update a MaterialGroup (PATCH/MERGE semantics)
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
- payload MaterialGroup - Request payload
Return Type
- error? - Updated. No content returned
materialGroupsServiceGetMaterialGroupList
function materialGroupsServiceGetMaterialGroupList(map<string|string[]> headers) returns inline_response_200_37|errorGet material group list
Return Type
- inline_response_200_37|error - Function result
listNCMCodesSetup
function listNCMCodesSetup(ListNCMCodesSetupHeaders headers, *ListNCMCodesSetupQueries queries) returns NCMCodesSetupCollectionResponse|errorQuery the NCMCodesSetup collection
Parameters
- headers ListNCMCodesSetupHeaders (default {}) - Headers to be sent with the request
- queries *ListNCMCodesSetupQueries - Queries to be sent with the request
Return Type
- NCMCodesSetupCollectionResponse|error - A page of entities
createNCMCodesSetup
function createNCMCodesSetup(NCMCodeSetup payload, map<string|string[]> headers) returns NCMCodeSetup|errorCreate a new NCMCodeSetup
Parameters
- payload NCMCodeSetup - Request payload
Return Type
- NCMCodeSetup|error - The created entity
getNCMCodesSetup
function getNCMCodesSetup(Signed32 absEntry, map<string|string[]> headers, *GetNCMCodesSetupQueries queries) returns NCMCodeSetup|errorGet a single NCMCodeSetup by key
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
- queries *GetNCMCodesSetupQueries - Queries to be sent with the request
Return Type
- NCMCodeSetup|error - The requested entity
deleteNCMCodesSetup
Delete a NCMCodeSetup
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateNCMCodesSetup
function updateNCMCodesSetup(Signed32 absEntry, NCMCodeSetup payload, map<string|string[]> headers) returns error?Partially update a NCMCodeSetup (PATCH/MERGE semantics)
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
- payload NCMCodeSetup - Request payload
Return Type
- error? - Updated. No content returned
nCMCodesSetupServiceGetNCMCodeSetupList
function nCMCodesSetupServiceGetNCMCodeSetupList(map<string|string[]> headers) returns inline_response_200_38|errorGet NCM code setup list
Return Type
- inline_response_200_38|error - Function result
listNFModels
function listNFModels(ListNFModelsHeaders headers, *ListNFModelsQueries queries) returns NFModelsCollectionResponse|errorQuery the NFModels collection
Parameters
- headers ListNFModelsHeaders (default {}) - Headers to be sent with the request
- queries *ListNFModelsQueries - Queries to be sent with the request
Return Type
- NFModelsCollectionResponse|error - A page of entities
createNFModels
Create a new NFModel
Parameters
- payload NFModel - Request payload
getNFModels
function getNFModels(string absEntry, map<string|string[]> headers, *GetNFModelsQueries queries) returns NFModel|errorGet a single NFModel by key
Parameters
- absEntry string - Key property 'AbsEntry' (Edm.String)
- queries *GetNFModelsQueries - Queries to be sent with the request
deleteNFModels
Delete a NFModel
Parameters
- absEntry string - Key property 'AbsEntry' (Edm.String)
Return Type
- error? - Deleted. No content returned
updateNFModels
function updateNFModels(string absEntry, NFModel payload, map<string|string[]> headers) returns error?Partially update a NFModel (PATCH/MERGE semantics)
Return Type
- error? - Updated. No content returned
nFModelsServiceGetList
function nFModelsServiceGetList(map<string|string[]> headers) returns inline_response_200_39|errorGet list
Return Type
- inline_response_200_39|error - Function result
listNFTaxCategories
function listNFTaxCategories(ListNFTaxCategoriesHeaders headers, *ListNFTaxCategoriesQueries queries) returns NFTaxCategoriesCollectionResponse|errorQuery the NFTaxCategories collection
Parameters
- headers ListNFTaxCategoriesHeaders (default {}) - Headers to be sent with the request
- queries *ListNFTaxCategoriesQueries - Queries to be sent with the request
Return Type
- NFTaxCategoriesCollectionResponse|error - A page of entities
createNFTaxCategories
function createNFTaxCategories(NFTaxCategory payload, map<string|string[]> headers) returns NFTaxCategory|errorCreate a new NFTaxCategory
Parameters
- payload NFTaxCategory - Request payload
Return Type
- NFTaxCategory|error - The created entity
getNFTaxCategories
function getNFTaxCategories(Signed32 absId, map<string|string[]> headers, *GetNFTaxCategoriesQueries queries) returns NFTaxCategory|errorGet a single NFTaxCategory by key
Parameters
- absId Signed32 - Key property 'AbsId' (Edm.Int32)
- queries *GetNFTaxCategoriesQueries - Queries to be sent with the request
Return Type
- NFTaxCategory|error - The requested entity
deleteNFTaxCategories
Delete a NFTaxCategory
Parameters
- absId Signed32 - Key property 'AbsId' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateNFTaxCategories
function updateNFTaxCategories(Signed32 absId, NFTaxCategory payload, map<string|string[]> headers) returns error?Partially update a NFTaxCategory (PATCH/MERGE semantics)
Return Type
- error? - Updated. No content returned
nFTaxCategoriesServiceGetList
function nFTaxCategoriesServiceGetList(map<string|string[]> headers) returns inline_response_200_40|errorGet list
Return Type
- inline_response_200_40|error - Function result
listNotaFiscalCFOP
function listNotaFiscalCFOP(ListNotaFiscalCFOPHeaders headers, *ListNotaFiscalCFOPQueries queries) returns NotaFiscalCFOPCollectionResponse|errorQuery the NotaFiscalCFOP collection
Parameters
- headers ListNotaFiscalCFOPHeaders (default {}) - Headers to be sent with the request
- queries *ListNotaFiscalCFOPQueries - Queries to be sent with the request
Return Type
- NotaFiscalCFOPCollectionResponse|error - A page of entities
createNotaFiscalCFOP
function createNotaFiscalCFOP(NotaFiscalCFOP payload, map<string|string[]> headers) returns NotaFiscalCFOP|errorCreate a new NotaFiscalCFOP
Parameters
- payload NotaFiscalCFOP - Request payload
Return Type
- NotaFiscalCFOP|error - The created entity
getNotaFiscalCFOP
function getNotaFiscalCFOP(Signed32 iD, map<string|string[]> headers, *GetNotaFiscalCFOPQueries queries) returns NotaFiscalCFOP|errorGet a single NotaFiscalCFOP by key
Parameters
- iD Signed32 - Key property 'ID' (Edm.Int32)
- queries *GetNotaFiscalCFOPQueries - Queries to be sent with the request
Return Type
- NotaFiscalCFOP|error - The requested entity
deleteNotaFiscalCFOP
Delete a NotaFiscalCFOP
Parameters
- iD Signed32 - Key property 'ID' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateNotaFiscalCFOP
function updateNotaFiscalCFOP(Signed32 iD, NotaFiscalCFOP payload, map<string|string[]> headers) returns error?Partially update a NotaFiscalCFOP (PATCH/MERGE semantics)
Return Type
- error? - Updated. No content returned
listNotaFiscalCST
function listNotaFiscalCST(ListNotaFiscalCSTHeaders headers, *ListNotaFiscalCSTQueries queries) returns NotaFiscalCSTCollectionResponse|errorQuery the NotaFiscalCST collection
Parameters
- headers ListNotaFiscalCSTHeaders (default {}) - Headers to be sent with the request
- queries *ListNotaFiscalCSTQueries - Queries to be sent with the request
Return Type
- NotaFiscalCSTCollectionResponse|error - A page of entities
createNotaFiscalCST
function createNotaFiscalCST(NotaFiscalCST payload, map<string|string[]> headers) returns NotaFiscalCST|errorCreate a new NotaFiscalCST
Parameters
- payload NotaFiscalCST - Request payload
Return Type
- NotaFiscalCST|error - The created entity
getNotaFiscalCST
function getNotaFiscalCST(Signed32 iD, map<string|string[]> headers, *GetNotaFiscalCSTQueries queries) returns NotaFiscalCST|errorGet a single NotaFiscalCST by key
Parameters
- iD Signed32 - Key property 'ID' (Edm.Int32)
- queries *GetNotaFiscalCSTQueries - Queries to be sent with the request
Return Type
- NotaFiscalCST|error - The requested entity
deleteNotaFiscalCST
Delete a NotaFiscalCST
Parameters
- iD Signed32 - Key property 'ID' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateNotaFiscalCST
function updateNotaFiscalCST(Signed32 iD, NotaFiscalCST payload, map<string|string[]> headers) returns error?Partially update a NotaFiscalCST (PATCH/MERGE semantics)
Return Type
- error? - Updated. No content returned
listNotaFiscalUsage
function listNotaFiscalUsage(ListNotaFiscalUsageHeaders headers, *ListNotaFiscalUsageQueries queries) returns NotaFiscalUsageCollectionResponse|errorQuery the NotaFiscalUsage collection
Parameters
- headers ListNotaFiscalUsageHeaders (default {}) - Headers to be sent with the request
- queries *ListNotaFiscalUsageQueries - Queries to be sent with the request
Return Type
- NotaFiscalUsageCollectionResponse|error - A page of entities
createNotaFiscalUsage
function createNotaFiscalUsage(NotaFiscalUsage payload, map<string|string[]> headers) returns NotaFiscalUsage|errorCreate a new NotaFiscalUsage
Parameters
- payload NotaFiscalUsage - Request payload
Return Type
- NotaFiscalUsage|error - The created entity
getNotaFiscalUsage
function getNotaFiscalUsage(Signed32 iD, map<string|string[]> headers, *GetNotaFiscalUsageQueries queries) returns NotaFiscalUsage|errorGet a single NotaFiscalUsage by key
Parameters
- iD Signed32 - Key property 'ID' (Edm.Int32)
- queries *GetNotaFiscalUsageQueries - Queries to be sent with the request
Return Type
- NotaFiscalUsage|error - The requested entity
deleteNotaFiscalUsage
Delete a NotaFiscalUsage
Parameters
- iD Signed32 - Key property 'ID' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateNotaFiscalUsage
function updateNotaFiscalUsage(Signed32 iD, NotaFiscalUsage payload, map<string|string[]> headers) returns error?Partially update a NotaFiscalUsage (PATCH/MERGE semantics)
Return Type
- error? - Updated. No content returned
listOccurrenceCodes
function listOccurrenceCodes(ListOccurrenceCodesHeaders headers, *ListOccurrenceCodesQueries queries) returns OccurrenceCodesCollectionResponse|errorQuery the OccurrenceCodes collection
Parameters
- headers ListOccurrenceCodesHeaders (default {}) - Headers to be sent with the request
- queries *ListOccurrenceCodesQueries - Queries to be sent with the request
Return Type
- OccurrenceCodesCollectionResponse|error - A page of entities
createOccurrenceCodes
function createOccurrenceCodes(OccurenceCode payload, map<string|string[]> headers) returns OccurenceCode|errorCreate a new OccurenceCode
Parameters
- payload OccurenceCode - Request payload
Return Type
- OccurenceCode|error - The created entity
getOccurrenceCodes
function getOccurrenceCodes(Signed32 absEntry, map<string|string[]> headers, *GetOccurrenceCodesQueries queries) returns OccurenceCode|errorGet a single OccurenceCode by key
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
- queries *GetOccurrenceCodesQueries - Queries to be sent with the request
Return Type
- OccurenceCode|error - The requested entity
deleteOccurrenceCodes
Delete a OccurenceCode
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateOccurrenceCodes
function updateOccurrenceCodes(Signed32 absEntry, OccurenceCode payload, map<string|string[]> headers) returns error?Partially update a OccurenceCode (PATCH/MERGE semantics)
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
- payload OccurenceCode - Request payload
Return Type
- error? - Updated. No content returned
occurrenceCodesServiceGetList
function occurrenceCodesServiceGetList(map<string|string[]> headers) returns inline_response_200_41|errorGet list
Return Type
- inline_response_200_41|error - Function result
listRetornoCodes
function listRetornoCodes(ListRetornoCodesHeaders headers, *ListRetornoCodesQueries queries) returns RetornoCodesCollectionResponse|errorQuery the RetornoCodes collection
Parameters
- headers ListRetornoCodesHeaders (default {}) - Headers to be sent with the request
- queries *ListRetornoCodesQueries - Queries to be sent with the request
Return Type
- RetornoCodesCollectionResponse|error - A page of entities
createRetornoCodes
function createRetornoCodes(RetornoCode payload, map<string|string[]> headers) returns RetornoCode|errorCreate a new RetornoCode
Parameters
- payload RetornoCode - Request payload
Return Type
- RetornoCode|error - The created entity
getRetornoCodes
function getRetornoCodes(Signed32 absEntry, map<string|string[]> headers, *GetRetornoCodesQueries queries) returns RetornoCode|errorGet a single RetornoCode by key
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
- queries *GetRetornoCodesQueries - Queries to be sent with the request
Return Type
- RetornoCode|error - The requested entity
deleteRetornoCodes
Delete a RetornoCode
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateRetornoCodes
function updateRetornoCodes(Signed32 absEntry, RetornoCode payload, map<string|string[]> headers) returns error?Partially update a RetornoCode (PATCH/MERGE semantics)
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
- payload RetornoCode - Request payload
Return Type
- error? - Updated. No content returned
retornoCodesServiceGetList
function retornoCodesServiceGetList(map<string|string[]> headers) returns inline_response_200_42|errorGet list
Return Type
- inline_response_200_42|error - Function result
selfCreditMemoServiceApproveAndAdd
function selfCreditMemoServiceApproveAndAdd(SelfCreditMemoService_ApproveAndAdd_body payload, map<string|string[]> headers) returns error?Approve and add
Parameters
- payload SelfCreditMemoService_ApproveAndAdd_body - Request payload
Return Type
- error? - Success. No content returned
selfCreditMemoServiceApproveAndUpdate
function selfCreditMemoServiceApproveAndUpdate(SelfCreditMemoService_ApproveAndUpdate_body payload, map<string|string[]> headers) returns error?Approve and update
Parameters
- payload SelfCreditMemoService_ApproveAndUpdate_body - Request payload
Return Type
- error? - Success. No content returned
selfCreditMemoServiceCloseByDate
function selfCreditMemoServiceCloseByDate(SelfCreditMemoService_CloseByDate_body payload, map<string|string[]> headers) returns error?Close by date
Parameters
- payload SelfCreditMemoService_CloseByDate_body - Request payload
Return Type
- error? - Success. No content returned
selfCreditMemoServiceExportEWayBill
function selfCreditMemoServiceExportEWayBill(SelfCreditMemoService_ExportEWayBill_body payload, map<string|string[]> headers) returns error?Export E way bill
Parameters
- payload SelfCreditMemoService_ExportEWayBill_body - Request payload
Return Type
- error? - Success. No content returned
selfCreditMemoServiceGetApprovalTemplates
function selfCreditMemoServiceGetApprovalTemplates(SelfCreditMemoService_GetApprovalTemplates_body payload, map<string|string[]> headers) returns Document|errorGet approval templates
Parameters
- payload SelfCreditMemoService_GetApprovalTemplates_body - Request payload
selfCreditMemoServiceHandleApprovalRequest
Handle approval request
Return Type
- error? - Success. No content returned
selfCreditMemoServiceInitData
Init data
listSelfCreditMemos
function listSelfCreditMemos(ListSelfCreditMemosHeaders headers, *ListSelfCreditMemosQueries queries) returns SelfCreditMemosCollectionResponse|errorQuery the SelfCreditMemos collection
Parameters
- headers ListSelfCreditMemosHeaders (default {}) - Headers to be sent with the request
- queries *ListSelfCreditMemosQueries - Queries to be sent with the request
Return Type
- SelfCreditMemosCollectionResponse|error - A page of entities
createSelfCreditMemos
function createSelfCreditMemos(Document payload, map<string|string[]> headers) returns Document|errorCreate a new Document
Parameters
- payload Document - Request payload
getSelfCreditMemos
function getSelfCreditMemos(Signed32 docEntry, map<string|string[]> headers, *GetSelfCreditMemosQueries queries) returns Document|errorGet a single Document by key
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
- queries *GetSelfCreditMemosQueries - Queries to be sent with the request
deleteSelfCreditMemos
Delete a Document
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateSelfCreditMemos
function updateSelfCreditMemos(Signed32 docEntry, Document payload, map<string|string[]> headers) returns error?Partially update a Document (PATCH/MERGE semantics)
Return Type
- error? - Updated. No content returned
selfCreditMemosCancel
Bound action 'Cancel' on SelfCreditMemos (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Success. No content returned
selfCreditMemosClose
Bound action 'Close' on SelfCreditMemos (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Success. No content returned
selfCreditMemosCreateCancellationDocument
function selfCreditMemosCreateCancellationDocument(Signed32 docEntry, map<string|string[]> headers) returns Document|errorBound action 'CreateCancellationDocument' on SelfCreditMemos (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
selfCreditMemosReopen
Bound action 'Reopen' on SelfCreditMemos (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Success. No content returned
selfInvoiceServiceApproveAndAdd
function selfInvoiceServiceApproveAndAdd(SelfInvoiceService_ApproveAndAdd_body payload, map<string|string[]> headers) returns error?Approve and add
Parameters
- payload SelfInvoiceService_ApproveAndAdd_body - Request payload
Return Type
- error? - Success. No content returned
selfInvoiceServiceApproveAndUpdate
function selfInvoiceServiceApproveAndUpdate(SelfInvoiceService_ApproveAndUpdate_body payload, map<string|string[]> headers) returns error?Approve and update
Parameters
- payload SelfInvoiceService_ApproveAndUpdate_body - Request payload
Return Type
- error? - Success. No content returned
selfInvoiceServiceCloseByDate
function selfInvoiceServiceCloseByDate(SelfInvoiceService_CloseByDate_body payload, map<string|string[]> headers) returns error?Close by date
Parameters
- payload SelfInvoiceService_CloseByDate_body - Request payload
Return Type
- error? - Success. No content returned
selfInvoiceServiceExportEWayBill
function selfInvoiceServiceExportEWayBill(SelfInvoiceService_ExportEWayBill_body payload, map<string|string[]> headers) returns error?Export E way bill
Parameters
- payload SelfInvoiceService_ExportEWayBill_body - Request payload
Return Type
- error? - Success. No content returned
selfInvoiceServiceGetApprovalTemplates
function selfInvoiceServiceGetApprovalTemplates(SelfInvoiceService_GetApprovalTemplates_body payload, map<string|string[]> headers) returns Document|errorGet approval templates
Parameters
- payload SelfInvoiceService_GetApprovalTemplates_body - Request payload
selfInvoiceServiceHandleApprovalRequest
Handle approval request
Return Type
- error? - Success. No content returned
selfInvoiceServiceInitData
Init data
listSelfInvoices
function listSelfInvoices(ListSelfInvoicesHeaders headers, *ListSelfInvoicesQueries queries) returns SelfInvoicesCollectionResponse|errorQuery the SelfInvoices collection
Parameters
- headers ListSelfInvoicesHeaders (default {}) - Headers to be sent with the request
- queries *ListSelfInvoicesQueries - Queries to be sent with the request
Return Type
- SelfInvoicesCollectionResponse|error - A page of entities
createSelfInvoices
Create a new Document
Parameters
- payload Document - Request payload
getSelfInvoices
function getSelfInvoices(Signed32 docEntry, map<string|string[]> headers, *GetSelfInvoicesQueries queries) returns Document|errorGet a single Document by key
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
- queries *GetSelfInvoicesQueries - Queries to be sent with the request
deleteSelfInvoices
Delete a Document
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateSelfInvoices
function updateSelfInvoices(Signed32 docEntry, Document payload, map<string|string[]> headers) returns error?Partially update a Document (PATCH/MERGE semantics)
Return Type
- error? - Updated. No content returned
selfInvoicesCancel
Bound action 'Cancel' on SelfInvoices (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Success. No content returned
selfInvoicesClose
Bound action 'Close' on SelfInvoices (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Success. No content returned
selfInvoicesCreateCancellationDocument
function selfInvoicesCreateCancellationDocument(Signed32 docEntry, map<string|string[]> headers) returns Document|errorBound action 'CreateCancellationDocument' on SelfInvoices (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
selfInvoicesReopen
Bound action 'Reopen' on SelfInvoices (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Success. No content returned
listServiceGroups
function listServiceGroups(ListServiceGroupsHeaders headers, *ListServiceGroupsQueries queries) returns ServiceGroupsCollectionResponse|errorQuery the ServiceGroups collection
Parameters
- headers ListServiceGroupsHeaders (default {}) - Headers to be sent with the request
- queries *ListServiceGroupsQueries - Queries to be sent with the request
Return Type
- ServiceGroupsCollectionResponse|error - A page of entities
createServiceGroups
function createServiceGroups(ServiceGroup payload, map<string|string[]> headers) returns ServiceGroup|errorCreate a new ServiceGroup
Parameters
- payload ServiceGroup - Request payload
Return Type
- ServiceGroup|error - The created entity
getServiceGroups
function getServiceGroups(Signed32 absEntry, map<string|string[]> headers, *GetServiceGroupsQueries queries) returns ServiceGroup|errorGet a single ServiceGroup by key
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
- queries *GetServiceGroupsQueries - Queries to be sent with the request
Return Type
- ServiceGroup|error - The requested entity
deleteServiceGroups
Delete a ServiceGroup
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateServiceGroups
function updateServiceGroups(Signed32 absEntry, ServiceGroup payload, map<string|string[]> headers) returns error?Partially update a ServiceGroup (PATCH/MERGE semantics)
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
- payload ServiceGroup - Request payload
Return Type
- error? - Updated. No content returned
serviceGroupsServiceGetServiceGroupList
function serviceGroupsServiceGetServiceGroupList(map<string|string[]> headers) returns inline_response_200_43|errorGet service group list
Return Type
- inline_response_200_43|error - Function result
serviceTaxPostingServiceGetTaxableDeliveries
function serviceTaxPostingServiceGetTaxableDeliveries(map<string|string[]> headers) returns inline_response_200_44|errorGet taxable deliveries
Return Type
- inline_response_200_44|error - Function result
serviceTaxPostingServicePostServiceTax
function serviceTaxPostingServicePostServiceTax(ServiceTaxPostingService_PostServiceTax_body payload, map<string|string[]> headers) returns error?Post service tax
Parameters
- payload ServiceTaxPostingService_PostServiceTax_body - Request payload
Return Type
- error? - Success. No content returned
listTransportationDocument
function listTransportationDocument(ListTransportationDocumentHeaders headers, *ListTransportationDocumentQueries queries) returns TransportationDocumentCollectionResponse|errorQuery the TransportationDocument collection
Parameters
- headers ListTransportationDocumentHeaders (default {}) - Headers to be sent with the request
- queries *ListTransportationDocumentQueries - Queries to be sent with the request
Return Type
- TransportationDocumentCollectionResponse|error - A page of entities
createTransportationDocument
function createTransportationDocument(TransportationDocumentData payload, map<string|string[]> headers) returns TransportationDocumentData|errorCreate a new TransportationDocumentData
Parameters
- payload TransportationDocumentData - Request payload
Return Type
- TransportationDocumentData|error - The created entity
getTransportationDocument
function getTransportationDocument(Signed32 transpDocNumber, map<string|string[]> headers, *GetTransportationDocumentQueries queries) returns TransportationDocumentData|errorGet a single TransportationDocumentData by key
Parameters
- transpDocNumber Signed32 - Key property 'TranspDocNumber' (Edm.Int32)
- queries *GetTransportationDocumentQueries - Queries to be sent with the request
Return Type
- TransportationDocumentData|error - The requested entity
deleteTransportationDocument
function deleteTransportationDocument(Signed32 transpDocNumber, map<string|string[]> headers) returns error?Delete a TransportationDocumentData
Parameters
- transpDocNumber Signed32 - Key property 'TranspDocNumber' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateTransportationDocument
function updateTransportationDocument(Signed32 transpDocNumber, TransportationDocumentData payload, map<string|string[]> headers) returns error?Partially update a TransportationDocumentData (PATCH/MERGE semantics)
Parameters
- transpDocNumber Signed32 - Key property 'TranspDocNumber' (Edm.Int32)
- payload TransportationDocumentData - Request payload
Return Type
- error? - Updated. No content returned
transportationDocumentCancelTransportationDocument
function transportationDocumentCancelTransportationDocument(Signed32 transpDocNumber, map<string|string[]> headers) returns error?Bound action 'CancelTransportationDocument' on TransportationDocument (binding type TransportationDocumentData)
Parameters
- transpDocNumber Signed32 - Key property 'TranspDocNumber' (Edm.Int32)
Return Type
- error? - Success. No content returned
logout
function logout() returns error?Ends the active SAP Business One Service Layer session
Return Type
- error? - An error if the logout failed
Records
sap.businessone.localization: AddressExtension
The AddressExtension complex type of the SAP Business One Service Layer
Fields
- ShipToStreet? string -
- ShipToStreetNo? string -
- ShipToBlock? string -
- ShipToBuilding? string -
- ShipToCity? string -
- ShipToZipCode? string -
- ShipToCounty? string -
- ShipToState? string -
- ShipToCountry? string -
- ShipToAddressType? string -
- BillToStreet? string -
- BillToStreetNo? string -
- BillToBlock? string -
- BillToBuilding? string -
- BillToCity? string -
- BillToZipCode? string -
- BillToCounty? string -
- BillToState? string -
- BillToCountry? string -
- BillToAddressType? string -
- ShipToGlobalLocationNumber? string -
- BillToGlobalLocationNumber? string -
- ShipToAddress2? string -
- ShipToAddress3? string -
- BillToAddress2? string -
- BillToAddress3? string -
- PlaceOfSupply? string -
- PurchasePlaceOfSupply? string -
- DocEntry? Signed32 -
- GoodsIssuePlaceBP? string -
- GoodsIssuePlaceCNPJ? string -
- GoodsIssuePlaceCPF? string -
- GoodsIssuePlaceStreet? string -
- GoodsIssuePlaceStreetNo? string -
- GoodsIssuePlaceBuilding? string -
- GoodsIssuePlaceZip? string -
- GoodsIssuePlaceBlock? string -
- GoodsIssuePlaceCity? string -
- GoodsIssuePlaceCounty? string -
- GoodsIssuePlaceState? string -
- GoodsIssuePlaceCountry? string -
- GoodsIssuePlacePhone? string -
- GoodsIssuePlaceEMail? string -
- GoodsIssuePlaceDepartureDate? string -
- DeliveryPlaceBP? string -
- DeliveryPlaceCNPJ? string -
- DeliveryPlaceCPF? string -
- DeliveryPlaceStreet? string -
- DeliveryPlaceStreetNo? string -
- DeliveryPlaceBuilding? string -
- DeliveryPlaceZip? string -
- DeliveryPlaceBlock? string -
- DeliveryPlaceCity? string -
- DeliveryPlaceCounty? string -
- DeliveryPlaceState? string -
- DeliveryPlaceCountry? string -
- DeliveryPlacePhone? string -
- DeliveryPlaceEMail? string -
- DeliveryPlaceDepartureDate? string -
- ShipToStreetForReturn? string -
- ShipToStreetNoForReturn? string -
- ShipToBlockForReturn? string -
- ShipToBuildingForReturn? string -
- ShipToCityForReturn? string -
- ShipToZipCodeForReturn? string -
- ShipToCountyForReturn? string -
- ShipToStateForReturn? string -
- ShipToCountryForReturn? string -
- ShipToAddressTypeForReturn? string -
- ShipToGlobalLocationNumberForReturn? string -
- ShipToAddress2ForReturn? string -
- ShipToAddress3ForReturn? string -
sap.businessone.localization: AFEFceActionGetByFceID
The AFEFceActionGetByFceID complex type of the SAP Business One Service Layer
Fields
- fCETotalVal? decimal -
- gUID? string -
- absEntry? Signed32 -
- fCECurrency? string -
- fCEDcApStat? string -
- srcObjType? string -
- fCEFolio? Signed32 -
- assignedID? string -
- fCEPOI? string -
- fCERjRsnCod? string -
- fCEDocType? Signed32 -
- fCEID? Signed32 -
- docSubType? string -
- srcObjAbs? Signed32 -
- fCERjRsnDes? string -
- actStatus? EcmActionStatusEnum -
sap.businessone.localization: AFEFceActionGetPaymentData
The AFEFceActionGetPaymentData complex type of the SAP Business One Service Layer
Fields
- trsfrSum? decimal -
- docRate? decimal -
- cashSum? decimal -
- creditSum? decimal -
- checkSum? decimal -
- docEntry? Signed32 -
sap.businessone.localization: AFEFceAPCheckECM2Entry
The AFEFceAPCheckECM2Entry complex type of the SAP Business One Service Layer
Fields
- gUID? string -
- absEntry? Signed32 -
- code? string -
sap.businessone.localization: AFEFceAPCheckECM2EntryParams
The AFEFceAPCheckECM2EntryParams complex type of the SAP Business One Service Layer
Fields
- docType? Signed32 -
- folio? Signed32 -
- poi? string -
- assignedID? string -
sap.businessone.localization: AFEFceAPGetLatestAFIPDate
The AFEFceAPGetLatestAFIPDate complex type of the SAP Business One Service Layer
Fields
- maxFCEDocDate? string -
sap.businessone.localization: AFEFceARGetDateFromTo
The AFEFceARGetDateFromTo complex type of the SAP Business One Service Layer
Fields
- dateFrom? string -
- dateTo? string -
sap.businessone.localization: AFEFceARGetDocuments
The AFEFceARGetDocuments complex type of the SAP Business One Service Layer
Fields
- eDocType? string -
- letter? string -
- folNumFrom? Signed32 -
- objType? string -
- gUID? string -
- docEntry? Signed32 -
- docSubType? string -
- absEntry? Signed32 -
- pTICode? string -
sap.businessone.localization: AFEFceID
The AFEFceID complex type of the SAP Business One Service Layer
Fields
- fceID? Signed32 -
sap.businessone.localization: AFERenumberFolioParams
The AFERenumberFolioParams complex type of the SAP Business One Service Layer
Fields
- newFolioNumber? Signed32 -
- absEntry? Signed32 -
sap.businessone.localization: AFEUpdFceAPARGetDocuments
The AFEUpdFceAPARGetDocuments complex type of the SAP Business One Service Layer
Fields
- actType? Signed32 -
- updateTS? Signed32 -
- gUID? string -
- isAP? string -
- absEntry? Signed32 -
- fCEDcApStat? string -
- fCEApprStat? string -
- fCEFolio? Signed32 -
- updateDate? string -
- fCEPOI? string -
- fCEDocType? Signed32 -
- fCEID? Signed32 -
- actStatus? string -
sap.businessone.localization: AutoDistributionRuleLine
The AutoDistributionRuleLine complex type of the SAP Business One Service Layer
Fields
- taxAccount? string -
- locationCode? Signed32 -
- allocatePercent? decimal -
sap.businessone.localization: BatchNumber
The BatchNumber complex type of the SAP Business One Service Layer
Fields
- BatchNumber? string -
- ManufacturerSerialNumber? string -
- InternalSerialNumber? string -
- ExpiryDate? string -
- ManufacturingDate? string -
- AddmisionDate? string -
- Location? string -
- Notes? string -
- Quantity? decimal -
- BaseLineNumber? Signed32 -
- TrackingNote? Signed32 -
- TrackingNoteLine? Signed32 -
- ItemCode? string -
- SystemSerialNumber? Signed32 -
sap.businessone.localization: BEMReplicationPeriod
The BEMReplicationPeriod entity of the SAP Business One Service Layer
Fields
- startDate? string -
- status? BEMReplicationStatusEnum -
- updateDate? string -
- scopeName? string -
- scopeKey? string -
- lastRepId? string -
- repMessage? string -
- absEntry? Signed32 -
- periodic? BEMPeriodicTypeEnum -
sap.businessone.localization: BEMReplicationPeriodParams
The BEMReplicationPeriodParams complex type of the SAP Business One Service Layer
Fields
- absEntry? Signed32 -
sap.businessone.localization: BEMReplicationPeriodsCollectionResponse
A paged collection of BEMReplicationPeriods entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? BEMReplicationPeriod[] -
- odataNextLink? string -
sap.businessone.localization: BrazilBeverageIndexer
The BrazilBeverageIndexer entity of the SAP Business One Service Layer
Fields
- brazilStringIndexer? BrazilStringIndexer -
- beverageID? Signed32 -
- beverageTableCode? string -
- beverageGroupCode? string -
- beverageCommercialBrandCode? Signed32 -
- brazilNumericIndexer? BrazilNumericIndexer -
sap.businessone.localization: BrazilBeverageIndexerParams
The BrazilBeverageIndexerParams complex type of the SAP Business One Service Layer
Fields
- beverageID? Signed32 -
sap.businessone.localization: BrazilBeverageIndexersCollectionResponse
A paged collection of BrazilBeverageIndexers entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? BrazilBeverageIndexer[] -
- odataNextLink? string -
sap.businessone.localization: BrazilFuelIndexer
The BrazilFuelIndexer entity of the SAP Business One Service Layer
Fields
- fuelID? Signed32 -
- description? string -
- fuelCode? string -
- fuelGroupCode? Signed32 -
sap.businessone.localization: BrazilFuelIndexerParams
The BrazilFuelIndexerParams complex type of the SAP Business One Service Layer
Fields
- fuelID? Signed32 -
- description? string -
- fuelCode? string -
- fuelGroupCode? Signed32 -
sap.businessone.localization: BrazilFuelIndexersCollectionResponse
A paged collection of BrazilFuelIndexers entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? BrazilFuelIndexer[] -
- odataNextLink? string -
sap.businessone.localization: BrazilMultiIndexer
The BrazilMultiIndexer entity of the SAP Business One Service Layer
Fields
- secondRefIndexerCode? string -
- indexerType? BrazilMultiIndexerTypes -
- firstRefIndexerCode? string -
- description? string -
- thirdRefIndexerCode? string -
- iD? Signed32 -
- code? string -
sap.businessone.localization: BrazilMultiIndexerParams
The BrazilMultiIndexerParams complex type of the SAP Business One Service Layer
Fields
- iD? Signed32 -
sap.businessone.localization: BrazilMultiIndexersCollectionResponse
A paged collection of BrazilMultiIndexers entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? BrazilMultiIndexer[] -
- odataNextLink? string -
sap.businessone.localization: BrazilNumericIndexer
The BrazilNumericIndexer entity of the SAP Business One Service Layer
Fields
- indexerType? BrazilNumericIndexerTypes -
- description? string -
- iD? Signed32 -
- brazilBeverageIndexers? BrazilBeverageIndexer[] -
- code? Signed32 -
sap.businessone.localization: BrazilNumericIndexerParams
The BrazilNumericIndexerParams complex type of the SAP Business One Service Layer
Fields
- iD? Signed32 -
sap.businessone.localization: BrazilNumericIndexersCollectionResponse
A paged collection of BrazilNumericIndexers entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? BrazilNumericIndexer[] -
- odataNextLink? string -
sap.businessone.localization: BrazilStringIndexer
The BrazilStringIndexer entity of the SAP Business One Service Layer
Fields
- indexerType? BrazilStringIndexerTypes -
- description? string -
- iD? Signed32 -
- brazilBeverageIndexers? BrazilBeverageIndexer[] -
- code? string -
sap.businessone.localization: BrazilStringIndexerParams
The BrazilStringIndexerParams complex type of the SAP Business One Service Layer
Fields
- iD? Signed32 -
sap.businessone.localization: BrazilStringIndexersCollectionResponse
A paged collection of BrazilStringIndexers entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? BrazilStringIndexer[] -
- odataNextLink? string -
sap.businessone.localization: CCDNumber
The CCDNumber complex type of the SAP Business One Service Layer
Fields
- TrackingNote? Signed32 -
- TrackingNoteLine? Signed32 -
- CCDNumber? string -
- Quantity? decimal -
- CountryOfOrigin? string -
- SubLineNumber? Signed32 -
- DocumentEntry? Signed32 -
- BaseLineNumber? Signed32 -
- ChildNumber? Signed32 -
sap.businessone.localization: CertificateSeries
The CertificateSeries entity of the SAP Business One Service Layer
Fields
- absEntry? Signed32 -
- code? string -
- section? Signed32 -
- defaultSeries? Signed32 -
- location? Signed32 -
- seriesLines? SeriesLine[] -
sap.businessone.localization: CertificateSeriesCollectionResponse
A paged collection of CertificateSeries entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? CertificateSeries[] -
- odataNextLink? string -
sap.businessone.localization: CertificateSeriesParams
The CertificateSeriesParams complex type of the SAP Business One Service Layer
Fields
- absEntry? Signed32 -
- code? string -
- section? Signed32 -
- location? Signed32 -
sap.businessone.localization: CESTCodeData
The CESTCodeData entity of the SAP Business One Service Layer
Fields
- description? string -
- absEntry? Signed32 -
- code? string -
sap.businessone.localization: CESTCodesCollectionResponse
A paged collection of CESTCodes entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? CESTCodeData[] -
- odataNextLink? string -
sap.businessone.localization: CIGCode
The CIGCode entity of the SAP Business One Service Layer
Fields
- correctionInvoice? Document[] -
- orders? Document[] -
- purchaseRequests? Document[] -
- inventoryGenExits? Document[] -
- purchaseQuotations? Document[] -
- purchaseDeliveryNotes? Document[] -
- invoices? Document[] -
- purchaseDownPayments? Document[] -
- absEntry? Signed32 -
- creditNotes? Document[] -
- purchaseInvoices? Document[] -
- 'returns? Document[] -
- correctionPurchaseInvoice? Document[] -
- quotations? Document[] -
- purchaseCreditNotes? Document[] -
- goodsReturnRequest? Document[] -
- returnRequest? Document[] -
- inventoryGenEntries? Document[] -
- purchaseReturns? Document[] -
- purchaseOrders? Document[] -
- downPayments? Document[] -
- correctionInvoiceReversal? Document[] -
- code? string -
- deliveryNotes? Document[] -
- selfInvoices? Document[] -
- drafts? Document[] -
- selfCreditMemos? Document[] -
- correctionPurchaseInvoiceReversal? Document[] -
sap.businessone.localization: CIGCodeParams
The CIGCodeParams complex type of the SAP Business One Service Layer
Fields
- absEntry? Signed32 -
sap.businessone.localization: CIGCodesCollectionResponse
A paged collection of CIGCodes entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? CIGCode[] -
- odataNextLink? string -
sap.businessone.localization: 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.localization: CUPCode
The CUPCode entity of the SAP Business One Service Layer
Fields
- correctionInvoice? Document[] -
- orders? Document[] -
- purchaseRequests? Document[] -
- inventoryGenExits? Document[] -
- purchaseQuotations? Document[] -
- purchaseDeliveryNotes? Document[] -
- invoices? Document[] -
- purchaseDownPayments? Document[] -
- absEntry? Signed32 -
- creditNotes? Document[] -
- purchaseInvoices? Document[] -
- 'returns? Document[] -
- correctionPurchaseInvoice? Document[] -
- quotations? Document[] -
- purchaseCreditNotes? Document[] -
- goodsReturnRequest? Document[] -
- returnRequest? Document[] -
- inventoryGenEntries? Document[] -
- purchaseReturns? Document[] -
- purchaseOrders? Document[] -
- downPayments? Document[] -
- correctionInvoiceReversal? Document[] -
- code? string -
- deliveryNotes? Document[] -
- selfInvoices? Document[] -
- drafts? Document[] -
- selfCreditMemos? Document[] -
- correctionPurchaseInvoiceReversal? Document[] -
sap.businessone.localization: CUPCodeParams
The CUPCodeParams complex type of the SAP Business One Service Layer
Fields
- absEntry? Signed32 -
sap.businessone.localization: CUPCodesCollectionResponse
A paged collection of CUPCodes entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? CUPCode[] -
- odataNextLink? string -
sap.businessone.localization: CustomsDeclaration
The CustomsDeclaration entity of the SAP Business One Service Layer
Fields
- CCDNum? string -
- Date? string -
- CustomsBroker? string -
- DocNum? string -
- DocDate? string -
- SupplyNum? string -
- SupplyDate? string -
- CustomsTerminal? string -
- PaymentKey? string -
sap.businessone.localization: CustomsDeclarationCollectionResponse
A paged collection of CustomsDeclaration entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? CustomsDeclaration[] -
- odataNextLink? string -
sap.businessone.localization: DatevRun
The DatevRun entity of the SAP Business One Service Layer
Fields
- RunId? Signed32 -
- Status? string -
- Description? string -
- ExportPath? string -
- Updater? string -
- GLAccounts? string -
- Suppliers? string -
- Customers? string -
- Journals? string -
- AllJETypes? string -
- Manual? string -
- Purchase? string -
- Sales? string -
- DateType? string -
- StartDate? string -
- EndDate? string -
- StartFiscalYear? string -
- UserSign? Signed32 -
- CreateDate? string -
- CreateTime? string -
- UpdateDate? string -
- UserSign2? Signed32 -
sap.businessone.localization: DatevRunsCollectionResponse
A paged collection of DatevRuns entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? DatevRun[] -
- odataNextLink? string -
sap.businessone.localization: DefaultElementsforCR
The DefaultElementsforCR entity of the SAP Business One Service Layer
Fields
- code? Signed32 -
- name? string -
sap.businessone.localization: DefaultElementsforCRCollectionResponse
A paged collection of DefaultElementsforCR entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? DefaultElementsforCR[] -
- odataNextLink? string -
sap.businessone.localization: DistributableLine
The DistributableLine complex type of the SAP Business One Service Layer
Fields
- DocumentEntry? Signed32 -
- SourceType? ISDDocumentTypeEnum - OData EnumType 'ISDDocumentTypeEnum'. Serialised by the Service Layer as the member name
- SourceLocationCode? Signed32 -
- SourceLocationName? string -
- SourceGSTTaxType? ISDSTATypeEnum - OData EnumType 'ISDSTATypeEnum'. Serialised by the Service Layer as the member name
- SourceTaxAccount? string -
- SourceITCType? ISDITCTypeEnum - OData EnumType 'ISDITCTypeEnum'. Serialised by the Service Layer as the member name
- AvailableAmount? decimal -
- DistributeAmount? decimal -
sap.businessone.localization: DistributedLine
The DistributedLine complex type of the SAP Business One Service Layer
Fields
- DocumentEntry? Signed32 -
- TargetLocationCode? Signed32 -
- TargetLocationName? string -
- TargetGSTTaxType? ISDSTATypeEnum - OData EnumType 'ISDSTATypeEnum'. Serialised by the Service Layer as the member name
- TargetTaxAccount? string -
- AllocatedAmount? decimal -
sap.businessone.localization: DNFCodeSetup
The DNFCodeSetup entity of the SAP Business One Service Layer
Fields
- nCMCode? Signed32 -
- uoM? string -
- dNFCode? string -
- factor? decimal -
- absEntry? Signed32 -
- nCMCodeSetup? NCMCodeSetup -
sap.businessone.localization: DNFCodeSetupCollectionResponse
A paged collection of DNFCodeSetup entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? DNFCodeSetup[] -
- odataNextLink? string -
sap.businessone.localization: DNFCodeSetupParams
The DNFCodeSetupParams complex type of the SAP Business One Service Layer
Fields
- nCMCode? Signed32 -
- dNFCode? string -
- absEntry? Signed32 -
sap.businessone.localization: DocExpenseTaxJurisdiction
The DocExpenseTaxJurisdiction complex type of the SAP Business One Service Layer
Fields
- JurisdictionCode? string -
- JurisdictionType? Signed32 -
- TaxAmount? decimal -
- TaxAmountSC? decimal -
- TaxAmountFC? decimal -
- TaxRate? decimal -
- DocEntry? Signed32 -
- LineNumber? Signed32 -
- RowSequence? Signed32 -
- ExternalCalcTaxRate? decimal -
- ExternalCalcTaxAmount? decimal -
- ExternalCalcTaxAmountFC? decimal -
- ExternalCalcTaxAmountSC? decimal -
sap.businessone.localization: DocFreightEBooksDetail
The DocFreightEBooksDetail complex type of the SAP Business One Service Layer
Fields
- IncomeClassificationType? Signed32 -
- IncomeClassificationCategory? Signed32 -
- ExpensesClassificationType? Signed32 -
- ExpensesClassificationCategory? Signed32 -
- NetValueLC? decimal -
- NetValueFC? decimal -
- NetValueSC? decimal -
- VatCategory? Signed32 -
- WithheldPercentCategory? Signed32 -
- WithheldAmountLC? decimal -
- WithheldAmountFC? decimal -
- WithheldAmountSC? decimal -
- VatClassificationType? Signed32 -
- VatClassificationCategory? Signed32 -
- VATExemptionCause? Signed32 -
sap.businessone.localization: DocLinePickList
The DocLinePickList complex type of the SAP Business One Service Layer
Fields
- pickListLineNum? Signed32 -
- pickListBatchAndBinLineNum? Signed32 -
- pickListEntry? Signed32 -
sap.businessone.localization: Document
The Document entity of the SAP Business One Service Layer
Fields
- DocEntry? Signed32 -
- DocNum? Signed32 -
- DocType? BoDocumentTypes - OData EnumType 'BoDocumentTypes'. Serialised by the Service Layer as the member name
- HandWritten? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Printed? PrintStatusEnum - OData EnumType 'PrintStatusEnum'. Serialised by the Service Layer as the member name
- DocDate? string -
- DocDueDate? string -
- CardCode? string -
- CardName? string -
- Address? string -
- NumAtCard? string -
- DocTotal? decimal -
- AttachmentEntry? Signed32 -
- DocCurrency? string -
- DocRate? decimal -
- Reference1? string -
- Reference2? string -
- Comments? string -
- JournalMemo? string -
- PaymentGroupCode? Signed32 -
- DocTime? string -
- SalesPersonCode? Signed32 -
- TransportationCode? Signed32 -
- Confirmed? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ImportFileNum? Signed32 -
- SummeryType? BoDocSummaryTypes - OData EnumType 'BoDocSummaryTypes'. Serialised by the Service Layer as the member name
- ContactPersonCode? Signed32 -
- ShowSCN? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Series? Signed32 -
- TaxDate? string -
- PartialSupply? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- DocObjectCode? BoObjectTypes - OData EnumType 'BoObjectTypes'. Serialised by the Service Layer as the member name
- ShipToCode? string -
- Indicator? string -
- FederalTaxID? string -
- DiscountPercent? decimal -
- PaymentReference? string -
- CreationDate? string -
- UpdateDate? string -
- FinancialPeriod? Signed32 -
- UserSign? Signed32 -
- TransNum? Signed32 -
- VatSum? decimal -
- VatSumSys? decimal -
- VatSumFc? decimal -
- NetProcedure? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- DocTotalFc? decimal -
- DocTotalSys? decimal -
- Form1099? Signed32 -
- Box1099? string -
- RevisionPo? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- RequriedDate? string -
- CancelDate? string -
- BlockDunning? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Submitted? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Segment? Signed32 -
- PickStatus? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Pick? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- PaymentMethod? string -
- PaymentBlock? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- PaymentBlockEntry? Signed32 -
- CentralBankIndicator? string -
- MaximumCashDiscount? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Reserve? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Project? string -
- ExemptionValidityDateFrom? string -
- ExemptionValidityDateTo? string -
- WareHouseUpdateType? BoDocWhsUpdateTypes - OData EnumType 'BoDocWhsUpdateTypes'. Serialised by the Service Layer as the member name
- Rounding? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ExternalCorrectedDocNum? string -
- InternalCorrectedDocNum? Signed32 -
- NextCorrectingDocument? Signed32 -
- DeferredTax? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- TaxExemptionLetterNum? string -
- WTApplied? decimal -
- WTAppliedFC? decimal -
- BillOfExchangeReserved? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- AgentCode? string -
- WTAppliedSC? decimal -
- TotalEqualizationTax? decimal -
- TotalEqualizationTaxFC? decimal -
- TotalEqualizationTaxSC? decimal -
- NumberOfInstallments? Signed32 -
- ApplyTaxOnFirstInstallment? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- TaxOnInstallments? BoTaxOnInstallmentsTypeEnum - OData EnumType 'BoTaxOnInstallmentsTypeEnum'. Serialised by the Service Layer as the member name
- WTNonSubjectAmount? decimal -
- WTNonSubjectAmountSC? decimal -
- WTNonSubjectAmountFC? decimal -
- WTExemptedAmount? decimal -
- WTExemptedAmountSC? decimal -
- WTExemptedAmountFC? decimal -
- BaseAmount? decimal -
- BaseAmountSC? decimal -
- BaseAmountFC? decimal -
- WTAmount? decimal -
- WTAmountSC? decimal -
- WTAmountFC? decimal -
- VatDate? string -
- DocumentsOwner? Signed32 -
- FolioPrefixString? string -
- FolioNumber? Signed32 -
- DocumentSubType? BoDocumentSubType - OData EnumType 'BoDocumentSubType'. Serialised by the Service Layer as the member name
- BPChannelCode? string -
- BPChannelContact? Signed32 -
- Address2? string -
- DocumentStatus? BoStatus - OData EnumType 'BoStatus'. Serialised by the Service Layer as the member name
- PeriodIndicator? string -
- PayToCode? string -
- ManualNumber? string -
- UseShpdGoodsAct? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- IsPayToBank? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- PayToBankCountry? string -
- PayToBankCode? string -
- PayToBankAccountNo? string -
- PayToBankBranch? string -
- BPL_IDAssignedToInvoice? Signed32 -
- DownPayment? decimal -
- ReserveInvoice? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- LanguageCode? Signed32 -
- TrackingNumber? string -
- PickRemark? string -
- ClosingDate? string -
- SequenceCode? Signed32 -
- SequenceSerial? Signed32 -
- SeriesString? string -
- SubSeriesString? string -
- SequenceModel? string -
- UseCorrectionVATGroup? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- TotalDiscount? decimal -
- DownPaymentAmount? decimal -
- DownPaymentPercentage? decimal -
- DownPaymentType? DownPaymentTypeEnum - OData EnumType 'DownPaymentTypeEnum'. Serialised by the Service Layer as the member name
- DownPaymentAmountSC? decimal -
- DownPaymentAmountFC? decimal -
- VatPercent? decimal -
- ServiceGrossProfitPercent? decimal -
- OpeningRemarks? string -
- ClosingRemarks? string -
- RoundingDiffAmount? decimal -
- RoundingDiffAmountFC? decimal -
- RoundingDiffAmountSC? decimal -
- Cancelled? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- SignatureInputMessage? string -
- SignatureDigest? string -
- CertificationNumber? string -
- PrivateKeyVersion? Signed32 -
- ControlAccount? string -
- InsuranceOperation347? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ArchiveNonremovableSalesQuotation? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- GTSChecker? Signed32 -
- GTSPayee? Signed32 -
- ExtraMonth? Signed32 -
- ExtraDays? Signed32 -
- CashDiscountDateOffset? Signed32 -
- StartFrom? BoPayTermDueTypes - OData EnumType 'BoPayTermDueTypes'. Serialised by the Service Layer as the member name
- NTSApproved? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ETaxWebSite? Signed32 -
- ETaxNumber? string -
- NTSApprovedNumber? string -
- EDocGenerationType? EDocGenerationTypeEnum - OData EnumType 'EDocGenerationTypeEnum'. Serialised by the Service Layer as the member name
- EDocSeries? Signed32 -
- EDocNum? string -
- EDocExportFormat? Signed32 -
- EDocStatus? EDocStatusEnum - OData EnumType 'EDocStatusEnum'. Serialised by the Service Layer as the member name
- EDocErrorCode? string -
- EDocErrorMessage? string -
- DownPaymentStatus? BoSoStatus - OData EnumType 'BoSoStatus'. Serialised by the Service Layer as the member name
- GroupSeries? Signed32 -
- GroupNumber? Signed32 -
- GroupHandWritten? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ReopenOriginalDocument? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ReopenManuallyClosedOrCanceledDocument? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- CreateOnlineQuotation? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- POSEquipmentNumber? string -
- POSManufacturerSerialNumber? string -
- POSCashierNumber? Signed32 -
- ApplyCurrentVATRatesForDownPaymentsToDraw? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ClosingOption? ClosingOptionEnum - OData EnumType 'ClosingOptionEnum'. Serialised by the Service Layer as the member name
- SpecifiedClosingDate? string -
- OpenForLandedCosts? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- AuthorizationStatus? DocumentAuthorizationStatusEnum - OData EnumType 'DocumentAuthorizationStatusEnum'. Serialised by the Service Layer as the member name
- TotalDiscountFC? decimal -
- TotalDiscountSC? decimal -
- RelevantToGTS? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- BPLName? string -
- VATRegNum? string -
- AnnualInvoiceDeclarationReference? Signed32 -
- Supplier? string -
- Releaser? Signed32 -
- Receiver? Signed32 -
- BlanketAgreementNumber? Signed32 -
- IsAlteration? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- CancelStatus? CancelStatusEnum - OData EnumType 'CancelStatusEnum'. Serialised by the Service Layer as the member name
- DraftKey? Signed32 -
- AssetValueDate? string -
- Requester? string -
- RequesterName? string -
- RequesterBranch? Signed32 -
- RequesterDepartment? Signed32 -
- RequesterEmail? string -
- SendNotification? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ReqType? Signed32 -
- ReqCode? string -
- InvoicePayment? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- DocumentDelivery? DocumentDeliveryTypeEnum - OData EnumType 'DocumentDeliveryTypeEnum'. Serialised by the Service Layer as the member name
- AuthorizationCode? string -
- StartDeliveryDate? string -
- StartDeliveryTime? string -
- EndDeliveryDate? string -
- EndDeliveryTime? string -
- VehiclePlate? string -
- ATDocumentType? string -
- ElecCommStatus? ElecCommStatusEnum - OData EnumType 'ElecCommStatusEnum'. Serialised by the Service Layer as the member name
- ElecCommMessage? string -
- ReuseDocumentNum? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ReuseNotaFiscalNum? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- PrintSEPADirect? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- FiscalDocNum? string -
- POSDailySummaryNo? Signed32 -
- POSReceiptNo? Signed32 -
- PointOfIssueCode? string -
- Letter? FolioLetterEnum - OData EnumType 'FolioLetterEnum'. Serialised by the Service Layer as the member name
- FolioNumberFrom? Signed32 -
- FolioNumberTo? Signed32 -
- InterimType? BoInterimDocTypes - OData EnumType 'BoInterimDocTypes'. Serialised by the Service Layer as the member name
- RelatedType? Signed32 -
- RelatedEntry? Signed32 -
- SAPPassport? string -
- DocumentTaxID? string -
- DateOfReportingControlStatementVAT? string -
- ReportingSectionControlStatementVAT? string -
- ExcludeFromTaxReportControlStatementVAT? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- POS_CashRegister? Signed32 -
- UpdateTime? string -
- CreateQRCodeFrom? string -
- PriceMode? PriceModeDocumentEnum - OData EnumType 'PriceModeDocumentEnum'. Serialised by the Service Layer as the member name
- PriceListNum? Signed32 -
- DownPaymentTrasactionID? string -
- OriginalRefNo? string -
- OriginalRefDate? string -
- Revision? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- GSTTransactionType? GSTTransactionTypeEnum - OData EnumType 'GSTTransactionTypeEnum'. Serialised by the Service Layer as the member name
- OriginalCreditOrDebitNo? string -
- OriginalCreditOrDebitDate? string -
- ECommerceOperator? string -
- ECommerceGSTIN? string -
- TaxInvoiceNo? string -
- TaxInvoiceDate? string -
- ShipFrom? string -
- CommissionTrade? CommissionTradeTypeEnum - OData EnumType 'CommissionTradeTypeEnum'. Serialised by the Service Layer as the member name
- CommissionTradeReturn? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- UseBillToAddrToDetermineTax? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- IssuingReason? Signed32 -
- Cig? Signed32 -
- Cup? Signed32 -
- EDocType? EDocTypeEnum - OData EnumType 'EDocTypeEnum'. Serialised by the Service Layer as the member name
- FCEAsPaymentMeans? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- PaidToDate? decimal -
- PaidToDateFC? decimal -
- PaidToDateSys? decimal -
- FatherCard? string -
- FatherType? BoFatherCardTypes - OData EnumType 'BoFatherCardTypes'. Serialised by the Service Layer as the member name
- ShipState? string -
- ShipPlace? string -
- CustOffice? string -
- FCI? string -
- AddLegIn? string -
- LegTextF? Signed32 -
- DANFELgTxt? string -
- DataVersion? Signed32 -
- LastPageFolioNumber? Signed32 -
- InventoryStatus? BoStatus - OData EnumType 'BoStatus'. Serialised by the Service Layer as the member name
- PlasticPackagingTaxRelevant? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- NotRelevantForMonthlyInvoice? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- EndAt? BoPayTermDueTypes - OData EnumType 'BoPayTermDueTypes'. Serialised by the Service Layer as the member name
- ShipToCodeForReturn? string -
- AddressForReturn? string -
- Document_ApprovalRequests? DocumentApprovalRequest[] -
- DocumentLines? DocumentLine[] -
- EWayBillDetails? EWayBillDetails - The
EWayBillDetailscomplex type of the SAP Business One Service Layer
- EDeliveryInfo? EDeliveryInfo - The
EDeliveryInfocomplex type of the SAP Business One Service Layer
- ElectronicProtocols? ElectronicProtocol[] -
- DocumentAdditionalExpenses? DocumentAdditionalExpense[] -
- DocumentDistributedExpenses? DocumentDistributedExpense[] -
- WithholdingTaxDataWTXCollection? WithholdingTaxDataWTX[] -
- WithholdingTaxDataCollection? WithholdingTaxData[] -
- DocumentPackages? DocumentPackage[] -
- DocumentSpecialLines? DocumentSpecialLine[] -
- DocumentInstallments? DocumentInstallment[] -
- DownPaymentsToDraw? DownPaymentToDraw[] -
- TaxExtension? TaxExtension - The
TaxExtensioncomplex type of the SAP Business One Service Layer
- AddressExtension? AddressExtension - The
AddressExtensioncomplex type of the SAP Business One Service Layer
- DocumentReferences? DocumentReference[] -
- DocumentAdditionalIntrastatExpenses? DocumentAdditionalIntrastatExpense[] -
- DutyStatus? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- BaseType? Signed32 -
- BaseEntry? Signed32 -
- IndFinal? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- AllocationNumberIL? string -
- DigitalPayToAddress? string -
- DigitalPayments? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- SirenNumber? string -
- SiretNumber? string -
- RoutingCode? string -
- Suffix? string -
- SOIWizardId? Signed32 -
- NFModel? NFModel - The
NFModelentity of the SAP Business One Service Layer
- CIGCode? CIGCode - The
CIGCodeentity of the SAP Business One Service Layer
- CUPCode? CUPCode - The
CUPCodeentity of the SAP Business One Service Layer
sap.businessone.localization: DocumentAdditionalExpense
The DocumentAdditionalExpense complex type of the SAP Business One Service Layer
Fields
- ExpenseCode? Signed32 -
- LineTotal? decimal -
- LineTotalFC? decimal -
- LineTotalSys? decimal -
- PaidToDate? decimal -
- PaidToDateFC? decimal -
- PaidToDateSys? decimal -
- Remarks? string -
- DistributionMethod? BoAdEpnsDistribMethods - OData EnumType 'BoAdEpnsDistribMethods'. Serialised by the Service Layer as the member name
- TaxLiable? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- VatGroup? string -
- TaxPercent? decimal -
- TaxSum? decimal -
- TaxSumFC? decimal -
- TaxSumSys? decimal -
- DeductibleTaxSum? decimal -
- DeductibleTaxSumFC? decimal -
- DeductibleTaxSumSys? decimal -
- AquisitionTax? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- TaxCode? string -
- TaxType? BoAdEpnsTaxTypes - OData EnumType 'BoAdEpnsTaxTypes'. Serialised by the Service Layer as the member name
- TaxPaid? decimal -
- TaxPaidFC? decimal -
- TaxPaidSys? decimal -
- EqualizationTaxPercent? decimal -
- EqualizationTaxSum? decimal -
- EqualizationTaxFC? decimal -
- EqualizationTaxSys? decimal -
- TaxTotalSum? decimal -
- TaxTotalSumFC? decimal -
- TaxTotalSumSys? decimal -
- BaseDocEntry? Signed32 -
- BaseDocLine? Signed32 -
- BaseDocType? Signed32 -
- BaseDocumentReference? Signed32 -
- LineNum? Signed32 -
- LastPurchasePrice? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Status? BoStatus - OData EnumType 'BoStatus'. Serialised by the Service Layer as the member name
- Stock? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- TargetAbsEntry? Signed32 -
- TargetType? Signed32 -
- WTLiable? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- DistributionRule? string -
- Project? string -
- DistributionRule2? string -
- DistributionRule3? string -
- DistributionRule4? string -
- DistributionRule5? string -
- LineGross? decimal -
- LineGrossSys? decimal -
- LineGrossFC? decimal -
- ExternalCalcTaxRate? decimal -
- ExternalCalcTaxAmount? decimal -
- ExternalCalcTaxAmountFC? decimal -
- ExternalCalcTaxAmountSC? decimal -
- CUSplit? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- DocFreight? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- DocExpenseTaxJurisdictions? DocExpenseTaxJurisdiction[] -
- DocFreightEBooksDetails? DocFreightEBooksDetail[] -
sap.businessone.localization: DocumentAdditionalIntrastatExpense
The DocumentAdditionalIntrastatExpense complex type of the SAP Business One Service Layer
Fields
- ExpenseCode? Signed32 -
- LineTotal? decimal -
- LineTotalFC? decimal -
- LineTotalSys? decimal -
- PaidToDate? decimal -
- PaidToDateFC? decimal -
- PaidToDateSys? decimal -
- DistributionMethod? BoAdEpnsDistribMethods - OData EnumType 'BoAdEpnsDistribMethods'. Serialised by the Service Layer as the member name
- BaseDocEntry? Signed32 -
- BaseDocLine? Signed32 -
- BaseDocType? Signed32 -
- BaseDocumentReference? Signed32 -
- LineNum? Signed32 -
sap.businessone.localization: DocumentApprovalRequest
The Document_ApprovalRequest complex type of the SAP Business One Service Layer
Fields
- activeForUpdate? BoYesNoEnum -
- approvalTemplatesID? Signed32 -
- remarks? string -
- approvalTemplatesName? string -
sap.businessone.localization: DocumentCloseParams
The DocumentCloseParams complex type of the SAP Business One Service Layer
Fields
- docEntry? Signed32 -
- specifiedClosingDate? string -
- closingOption? ClosingOptionEnum -
sap.businessone.localization: DocumentDistributedExpense
The DocumentDistributedExpense complex type of the SAP Business One Service Layer
sap.businessone.localization: DocumentInstallment
The DocumentInstallment complex type of the SAP Business One Service Layer
Fields
- DueDate? string -
- Percentage? decimal -
- Total? decimal -
- LastDunningDate? string -
- DunningLevel? Signed32 -
- TotalFC? decimal -
- InstallmentId? Signed32 -
- PaymentOrdered? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- PaidToDate? decimal -
- PaidToDateFC? decimal -
sap.businessone.localization: DocumentLine
The DocumentLine complex type of the SAP Business One Service Layer
Fields
- LineNum? Signed32 -
- ItemCode? string -
- ItemDescription? string -
- Quantity? decimal -
- ShipDate? string -
- Price? decimal -
- PriceAfterVAT? decimal -
- Currency? string -
- Rate? decimal -
- DiscountPercent? decimal -
- VendorNum? string -
- SerialNum? string -
- WarehouseCode? string -
- SalesPersonCode? Signed32 -
- CommisionPercent? decimal -
- TreeType? BoItemTreeTypes - OData EnumType 'BoItemTreeTypes'. Serialised by the Service Layer as the member name
- AccountCode? string -
- UseBaseUnits? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- SupplierCatNum? string -
- CostingCode? string -
- ProjectCode? string -
- BarCode? string -
- VatGroup? string -
- Height1? decimal -
- Hight1Unit? Signed32 -
- Height2? decimal -
- Height2Unit? Signed32 -
- Lengh1? decimal -
- Lengh1Unit? Signed32 -
- Lengh2? decimal -
- Lengh2Unit? Signed32 -
- Weight1? decimal -
- Weight1Unit? Signed32 -
- Weight2? decimal -
- Weight2Unit? Signed32 -
- Factor1? decimal -
- Factor2? decimal -
- Factor3? decimal -
- Factor4? decimal -
- BaseType? Signed32 -
- BaseEntry? Signed32 -
- BaseLine? Signed32 -
- Volume? decimal -
- VolumeUnit? Signed32 -
- Width1? decimal -
- Width1Unit? Signed32 -
- Width2? decimal -
- Width2Unit? Signed32 -
- Address? string -
- TaxCode? string -
- TaxType? BoTaxTypes - OData EnumType 'BoTaxTypes'. Serialised by the Service Layer as the member name
- TaxLiable? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- PickStatus? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- PickQuantity? decimal -
- PickListIdNumber? Signed32 -
- OriginalItem? string -
- BackOrder? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- FreeText? string -
- ShippingMethod? Signed32 -
- POTargetNum? Signed32 -
- POTargetEntry? string -
- POTargetRowNum? Signed32 -
- CorrectionInvoiceItem? BoCorInvItemStatus - OData EnumType 'BoCorInvItemStatus'. Serialised by the Service Layer as the member name
- CorrInvAmountToStock? decimal -
- CorrInvAmountToDiffAcct? decimal -
- AppliedTax? decimal -
- AppliedTaxFC? decimal -
- AppliedTaxSC? decimal -
- WTLiable? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- DeferredTax? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- EqualizationTaxPercent? decimal -
- TotalEqualizationTax? decimal -
- TotalEqualizationTaxFC? decimal -
- TotalEqualizationTaxSC? decimal -
- NetTaxAmount? decimal -
- NetTaxAmountFC? decimal -
- NetTaxAmountSC? decimal -
- MeasureUnit? string -
- UnitsOfMeasurment? decimal -
- LineTotal? decimal -
- TaxPercentagePerRow? decimal -
- TaxTotal? decimal -
- ConsumerSalesForecast? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ExciseAmount? decimal -
- TaxPerUnit? decimal -
- TotalInclTax? decimal -
- CountryOrg? string -
- SWW? string -
- TransactionType? BoTransactionTypeEnum - OData EnumType 'BoTransactionTypeEnum'. Serialised by the Service Layer as the member name
- DistributeExpense? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- RowTotalFC? decimal -
- RowTotalSC? decimal -
- LastBuyInmPrice? decimal -
- LastBuyDistributeSumFc? decimal -
- LastBuyDistributeSumSc? decimal -
- LastBuyDistributeSum? decimal -
- StockDistributesumForeign? decimal -
- StockDistributesumSystem? decimal -
- StockDistributesum? decimal -
- StockInmPrice? decimal -
- PickStatusEx? BoDocumentLinePickStatus - OData EnumType 'BoDocumentLinePickStatus'. Serialised by the Service Layer as the member name
- TaxBeforeDPM? decimal -
- TaxBeforeDPMFC? decimal -
- TaxBeforeDPMSC? decimal -
- CFOPCode? string -
- CSTCode? string -
- Usage? Signed32 -
- TaxOnly? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- VisualOrder? Signed32 -
- BaseOpenQuantity? decimal -
- UnitPrice? decimal -
- LineStatus? BoStatus - OData EnumType 'BoStatus'. Serialised by the Service Layer as the member name
- PackageQuantity? decimal -
- Text? string -
- LineType? BoDocLineType - OData EnumType 'BoDocLineType'. Serialised by the Service Layer as the member name
- COGSCostingCode? string -
- COGSAccountCode? string -
- ChangeAssemlyBoMWarehouse? string -
- GrossBuyPrice? decimal -
- GrossBase? Signed32 -
- GrossProfitTotalBasePrice? decimal -
- CostingCode2? string -
- CostingCode3? string -
- CostingCode4? string -
- CostingCode5? string -
- ItemDetails? string -
- LocationCode? Signed32 -
- ActualDeliveryDate? string -
- RemainingOpenQuantity? decimal -
- OpenAmount? decimal -
- OpenAmountFC? decimal -
- OpenAmountSC? decimal -
- ExLineNo? string -
- RequiredDate? string -
- RequiredQuantity? decimal -
- COGSCostingCode2? string -
- COGSCostingCode3? string -
- COGSCostingCode4? string -
- COGSCostingCode5? string -
- CSTforIPI? string -
- CSTforPIS? string -
- CSTforCOFINS? string -
- CreditOriginCode? string -
- WithoutInventoryMovement? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- AgreementNo? Signed32 -
- AgreementRowNumber? Signed32 -
- ActualBaseEntry? Signed32 -
- ActualBaseLine? Signed32 -
- DocEntry? Signed32 -
- Surpluses? decimal -
- DefectAndBreakup? decimal -
- Shortages? decimal -
- ConsiderQuantity? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- PartialRetirement? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- RetirementQuantity? decimal -
- RetirementAPC? decimal -
- ThirdParty? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- PoNum? string -
- PoItmNum? Signed32 -
- ExpenseType? string -
- ReceiptNumber? string -
- ExpenseOperationType? BoExpenseOperationTypeEnum - OData EnumType 'BoExpenseOperationTypeEnum'. Serialised by the Service Layer as the member name
- FederalTaxID? string -
- GrossProfit? decimal -
- GrossProfitFC? decimal -
- GrossProfitSC? decimal -
- PriceSource? DocumentPriceSourceEnum - OData EnumType 'DocumentPriceSourceEnum'. Serialised by the Service Layer as the member name
- EnableReturnCost? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ReturnCost? decimal -
- LineVendor? string -
- ReturnAction? Signed32 -
- ReturnReason? Signed32 -
- StgSeqNum? Signed32 -
- StgEntry? Signed32 -
- StgDesc? string -
- UoMEntry? Signed32 -
- UoMCode? string -
- InventoryQuantity? decimal -
- RemainingOpenInventoryQuantity? decimal -
- ParentLineNum? Signed32 -
- Incoterms? Signed32 -
- TransportMode? Signed32 -
- NatureOfTransaction? Signed32 -
- DestinationCountryForImport? string -
- DestinationRegionForImport? Signed32 -
- OriginCountryForExport? string -
- OriginRegionForExport? Signed32 -
- ItemType? BoDocItemType - OData EnumType 'BoDocItemType'. Serialised by the Service Layer as the member name
- ChangeInventoryQuantityIndependently? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- FreeOfChargeBP? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- SACEntry? Signed32 -
- HSNEntry? Signed32 -
- GrossPrice? decimal -
- GrossTotal? decimal -
- GrossTotalFC? decimal -
- GrossTotalSC? decimal -
- NCMCode? Signed32 -
- NVECode? string -
- IndEscala? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- CtrSealQty? decimal -
- CNJPMan? string -
- CESTCode? Signed32 -
- UFFiscalBenefitCode? string -
- ReverseCharge? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ShipToCode? string -
- ShipToDescription? string -
- ShipFromCode? string -
- ShipFromDescription? string -
- OwnerCode? Signed32 -
- ExternalCalcTaxRate? decimal -
- ExternalCalcTaxAmount? decimal -
- ExternalCalcTaxAmountFC? decimal -
- ExternalCalcTaxAmountSC? decimal -
- StandardItemIdentification? Signed32 -
- CommodityClassification? Signed32 -
- WeightOfRecycledPlastic? decimal -
- PlasticPackageExemptionReason? string -
- LegalText? string -
- Cig? Signed32 -
- Cup? Signed32 -
- OperatingProfit? decimal -
- OperatingProfitFC? decimal -
- OperatingProfitSC? decimal -
- NetIncome? decimal -
- NetIncomeFC? decimal -
- NetIncomeSC? decimal -
- CSTforIBS? string -
- CSTforCBS? string -
- CSTforIS? string -
- UnencumberedReason? Signed32 -
- CUSplit? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ListNum? Signed32 -
- RecognizedTaxCode? string -
- LineTaxJurisdictions? LineTaxJurisdiction[] -
- GeneratedAssets? GeneratedAsset[] -
- EBooksDetails? EBooksDetail[] -
- DocLinePickLists? DocLinePickList[] -
- DocumentLineAdditionalExpenses? DocumentLineAdditionalExpense[] -
- WithholdingTaxLines? WithholdingTaxLine[] -
- SerialNumbers? SerialNumber[] -
- BatchNumbers? BatchNumber[] -
- DocumentLinesBinAllocations? DocumentLinesBinAllocation[] -
- ExportProcesses? ExportProcess[] -
- CCDNumbers? CCDNumber[] -
- ImportProcesses? ImportProcess[] -
sap.businessone.localization: DocumentLineAdditionalExpense
The DocumentLineAdditionalExpense complex type of the SAP Business One Service Layer
Fields
- LineNumber? Signed32 -
- GroupCode? Signed32 -
- ExpenseCode? Signed32 -
- LineTotal? decimal -
- LineTotalFC? decimal -
- LineTotalSys? decimal -
- PaidToDate? decimal -
- PaidToDateFC? decimal -
- PaidToDateSys? decimal -
- TaxLiable? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- VatGroup? string -
- TaxPercent? decimal -
- TaxSum? decimal -
- TaxSumFC? decimal -
- TaxSumSys? decimal -
- DeductibleTaxSum? decimal -
- DeductibleTaxSumFC? decimal -
- DeductibleTaxSumSys? decimal -
- AquisitionTax? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- TaxCode? string -
- TaxType? BoAdEpnsTaxTypes - OData EnumType 'BoAdEpnsTaxTypes'. Serialised by the Service Layer as the member name
- TaxPaid? decimal -
- TaxPaidFC? decimal -
- TaxPaidSys? decimal -
- EqualizationTaxPercent? decimal -
- EqualizationTaxSum? decimal -
- EqualizationTaxFC? decimal -
- EqualizationTaxSys? decimal -
- TaxTotalSum? decimal -
- TaxTotalSumFC? decimal -
- TaxTotalSumSys? decimal -
- WTLiable? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- BaseGroup? Signed32 -
- DistributionRule? string -
- Project? string -
- DistributionRule2? string -
- DistributionRule3? string -
- DistributionRule4? string -
- DistributionRule5? string -
- ExternalCalcTaxRate? decimal -
- ExternalCalcTaxAmount? decimal -
- ExternalCalcTaxAmountFC? decimal -
- ExternalCalcTaxAmountSC? decimal -
- CUSplit? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- DocFreight? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- LineExpenseTaxJurisdictions? LineExpenseTaxJurisdiction[] -
- LineFreightEBooksDetails? LineFreightEBooksDetail[] -
sap.businessone.localization: DocumentLinesBinAllocation
The DocumentLinesBinAllocation complex type of the SAP Business One Service Layer
Fields
- BinAbsEntry? Signed32 -
- Quantity? decimal -
- AllowNegativeQuantity? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- SerialAndBatchNumbersBaseLine? Signed32 -
- BaseLineNumber? Signed32 -
sap.businessone.localization: DocumentPackage
The DocumentPackage complex type of the SAP Business One Service Layer
Fields
- Number? Signed32 -
- Type? string -
- TotalWeight? decimal -
- Units? Signed32 -
- DocumentPackageItems? DocumentPackageItem[] -
sap.businessone.localization: DocumentPackageItem
The DocumentPackageItem complex type of the SAP Business One Service Layer
Fields
- PackageNumber? Signed32 -
- ItemCode? string -
- Quantity? decimal -
- UoMEntry? Signed32 -
- MeasureUnit? string -
- UnitsOfMeasurement? decimal -
sap.businessone.localization: DocumentReference
The DocumentReference complex type of the SAP Business One Service Layer
Fields
- docEntry? Signed32 -
- issueDate? string -
- issuerCode? string -
- extDocNum? string -
- lineNumber? Signed32 -
- refDocEntr? Signed32 -
- remark? string -
- refDocNum? Signed32 -
- issuerCNPJ? string -
- series? string -
- number? Signed32 -
- subSeries? string -
- linkRefTyp? LinkReferenceTypeEnum -
- refAmount? decimal -
- model? string -
- accessKey? string -
- refAccKey? string -
- refObjType? ReferencedObjectTypeEnum -
sap.businessone.localization: DocumentSpecialLine
The DocumentSpecialLine complex type of the SAP Business One Service Layer
Fields
- subtotalSC? decimal -
- grossTotalFC? decimal -
- freight1? decimal -
- freight2? decimal -
- freight3SC? decimal -
- taxAmountSC? decimal -
- subtotal? decimal -
- freight3FC? decimal -
- freight2FC? decimal -
- orderNumber? Signed32 -
- afterLineNumber? Signed32 -
- freight1FC? decimal -
- grossTotalSC? decimal -
- lineNum? Signed32 -
- lineText? string -
- taxAmount? decimal -
- taxAmountFC? decimal -
- subtotalFC? decimal -
- grossTotal? decimal -
- freight2SC? decimal -
- freight3? decimal -
- freight1SC? decimal -
- lineType? BoDocSpecialLineType -
sap.businessone.localization: DownPaymentToDraw
The DownPaymentToDraw complex type of the SAP Business One Service Layer
Fields
- taxFC? decimal -
- grossAmountToDraw? decimal -
- docEntry? Signed32 -
- grossAmountToDrawSC? decimal -
- tax? decimal -
- amountToDrawSC? decimal -
- rowNum? Signed32 -
- name? string -
- docInternalID? Signed32 -
- isGrossLine? BoYesNoEnum -
- details? string -
- postingDate? string -
- amountToDraw? decimal -
- taxSC? decimal -
- downPaymentType? DownPaymentTypeEnum -
- docNumber? Signed32 -
- grossAmountToDrawFC? decimal -
- downPaymentsToDrawDetails? DownPaymentToDrawDetails[] -
- dueDate? string -
- amountToDrawFC? decimal -
sap.businessone.localization: DownPaymentToDrawDetails
The DownPaymentToDrawDetails complex type of the SAP Business One Service Layer
Fields
- seqNum? Signed32 -
- vatGroupCode? string -
- taxFC? decimal -
- grossAmountToDraw? decimal -
- docEntry? Signed32 -
- grossAmountToDrawSC? decimal -
- tax? decimal -
- taxAdjust? BoYesNoEnum -
- rowNum? Signed32 -
- amountToDrawSC? decimal -
- docInternalID? Signed32 -
- isGrossLine? BoYesNoEnum -
- amountToDraw? decimal -
- taxSC? decimal -
- grossAmountToDrawFC? decimal -
- lineType? LineTypeEnum -
- vatPercent? decimal -
- amountToDrawFC? decimal -
sap.businessone.localization: EBooks
The EBooks entity of the SAP Business One Service Layer
Fields
- aA? string -
- eBooksLines? EBooksLine[] -
- linkedDocType? Signed32 -
- totalVatAmount? decimal -
- cancelMARK? string -
- cPVATID? string -
- totalWithheldAmount? decimal -
- issueDate? string -
- absEntry? Signed32 -
- mARK? string -
- invoiceType? string -
- totalGrossValue? decimal -
- uID? string -
- series? string -
- currency? string -
- linkedDocEntry? Signed32 -
- isNegativeMark? BoYesNoEnum -
- totalNetValue? decimal -
- issuerVATID? string -
sap.businessone.localization: EBooksCollectionResponse
A paged collection of EBooks entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? EBooks[] -
- odataNextLink? string -
sap.businessone.localization: EBooksDetail
The EBooksDetail complex type of the SAP Business One Service Layer
Fields
- IncomeClassificationType? Signed32 -
- IncomeClassificationCategory? Signed32 -
- ExpensesClassificationType? Signed32 -
- ExpensesClassificationCategory? Signed32 -
- NetValueLC? decimal -
- NetValueFC? decimal -
- NetValueSC? decimal -
- VatCategory? Signed32 -
- WithheldPercentCategory? Signed32 -
- WithheldAmountLC? decimal -
- WithheldAmountFC? decimal -
- WithheldAmountSC? decimal -
- VatClassificationType? Signed32 -
- VatClassificationCategory? Signed32 -
- VATExemptionCause? Signed32 -
- RecType? Signed32 -
- StampDutyCategory? Signed32 -
- OtherTaxesCategory? Signed32 -
- FeesCategory? Signed32 -
sap.businessone.localization: EBooksLine
The EBooksLine complex type of the SAP Business One Service Layer
Fields
- vatCategory? Signed32 -
- vatAmount? decimal -
- vATClassificationCategory? Signed32 -
- vATClassificationType? Signed32 -
- feesCategory? Signed32 -
- otherTaxesCategory? Signed32 -
- lineNumber? Signed32 -
- vATExemptionCause? Signed32 -
- expenseClassificationType? Signed32 -
- withheldAmount? decimal -
- recordType? Signed32 -
- stampDutyCategory? Signed32 -
- netValue? decimal -
- withheldPercentCategory? Signed32 -
- expenseClassificationCategory? Signed32 -
sap.businessone.localization: EBooksParams
The EBooksParams complex type of the SAP Business One Service Layer
Fields
- linkedDocType? Signed32 -
- linkedDocEntry? Signed32 -
- mARK? string -
sap.businessone.localization: EcmAction
The EcmAction complex type of the SAP Business One Service Layer
Fields
- ActionID? Signed32 -
- Protocol? string -
- Type? EcmActionTypeEnum - OData EnumType 'EcmActionTypeEnum'. Serialised by the Service Layer as the member name
- Description? string -
- Status? EcmActionStatusEnum - OData EnumType 'EcmActionStatusEnum'. Serialised by the Service Layer as the member name
- Message? string -
- Environment? Signed32 -
- BusinessPlace? Signed32 -
- Submits? Signed32 -
- ObjectID? string -
- ReportID? string -
- SourceType? string -
- SourceObject? Signed32 -
- AssignedID? string -
- DocumentBatch? string -
- DocumentBatchLine? Signed32 -
- PeriodType? EcmActionPeriodTypeEnum - OData EnumType 'EcmActionPeriodTypeEnum'. Serialised by the Service Layer as the member name
- PeriodNumber? Signed32 -
- PeriodYear? Signed32 -
- PeriodDateFrom? string -
- PeriodDateTo? string -
- IsRemoved? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- IsCanceled? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- GenerationType? EcmActionGenerationTypeEnum - OData EnumType 'EcmActionGenerationTypeEnum'. Serialised by the Service Layer as the member name
- GUID? string -
- U_B1SYS_XMLAmount? decimal -
- U_B1SYS_SendDateINTM? string -
sap.businessone.localization: EcmActionDocParams
The EcmActionDocParams complex type of the SAP Business One Service Layer
Fields
- sourceObject? Signed32 -
- sourceType? string -
- protocol? string -
sap.businessone.localization: EcmActionLog
The EcmActionLog complex type of the SAP Business One Service Layer
Fields
- actionID? Signed32 -
- 'type? EcmActionLogTypeEnum -
- authorityProcess? ElectronicDocumentAuthorityProcessEnum -
- exportFile? string -
- message? string -
- logTime? Signed32 -
- isSensitive? BoYesNoEnum -
- data? string -
- exportFormat? Signed32 -
- logID? Signed32 -
- logDate? string -
sap.businessone.localization: EcmActionLogParams
The EcmActionLogParams complex type of the SAP Business One Service Layer
Fields
- actionID? Signed32 -
- logID? Signed32 -
sap.businessone.localization: EcmActionParams
The EcmActionParams complex type of the SAP Business One Service Layer
Fields
- actionID? Signed32 -
sap.businessone.localization: ECMActionStatusData
The ECMActionStatusData complex type of the SAP Business One Service Layer
Fields
- reportID? string -
- receivDate? string -
- absEntry? Signed32 -
- actMessage? string -
- actStatus? EcmActionStatusEnum -
sap.businessone.localization: ECMCodeParams
The ECMCodeParams complex type of the SAP Business One Service Layer
Fields
- absEntry? Signed32 -
sap.businessone.localization: EDeliveryInfo
The EDeliveryInfo complex type of the SAP Business One Service Layer
Fields
- vehicleNo? string -
- docEntry? Signed32 -
- moveType? Signed32 -
sap.businessone.localization: EDFDocMapping
The EDFDocMapping complex type of the SAP Business One Service Layer
Fields
- description? string -
- iD? Signed32 -
- name? string -
sap.businessone.localization: EDFDocMappingInputParams
The EDFDocMappingInputParams complex type of the SAP Business One Service Layer
Fields
- code? ElectronicDocProtocolCodeStrEnum -
- docType? string -
sap.businessone.localization: EDFEntry
The EDFEntry complex type of the SAP Business One Service Layer
Fields
- AbsEntry? Signed32 -
- Code? ElectronicDocProtocolCodeStrEnum - OData EnumType 'ElectronicDocProtocolCodeStrEnum'. Serialised by the Service Layer as the member name
- ParentAbsEntry? Signed32 -
- Type? ElectronicDocumentEntryTypeEnum - OData EnumType 'ElectronicDocumentEntryTypeEnum'. Serialised by the Service Layer as the member name
- Status? ElectronicDocumentEntryStatusEnum - OData EnumType 'ElectronicDocumentEntryStatusEnum'. Serialised by the Service Layer as the member name
- BranchID? Signed32 -
- Environment? Signed32 -
- Description? string -
- Message? string -
- Submits? Signed32 -
- ObjectID? string -
- ReportID? string -
- SrcObjType? string -
- SrcAbsEntry? Signed32 -
- AssignedID? string -
- DocBatchID? string -
- DocBatchIndex? Signed32 -
- GenerationType? ElectronicDocGenTypeEnum - OData EnumType 'ElectronicDocGenTypeEnum'. Serialised by the Service Layer as the member name
- TestMode? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- PeriodType? ElectronicDocumentEntryPeriodTypeEnum - OData EnumType 'ElectronicDocumentEntryPeriodTypeEnum'. Serialised by the Service Layer as the member name
- PeriodNumber? Signed32 -
- PeriodYear? Signed32 -
- PeriodDateFrom? string -
- PeriodDateTo? string -
- IsRemoved? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- IsCancelation? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- CreateDate? string -
- CreateTime? Signed32 -
- UpdateDate? string -
- UpdateTime? Signed32 -
- User? Signed32 -
- User2? Signed32 -
- ScheduledJobID? Signed32 -
- GUID? string -
- Authority? string -
- CancellationStatus? ElectronicDocumentEntryCancellationStatusEnum - OData EnumType 'ElectronicDocumentEntryCancellationStatusEnum'. Serialised by the Service Layer as the member name
- ProcessingTarget? string -
- EDocType? Signed32 -
- EDocNum? string -
- Emergency? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- StatusReason? string -
- StatusDesc? string -
- U_B1SYS_XMLAmount? decimal -
- U_B1SYS_SendDateINTM? string -
sap.businessone.localization: EDFEntryAddLogInputParams
The EDFEntryAddLogInputParams complex type of the SAP Business One Service Layer
Fields
- logData? string -
- authorityProcess? ElectronicDocumentAuthorityProcessEnum -
- exportFile? string -
- logMessage? string -
- gUID? string -
- logType? ElectronicDocumentEntryLogTypeEnum -
- isSensitive? BoYesNoNoneEnum -
- exportFormat? Signed32 -
- logDataContentType? ElectronicDocumentBlobContentTypeEnum -
- zipLogData? BoYesNoEnum -
- code? ElectronicDocProtocolCodeStrEnum -
sap.businessone.localization: EDFEntryInputParams
The EDFEntryInputParams complex type of the SAP Business One Service Layer
Fields
- gUID? string -
- code? ElectronicDocProtocolCodeStrEnum -
sap.businessone.localization: EDFEntryListInputParams
The EDFEntryListInputParams complex type of the SAP Business One Service Layer
Fields
- maxLines? Signed32 -
- fromEntryID? Signed32 -
- cancellationStatusSet? string -
- branchID? Signed32 -
- storeEntryStatusSet? string -
- processingTarget? ElectronicDocProcessingTargetEnum -
- code? ElectronicDocProtocolCodeStrEnum -
- storeEntryTypeSet? string -
- toTime? Signed32 -
- fromDate? string -
- toDate? string -
- processingTargetStr? string -
- fromTime? Signed32 -
- 'ascending? BoYesNoEnum -
sap.businessone.localization: EDFEntryLog
The EDFEntryLog complex type of the SAP Business One Service Layer
Fields
- AbsEntry? Signed32 -
- LogNumber? Signed32 -
- LogType? ElectronicDocumentEntryLogTypeEnum - OData EnumType 'ElectronicDocumentEntryLogTypeEnum'. Serialised by the Service Layer as the member name
- LogMessage? string -
- LogData? string -
- LogOperationDate? string -
- LogOperationTime? Signed32 -
- ExportFormat? Signed32 -
- ExportFile? string -
- AuthorityProcess? ElectronicDocumentAuthorityProcessEnum - OData EnumType 'ElectronicDocumentAuthorityProcessEnum'. Serialised by the Service Layer as the member name
- IsSensitive? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
sap.businessone.localization: EDFEntryLogInputParams
The EDFEntryLogInputParams complex type of the SAP Business One Service Layer
Fields
- unzipLogData? BoYesNoEnum -
- keepLogDataPrefix? BoYesNoEnum -
- fileName? string -
- gUID? string -
- logType? ElectronicDocumentEntryLogTypeEnum -
- logDataContentType? ElectronicDocumentBlobContentTypeEnum -
- code? ElectronicDocProtocolCodeStrEnum -
sap.businessone.localization: EDFImportEntry
The EDFImportEntry complex type of the SAP Business One Service Layer
Fields
- status? ElectronicDocumentEntryStatusEnum -
- isBPManual? BoYesNoEnum -
- user? Signed32 -
- message? string -
- user2? Signed32 -
- authority? string -
- createTime? Signed32 -
- fileName? string -
- gUID? string -
- testMode? string -
- cardCode? string -
- absEntry? Signed32 -
- code? ElectronicDocProtocolCodeStrEnum -
- createDate? string -
- mimeType? string -
- assignedID? string -
- updateDate? string -
- objectType? string -
- processingSource? string -
- metaData? string -
- updateTime? Signed32 -
- documentDate? string -
sap.businessone.localization: EDFMapping
The EDFMapping complex type of the SAP Business One Service Layer
Fields
- mapping? string -
- hash? string -
- formatID? Signed32 -
- name? string -
sap.businessone.localization: EDFMappingInputParams
The EDFMappingInputParams complex type of the SAP Business One Service Layer
Fields
- hash? string -
sap.businessone.localization: EDFProtocol
The EDFProtocol entity of the SAP Business One Service Layer
Fields
- description? string -
- isActive? BoYesNoEnum -
- code? ElectronicDocProtocolCodeStrEnum -
sap.businessone.localization: EDFProtocolParameter
The EDFProtocolParameter complex type of the SAP Business One Service Layer
Fields
- userSignature? Signed32 -
- parameterType? string -
- uIOrder? Signed32 -
- paramValue? string -
- branchID? Signed32 -
- code? ElectronicDocProtocolCodeStrEnum -
- createDate? string -
- parameterID? Signed32 -
- logInstance? Signed32 -
- updateDate? string -
- 'type? Signed32 -
- updatingUser? Signed32 -
- visible? BoYesNoEnum -
- paramParameters? string -
- paramName? string -
sap.businessone.localization: EDFProtocolParameterInputParams
The EDFProtocolParameterInputParams complex type of the SAP Business One Service Layer
Fields
- lineNum? Signed32 -
- branch? Signed32 -
- code? ElectronicDocProtocolCodeStrEnum -
sap.businessone.localization: EDFProtocolWithParameters
The EDFProtocolWithParameters complex type of the SAP Business One Service Layer
Fields
- description? string -
- isActive? BoYesNoEnum -
- eDFProtocolParametersCollection? EDFProtocolParameter[] -
- pWPExtendedProperties? PWPExtendedProperties -
- code? ElectronicDocProtocolCodeStrEnum -
sap.businessone.localization: ElectronicCommunicationActionService_AFE_FceAction_GetByFceID_body
Represents the request payload for the ElectronicCommunicationActionService_AFE_FceAction_GetByFceID operation of the SAP Business One Service Layer
Fields
- aFEFceID? AFEFceID -
sap.businessone.localization: ElectronicCommunicationActionService_AFE_FceAction_GetPaymentData_body
Represents the request payload for the ElectronicCommunicationActionService_AFE_FceAction_GetPaymentData operation of the SAP Business One Service Layer
Fields
- eCMCodeParams? ECMCodeParams -
sap.businessone.localization: ElectronicCommunicationActionService_AFE_FceAP_CheckECM2Entry_body
Represents the request payload for the ElectronicCommunicationActionService_AFE_FceAP_CheckECM2Entry operation of the SAP Business One Service Layer
Fields
- aFEFceAPCheckECM2EntryParams? AFEFceAPCheckECM2EntryParams -
sap.businessone.localization: ElectronicCommunicationActionService_AFE_RenumberFolioNumbers_body
Represents the request payload for the ElectronicCommunicationActionService_AFE_RenumberFolioNumbers operation of the SAP Business One Service Layer
Fields
- aFERenumberFolioParams? AFERenumberFolioParams -
sap.businessone.localization: ElectronicCommunicationActionService_ConfirmSuccessOfCommunication_body
Represents the request payload for the ElectronicCommunicationActionService_ConfirmSuccessOfCommunication operation of the SAP Business One Service Layer
Fields
- eCMCodeParams? ECMCodeParams -
sap.businessone.localization: ElectronicCommunicationActionService_GetAction_body
Represents the request payload for the ElectronicCommunicationActionService_GetAction operation of the SAP Business One Service Layer
Fields
- eCMCodeParams? ECMCodeParams -
sap.businessone.localization: ElectronicCommunicationActionService_ReportErrorAndContinue_body
Represents the request payload for the ElectronicCommunicationActionService_ReportErrorAndContinue operation of the SAP Business One Service Layer
Fields
- eCMCodeParams? ECMCodeParams -
sap.businessone.localization: ElectronicCommunicationActionService_ReportErrorAndStop_body
Represents the request payload for the ElectronicCommunicationActionService_ReportErrorAndStop operation of the SAP Business One Service Layer
Fields
- eCMCodeParams? ECMCodeParams -
sap.businessone.localization: ElectronicCommunicationActionService_UpdateAction_body
Represents the request payload for the ElectronicCommunicationActionService_UpdateAction operation of the SAP Business One Service Layer
Fields
- eCMActionStatusData? ECMActionStatusData -
sap.businessone.localization: ElectronicCommunicationActionsService_AddEcmAction_body
Represents the request payload for the ElectronicCommunicationActionsService_AddEcmAction operation of the SAP Business One Service Layer
Fields
- ecmAction? EcmAction -
sap.businessone.localization: ElectronicCommunicationActionsService_AddEcmActionLog_body
Represents the request payload for the ElectronicCommunicationActionsService_AddEcmActionLog operation of the SAP Business One Service Layer
Fields
- ecmActionLog? EcmActionLog -
sap.businessone.localization: ElectronicCommunicationActionsService_DeleteEcmAction_body
Represents the request payload for the ElectronicCommunicationActionsService_DeleteEcmAction operation of the SAP Business One Service Layer
Fields
- ecmAction? EcmAction -
sap.businessone.localization: ElectronicCommunicationActionsService_GetEcmAction_body
Represents the request payload for the ElectronicCommunicationActionsService_GetEcmAction operation of the SAP Business One Service Layer
Fields
- ecmActionParams? EcmActionParams -
sap.businessone.localization: ElectronicCommunicationActionsService_GetEcmActionByDoc_body
Represents the request payload for the ElectronicCommunicationActionsService_GetEcmActionByDoc operation of the SAP Business One Service Layer
Fields
- ecmActionDocParams? EcmActionDocParams -
sap.businessone.localization: ElectronicCommunicationActionsService_GetEcmActionLog_body
Represents the request payload for the ElectronicCommunicationActionsService_GetEcmActionLog operation of the SAP Business One Service Layer
Fields
- ecmActionLogParams? EcmActionLogParams -
sap.businessone.localization: ElectronicCommunicationActionsService_GetEcmActionLogList_body
Represents the request payload for the ElectronicCommunicationActionsService_GetEcmActionLogList operation of the SAP Business One Service Layer
Fields
- ecmAction? EcmAction -
sap.businessone.localization: ElectronicCommunicationActionsService_UpdateEcmAction_body
Represents the request payload for the ElectronicCommunicationActionsService_UpdateEcmAction operation of the SAP Business One Service Layer
Fields
- ecmAction? EcmAction -
sap.businessone.localization: ElectronicDocumentsCollectionResponse
A paged collection of ElectronicDocuments entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? EDFProtocol[] -
- odataNextLink? string -
sap.businessone.localization: ElectronicDocumentService_AddEmergencyNumber_body
Represents the request payload for the ElectronicDocumentService_AddEmergencyNumber operation of the SAP Business One Service Layer
Fields
- emergencyNumber? EmergencyNumber -
sap.businessone.localization: ElectronicDocumentService_AddImportEntry_body
Represents the request payload for the ElectronicDocumentService_AddImportEntry operation of the SAP Business One Service Layer
Fields
- eDFImportEntry? EDFImportEntry -
sap.businessone.localization: ElectronicDocumentService_AddLog_body
Represents the request payload for the ElectronicDocumentService_AddLog operation of the SAP Business One Service Layer
Fields
- eDFEntryAddLogInputParams? EDFEntryAddLogInputParams -
sap.businessone.localization: ElectronicDocumentService_CreateEntry_body
Represents the request payload for the ElectronicDocumentService_CreateEntry operation of the SAP Business One Service Layer
Fields
- eDFEntry? EDFEntry -
sap.businessone.localization: ElectronicDocumentService_ExportEntryLog_body
Represents the request payload for the ElectronicDocumentService_ExportEntryLog operation of the SAP Business One Service Layer
Fields
- eDFEntryLogInputParams? EDFEntryLogInputParams -
sap.businessone.localization: ElectronicDocumentService_GetDocMappingList_body
Represents the request payload for the ElectronicDocumentService_GetDocMappingList operation of the SAP Business One Service Layer
Fields
- eDFDocMappingInputParams? EDFDocMappingInputParams -
sap.businessone.localization: ElectronicDocumentService_GetEntry_body
Represents the request payload for the ElectronicDocumentService_GetEntry operation of the SAP Business One Service Layer
Fields
- eDFEntryInputParams? EDFEntryInputParams -
sap.businessone.localization: ElectronicDocumentService_GetEntryList_body
Represents the request payload for the ElectronicDocumentService_GetEntryList operation of the SAP Business One Service Layer
Fields
- eDFEntryListInputParams? EDFEntryListInputParams -
sap.businessone.localization: ElectronicDocumentService_GetLastLog_body
Represents the request payload for the ElectronicDocumentService_GetLastLog operation of the SAP Business One Service Layer
Fields
- eDFEntryLogInputParams? EDFEntryLogInputParams -
sap.businessone.localization: ElectronicDocumentService_GetLogs_body
Represents the request payload for the ElectronicDocumentService_GetLogs operation of the SAP Business One Service Layer
Fields
- eDFEntryLogInputParams? EDFEntryLogInputParams -
sap.businessone.localization: ElectronicDocumentService_GetMappingByHash_body
Represents the request payload for the ElectronicDocumentService_GetMappingByHash operation of the SAP Business One Service Layer
Fields
- eDFMappingInputParams? EDFMappingInputParams -
sap.businessone.localization: ElectronicDocumentService_GetProtocolParameter_body
Represents the request payload for the ElectronicDocumentService_GetProtocolParameter operation of the SAP Business One Service Layer
Fields
- eDFProtocolParameterInputParams? EDFProtocolParameterInputParams -
sap.businessone.localization: ElectronicDocumentService_UpdateEntry_body
Represents the request payload for the ElectronicDocumentService_UpdateEntry operation of the SAP Business One Service Layer
Fields
- eDFEntry? EDFEntry -
sap.businessone.localization: ElectronicDocumentService_UpdateExtendedProperties_body
Represents the request payload for the ElectronicDocumentService_UpdateExtendedProperties operation of the SAP Business One Service Layer
Fields
- eDFProtocolWithParameters? EDFProtocolWithParameters -
sap.businessone.localization: ElectronicDocumentService_UpdateProtocolParameter_body
Represents the request payload for the ElectronicDocumentService_UpdateProtocolParameter operation of the SAP Business One Service Layer
Fields
- eDFProtocolParameter? EDFProtocolParameter -
sap.businessone.localization: ElectronicFileFormat
The ElectronicFileFormat entity of the SAP Business One Service Layer
Fields
- menuName? string -
- exportDeterminations? ExportDetermination[] -
- description? string -
- schemaVersion? string -
- version? string -
- outputFilePath? string -
- importDeterminations? ImportDetermination[] -
- formatID? Signed32 -
- name? string -
- menuPath? string -
sap.businessone.localization: ElectronicFileFormatParams
The ElectronicFileFormatParams complex type of the SAP Business One Service Layer
Fields
- formatID? Signed32 -
- name? string -
sap.businessone.localization: ElectronicFileFormatsCollectionResponse
A paged collection of ElectronicFileFormats entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? ElectronicFileFormat[] -
- odataNextLink? string -
sap.businessone.localization: ElectronicProtocol
The ElectronicProtocol complex type of the SAP Business One Service Layer
Fields
- ProtocolCode? ElectronicDocProtocolCodeEnum - OData EnumType 'ElectronicDocProtocolCodeEnum'. Serialised by the Service Layer as the member name
- GenerationType? ElectronicDocGenTypeEnum - OData EnumType 'ElectronicDocGenTypeEnum'. Serialised by the Service Layer as the member name
- MappingID? Signed32 -
- TestingMode? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Confirmation? string -
- EDocType? Signed32 -
- CFDiCancellationReason? string -
- CFDiCancellationResponse? string -
- RelatedDocuments? RelatedDocument[] -
- EBooksRelevant? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- EBooksMARK? string -
- EBooksMARKofNegative? string -
- EBooksInvoiceType? string -
- EBooksInvoiceTypeofNegative? string -
- EBillingIRN? string -
- EETPKP? string -
- EETBKP? string -
- SignatureInputMessage? string -
- SignatureDigest? string -
- FechaTimbrado? string -
- SelloSAT? string -
- PaymentMethod? string -
- RfcProvCertif? string -
- NoCertificadoSAT? string -
- FPASequenceNumber? Signed32 -
- FPASendDateSDI? string -
- FPAProgressivo? string -
- ProtocolDescription? string -
- CFDiExport? string -
- EBillingAckNo? string -
- EBillingAckDt? string -
- EBillingSignedInvoice? string -
- EBillingSignedQRCode? string -
- EBillingResponseStatus? string -
- CFDiCancellationReference? string -
- EBooksQRCodePath? string -
- EBooksQRCodePathofNegative? string -
- CartaPorteID? string -
- EBooksDispatchDate? string -
- EBooksDispatchTime? string -
sap.businessone.localization: EmergencyNumber
The EmergencyNumber complex type of the SAP Business One Service Layer
Fields
- status? string -
- number? string -
- absEntry? Signed32 -
- code? string -
sap.businessone.localization: EWayBillDetails
The EWayBillDetails complex type of the SAP Business One Service Layer
Fields
- billFromName? string -
- shipToStateGSTCode? string -
- transactionType? EWBTransactionTypeEnum -
- vehicleNo? string -
- eWayBillExpirationDate? string -
- dispatchFromAddress1? string -
- transporterName? string -
- billFromGSTIN? string -
- dispatchFromAddress2? string -
- dispatchFromZipCode? string -
- transporterID? string -
- billToName? string -
- supplyType? EWBSupplyTypeEnum -
- mainHSNEntry? Signed32 -
- shipToAddress2? string -
- shipToAddress1? string -
- distance? decimal -
- dispatchFromPlace? string -
- subType? Signed32 -
- shipToZipCode? string -
- transportationMode? Signed32 -
- transporterDocDate? string -
- vehicleType? string -
- transporterEntry? Signed32 -
- docEntry? Signed32 -
- documentType? string -
- billFromStateGSTCode? string -
- dispatchFromStateGSTCode? string -
- transporterDocNo? string -
- shipToPlace? string -
- billToGSTIN? string -
- transporterLineNumber? Signed32 -
- eWayBillNo? string -
- billToStateGSTCode? string -
- eWayBillDate? string -
sap.businessone.localization: EWBTransporter
The EWBTransporter entity of the SAP Business One Service Layer
Fields
- transporterID? string -
- eWBTransporterLines? EWBTransporterLine[] -
- transporterName? string -
- absEntry? Signed32 -
- transporterCode? string -
sap.businessone.localization: EWBTransporterLine
The EWBTransporter_Line complex type of the SAP Business One Service Layer
Fields
- vehicleNo? string -
- mode? Signed32 -
- vehicleType? string -
- absEntry? Signed32 -
- lineNumber? Signed32 -
sap.businessone.localization: EWBTransporterParams
The EWBTransporterParams complex type of the SAP Business One Service Layer
Fields
- transporterID? string -
- transporterName? string -
- absEntry? Signed32 -
- transporterCode? string -
sap.businessone.localization: EWBTransportersCollectionResponse
A paged collection of EWBTransporters entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? EWBTransporter[] -
- odataNextLink? string -
sap.businessone.localization: ExportDetermination
The ExportDetermination entity of the SAP Business One Service Layer
Fields
- AbsEntry? Signed32 -
- Code? ElectronicDocProtocolCodeStrEnum - OData EnumType 'ElectronicDocProtocolCodeStrEnum'. Serialised by the Service Layer as the member name
- Priority? Signed32 -
- BusinessPartner? string -
- Country? string -
- Series? Signed32 -
- DocumentType? string -
- ExportFormat? Signed32 -
- PathFileName? string -
- DocumentSubType? string -
- VersionNumber? Signed32 -
- ElectronicFileFormat? ElectronicFileFormat - The
ElectronicFileFormatentity of the SAP Business One Service Layer
sap.businessone.localization: ExportDeterminationsCollectionResponse
A paged collection of ExportDeterminations entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? ExportDetermination[] -
- odataNextLink? string -
sap.businessone.localization: ExportDeterminationService_GetDeterminations_body
Represents the request payload for the ExportDeterminationService_GetDeterminations operation of the SAP Business One Service Layer
Fields
- exportDeterminationsParams? ExportDeterminationsParams -
sap.businessone.localization: ExportDeterminationsParams
The ExportDeterminationsParams complex type of the SAP Business One Service Layer
Fields
- Code? ElectronicDocProtocolCodeStrEnum - OData EnumType 'ElectronicDocProtocolCodeStrEnum'. Serialised by the Service Layer as the member name
sap.businessone.localization: ExportProcess
The ExportProcess complex type of the SAP Business One Service Layer
Fields
- ladingBillTypeCode? Signed32 -
- quantityOfExportedItems? decimal -
- exportationNatureCode? Signed32 -
- ladingBillDate? string -
- natureOfExport? string -
- ladingBillNumber? string -
- lineNumber? Signed32 -
- exportationRegistryNumber? Signed32 -
- additionalItemSequentialNumber? Signed32 -
- exportationDeclarationDate? string -
- drawbackSuspensionRegime? string -
- merchandiseLeftCustomsDate? string -
- exportationDocumentTypeCode? Signed32 -
- exportationRegistryDate? string -
- exportationDeclarationNumber? Signed32 -
sap.businessone.localization: FiscalPrinter
The FiscalPrinter entity of the SAP Business One Service Layer
Fields
- equipmentNo? string -
- model? string -
- registerNo? Signed32 -
- fiscalPrintersParams? FiscalPrinterParams[] -
- fiscalDocumentModel? string -
- nFModel? NFModel -
- manufacturerSerialN? string -
sap.businessone.localization: FiscalPrinterCollectionResponse
A paged collection of FiscalPrinter entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? FiscalPrinter[] -
- odataNextLink? string -
sap.businessone.localization: FiscalPrinterParams
The FiscalPrinterParams complex type of the SAP Business One Service Layer
Fields
- equipmentNo? string -
sap.businessone.localization: GeneratedAsset
The GeneratedAsset complex type of the SAP Business One Service Layer
Fields
- status? GeneratedAssetStatusEnum -
- amount? decimal -
- serialNumber? string -
- remarks? string -
- docEntry? Signed32 -
- assetCode? string -
- lineNumber? Signed32 -
- visualOrder? Signed32 -
- amountSC? decimal -
sap.businessone.localization: GetBEMReplicationPeriodsQueries
Represents the Queries record for the operation: getBEMReplicationPeriods
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.localization: GetBrazilBeverageIndexersQueries
Represents the Queries record for the operation: getBrazilBeverageIndexers
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.localization: GetBrazilFuelIndexersQueries
Represents the Queries record for the operation: getBrazilFuelIndexers
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.localization: GetBrazilMultiIndexersQueries
Represents the Queries record for the operation: getBrazilMultiIndexers
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.localization: GetBrazilNumericIndexersQueries
Represents the Queries record for the operation: getBrazilNumericIndexers
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.localization: GetBrazilStringIndexersQueries
Represents the Queries record for the operation: getBrazilStringIndexers
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.localization: GetCertificateSeriesQueries
Represents the Queries record for the operation: getCertificateSeries
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.localization: GetCESTCodesQueries
Represents the Queries record for the operation: getCESTCodes
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.localization: GetCIGCodesQueries
Represents the Queries record for the operation: getCIGCodes
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.localization: GetCUPCodesQueries
Represents the Queries record for the operation: getCUPCodes
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.localization: GetCustomsDeclarationQueries
Represents the Queries record for the operation: getCustomsDeclaration
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.localization: GetDatevRunsQueries
Represents the Queries record for the operation: getDatevRuns
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.localization: GetDefaultElementsforCRQueries
Represents the Queries record for the operation: getDefaultElementsforCR
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.localization: GetDNFCodeSetupQueries
Represents the Queries record for the operation: getDNFCodeSetup
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.localization: GetEBooksQueries
Represents the Queries record for the operation: getEBooks
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.localization: GetElectronicDocumentsQueries
Represents the Queries record for the operation: getElectronicDocuments
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.localization: GetElectronicFileFormatsQueries
Represents the Queries record for the operation: getElectronicFileFormats
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.localization: GetEWBTransportersQueries
Represents the Queries record for the operation: getEWBTransporters
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.localization: GetExportDeterminationsQueries
Represents the Queries record for the operation: getExportDeterminations
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.localization: GetFiscalPrinterQueries
Represents the Queries record for the operation: getFiscalPrinter
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.localization: GetIdentificationCodesQueries
Represents the Queries record for the operation: getIdentificationCodes
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.localization: GetImportDeterminationsQueries
Represents the Queries record for the operation: getImportDeterminations
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.localization: GetIndiaHsnQueries
Represents the Queries record for the operation: getIndiaHsn
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.localization: GetIndiaSacCodeQueries
Represents the Queries record for the operation: getIndiaSacCode
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.localization: GetIntrastatConfigurationQueries
Represents the Queries record for the operation: getIntrastatConfiguration
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.localization: GetISDCreditMemosQueries
Represents the Queries record for the operation: getISDCreditMemos
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.localization: GetISDDocumentsQueries
Represents the Queries record for the operation: getISDDocuments
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.localization: GetISDInvoicesQueries
Represents the Queries record for the operation: getISDInvoices
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.localization: GetISDRecipientCreditMemosQueries
Represents the Queries record for the operation: getISDRecipientCreditMemos
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.localization: GetISDRecipientInvoicesQueries
Represents the Queries record for the operation: getISDRecipientInvoices
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.localization: GetLegalDataQueries
Represents the Queries record for the operation: getLegalData
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.localization: GetLocalEraQueries
Represents the Queries record for the operation: getLocalEra
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.localization: GetMaterialGroupsQueries
Represents the Queries record for the operation: getMaterialGroups
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.localization: GetNCMCodesSetupQueries
Represents the Queries record for the operation: getNCMCodesSetup
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.localization: GetNFModelsQueries
Represents the Queries record for the operation: getNFModels
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.localization: GetNFTaxCategoriesQueries
Represents the Queries record for the operation: getNFTaxCategories
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.localization: GetNotaFiscalCFOPQueries
Represents the Queries record for the operation: getNotaFiscalCFOP
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.localization: GetNotaFiscalCSTQueries
Represents the Queries record for the operation: getNotaFiscalCST
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.localization: GetNotaFiscalUsageQueries
Represents the Queries record for the operation: getNotaFiscalUsage
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.localization: GetOccurrenceCodesQueries
Represents the Queries record for the operation: getOccurrenceCodes
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.localization: GetRetornoCodesQueries
Represents the Queries record for the operation: getRetornoCodes
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.localization: GetSelfCreditMemosQueries
Represents the Queries record for the operation: getSelfCreditMemos
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.localization: GetSelfInvoicesQueries
Represents the Queries record for the operation: getSelfInvoices
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.localization: GetServiceGroupsQueries
Represents the Queries record for the operation: getServiceGroups
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.localization: GetTransportationDocumentQueries
Represents the Queries record for the operation: getTransportationDocument
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.localization: GTIParams
The GTIParams complex type of the SAP Business One Service Layer
Fields
- absEntry? Signed32 -
- inboundFile? string -
sap.businessone.localization: GTIsService_Import_body
Represents the request payload for the GTIsService_Import operation of the SAP Business One Service Layer
Fields
- gTIParams? GTIParams -
sap.businessone.localization: IdentificationCode
The IdentificationCode entity of the SAP Business One Service Layer
Fields
- codelist? IdentificationCodeTypeEnum -
- description? string -
- schemaCode? string -
- absEntry? Signed32 -
- code? string -
- schemaDesc? string -
sap.businessone.localization: IdentificationCodesCollectionResponse
A paged collection of IdentificationCodes entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? IdentificationCode[] -
- odataNextLink? string -
sap.businessone.localization: ImportDetermination
The ImportDetermination entity of the SAP Business One Service Layer
Fields
- AbsEntry? Signed32 -
- Code? ElectronicDocProtocolCodeStrEnum - OData EnumType 'ElectronicDocProtocolCodeStrEnum'. Serialised by the Service Layer as the member name
- LineNumber? Signed32 -
- ObjectType? string -
- ObjectTypeXPath? string -
- FieldType? ImportFieldTypeEnum - OData EnumType 'ImportFieldTypeEnum'. Serialised by the Service Layer as the member name
- FieldTypeXPath? string -
- ImportFormat? Signed32 -
- DefaultDigitalSeries? Signed32 -
- VersionNumber? Signed32 -
- ElectronicFileFormat? ElectronicFileFormat - The
ElectronicFileFormatentity of the SAP Business One Service Layer
sap.businessone.localization: ImportDeterminationsCollectionResponse
A paged collection of ImportDeterminations entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? ImportDetermination[] -
- odataNextLink? string -
sap.businessone.localization: ImportDeterminationService_GetDeterminations_body
Represents the request payload for the ImportDeterminationService_GetDeterminations operation of the SAP Business One Service Layer
Fields
- importDeterminationsParams? ImportDeterminationsParams -
sap.businessone.localization: ImportDeterminationsParams
The ImportDeterminationsParams complex type of the SAP Business One Service Layer
Fields
- Code? ElectronicDocProtocolCodeStrEnum - OData EnumType 'ElectronicDocProtocolCodeStrEnum'. Serialised by the Service Layer as the member name
sap.businessone.localization: ImportProcess
The ImportProcess complex type of the SAP Business One Service Layer
Fields
- dateOfRegistryDIDSIDA? string -
- importationDocumentNumber? string -
- customsClearanceDate? string -
- additionalItemSequentialNumber? Signed32 -
- drawbackSuspensionRegime? string -
- typeOfImport? string -
- additionalFreightToNavyAuthority? decimal -
- drawbackRegimeConcessionAccountNumber? string -
- importationDocumentTypeCode? string -
- additionalNumber? string -
- additionalItemDiscountValue? decimal -
- lineNumber? Signed32 -
sap.businessone.localization: IndiaHsn
The IndiaHsn entity of the SAP Business One Service Layer
Fields
- heading? string -
- description? string -
- chapter? string -
- chapterID? string -
- subHeading? string -
- absEntry? Signed32 -
sap.businessone.localization: IndiaHsnCollectionResponse
A paged collection of IndiaHsn entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? IndiaHsn[] -
- odataNextLink? string -
sap.businessone.localization: IndiaHsnParams
The IndiaHsnParams complex type of the SAP Business One Service Layer
Fields
- chapterID? string -
- absEntry? Signed32 -
sap.businessone.localization: IndiaSacCode
The IndiaSacCode entity of the SAP Business One Service Layer
Fields
- serviceCode? string -
- serviceName? string -
- absEntry? Signed32 -
sap.businessone.localization: IndiaSacCodeCollectionResponse
A paged collection of IndiaSacCode entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? IndiaSacCode[] -
- odataNextLink? string -
sap.businessone.localization: IndiaSacCodeParams
The IndiaSacCodeParams complex type of the SAP Business One Service Layer
Fields
- serviceCode? string -
- absEntry? Signed32 -
sap.businessone.localization: inline_response_200
Represents the response payload for the BEMReplicationPeriodService_GetList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? BEMReplicationPeriodParams[] -
sap.businessone.localization: inline_response_200_1
Represents the response payload for the BrazilBeverageIndexersService_GetList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? BrazilBeverageIndexerParams[] -
sap.businessone.localization: inline_response_200_10
Represents the response payload for the EBooks_GetByDocKey operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? EBooksParams[] -
sap.businessone.localization: inline_response_200_11
Represents the response payload for the EWBTransporterService_GetEWBTransporterList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? EWBTransporterParams[] -
sap.businessone.localization: inline_response_200_12
Represents the response payload for the ElectronicCommunicationActionService_AFE_FceAP_CheckECM2Entry operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? AFEFceAPCheckECM2Entry[] -
sap.businessone.localization: inline_response_200_13
Represents the response payload for the ElectronicCommunicationActionService_AFE_FceAR_GetDocuments operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? AFEFceARGetDocuments[] -
sap.businessone.localization: inline_response_200_14
Represents the response payload for the ElectronicCommunicationActionService_AFE_FceAction_GetByFceID operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? AFEFceActionGetByFceID[] -
sap.businessone.localization: inline_response_200_15
Represents the response payload for the ElectronicCommunicationActionService_AFE_FceAction_GetPaymentData operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? AFEFceActionGetPaymentData[] -
sap.businessone.localization: inline_response_200_16
Represents the response payload for the ElectronicCommunicationActionService_AFE_UpdFceAPAR_GetDocuments operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? AFEUpdFceAPARGetDocuments[] -
sap.businessone.localization: inline_response_200_17
Represents the response payload for the ElectronicCommunicationActionsService_GetEcmActionLogList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? EcmActionLog[] -
sap.businessone.localization: inline_response_200_18
Represents the response payload for the ElectronicDocumentService_GetDocMappingList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? EDFDocMapping[] -
sap.businessone.localization: inline_response_200_19
Represents the response payload for the ElectronicDocumentService_GetEmergencyNumbers operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? EmergencyNumber[] -
sap.businessone.localization: inline_response_200_2
Represents the response payload for the BrazilFuelIndexersService_GetList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? BrazilFuelIndexerParams[] -
sap.businessone.localization: inline_response_200_20
Represents the response payload for the ElectronicDocumentService_GetEntryList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? EDFEntry[] -
sap.businessone.localization: inline_response_200_21
Represents the response payload for the ElectronicDocumentService_GetLogs operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? EDFEntryLog[] -
sap.businessone.localization: inline_response_200_22
Represents the response payload for the ElectronicDocumentService_GetProtocols operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? EDFProtocol[] -
sap.businessone.localization: inline_response_200_23
Represents the response payload for the ElectronicFileFormatsService_GetElectronicFileFormatList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? ElectronicFileFormatParams[] -
sap.businessone.localization: inline_response_200_24
Represents the response payload for the ExportDeterminationService_GetDeterminations operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? ExportDetermination[] -
sap.businessone.localization: inline_response_200_25
Represents the response payload for the FiscalPrinterService_GetFiscalPrinterList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? FiscalPrinterParams[] -
sap.businessone.localization: inline_response_200_26
Represents the response payload for the GTIsService_Import operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? GTIParams[] -
sap.businessone.localization: inline_response_200_27
Represents the response payload for the ISDCreditMemosService_GetList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? ISDCreditMemoParams[] -
sap.businessone.localization: inline_response_200_28
Represents the response payload for the ISDDocumentsService_GetList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? ISDParams[] -
sap.businessone.localization: inline_response_200_29
Represents the response payload for the ISDInvoicesService_GetList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? ISDInvoiceParams[] -
sap.businessone.localization: inline_response_200_3
Represents the response payload for the BrazilMultiIndexers_GetIndexerTypeList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? BrazilMultiIndexerParams[] -
sap.businessone.localization: inline_response_200_30
Represents the response payload for the ISDRecipientCreditMemosService_GetList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? ISDRecipientCreditMemoParams[] -
sap.businessone.localization: inline_response_200_31
Represents the response payload for the ISDRecipientInvoicesService_GetList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? ISDRecipientInvoiceParams[] -
sap.businessone.localization: inline_response_200_32
Represents the response payload for the IdentificationCodeService_GetList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? IdentificationCode[] -
sap.businessone.localization: inline_response_200_33
Represents the response payload for the ImportDeterminationService_GetDeterminations operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? ImportDetermination[] -
sap.businessone.localization: inline_response_200_34
Represents the response payload for the IndiaHsnService_GetList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? IndiaHsnParams[] -
sap.businessone.localization: inline_response_200_35
Represents the response payload for the IndiaSacCodeService_GetList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? IndiaSacCodeParams[] -
sap.businessone.localization: inline_response_200_36
Represents the response payload for the IntrastatConfigurationService_GetList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? IntrastatConfigurationParams[] -
sap.businessone.localization: inline_response_200_37
Represents the response payload for the MaterialGroupsService_GetMaterialGroupList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? MaterialGroupParams[] -
sap.businessone.localization: inline_response_200_38
Represents the response payload for the NCMCodesSetupService_GetNCMCodeSetupList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? NCMCodeSetupParams[] -
sap.businessone.localization: inline_response_200_39
Represents the response payload for the NFModelsService_GetList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? NFModelParams[] -
sap.businessone.localization: inline_response_200_4
Represents the response payload for the BrazilNumericIndexers_GetIndexerTypeList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? BrazilNumericIndexerParams[] -
sap.businessone.localization: inline_response_200_40
Represents the response payload for the NFTaxCategoriesService_GetList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? NFTaxCategoryParams[] -
sap.businessone.localization: inline_response_200_41
Represents the response payload for the OccurrenceCodesService_GetList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? OccurenceCodeParams[] -
sap.businessone.localization: inline_response_200_42
Represents the response payload for the RetornoCodesService_GetList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? RetornoCodeParams[] -
sap.businessone.localization: inline_response_200_43
Represents the response payload for the ServiceGroupsService_GetServiceGroupList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? ServiceGroupParams[] -
sap.businessone.localization: inline_response_200_44
Represents the response payload for the ServiceTaxPostingService_GetTaxableDeliveries operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? ServiceTaxPostingParams[] -
sap.businessone.localization: inline_response_200_5
Represents the response payload for the BrazilStringIndexers_GetIndexerTypeList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? BrazilStringIndexerParams[] -
sap.businessone.localization: inline_response_200_6
Represents the response payload for the CIGCodeService_GetList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? CIGCodeParams[] -
sap.businessone.localization: inline_response_200_7
Represents the response payload for the CUPCodeService_GetList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? CUPCodeParams[] -
sap.businessone.localization: inline_response_200_8
Represents the response payload for the CertificateSeriesService_GetCertificateSeriesList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? CertificateSeriesParams[] -
sap.businessone.localization: inline_response_200_9
Represents the response payload for the DNFCodeSetupService_GetDNFCodeSetupList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? DNFCodeSetupParams[] -
sap.businessone.localization: IntrastatConfiguration
The IntrastatConfiguration entity of the SAP Business One Service Layer
Fields
- prcstVal? decimal -
- confType? IntrastatConfigurationEnum -
- 'import? BoYesNoEnum -
- absEntry? Signed32 -
- descr? string -
- code? string -
- suppUnit? Signed32 -
- triangDeal? IntrastatConfigurationTriangDealEnum -
- dateFrom? string -
- export? BoYesNoEnum -
- country? string -
- confID? string -
- statCode? string -
- dateTo? string -
sap.businessone.localization: IntrastatConfigurationCollectionResponse
A paged collection of IntrastatConfiguration entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? IntrastatConfiguration[] -
- odataNextLink? string -
sap.businessone.localization: IntrastatConfigurationParams
The IntrastatConfigurationParams complex type of the SAP Business One Service Layer
Fields
- confType? IntrastatConfigurationEnum -
- dateFrom? string -
- country? string -
- absEntry? Signed32 -
- statCode? string -
- code? string -
- dateTo? string -
sap.businessone.localization: ISDCreditMemo
The ISDCreditMemo entity of the SAP Business One Service Layer
Fields
- DocumentEntry? Signed32 -
- DocumentNumber? Signed32 -
- Series? Signed32 -
- PostingDate? string -
- DocDate? string -
- DocumentStatus? ISDDocStatusEnum - OData EnumType 'ISDDocStatusEnum'. Serialised by the Service Layer as the member name
- Revised? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- OriginReferenceNumber? string -
- OriginReferenceEntry? Signed32 -
- OriginDocumentDate? string -
- TransactionNumber? Signed32 -
- Remarks? string -
- ObjectType? string -
- SourceLocationCode? Signed32 -
- SourceLocationName? string -
- SourceLocationGSTIN? string -
- TargetLocationCode? Signed32 -
- TargetLocationName? string -
- TargetLocationGSTIN? string -
- ISDEntry? Signed32 -
- DataSource? string -
- UserSignature? Signed32 -
- LogInstance? Signed32 -
- UserSignature2? Signed32 -
- CreateDate? string -
- UpdateDate? string -
- JournalMemo? string -
- HandWritten? string -
- PeriodIndicator? string -
- BPLId? Signed32 -
- BPLName? string -
- VATRegNum? string -
- ISDCreditMemoLines? ISDCreditMemoLine[] -
sap.businessone.localization: ISDCreditMemoLine
The ISDCreditMemoLine complex type of the SAP Business One Service Layer
Fields
- DocumentEntry? Signed32 -
- LineNumber? Signed32 -
- SourceDocumentType? ISDDocumentTypeEnum - OData EnumType 'ISDDocumentTypeEnum'. Serialised by the Service Layer as the member name
- SourceDocumentNumber? Signed32 -
- SourceDocumentEntry? Signed32 -
- SourceGSTTaxType? ISDSTATypeEnum - OData EnumType 'ISDSTATypeEnum'. Serialised by the Service Layer as the member name
- SourceTaxAccount? string -
- TargetGSTTaxType? ISDSTATypeEnum - OData EnumType 'ISDSTATypeEnum'. Serialised by the Service Layer as the member name
- TargetTaxAccount? string -
- DistributeAmount? decimal -
- SourceDocumentSubtype? string -
- ITCType? ISDITCTypeEnum - OData EnumType 'ISDITCTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.localization: ISDCreditMemoParams
The ISDCreditMemoParams complex type of the SAP Business One Service Layer
Fields
- documentEntry? Signed32 -
- documentNumber? Signed32 -
sap.businessone.localization: ISDCreditMemosCollectionResponse
A paged collection of ISDCreditMemos entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? ISDCreditMemo[] -
- odataNextLink? string -
sap.businessone.localization: ISDDocument
The ISDDocument entity of the SAP Business One Service Layer
Fields
- DocumentEntry? Signed32 -
- DocumentNumber? Signed32 -
- SourceLocationCode? Signed32 -
- SourceLocationName? string -
- Series? Signed32 -
- PostingDate? string -
- DocDate? string -
- DocumentStatus? ISDDocStatusEnum - OData EnumType 'ISDDocStatusEnum'. Serialised by the Service Layer as the member name
- Revised? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- OriginalReferenceNumber? string -
- OriginalReferenceEntry? Signed32 -
- OriginalDocumentDate? string -
- Remarks? string -
- ObjectType? string -
- DataSource? string -
- UserSignature? Signed32 -
- LogInstance? Signed32 -
- UserSignature2? Signed32 -
- CreateDate? string -
- UpdateDate? string -
- HandWritten? string -
- PeriodIndicator? string -
- DistributePercent? decimal -
- BPLId? Signed32 -
- BPLName? string -
- VATRegNum? string -
- SourceDocumentType? ISDDocumentTypeEnum - OData EnumType 'ISDDocumentTypeEnum'. Serialised by the Service Layer as the member name
- DocNumFrom? Signed32 -
- DocNumTo? Signed32 -
- DocDateFrom? string -
- DocDateTo? string -
- DistributableLines? DistributableLine[] -
- DistributedLines? DistributedLine[] -
- AutoDistributionRuleLines? AutoDistributionRuleLine[] -
sap.businessone.localization: ISDDocumentsCollectionResponse
A paged collection of ISDDocuments entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? ISDDocument[] -
- odataNextLink? string -
sap.businessone.localization: ISDDocumentsService_Cancel_body
Represents the request payload for the ISDDocumentsService_Cancel operation of the SAP Business One Service Layer
Fields
- iSDParams? ISDParams -
sap.businessone.localization: ISDInvoice
The ISDInvoice entity of the SAP Business One Service Layer
Fields
- DocumentEntry? Signed32 -
- DocumentNumber? Signed32 -
- Series? Signed32 -
- PostingDate? string -
- DocDate? string -
- DocumentStatus? ISDDocStatusEnum - OData EnumType 'ISDDocStatusEnum'. Serialised by the Service Layer as the member name
- Revised? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- OriginReferenceNumber? string -
- OriginReferenceEntry? Signed32 -
- OriginDocumentDate? string -
- TransactionNumber? Signed32 -
- Remarks? string -
- ObjectType? string -
- SourceLocationCode? Signed32 -
- SourceLocationName? string -
- SourceLocationGSTIN? string -
- TargetLocationCode? Signed32 -
- TargetLocationName? string -
- TargetLocationGSTIN? string -
- ISDEntry? Signed32 -
- DataSource? string -
- UserSignature? Signed32 -
- LogInstance? Signed32 -
- UserSignature2? Signed32 -
- CreateDate? string -
- UpdateDate? string -
- JournalMemo? string -
- HandWritten? string -
- PeriodIndicator? string -
- BPLId? Signed32 -
- BPLName? string -
- VATRegNum? string -
- ISDInvoiceLines? ISDInvoiceLine[] -
sap.businessone.localization: ISDInvoiceLine
The ISDInvoiceLine complex type of the SAP Business One Service Layer
Fields
- DocumentEntry? Signed32 -
- LineNumber? Signed32 -
- SourceDocumentType? ISDDocumentTypeEnum - OData EnumType 'ISDDocumentTypeEnum'. Serialised by the Service Layer as the member name
- SourceDocumentNumber? Signed32 -
- SourceDocumentEntry? Signed32 -
- SourceGSTTaxType? ISDSTATypeEnum - OData EnumType 'ISDSTATypeEnum'. Serialised by the Service Layer as the member name
- SourceTaxAccount? string -
- TargetGSTTaxType? ISDSTATypeEnum - OData EnumType 'ISDSTATypeEnum'. Serialised by the Service Layer as the member name
- TargetTaxAccount? string -
- DistributeAmount? decimal -
- SourceDocumentSubtype? string -
- ITCType? ISDITCTypeEnum - OData EnumType 'ISDITCTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.localization: ISDInvoiceParams
The ISDInvoiceParams complex type of the SAP Business One Service Layer
Fields
- documentEntry? Signed32 -
- documentNumber? Signed32 -
sap.businessone.localization: ISDInvoicesCollectionResponse
A paged collection of ISDInvoices entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? ISDInvoice[] -
- odataNextLink? string -
sap.businessone.localization: ISDParams
The ISDParams complex type of the SAP Business One Service Layer
Fields
- documentEntry? Signed32 -
- documentNumber? Signed32 -
sap.businessone.localization: ISDRecipientCreditMemo
The ISDRecipientCreditMemo entity of the SAP Business One Service Layer
Fields
- DocumentEntry? Signed32 -
- DocumentNumber? Signed32 -
- Series? Signed32 -
- PostingDate? string -
- DocDate? string -
- DocumentStatus? ISDDocStatusEnum - OData EnumType 'ISDDocStatusEnum'. Serialised by the Service Layer as the member name
- ReferenceNumber? string -
- ReferenceEntry? Signed32 -
- ReferenceDocumentDate? string -
- TransactionNumber? Signed32 -
- Remarks? string -
- ObjectType? string -
- SourceLocationCode? Signed32 -
- SourceLocationName? string -
- SourceLocationGSTIN? string -
- TargetLocationCode? Signed32 -
- TargetLocationName? string -
- TargetLocationGSTIN? string -
- DataSource? string -
- UserSignature? Signed32 -
- LogInstance? Signed32 -
- UserSignature2? Signed32 -
- CreateDate? string -
- UpdateDate? string -
- JournalMemo? string -
- HandWritten? string -
- PeriodIndicator? string -
- BPLId? Signed32 -
- BPLName? string -
- VATRegNum? string -
- ISDRecipientCreditMemoLines? ISDRecipientCreditMemoLine[] -
sap.businessone.localization: ISDRecipientCreditMemoLine
The ISDRecipientCreditMemoLine complex type of the SAP Business One Service Layer
Fields
- DocumentEntry? Signed32 -
- LineNumber? Signed32 -
- GSTTaxType? ISDSTATypeEnum - OData EnumType 'ISDSTATypeEnum'. Serialised by the Service Layer as the member name
- TaxAccount? string -
- ReceivedAmount? decimal -
- EligibleAmount? decimal -
sap.businessone.localization: ISDRecipientCreditMemoParams
The ISDRecipientCreditMemoParams complex type of the SAP Business One Service Layer
Fields
- documentEntry? Signed32 -
- documentNumber? Signed32 -
sap.businessone.localization: ISDRecipientCreditMemosCollectionResponse
A paged collection of ISDRecipientCreditMemos entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? ISDRecipientCreditMemo[] -
- odataNextLink? string -
sap.businessone.localization: ISDRecipientInvoice
The ISDRecipientInvoice entity of the SAP Business One Service Layer
Fields
- DocumentEntry? Signed32 -
- DocumentNumber? Signed32 -
- Series? Signed32 -
- PostingDate? string -
- DocDate? string -
- DocumentStatus? ISDDocStatusEnum - OData EnumType 'ISDDocStatusEnum'. Serialised by the Service Layer as the member name
- ReferenceNumber? string -
- ReferenceEntry? Signed32 -
- ReferenceDocumentDate? string -
- TransactionNumber? Signed32 -
- Remarks? string -
- ObjectType? string -
- SourceLocationCode? Signed32 -
- SourceLocationName? string -
- SourceLocationGSTIN? string -
- TargetLocationCode? Signed32 -
- TargetLocationName? string -
- TargetLocationGSTIN? string -
- DataSource? string -
- UserSignature? Signed32 -
- LogInstance? Signed32 -
- UserSignature2? Signed32 -
- CreateDate? string -
- UpdateDate? string -
- JournalMemo? string -
- HandWritten? string -
- PeriodIndicator? string -
- BPLId? Signed32 -
- BPLName? string -
- VATRegNum? string -
- ISDRecipientInvoiceLines? ISDRecipientInvoiceLine[] -
sap.businessone.localization: ISDRecipientInvoiceLine
The ISDRecipientInvoiceLine complex type of the SAP Business One Service Layer
Fields
- DocumentEntry? Signed32 -
- LineNumber? Signed32 -
- GSTTaxType? ISDSTATypeEnum - OData EnumType 'ISDSTATypeEnum'. Serialised by the Service Layer as the member name
- TaxAccount? string -
- ReceivedAmount? decimal -
- EligibleAmount? decimal -
sap.businessone.localization: ISDRecipientInvoiceParams
The ISDRecipientInvoiceParams complex type of the SAP Business One Service Layer
Fields
- documentEntry? Signed32 -
- documentNumber? Signed32 -
sap.businessone.localization: ISDRecipientInvoicesCollectionResponse
A paged collection of ISDRecipientInvoices entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? ISDRecipientInvoice[] -
- odataNextLink? string -
sap.businessone.localization: LegalData
The LegalData entity of the SAP Business One Service Layer
Fields
- printerDllVersion? string -
- fiscalNumber? string -
- printerFirmwareVersion? string -
- legalDataDetailCollection? LegalDataDetail[] -
- docEntry? Signed32 -
- documentNumber? string -
- printerType? string -
- sourceObjectType? BoAPARDocumentTypes -
- sourceObjectEntry? Signed32 -
- printerBrand? string -
- dateOfPrinting? string -
- printerModel? string -
- fiscalSeries? string -
- timeOfPrinting? string -
- fiscalUserID? Signed32 -
sap.businessone.localization: LegalDataCollectionResponse
A paged collection of LegalData entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? LegalData[] -
- odataNextLink? string -
sap.businessone.localization: LegalDataDetail
The LegalDataDetail complex type of the SAP Business One Service Layer
Fields
- taxCode? string -
- lineSequence? Signed32 -
- amount? decimal -
- taxRate? decimal -
- docEntry? Signed32 -
- lineType? LegalDataLineTypeEnum -
sap.businessone.localization: LineExpenseTaxJurisdiction
The LineExpenseTaxJurisdiction complex type of the SAP Business One Service Layer
Fields
- JurisdictionCode? string -
- JurisdictionType? Signed32 -
- TaxAmount? decimal -
- TaxAmountSC? decimal -
- TaxAmountFC? decimal -
- TaxRate? decimal -
- DocEntry? Signed32 -
- LineNumber? Signed32 -
- RowSequence? Signed32 -
- ExternalCalcTaxRate? decimal -
- ExternalCalcTaxAmount? decimal -
- ExternalCalcTaxAmountFC? decimal -
- ExternalCalcTaxAmountSC? decimal -
sap.businessone.localization: LineFreightEBooksDetail
The LineFreightEBooksDetail complex type of the SAP Business One Service Layer
Fields
- IncomeClassificationType? Signed32 -
- IncomeClassificationCategory? Signed32 -
- ExpensesClassificationType? Signed32 -
- ExpensesClassificationCategory? Signed32 -
- NetValueLC? decimal -
- NetValueFC? decimal -
- NetValueSC? decimal -
- VatCategory? Signed32 -
- WithheldPercentCategory? Signed32 -
- WithheldAmountLC? decimal -
- WithheldAmountFC? decimal -
- WithheldAmountSC? decimal -
- VatClassificationType? Signed32 -
- VatClassificationCategory? Signed32 -
- VATExemptionCause? Signed32 -
sap.businessone.localization: LineTaxJurisdiction
The LineTaxJurisdiction complex type of the SAP Business One Service Layer
Fields
- JurisdictionCode? string -
- JurisdictionType? Signed32 -
- TaxAmount? decimal -
- TaxAmountSC? decimal -
- TaxAmountFC? decimal -
- TaxRate? decimal -
- DocEntry? Signed32 -
- LineNumber? Signed32 -
- RowSequence? Signed32 -
- ExternalCalcTaxRate? decimal -
- ExternalCalcTaxAmount? decimal -
- ExternalCalcTaxAmountFC? decimal -
- ExternalCalcTaxAmountSC? decimal -
- BaseSum? decimal -
- TaxInPrice? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- NonDeductiblePercent? decimal -
- TaxOnReserveInvoice? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Exempt? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Unencumbered? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
sap.businessone.localization: ListBEMReplicationPeriodsHeaders
Represents the Headers record for the operation: listBEMReplicationPeriods
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.localization: ListBEMReplicationPeriodsQueries
Represents the Queries record for the operation: listBEMReplicationPeriods
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.localization: ListBrazilBeverageIndexersHeaders
Represents the Headers record for the operation: listBrazilBeverageIndexers
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.localization: ListBrazilBeverageIndexersQueries
Represents the Queries record for the operation: listBrazilBeverageIndexers
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.localization: ListBrazilFuelIndexersHeaders
Represents the Headers record for the operation: listBrazilFuelIndexers
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.localization: ListBrazilFuelIndexersQueries
Represents the Queries record for the operation: listBrazilFuelIndexers
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.localization: ListBrazilMultiIndexersHeaders
Represents the Headers record for the operation: listBrazilMultiIndexers
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.localization: ListBrazilMultiIndexersQueries
Represents the Queries record for the operation: listBrazilMultiIndexers
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.localization: ListBrazilNumericIndexersHeaders
Represents the Headers record for the operation: listBrazilNumericIndexers
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.localization: ListBrazilNumericIndexersQueries
Represents the Queries record for the operation: listBrazilNumericIndexers
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.localization: ListBrazilStringIndexersHeaders
Represents the Headers record for the operation: listBrazilStringIndexers
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.localization: ListBrazilStringIndexersQueries
Represents the Queries record for the operation: listBrazilStringIndexers
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.localization: ListCertificateSeriesHeaders
Represents the Headers record for the operation: listCertificateSeries
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.localization: ListCertificateSeriesQueries
Represents the Queries record for the operation: listCertificateSeries
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.localization: ListCESTCodesHeaders
Represents the Headers record for the operation: listCESTCodes
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.localization: ListCESTCodesQueries
Represents the Queries record for the operation: listCESTCodes
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.localization: ListCIGCodesHeaders
Represents the Headers record for the operation: listCIGCodes
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.localization: ListCIGCodesQueries
Represents the Queries record for the operation: listCIGCodes
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.localization: ListCUPCodesHeaders
Represents the Headers record for the operation: listCUPCodes
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.localization: ListCUPCodesQueries
Represents the Queries record for the operation: listCUPCodes
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.localization: ListCustomsDeclarationHeaders
Represents the Headers record for the operation: listCustomsDeclaration
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.localization: ListCustomsDeclarationQueries
Represents the Queries record for the operation: listCustomsDeclaration
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.localization: ListDatevRunsHeaders
Represents the Headers record for the operation: listDatevRuns
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.localization: ListDatevRunsQueries
Represents the Queries record for the operation: listDatevRuns
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.localization: ListDefaultElementsforCRHeaders
Represents the Headers record for the operation: listDefaultElementsforCR
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.localization: ListDefaultElementsforCRQueries
Represents the Queries record for the operation: listDefaultElementsforCR
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.localization: ListDNFCodeSetupHeaders
Represents the Headers record for the operation: listDNFCodeSetup
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.localization: ListDNFCodeSetupQueries
Represents the Queries record for the operation: listDNFCodeSetup
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.localization: ListEBooksHeaders
Represents the Headers record for the operation: listEBooks
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.localization: ListEBooksQueries
Represents the Queries record for the operation: listEBooks
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.localization: ListElectronicDocumentsHeaders
Represents the Headers record for the operation: listElectronicDocuments
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.localization: ListElectronicDocumentsQueries
Represents the Queries record for the operation: listElectronicDocuments
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.localization: ListElectronicFileFormatsHeaders
Represents the Headers record for the operation: listElectronicFileFormats
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.localization: ListElectronicFileFormatsQueries
Represents the Queries record for the operation: listElectronicFileFormats
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.localization: ListEWBTransportersHeaders
Represents the Headers record for the operation: listEWBTransporters
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.localization: ListEWBTransportersQueries
Represents the Queries record for the operation: listEWBTransporters
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.localization: ListExportDeterminationsHeaders
Represents the Headers record for the operation: listExportDeterminations
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.localization: ListExportDeterminationsQueries
Represents the Queries record for the operation: listExportDeterminations
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.localization: ListFiscalPrinterHeaders
Represents the Headers record for the operation: listFiscalPrinter
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.localization: ListFiscalPrinterQueries
Represents the Queries record for the operation: listFiscalPrinter
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.localization: ListIdentificationCodesHeaders
Represents the Headers record for the operation: listIdentificationCodes
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.localization: ListIdentificationCodesQueries
Represents the Queries record for the operation: listIdentificationCodes
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.localization: ListImportDeterminationsHeaders
Represents the Headers record for the operation: listImportDeterminations
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.localization: ListImportDeterminationsQueries
Represents the Queries record for the operation: listImportDeterminations
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.localization: ListIndiaHsnHeaders
Represents the Headers record for the operation: listIndiaHsn
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.localization: ListIndiaHsnQueries
Represents the Queries record for the operation: listIndiaHsn
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.localization: ListIndiaSacCodeHeaders
Represents the Headers record for the operation: listIndiaSacCode
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.localization: ListIndiaSacCodeQueries
Represents the Queries record for the operation: listIndiaSacCode
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.localization: ListIntrastatConfigurationHeaders
Represents the Headers record for the operation: listIntrastatConfiguration
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.localization: ListIntrastatConfigurationQueries
Represents the Queries record for the operation: listIntrastatConfiguration
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.localization: ListISDCreditMemosHeaders
Represents the Headers record for the operation: listISDCreditMemos
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.localization: ListISDCreditMemosQueries
Represents the Queries record for the operation: listISDCreditMemos
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.localization: ListISDDocumentsHeaders
Represents the Headers record for the operation: listISDDocuments
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.localization: ListISDDocumentsQueries
Represents the Queries record for the operation: listISDDocuments
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.localization: ListISDInvoicesHeaders
Represents the Headers record for the operation: listISDInvoices
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.localization: ListISDInvoicesQueries
Represents the Queries record for the operation: listISDInvoices
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.localization: ListISDRecipientCreditMemosHeaders
Represents the Headers record for the operation: listISDRecipientCreditMemos
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.localization: ListISDRecipientCreditMemosQueries
Represents the Queries record for the operation: listISDRecipientCreditMemos
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.localization: ListISDRecipientInvoicesHeaders
Represents the Headers record for the operation: listISDRecipientInvoices
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.localization: ListISDRecipientInvoicesQueries
Represents the Queries record for the operation: listISDRecipientInvoices
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.localization: ListLegalDataHeaders
Represents the Headers record for the operation: listLegalData
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.localization: ListLegalDataQueries
Represents the Queries record for the operation: listLegalData
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.localization: ListLocalEraHeaders
Represents the Headers record for the operation: listLocalEra
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.localization: ListLocalEraQueries
Represents the Queries record for the operation: listLocalEra
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.localization: ListMaterialGroupsHeaders
Represents the Headers record for the operation: listMaterialGroups
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.localization: ListMaterialGroupsQueries
Represents the Queries record for the operation: listMaterialGroups
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.localization: ListNCMCodesSetupHeaders
Represents the Headers record for the operation: listNCMCodesSetup
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.localization: ListNCMCodesSetupQueries
Represents the Queries record for the operation: listNCMCodesSetup
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.localization: ListNFModelsHeaders
Represents the Headers record for the operation: listNFModels
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.localization: ListNFModelsQueries
Represents the Queries record for the operation: listNFModels
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.localization: ListNFTaxCategoriesHeaders
Represents the Headers record for the operation: listNFTaxCategories
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.localization: ListNFTaxCategoriesQueries
Represents the Queries record for the operation: listNFTaxCategories
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.localization: ListNotaFiscalCFOPHeaders
Represents the Headers record for the operation: listNotaFiscalCFOP
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.localization: ListNotaFiscalCFOPQueries
Represents the Queries record for the operation: listNotaFiscalCFOP
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.localization: ListNotaFiscalCSTHeaders
Represents the Headers record for the operation: listNotaFiscalCST
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.localization: ListNotaFiscalCSTQueries
Represents the Queries record for the operation: listNotaFiscalCST
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.localization: ListNotaFiscalUsageHeaders
Represents the Headers record for the operation: listNotaFiscalUsage
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.localization: ListNotaFiscalUsageQueries
Represents the Queries record for the operation: listNotaFiscalUsage
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.localization: ListOccurrenceCodesHeaders
Represents the Headers record for the operation: listOccurrenceCodes
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.localization: ListOccurrenceCodesQueries
Represents the Queries record for the operation: listOccurrenceCodes
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.localization: ListRetornoCodesHeaders
Represents the Headers record for the operation: listRetornoCodes
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.localization: ListRetornoCodesQueries
Represents the Queries record for the operation: listRetornoCodes
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.localization: ListSelfCreditMemosHeaders
Represents the Headers record for the operation: listSelfCreditMemos
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.localization: ListSelfCreditMemosQueries
Represents the Queries record for the operation: listSelfCreditMemos
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.localization: ListSelfInvoicesHeaders
Represents the Headers record for the operation: listSelfInvoices
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.localization: ListSelfInvoicesQueries
Represents the Queries record for the operation: listSelfInvoices
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.localization: ListServiceGroupsHeaders
Represents the Headers record for the operation: listServiceGroups
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.localization: ListServiceGroupsQueries
Represents the Queries record for the operation: listServiceGroups
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.localization: ListTransportationDocumentHeaders
Represents the Headers record for the operation: listTransportationDocument
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.localization: ListTransportationDocumentQueries
Represents the Queries record for the operation: listTransportationDocument
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.localization: LocalEra
The LocalEra entity of the SAP Business One Service Layer
Fields
- EraName? string -
- StartDate? string -
- Code? string -
sap.businessone.localization: LocalEraCollectionResponse
A paged collection of LocalEra entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? LocalEra[] -
- odataNextLink? string -
sap.businessone.localization: MaterialGroup
The MaterialGroup entity of the SAP Business One Service Layer
Fields
- description? string -
- absEntry? Signed32 -
- materialGroupCode? string -
sap.businessone.localization: MaterialGroupParams
The MaterialGroupParams complex type of the SAP Business One Service Layer
Fields
- absEntry? Signed32 -
- materialGroupCode? string -
sap.businessone.localization: MaterialGroupsCollectionResponse
A paged collection of MaterialGroups entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? MaterialGroup[] -
- odataNextLink? string -
sap.businessone.localization: NCMCodeSetup
The NCMCodeSetup entity of the SAP Business One Service Layer
Fields
- nCMCode? string -
- description? string -
- groupCode? string -
- absEntry? Signed32 -
- dNFCodeSetup? DNFCodeSetup[] -
sap.businessone.localization: NCMCodeSetupParams
The NCMCodeSetupParams complex type of the SAP Business One Service Layer
Fields
- nCMCode? string -
- description? string -
- absEntry? Signed32 -
sap.businessone.localization: NCMCodesSetupCollectionResponse
A paged collection of NCMCodesSetup entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? NCMCodeSetup[] -
- odataNextLink? string -
sap.businessone.localization: NFModel
The NFModel entity of the SAP Business One Service Layer
Fields
- correctionInvoice? Document[] -
- orders? Document[] -
- purchaseRequests? Document[] -
- inventoryGenExits? Document[] -
- purchaseQuotations? Document[] -
- purchaseDeliveryNotes? Document[] -
- invoices? Document[] -
- purchaseDownPayments? Document[] -
- absEntry? string -
- creditNotes? Document[] -
- purchaseInvoices? Document[] -
- 'returns? Document[] -
- nFMDescription? string -
- nFMCode? string -
- correctionPurchaseInvoice? Document[] -
- quotations? Document[] -
- purchaseCreditNotes? Document[] -
- goodsReturnRequest? Document[] -
- returnRequest? Document[] -
- inventoryGenEntries? Document[] -
- purchaseReturns? Document[] -
- purchaseOrders? Document[] -
- downPayments? Document[] -
- correctionInvoiceReversal? Document[] -
- fiscalPrinter? FiscalPrinter[] -
- deliveryNotes? Document[] -
- selfInvoices? Document[] -
- drafts? Document[] -
- selfCreditMemos? Document[] -
- correctionPurchaseInvoiceReversal? Document[] -
- nFMName? string -
sap.businessone.localization: NFModelParams
The NFModelParams complex type of the SAP Business One Service Layer
Fields
- nFMDescription? string -
- nFMCode? string -
- nFMName? string -
- absEntry? string -
sap.businessone.localization: NFModelsCollectionResponse
A paged collection of NFModels entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? NFModel[] -
- odataNextLink? string -
sap.businessone.localization: NFTaxCategoriesCollectionResponse
A paged collection of NFTaxCategories entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? NFTaxCategory[] -
- odataNextLink? string -
sap.businessone.localization: NFTaxCategory
The NFTaxCategory entity of the SAP Business One Service Layer
Fields
- locked? BoYesNoEnum -
- notaFiscalCST? NotaFiscalCST[] -
- gPCId? Signed32 -
- code? string -
- absId? Signed32 -
- cESTrel? BoYesNoEnum -
sap.businessone.localization: NFTaxCategoryParams
The NFTaxCategoryParams complex type of the SAP Business One Service Layer
Fields
- code? string -
- absId? Signed32 -
sap.businessone.localization: NotaFiscalCFOP
The NotaFiscalCFOP entity of the SAP Business One Service Layer
Fields
- ID? Signed32 -
- Description? string -
- Code? string -
- Application? string -
- NotaFiscalUsage? NotaFiscalUsage[] -
sap.businessone.localization: NotaFiscalCFOPCollectionResponse
A paged collection of NotaFiscalCFOP entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? NotaFiscalCFOP[] -
- odataNextLink? string -
sap.businessone.localization: NotaFiscalCST
The NotaFiscalCST entity of the SAP Business One Service Layer
Fields
- ID? Signed32 -
- Code? string -
- Situation? string -
- TaxCategory? Signed32 -
- CSTCodeOutgoing? string -
- DescriptionOutgoing? string -
- NFTaxCategory? NFTaxCategory - The
NFTaxCategoryentity of the SAP Business One Service Layer
sap.businessone.localization: NotaFiscalCSTCollectionResponse
A paged collection of NotaFiscalCST entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? NotaFiscalCST[] -
- odataNextLink? string -
sap.businessone.localization: NotaFiscalUsage
The NotaFiscalUsage entity of the SAP Business One Service Layer
Fields
- ID? Signed32 -
- Usage? string -
- IncomingInStateCFOPCode? string -
- IncomingOutStateCFOPCode? string -
- IncomingImportCFOPCode? string -
- OutgoingInStateCFOPCode? string -
- OutgoingOutStateCFOPCode? string -
- OutgoingExportCFOPCode? string -
- Description? string -
- NotaFiscalCFOP? NotaFiscalCFOP - The
NotaFiscalCFOPentity of the SAP Business One Service Layer
sap.businessone.localization: NotaFiscalUsageCollectionResponse
A paged collection of NotaFiscalUsage entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? NotaFiscalUsage[] -
- odataNextLink? string -
sap.businessone.localization: OccurenceCode
The OccurenceCode entity of the SAP Business One Service Layer
Fields
- requestedBoeStatus? BoBoeStatus -
- isMovement? BoYesNoEnum -
- description? string -
- note? string -
- absEntry? Signed32 -
- code? string -
sap.businessone.localization: OccurenceCodeParams
The OccurenceCodeParams complex type of the SAP Business One Service Layer
Fields
- requestedBoeStatus? BoBoeStatus -
- isMovement? BoYesNoEnum -
- description? string -
- note? string -
- absEntry? Signed32 -
- code? string -
sap.businessone.localization: OccurrenceCodesCollectionResponse
A paged collection of OccurrenceCodes entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? OccurenceCode[] -
- odataNextLink? string -
sap.businessone.localization: PWPExtendedProperties
The PWPExtendedProperties complex type of the SAP Business One Service Layer
Fields
- isEncrypted? BoYesNoEnum -
sap.businessone.localization: RelatedDocument
The RelatedDocument complex type of the SAP Business One Service Layer
Fields
- absEnry? Signed32 -
- absEntry? Signed32 -
- uUID? string -
- docTye? RelatedDocumentTypeEnum -
- docType? RelatedDocumentTypeEnum -
sap.businessone.localization: RetornoCode
The RetornoCode entity of the SAP Business One Service Layer
Fields
- movementCode? Signed32 -
- description? string -
- occurenceCode? Signed32 -
- boeStatus? BoBoeStatus -
- color? Signed32 -
- bankCode? string -
- absEntry? Signed32 -
- fileFormat? string -
sap.businessone.localization: RetornoCodeParams
The RetornoCodeParams complex type of the SAP Business One Service Layer
Fields
- movementCode? Signed32 -
- description? string -
- occurenceCode? Signed32 -
- boeStatus? BoBoeStatus -
- color? Signed32 -
- bankCode? string -
- absEntry? Signed32 -
- fileFormat? string -
sap.businessone.localization: RetornoCodesCollectionResponse
A paged collection of RetornoCodes entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? RetornoCode[] -
- odataNextLink? string -
sap.businessone.localization: SelfCreditMemosCollectionResponse
A paged collection of SelfCreditMemos entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? Document[] -
- odataNextLink? string -
sap.businessone.localization: SelfCreditMemoService_ApproveAndAdd_body
Represents the request payload for the SelfCreditMemoService_ApproveAndAdd operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.localization: SelfCreditMemoService_ApproveAndUpdate_body
Represents the request payload for the SelfCreditMemoService_ApproveAndUpdate operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.localization: SelfCreditMemoService_CloseByDate_body
Represents the request payload for the SelfCreditMemoService_CloseByDate operation of the SAP Business One Service Layer
Fields
- documentCloseParams? DocumentCloseParams -
sap.businessone.localization: SelfCreditMemoService_ExportEWayBill_body
Represents the request payload for the SelfCreditMemoService_ExportEWayBill operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.localization: SelfCreditMemoService_GetApprovalTemplates_body
Represents the request payload for the SelfCreditMemoService_GetApprovalTemplates operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.localization: SelfInvoicesCollectionResponse
A paged collection of SelfInvoices entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? Document[] -
- odataNextLink? string -
sap.businessone.localization: SelfInvoiceService_ApproveAndAdd_body
Represents the request payload for the SelfInvoiceService_ApproveAndAdd operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.localization: SelfInvoiceService_ApproveAndUpdate_body
Represents the request payload for the SelfInvoiceService_ApproveAndUpdate operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.localization: SelfInvoiceService_CloseByDate_body
Represents the request payload for the SelfInvoiceService_CloseByDate operation of the SAP Business One Service Layer
Fields
- documentCloseParams? DocumentCloseParams -
sap.businessone.localization: SelfInvoiceService_ExportEWayBill_body
Represents the request payload for the SelfInvoiceService_ExportEWayBill operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.localization: SelfInvoiceService_GetApprovalTemplates_body
Represents the request payload for the SelfInvoiceService_GetApprovalTemplates operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.localization: SerialNumber
The SerialNumber complex type of the SAP Business One Service Layer
Fields
- ManufacturerSerialNumber? string -
- InternalSerialNumber? string -
- ExpiryDate? string -
- ManufactureDate? string -
- ReceptionDate? string -
- WarrantyStart? string -
- WarrantyEnd? string -
- Location? string -
- Notes? string -
- BatchID? string -
- SystemSerialNumber? Signed32 -
- BaseLineNumber? Signed32 -
- Quantity? decimal -
- TrackingNote? Signed32 -
- TrackingNoteLine? Signed32 -
- ItemCode? string -
sap.businessone.localization: SeriesLine
The SeriesLine complex type of the SAP Business One Service Layer
Fields
- series? Signed32 -
- nextNum? Signed32 -
- firstNum? Signed32 -
- lastNum? Signed32 -
- prefix? string -
sap.businessone.localization: ServiceGroup
The ServiceGroup entity of the SAP Business One Service Layer
Fields
- description? string -
- serviceGroupCode? string -
- absEntry? Signed32 -
sap.businessone.localization: ServiceGroupParams
The ServiceGroupParams complex type of the SAP Business One Service Layer
Fields
- serviceGroupCode? string -
- absEntry? Signed32 -
sap.businessone.localization: ServiceGroupsCollectionResponse
A paged collection of ServiceGroups entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? ServiceGroup[] -
- odataNextLink? string -
sap.businessone.localization: ServiceTaxPostingParams
The ServiceTaxPostingParams complex type of the SAP Business One Service Layer
Fields
- docEntry? Signed32 -
sap.businessone.localization: ServiceTaxPostingService_PostServiceTax_body
Represents the request payload for the ServiceTaxPostingService_PostServiceTax operation of the SAP Business One Service Layer
Fields
- serviceTaxPostingParams? ServiceTaxPostingParams -
sap.businessone.localization: TaxExtension
The TaxExtension complex type of the SAP Business One Service Layer
Fields
- buildingS? string -
- taxId3? string -
- taxId2? string -
- taxId5? string -
- taxId4? string -
- packQuantity? Signed32 -
- taxId1? string -
- taxId0? string -
- vehicle? string -
- portCode? string -
- taxId7? string -
- buildingB? string -
- taxId6? string -
- taxId9? string -
- taxId8? string -
- carrier? string -
- shipUnitNo? Signed32 -
- streetS? string -
- differentialOfTaxRate? Signed32 -
- zipCodeS? string -
- countryB? string -
- grossWeight? decimal -
- globalLocationNumberB? string -
- packDescription? string -
- mainUsage? Signed32 -
- docEntry? Signed32 -
- brand? string -
- stateS? string -
- countryS? string -
- blockB? string -
- state? string -
- globalLocationNumberS? string -
- importOrExportType? ImportOrExportTypeEnum -
- vehicleState? string -
- blockS? string -
- stateB? string -
- cityS? string -
- county? string -
- boEValue? decimal -
- nFRef? string -
- countyB? string -
- billOfEntryNo? string -
- countyS? string -
- taxId14? string -
- taxId13? string -
- claimRefund? BoYesNoEnum -
- taxId12? string -
- netWeight? decimal -
- originalBillOfEntryDate? string -
- billOfEntryDate? string -
- zipCodeB? string -
- importOrExport? BoYesNoEnum -
- originalBillOfEntryNo? string -
- streetB? string -
- cityB? string -
- isIGSTAccount? BoYesNoEnum -
- incoterms? string -
sap.businessone.localization: TransportationDocumentCollectionResponse
A paged collection of TransportationDocument entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? TransportationDocumentData[] -
- odataNextLink? string -
sap.businessone.localization: TransportationDocumentData
The TransportationDocumentData entity of the SAP Business One Service Layer
Fields
- nextNumber? Signed32 -
- cOTCode? string -
- transportationNumber? string -
- transpDocNumber? Signed32 -
- vehicleID? string -
- weightUnit? Signed32 -
- trailerID? string -
- issueGate? Signed32 -
- attachmentEntry? Signed32 -
- elDocExportFormat? Signed32 -
- warehouseCode? string -
- weight? decimal -
- elDocGenType? ElectronicDocGenTypeEnum -
- expirationDate? string -
- transportationDocumentLineDataCollection? TransportationDocumentLineData[] -
- transportedTotalLC? decimal -
- electronicProtocols? ElectronicProtocol[] -
- carrierCode? string -
- canceled? BoYesNoEnum -
- postDate? string -
sap.businessone.localization: TransportationDocumentLineData
The TransportationDocumentLineData complex type of the SAP Business One Service Layer
Fields
- itemCode? string -
- lineID? Signed32 -
- transportedQuantity? decimal -
- docNumber? Signed32 -
- transpDocNumber? Signed32 -
- docOrderNum? Signed32 -
- docLineNumber? Signed32 -
- docType? DocumentObjectTypeEnum -
sap.businessone.localization: WithholdingTaxData
The WithholdingTaxData complex type of the SAP Business One Service Layer
Fields
- WTCode? string -
- WTAmountSys? decimal -
- WTAmountFC? decimal -
- WTAmount? decimal -
- WithholdingType? string -
- TaxableAmountinSys? decimal -
- TaxableAmountFC? decimal -
- TaxableAmount? decimal -
- RoundingType? string -
- Rate? decimal -
- Criteria? string -
- Category? string -
- BaseType? string -
- AppliedWTAmountSys? decimal -
- AppliedWTAmountFC? decimal -
- AppliedWTAmount? decimal -
- GLAccount? string -
- LineNum? Signed32 -
- BaseDocEntry? Signed32 -
- BaseDocLine? Signed32 -
- BaseDocType? Signed32 -
- BaseDocumentReference? Signed32 -
- Status? BoStatus - OData EnumType 'BoStatus'. Serialised by the Service Layer as the member name
- TargetAbsEntry? Signed32 -
- TargetDocumentType? Signed32 -
sap.businessone.localization: WithholdingTaxDataWTX
The WithholdingTaxDataWTX complex type of the SAP Business One Service Layer
Fields
- WTAmountSys? decimal -
- WTAmountFC? decimal -
- WTAmount? decimal -
- WithholdingType? string -
- TaxableAmountinSys? decimal -
- TaxableAmountFC? decimal -
- TaxableAmount? decimal -
- Rate? decimal -
- Category? string -
- BaseType? string -
- AppliedWTAmountSys? decimal -
- AppliedWTAmountFC? decimal -
- AppliedWTAmount? decimal -
- GLAccount? string -
- LineNum? Signed32 -
- BaseDocEntry? Signed32 -
- BaseDocLine? Signed32 -
- BaseDocType? string -
- WTAbsId? string -
- ExemptRate? decimal -
- BaseNetAmountSys? decimal -
- BaseNetAmountFC? decimal -
- BaseNetAmount? decimal -
- BaseVatmountSys? decimal -
- BaseVatmountFC? decimal -
- BaseVatmount? decimal -
- AccumBaseAmountSys? decimal -
- AccumBaseAmountFC? decimal -
- AccumBaseAmount? decimal -
- AccumWTaxAmountSys? decimal -
- AccumWTaxAmountFC? decimal -
- AccumWTaxAmount? decimal -
sap.businessone.localization: WithholdingTaxLine
The WithholdingTaxLine complex type of the SAP Business One Service Layer
Fields
- WTCode? string -
- WTAmountSys? decimal -
- WTAmountFC? decimal -
- WTAmount? decimal -
- WithholdingType? string -
- TaxableAmountinSys? decimal -
- TaxableAmountFC? decimal -
- TaxableAmount? decimal -
- RoundingType? string -
- Rate? decimal -
- Criteria? string -
- Category? string -
- BaseType? string -
- AppliedWTAmountSys? decimal -
- AppliedWTAmountFC? decimal -
- AppliedWTAmount? decimal -
- GLAccount? string -
- LineNum? Signed32 -
- BaseDocEntry? Signed32 -
- BaseDocLine? Signed32 -
- BaseDocType? Signed32 -
- BaseDocumentReference? Signed32 -
- Status? BoStatus - OData EnumType 'BoStatus'. Serialised by the Service Layer as the member name
- TargetAbsEntry? Signed32 -
- TargetDocumentType? Signed32 -
- CSTCodeIncoming? string -
- CSTCodeOutgoing? string -
- Doc1LineNum? Signed32 -
Union types
sap.businessone.localization: ElectronicDocGenTypeEnum
ElectronicDocGenTypeEnum
OData EnumType 'ElectronicDocGenTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.localization: ClosingOptionEnum
ClosingOptionEnum
OData EnumType 'ClosingOptionEnum'. Serialised by the Service Layer as the member name
sap.businessone.localization: CancelStatusEnum
CancelStatusEnum
OData EnumType 'CancelStatusEnum'. Serialised by the Service Layer as the member name
sap.businessone.localization: BoAdEpnsDistribMethods
BoAdEpnsDistribMethods
OData EnumType 'BoAdEpnsDistribMethods'. Serialised by the Service Layer as the member name
sap.businessone.localization: BoPayTermDueTypes
BoPayTermDueTypes
OData EnumType 'BoPayTermDueTypes'. Serialised by the Service Layer as the member name
sap.businessone.localization: BoDocSpecialLineType
BoDocSpecialLineType
OData EnumType 'BoDocSpecialLineType'. Serialised by the Service Layer as the member name
sap.businessone.localization: PriceModeDocumentEnum
PriceModeDocumentEnum
OData EnumType 'PriceModeDocumentEnum'. Serialised by the Service Layer as the member name
sap.businessone.localization: BoTaxTypes
BoTaxTypes
OData EnumType 'BoTaxTypes'. Serialised by the Service Layer as the member name
sap.businessone.localization: BoDocSummaryTypes
BoDocSummaryTypes
OData EnumType 'BoDocSummaryTypes'. Serialised by the Service Layer as the member name
sap.businessone.localization: GSTTransactionTypeEnum
GSTTransactionTypeEnum
OData EnumType 'GSTTransactionTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.localization: BoTransactionTypeEnum
BoTransactionTypeEnum
OData EnumType 'BoTransactionTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.localization: EDocStatusEnum
EDocStatusEnum
OData EnumType 'EDocStatusEnum'. Serialised by the Service Layer as the member name
sap.businessone.localization: BoExpenseOperationTypeEnum
BoExpenseOperationTypeEnum
OData EnumType 'BoExpenseOperationTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.localization: BrazilMultiIndexerTypes
BrazilMultiIndexerTypes
OData EnumType 'BrazilMultiIndexerTypes'. Serialised by the Service Layer as the member name
sap.businessone.localization: LinkReferenceTypeEnum
LinkReferenceTypeEnum
OData EnumType 'LinkReferenceTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.localization: RelatedDocumentTypeEnum
RelatedDocumentTypeEnum
OData EnumType 'RelatedDocumentTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.localization: IntrastatConfigurationTriangDealEnum
IntrastatConfigurationTriangDealEnum
OData EnumType 'IntrastatConfigurationTriangDealEnum'. Serialised by the Service Layer as the member name
sap.businessone.localization: BrazilNumericIndexerTypes
BrazilNumericIndexerTypes
OData EnumType 'BrazilNumericIndexerTypes'. Serialised by the Service Layer as the member name
sap.businessone.localization: BoYesNoNoneEnum
BoYesNoNoneEnum
OData EnumType 'BoYesNoNoneEnum'. Serialised by the Service Layer as the member name
sap.businessone.localization: BoInterimDocTypes
BoInterimDocTypes
OData EnumType 'BoInterimDocTypes'. Serialised by the Service Layer as the member name
sap.businessone.localization: ElectronicDocProtocolCodeStrEnum
ElectronicDocProtocolCodeStrEnum
OData EnumType 'ElectronicDocProtocolCodeStrEnum'. Serialised by the Service Layer as the member name
sap.businessone.localization: BrazilStringIndexerTypes
BrazilStringIndexerTypes
OData EnumType 'BrazilStringIndexerTypes'. Serialised by the Service Layer as the member name
sap.businessone.localization: EWBSupplyTypeEnum
EWBSupplyTypeEnum
OData EnumType 'EWBSupplyTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.localization: ElectronicDocumentEntryStatusEnum
ElectronicDocumentEntryStatusEnum
OData EnumType 'ElectronicDocumentEntryStatusEnum'. Serialised by the Service Layer as the member name
sap.businessone.localization: ElectronicDocumentBlobContentTypeEnum
ElectronicDocumentBlobContentTypeEnum
OData EnumType 'ElectronicDocumentBlobContentTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.localization: ImportFieldTypeEnum
ImportFieldTypeEnum
OData EnumType 'ImportFieldTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.localization: ImportOrExportTypeEnum
ImportOrExportTypeEnum
OData EnumType 'ImportOrExportTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.localization: EDocGenerationTypeEnum
EDocGenerationTypeEnum
OData EnumType 'EDocGenerationTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.localization: FolioLetterEnum
FolioLetterEnum
OData EnumType 'FolioLetterEnum'. Serialised by the Service Layer as the member name
sap.businessone.localization: EcmActionLogTypeEnum
EcmActionLogTypeEnum
OData EnumType 'EcmActionLogTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.localization: ElectronicDocProtocolCodeEnum
ElectronicDocProtocolCodeEnum
OData EnumType 'ElectronicDocProtocolCodeEnum'. Serialised by the Service Layer as the member name
sap.businessone.localization: ElecCommStatusEnum
ElecCommStatusEnum
OData EnumType 'ElecCommStatusEnum'. Serialised by the Service Layer as the member name
sap.businessone.localization: EWBTransactionTypeEnum
EWBTransactionTypeEnum
OData EnumType 'EWBTransactionTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.localization: EcmActionTypeEnum
EcmActionTypeEnum
OData EnumType 'EcmActionTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.localization: GeneratedAssetStatusEnum
GeneratedAssetStatusEnum
OData EnumType 'GeneratedAssetStatusEnum'. Serialised by the Service Layer as the member name
sap.businessone.localization: IdentificationCodeTypeEnum
IdentificationCodeTypeEnum
OData EnumType 'IdentificationCodeTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.localization: BoItemTreeTypes
BoItemTreeTypes
OData EnumType 'BoItemTreeTypes'. Serialised by the Service Layer as the member name
sap.businessone.localization: ISDITCTypeEnum
ISDITCTypeEnum
OData EnumType 'ISDITCTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.localization: DocumentObjectTypeEnum
DocumentObjectTypeEnum
OData EnumType 'DocumentObjectTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.localization: IntrastatConfigurationEnum
IntrastatConfigurationEnum
OData EnumType 'IntrastatConfigurationEnum'. Serialised by the Service Layer as the member name
sap.businessone.localization: PrintStatusEnum
PrintStatusEnum
OData EnumType 'PrintStatusEnum'. Serialised by the Service Layer as the member name
sap.businessone.localization: BoCorInvItemStatus
BoCorInvItemStatus
OData EnumType 'BoCorInvItemStatus'. Serialised by the Service Layer as the member name
sap.businessone.localization: DocumentPriceSourceEnum
DocumentPriceSourceEnum
OData EnumType 'DocumentPriceSourceEnum'. Serialised by the Service Layer as the member name
sap.businessone.localization: BoDocumentSubType
BoDocumentSubType
OData EnumType 'BoDocumentSubType'. Serialised by the Service Layer as the member name
sap.businessone.localization: DocumentAuthorizationStatusEnum
DocumentAuthorizationStatusEnum
OData EnumType 'DocumentAuthorizationStatusEnum'. Serialised by the Service Layer as the member name
sap.businessone.localization: BoDocumentLinePickStatus
BoDocumentLinePickStatus
OData EnumType 'BoDocumentLinePickStatus'. Serialised by the Service Layer as the member name
sap.businessone.localization: BoSoStatus
BoSoStatus
OData EnumType 'BoSoStatus'. Serialised by the Service Layer as the member name
sap.businessone.localization: EDocTypeEnum
EDocTypeEnum
OData EnumType 'EDocTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.localization: ReferencedObjectTypeEnum
ReferencedObjectTypeEnum
OData EnumType 'ReferencedObjectTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.localization: BoDocLineType
BoDocLineType
OData EnumType 'BoDocLineType'. Serialised by the Service Layer as the member name
sap.businessone.localization: ISDDocumentTypeEnum
ISDDocumentTypeEnum
OData EnumType 'ISDDocumentTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.localization: LegalDataLineTypeEnum
LegalDataLineTypeEnum
OData EnumType 'LegalDataLineTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.localization: ElectronicDocumentEntryLogTypeEnum
ElectronicDocumentEntryLogTypeEnum
OData EnumType 'ElectronicDocumentEntryLogTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.localization: BoStatus
BoStatus
OData EnumType 'BoStatus'. Serialised by the Service Layer as the member name
sap.businessone.localization: ElectronicDocumentEntryCancellationStatusEnum
ElectronicDocumentEntryCancellationStatusEnum
OData EnumType 'ElectronicDocumentEntryCancellationStatusEnum'. Serialised by the Service Layer as the member name
sap.businessone.localization: BEMPeriodicTypeEnum
BEMPeriodicTypeEnum
OData EnumType 'BEMPeriodicTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.localization: BoAdEpnsTaxTypes
BoAdEpnsTaxTypes
OData EnumType 'BoAdEpnsTaxTypes'. Serialised by the Service Layer as the member name
sap.businessone.localization: BoFatherCardTypes
BoFatherCardTypes
OData EnumType 'BoFatherCardTypes'. Serialised by the Service Layer as the member name
sap.businessone.localization: DownPaymentTypeEnum
DownPaymentTypeEnum
OData EnumType 'DownPaymentTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.localization: BoDocWhsUpdateTypes
BoDocWhsUpdateTypes
OData EnumType 'BoDocWhsUpdateTypes'. Serialised by the Service Layer as the member name
sap.businessone.localization: EcmActionGenerationTypeEnum
EcmActionGenerationTypeEnum
OData EnumType 'EcmActionGenerationTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.localization: BoYesNoEnum
BoYesNoEnum
OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
sap.businessone.localization: LineTypeEnum
LineTypeEnum
OData EnumType 'LineTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.localization: ISDDocStatusEnum
ISDDocStatusEnum
OData EnumType 'ISDDocStatusEnum'. Serialised by the Service Layer as the member name
sap.businessone.localization: DocumentDeliveryTypeEnum
DocumentDeliveryTypeEnum
OData EnumType 'DocumentDeliveryTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.localization: EcmActionPeriodTypeEnum
EcmActionPeriodTypeEnum
OData EnumType 'EcmActionPeriodTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.localization: CommissionTradeTypeEnum
CommissionTradeTypeEnum
OData EnumType 'CommissionTradeTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.localization: ElectronicDocProcessingTargetEnum
ElectronicDocProcessingTargetEnum
OData EnumType 'ElectronicDocProcessingTargetEnum'. Serialised by the Service Layer as the member name
sap.businessone.localization: BoTaxOnInstallmentsTypeEnum
BoTaxOnInstallmentsTypeEnum
OData EnumType 'BoTaxOnInstallmentsTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.localization: BoDocItemType
BoDocItemType
OData EnumType 'BoDocItemType'. Serialised by the Service Layer as the member name
sap.businessone.localization: ElectronicDocumentEntryTypeEnum
ElectronicDocumentEntryTypeEnum
OData EnumType 'ElectronicDocumentEntryTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.localization: BoObjectTypes
BoObjectTypes
OData EnumType 'BoObjectTypes'. Serialised by the Service Layer as the member name
sap.businessone.localization: BoAPARDocumentTypes
BoAPARDocumentTypes
OData EnumType 'BoAPARDocumentTypes'. Serialised by the Service Layer as the member name
sap.businessone.localization: BoBoeStatus
BoBoeStatus
OData EnumType 'BoBoeStatus'. Serialised by the Service Layer as the member name
sap.businessone.localization: ElectronicDocumentAuthorityProcessEnum
ElectronicDocumentAuthorityProcessEnum
OData EnumType 'ElectronicDocumentAuthorityProcessEnum'. Serialised by the Service Layer as the member name
sap.businessone.localization: EcmActionStatusEnum
EcmActionStatusEnum
OData EnumType 'EcmActionStatusEnum'. Serialised by the Service Layer as the member name
sap.businessone.localization: ISDSTATypeEnum
ISDSTATypeEnum
OData EnumType 'ISDSTATypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.localization: ElectronicDocumentEntryPeriodTypeEnum
ElectronicDocumentEntryPeriodTypeEnum
OData EnumType 'ElectronicDocumentEntryPeriodTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.localization: BEMReplicationStatusEnum
BEMReplicationStatusEnum
OData EnumType 'BEMReplicationStatusEnum'. Serialised by the Service Layer as the member name
sap.businessone.localization: BoDocumentTypes
BoDocumentTypes
OData EnumType 'BoDocumentTypes'. Serialised by the Service Layer as the member name
Import
import ballerinax/sap.businessone.localization;Metadata
Released date: 12 days ago
Version: 1.0.0
License: Apache-2.0
Compatibility
Platform: any
Ballerina version: 2201.13.0
GraalVM compatible: Yes
Pull count
Total: 0
Current verison: 0
Weekly downloads
Keywords
Name/SAP Business One Localization
Area/ERP & Business Operations
Vendor/SAP
Cost/Paid
Type/Connector
SAP Business One
Localization
ERP
Contributors