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

The Service Layer endpoint follows the pattern https://<host>:50000/b1s/v1.
Quickstart
To use the sap.businessone.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 - Ship to street field
- ShipToStreetNo? string - Ship to street number field
- ShipToBlock? string - Ship to block field
- ShipToBuilding? string - Ship to building field
- ShipToCity? string - Ship to city field
- ShipToZipCode? string - Ship to zip code field
- ShipToCounty? string - Ship to county field
- ShipToState? string - Ship to state field
- ShipToCountry? string - Ship to country field
- ShipToAddressType? string - Ship to address type field
- BillToStreet? string - Bill to street field
- BillToStreetNo? string - Bill to street number field
- BillToBlock? string - Bill to block field
- BillToBuilding? string - Bill to building field
- BillToCity? string - Bill to city field
- BillToZipCode? string - Bill to zip code field
- BillToCounty? string - Bill to county field
- BillToState? string - Bill to state field
- BillToCountry? string - Bill to country field
- BillToAddressType? string - Bill to address type field
- ShipToGlobalLocationNumber? string - Ship to global location number field
- BillToGlobalLocationNumber? string - Bill to global location number field
- ShipToAddress2? string - Ship to address2 field
- ShipToAddress3? string - Ship to address3 field
- BillToAddress2? string - Bill to address2 field
- BillToAddress3? string - Bill to address3 field
- PlaceOfSupply? string - Place of supply field
- PurchasePlaceOfSupply? string - Purchase place of supply field
- DocEntry? Signed32 - Document entry field
- GoodsIssuePlaceBP? string - Goods issue place business partner field
- GoodsIssuePlaceCNPJ? string - Goods issue place CNPJ field
- GoodsIssuePlaceCPF? string - Goods issue place CPF field
- GoodsIssuePlaceStreet? string - Goods issue place street field
- GoodsIssuePlaceStreetNo? string - Goods issue place street number field
- GoodsIssuePlaceBuilding? string - Goods issue place building field
- GoodsIssuePlaceZip? string - Goods issue place zip field
- GoodsIssuePlaceBlock? string - Goods issue place block field
- GoodsIssuePlaceCity? string - Goods issue place city field
- GoodsIssuePlaceCounty? string - Goods issue place county field
- GoodsIssuePlaceState? string - Goods issue place state field
- GoodsIssuePlaceCountry? string - Goods issue place country field
- GoodsIssuePlacePhone? string - Goods issue place phone field
- GoodsIssuePlaceEMail? string - Goods issue place e mail field
- GoodsIssuePlaceDepartureDate? string - Goods issue place departure date field
- DeliveryPlaceBP? string - Delivery place business partner field
- DeliveryPlaceCNPJ? string - Delivery place CNPJ field
- DeliveryPlaceCPF? string - Delivery place CPF field
- DeliveryPlaceStreet? string - Delivery place street field
- DeliveryPlaceStreetNo? string - Delivery place street number field
- DeliveryPlaceBuilding? string - Delivery place building field
- DeliveryPlaceZip? string - Delivery place zip field
- DeliveryPlaceBlock? string - Delivery place block field
- DeliveryPlaceCity? string - Delivery place city field
- DeliveryPlaceCounty? string - Delivery place county field
- DeliveryPlaceState? string - Delivery place state field
- DeliveryPlaceCountry? string - Delivery place country field
- DeliveryPlacePhone? string - Delivery place phone field
- DeliveryPlaceEMail? string - Delivery place e mail field
- DeliveryPlaceDepartureDate? string - Delivery place departure date field
- ShipToStreetForReturn? string - Ship to street for return field
- ShipToStreetNoForReturn? string - Ship to street number for return field
- ShipToBlockForReturn? string - Ship to block for return field
- ShipToBuildingForReturn? string - Ship to building for return field
- ShipToCityForReturn? string - Ship to city for return field
- ShipToZipCodeForReturn? string - Ship to zip code for return field
- ShipToCountyForReturn? string - Ship to county for return field
- ShipToStateForReturn? string - Ship to state for return field
- ShipToCountryForReturn? string - Ship to country for return field
- ShipToAddressTypeForReturn? string - Ship to address type for return field
- ShipToGlobalLocationNumberForReturn? string - Ship to global location number for return field
- ShipToAddress2ForReturn? string - Ship to address2 for return field
- ShipToAddress3ForReturn? string - Ship to address3 for return field
sap.businessone.localization: AFEFceActionGetByFceID
The AFEFceActionGetByFceID complex type of the SAP Business One Service Layer
Fields
- fCETotalVal? decimal - F CE total val field
- gUID? string - G UID field
- absEntry? Signed32 - Abs entry field
- fCECurrency? string - F CE currency field
- fCEDcApStat? string - F CE dc accounts payable stat field
- srcObjType? string - Src obj type field
- fCEFolio? Signed32 - F CE folio field
- assignedID? string - Assigned ID field
- fCEPOI? string - F CEPOI field
- fCERjRsnCod? string - F CE rj rsn cod field
- fCEDocType? Signed32 - F CE document type field
- fCEID? Signed32 - F CEID field
- docSubType? string - Document sub type field
- srcObjAbs? Signed32 - Src obj abs field
- fCERjRsnDes? string - F CE rj rsn des field
- actStatus? EcmActionStatusEnum - Act status field
sap.businessone.localization: AFEFceActionGetPaymentData
The AFEFceActionGetPaymentData complex type of the SAP Business One Service Layer
Fields
- trsfrSum? decimal - Trsfr sum field
- docRate? decimal - Document rate field
- cashSum? decimal - Cash sum field
- creditSum? decimal - Credit sum field
- checkSum? decimal - Check sum field
- docEntry? Signed32 - Document entry field
sap.businessone.localization: AFEFceAPCheckECM2Entry
The AFEFceAPCheckECM2Entry complex type of the SAP Business One Service Layer
Fields
- gUID? string - G UID field
- absEntry? Signed32 - Abs entry field
- code? string - Code field
sap.businessone.localization: AFEFceAPCheckECM2EntryParams
The AFEFceAPCheckECM2EntryParams complex type of the SAP Business One Service Layer
Fields
- docType? Signed32 - Document type field
- folio? Signed32 - Folio field
- poi? string - Poi field
- assignedID? string - Assigned ID field
sap.businessone.localization: AFEFceAPGetLatestAFIPDate
The AFEFceAPGetLatestAFIPDate complex type of the SAP Business One Service Layer
Fields
- maxFCEDocDate? string - Max FCE document date field
sap.businessone.localization: AFEFceARGetDateFromTo
The AFEFceARGetDateFromTo complex type of the SAP Business One Service Layer
Fields
- dateFrom? string - Date from field
- dateTo? string - Date to field
sap.businessone.localization: AFEFceARGetDocuments
The AFEFceARGetDocuments complex type of the SAP Business One Service Layer
Fields
- eDocType? string - E document type field
- letter? string - Letter field
- folNumFrom? Signed32 - Fol number from field
- objType? string - Obj type field
- gUID? string - G UID field
- docEntry? Signed32 - Document entry field
- docSubType? string - Document sub type field
- absEntry? Signed32 - Abs entry field
- pTICode? string - P TI code field
sap.businessone.localization: AFEFceID
The AFEFceID complex type of the SAP Business One Service Layer
Fields
- fceID? Signed32 - Fce ID field
sap.businessone.localization: AFERenumberFolioParams
The AFERenumberFolioParams complex type of the SAP Business One Service Layer
Fields
- newFolioNumber? Signed32 - New folio number field
- absEntry? Signed32 - Abs entry field
sap.businessone.localization: AFEUpdFceAPARGetDocuments
The AFEUpdFceAPARGetDocuments complex type of the SAP Business One Service Layer
Fields
- actType? Signed32 - Act type field
- updateTS? Signed32 - Update TS field
- gUID? string - G UID field
- isAP? string - Is accounts payable field
- absEntry? Signed32 - Abs entry field
- fCEDcApStat? string - F CE dc accounts payable stat field
- fCEApprStat? string - F CE appr stat field
- fCEFolio? Signed32 - F CE folio field
- updateDate? string - Update date field
- fCEPOI? string - F CEPOI field
- fCEDocType? Signed32 - F CE document type field
- fCEID? Signed32 - F CEID field
- actStatus? string - Act status field
sap.businessone.localization: AutoDistributionRuleLine
The AutoDistributionRuleLine complex type of the SAP Business One Service Layer
Fields
- taxAccount? string - Tax account field
- locationCode? Signed32 - Location code field
- allocatePercent? decimal - Allocate percent field
sap.businessone.localization: BatchNumber
The BatchNumber complex type of the SAP Business One Service Layer
Fields
- BatchNumber? string - Batch number field
- ManufacturerSerialNumber? string - Manufacturer serial number field
- InternalSerialNumber? string - Internal serial number field
- ExpiryDate? string - Expiry date field
- ManufacturingDate? string - Manufacturing date field
- AddmisionDate? string - Addmision date field
- Location? string - Location field
- Notes? string - Notes field
- Quantity? decimal - Quantity field
- BaseLineNumber? Signed32 - Base line number field
- TrackingNote? Signed32 - Tracking note field
- TrackingNoteLine? Signed32 - Tracking note line field
- ItemCode? string - Item code field
- SystemSerialNumber? Signed32 - System serial number field
sap.businessone.localization: BEMReplicationPeriod
The BEMReplicationPeriod entity of the SAP Business One Service Layer
Fields
- startDate? string - Start date field
- status? BEMReplicationStatusEnum - Status field
- updateDate? string - Update date field
- scopeName? string - Scope name field
- scopeKey? string - Scope key field
- lastRepId? string - Last rep ID field
- repMessage? string - Rep message field
- absEntry? Signed32 - Abs entry field
- periodic? BEMPeriodicTypeEnum - Periodic field
sap.businessone.localization: BEMReplicationPeriodParams
The BEMReplicationPeriodParams complex type of the SAP Business One Service Layer
Fields
- absEntry? Signed32 - Abs entry field
sap.businessone.localization: BEMReplicationPeriodsCollectionResponse
A paged collection of BEMReplicationPeriods entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? BEMReplicationPeriod[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.localization: BrazilBeverageIndexer
The BrazilBeverageIndexer entity of the SAP Business One Service Layer
Fields
- brazilStringIndexer? BrazilStringIndexer - Brazil string indexer field
- beverageID? Signed32 - Beverage ID field
- beverageTableCode? string - Beverage table code field
- beverageGroupCode? string - Beverage group code field
- beverageCommercialBrandCode? Signed32 - Beverage commercial brand code field
- brazilNumericIndexer? BrazilNumericIndexer - Brazil numeric indexer field
sap.businessone.localization: BrazilBeverageIndexerParams
The BrazilBeverageIndexerParams complex type of the SAP Business One Service Layer
Fields
- beverageID? Signed32 - Beverage ID field
sap.businessone.localization: BrazilBeverageIndexersCollectionResponse
A paged collection of BrazilBeverageIndexers entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? BrazilBeverageIndexer[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.localization: BrazilFuelIndexer
The BrazilFuelIndexer entity of the SAP Business One Service Layer
Fields
- fuelID? Signed32 - Fuel ID field
- description? string - Description field
- fuelCode? string - Fuel code field
- fuelGroupCode? Signed32 - Fuel group code field
sap.businessone.localization: BrazilFuelIndexerParams
The BrazilFuelIndexerParams complex type of the SAP Business One Service Layer
Fields
- fuelID? Signed32 - Fuel ID field
- description? string - Description field
- fuelCode? string - Fuel code field
- fuelGroupCode? Signed32 - Fuel group code field
sap.businessone.localization: BrazilFuelIndexersCollectionResponse
A paged collection of BrazilFuelIndexers entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? BrazilFuelIndexer[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.localization: BrazilMultiIndexer
The BrazilMultiIndexer entity of the SAP Business One Service Layer
Fields
- secondRefIndexerCode? string - Second reference indexer code field
- indexerType? BrazilMultiIndexerTypes - Indexer type field
- firstRefIndexerCode? string - First reference indexer code field
- description? string - Description field
- thirdRefIndexerCode? string - Third reference indexer code field
- iD? Signed32 - I d field
- code? string - Code field
sap.businessone.localization: BrazilMultiIndexerParams
The BrazilMultiIndexerParams complex type of the SAP Business One Service Layer
Fields
- iD? Signed32 - I d field
sap.businessone.localization: BrazilMultiIndexersCollectionResponse
A paged collection of BrazilMultiIndexers entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? BrazilMultiIndexer[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.localization: BrazilNumericIndexer
The BrazilNumericIndexer entity of the SAP Business One Service Layer
Fields
- indexerType? BrazilNumericIndexerTypes - Indexer type field
- description? string - Description field
- iD? Signed32 - I d field
- brazilBeverageIndexers? BrazilBeverageIndexer[] - Brazil beverage indexers field
- code? Signed32 - Code field
sap.businessone.localization: BrazilNumericIndexerParams
The BrazilNumericIndexerParams complex type of the SAP Business One Service Layer
Fields
- iD? Signed32 - I d field
sap.businessone.localization: BrazilNumericIndexersCollectionResponse
A paged collection of BrazilNumericIndexers entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? BrazilNumericIndexer[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.localization: BrazilStringIndexer
The BrazilStringIndexer entity of the SAP Business One Service Layer
Fields
- indexerType? BrazilStringIndexerTypes - Indexer type field
- description? string - Description field
- iD? Signed32 - I d field
- brazilBeverageIndexers? BrazilBeverageIndexer[] - Brazil beverage indexers field
- code? string - Code field
sap.businessone.localization: BrazilStringIndexerParams
The BrazilStringIndexerParams complex type of the SAP Business One Service Layer
Fields
- iD? Signed32 - I d field
sap.businessone.localization: BrazilStringIndexersCollectionResponse
A paged collection of BrazilStringIndexers entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? BrazilStringIndexer[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.localization: CCDNumber
The CCDNumber complex type of the SAP Business One Service Layer
Fields
- TrackingNote? Signed32 - Tracking note field
- TrackingNoteLine? Signed32 - Tracking note line field
- CCDNumber? string - CCD number field
- Quantity? decimal - Quantity field
- CountryOfOrigin? string - Country of origin field
- SubLineNumber? Signed32 - Sub line number field
- DocumentEntry? Signed32 - Document entry field
- BaseLineNumber? Signed32 - Base line number field
- ChildNumber? Signed32 - Child number field
sap.businessone.localization: CertificateSeries
The CertificateSeries entity of the SAP Business One Service Layer
Fields
- absEntry? Signed32 - Abs entry field
- code? string - Code field
- section? Signed32 - Section field
- defaultSeries? Signed32 - Default series field
- location? Signed32 - Location field
- seriesLines? SeriesLine[] - Series lines field
sap.businessone.localization: CertificateSeriesCollectionResponse
A paged collection of CertificateSeries entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? CertificateSeries[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.localization: CertificateSeriesParams
The CertificateSeriesParams complex type of the SAP Business One Service Layer
Fields
- absEntry? Signed32 - Abs entry field
- code? string - Code field
- section? Signed32 - Section field
- location? Signed32 - Location field
sap.businessone.localization: CESTCodeData
The CESTCodeData entity of the SAP Business One Service Layer
Fields
- description? string - Description field
- absEntry? Signed32 - Abs entry field
- code? string - Code field
sap.businessone.localization: CESTCodesCollectionResponse
A paged collection of CESTCodes entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? CESTCodeData[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.localization: CIGCode
The CIGCode entity of the SAP Business One Service Layer
Fields
- correctionInvoice? Document[] - Correction invoice field
- orders? Document[] - Orders field
- purchaseRequests? Document[] - Purchase requests field
- inventoryGenExits? Document[] - Inventory gen exits field
- purchaseQuotations? Document[] - Purchase quotations field
- purchaseDeliveryNotes? Document[] - Purchase delivery notes field
- invoices? Document[] - Invoices field
- purchaseDownPayments? Document[] - Purchase down payments field
- absEntry? Signed32 - Abs entry field
- creditNotes? Document[] - Credit notes field
- purchaseInvoices? Document[] - Purchase invoices field
- 'returns? Document[] - Returns field
- correctionPurchaseInvoice? Document[] - Correction purchase invoice field
- quotations? Document[] - Quotations field
- purchaseCreditNotes? Document[] - Purchase credit notes field
- goodsReturnRequest? Document[] - Goods return request field
- returnRequest? Document[] - Return request field
- inventoryGenEntries? Document[] - Inventory gen entries field
- purchaseReturns? Document[] - Purchase returns field
- purchaseOrders? Document[] - Purchase orders field
- downPayments? Document[] - Down payments field
- correctionInvoiceReversal? Document[] - Correction invoice reversal field
- code? string - Code field
- deliveryNotes? Document[] - Delivery notes field
- selfInvoices? Document[] - Self invoices field
- drafts? Document[] - Drafts field
- selfCreditMemos? Document[] - Self credit memos field
- correctionPurchaseInvoiceReversal? Document[] - Correction purchase invoice reversal field
sap.businessone.localization: CIGCodeParams
The CIGCodeParams complex type of the SAP Business One Service Layer
Fields
- absEntry? Signed32 - Abs entry field
sap.businessone.localization: CIGCodesCollectionResponse
A paged collection of CIGCodes entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? CIGCode[] - Value field
- odataNextLink? string - Odata next link field
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[] - Correction invoice field
- orders? Document[] - Orders field
- purchaseRequests? Document[] - Purchase requests field
- inventoryGenExits? Document[] - Inventory gen exits field
- purchaseQuotations? Document[] - Purchase quotations field
- purchaseDeliveryNotes? Document[] - Purchase delivery notes field
- invoices? Document[] - Invoices field
- purchaseDownPayments? Document[] - Purchase down payments field
- absEntry? Signed32 - Abs entry field
- creditNotes? Document[] - Credit notes field
- purchaseInvoices? Document[] - Purchase invoices field
- 'returns? Document[] - Returns field
- correctionPurchaseInvoice? Document[] - Correction purchase invoice field
- quotations? Document[] - Quotations field
- purchaseCreditNotes? Document[] - Purchase credit notes field
- goodsReturnRequest? Document[] - Goods return request field
- returnRequest? Document[] - Return request field
- inventoryGenEntries? Document[] - Inventory gen entries field
- purchaseReturns? Document[] - Purchase returns field
- purchaseOrders? Document[] - Purchase orders field
- downPayments? Document[] - Down payments field
- correctionInvoiceReversal? Document[] - Correction invoice reversal field
- code? string - Code field
- deliveryNotes? Document[] - Delivery notes field
- selfInvoices? Document[] - Self invoices field
- drafts? Document[] - Drafts field
- selfCreditMemos? Document[] - Self credit memos field
- correctionPurchaseInvoiceReversal? Document[] - Correction purchase invoice reversal field
sap.businessone.localization: CUPCodeParams
The CUPCodeParams complex type of the SAP Business One Service Layer
Fields
- absEntry? Signed32 - Abs entry field
sap.businessone.localization: CUPCodesCollectionResponse
A paged collection of CUPCodes entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? CUPCode[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.localization: CustomsDeclaration
The CustomsDeclaration entity of the SAP Business One Service Layer
Fields
- CCDNum? string - CCD number field
- Date? string - Date field
- CustomsBroker? string - Customs broker field
- DocNum? string - Document number field
- DocDate? string - Document date field
- SupplyNum? string - Supply number field
- SupplyDate? string - Supply date field
- CustomsTerminal? string - Customs terminal field
- PaymentKey? string - Payment key field
sap.businessone.localization: CustomsDeclarationCollectionResponse
A paged collection of CustomsDeclaration entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? CustomsDeclaration[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.localization: DatevRun
The DatevRun entity of the SAP Business One Service Layer
Fields
- RunId? Signed32 - Run ID field
- Status? string - Status field
- Description? string - Description field
- ExportPath? string - Export path field
- Updater? string - Updater field
- GLAccounts? string - General ledger accounts field
- Suppliers? string - Suppliers field
- Customers? string - Customers field
- Journals? string - Journals field
- AllJETypes? string - All JE types field
- Manual? string - Manual field
- Purchase? string - Purchase field
- Sales? string - Sales field
- DateType? string - Date type field
- StartDate? string - Start date field
- EndDate? string - End date field
- StartFiscalYear? string - Start fiscal year field
- UserSign? Signed32 - User sign field
- CreateDate? string - Create date field
- CreateTime? string - Create time field
- UpdateDate? string - Update date field
- UserSign2? Signed32 - User sign2 field
sap.businessone.localization: DatevRunsCollectionResponse
A paged collection of DatevRuns entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? DatevRun[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.localization: DefaultElementsforCR
The DefaultElementsforCR entity of the SAP Business One Service Layer
Fields
- code? Signed32 - Code field
- name? string - Name field
sap.businessone.localization: DefaultElementsforCRCollectionResponse
A paged collection of DefaultElementsforCR entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? DefaultElementsforCR[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.localization: DistributableLine
The DistributableLine complex type of the SAP Business One Service Layer
Fields
- DocumentEntry? Signed32 - Document entry field
- SourceType? ISDDocumentTypeEnum - OData EnumType 'ISDDocumentTypeEnum'. Serialised by the Service Layer as the member name
- SourceLocationCode? Signed32 - Source location code field
- SourceLocationName? string - Source location name field
- SourceGSTTaxType? ISDSTATypeEnum - OData EnumType 'ISDSTATypeEnum'. Serialised by the Service Layer as the member name
- SourceTaxAccount? string - Source tax account field
- SourceITCType? ISDITCTypeEnum - OData EnumType 'ISDITCTypeEnum'. Serialised by the Service Layer as the member name
- AvailableAmount? decimal - Available amount field
- DistributeAmount? decimal - Distribute amount field
sap.businessone.localization: DistributedLine
The DistributedLine complex type of the SAP Business One Service Layer
Fields
- DocumentEntry? Signed32 - Document entry field
- TargetLocationCode? Signed32 - Target location code field
- TargetLocationName? string - Target location name field
- TargetGSTTaxType? ISDSTATypeEnum - OData EnumType 'ISDSTATypeEnum'. Serialised by the Service Layer as the member name
- TargetTaxAccount? string - Target tax account field
- AllocatedAmount? decimal - Allocated amount field
sap.businessone.localization: DNFCodeSetup
The DNFCodeSetup entity of the SAP Business One Service Layer
Fields
- nCMCode? Signed32 - N CM code field
- uoM? string - Uo m field
- dNFCode? string - D NF code field
- factor? decimal - Factor field
- absEntry? Signed32 - Abs entry field
- nCMCodeSetup? NCMCodeSetup - N CM code setup field
sap.businessone.localization: DNFCodeSetupCollectionResponse
A paged collection of DNFCodeSetup entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? DNFCodeSetup[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.localization: DNFCodeSetupParams
The DNFCodeSetupParams complex type of the SAP Business One Service Layer
Fields
- nCMCode? Signed32 - N CM code field
- dNFCode? string - D NF code field
- absEntry? Signed32 - Abs entry field
sap.businessone.localization: DocExpenseTaxJurisdiction
The DocExpenseTaxJurisdiction complex type of the SAP Business One Service Layer
Fields
- JurisdictionCode? string - Jurisdiction code field
- JurisdictionType? Signed32 - Jurisdiction type field
- TaxAmount? decimal - Tax amount field
- TaxAmountSC? decimal - Tax amount system currency field
- TaxAmountFC? decimal - Tax amount foreign currency field
- TaxRate? decimal - Tax rate field
- DocEntry? Signed32 - Document entry field
- LineNumber? Signed32 - Line number field
- RowSequence? Signed32 - Row sequence field
- ExternalCalcTaxRate? decimal - External calc tax rate field
- ExternalCalcTaxAmount? decimal - External calc tax amount field
- ExternalCalcTaxAmountFC? decimal - External calc tax amount foreign currency field
- ExternalCalcTaxAmountSC? decimal - External calc tax amount system currency field
sap.businessone.localization: DocFreightEBooksDetail
The DocFreightEBooksDetail complex type of the SAP Business One Service Layer
Fields
- IncomeClassificationType? Signed32 - Income classification type field
- IncomeClassificationCategory? Signed32 - Income classification category field
- ExpensesClassificationType? Signed32 - Expenses classification type field
- ExpensesClassificationCategory? Signed32 - Expenses classification category field
- NetValueLC? decimal - Net value local currency field
- NetValueFC? decimal - Net value foreign currency field
- NetValueSC? decimal - Net value system currency field
- VatCategory? Signed32 - VAT category field
- WithheldPercentCategory? Signed32 - Withheld percent category field
- WithheldAmountLC? decimal - Withheld amount local currency field
- WithheldAmountFC? decimal - Withheld amount foreign currency field
- WithheldAmountSC? decimal - Withheld amount system currency field
- VatClassificationType? Signed32 - VAT classification type field
- VatClassificationCategory? Signed32 - VAT classification category field
- VATExemptionCause? Signed32 - VAT exemption cause field
sap.businessone.localization: DocLinePickList
The DocLinePickList complex type of the SAP Business One Service Layer
Fields
- pickListLineNum? Signed32 - Pick list line number field
- pickListBatchAndBinLineNum? Signed32 - Pick list batch and bin line number field
- pickListEntry? Signed32 - Pick list entry field
sap.businessone.localization: Document
The Document entity of the SAP Business One Service Layer
Fields
- DocEntry? Signed32 - Document entry field
- DocNum? Signed32 - Document number field
- 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 - Document date field
- DocDueDate? string - Document due date field
- CardCode? string - Card code field
- CardName? string - Card name field
- Address? string - Address field
- NumAtCard? string - Number at card field
- DocTotal? decimal - Document total field
- AttachmentEntry? Signed32 - Attachment entry field
- DocCurrency? string - Document currency field
- DocRate? decimal - Document rate field
- Reference1? string - Reference1 field
- Reference2? string - Reference2 field
- Comments? string - Comments field
- JournalMemo? string - Journal memo field
- PaymentGroupCode? Signed32 - Payment group code field
- DocTime? string - Document time field
- SalesPersonCode? Signed32 - Sales person code field
- TransportationCode? Signed32 - Transportation code field
- Confirmed? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ImportFileNum? Signed32 - Import file number field
- SummeryType? BoDocSummaryTypes - OData EnumType 'BoDocSummaryTypes'. Serialised by the Service Layer as the member name
- ContactPersonCode? Signed32 - Contact person code field
- ShowSCN? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Series? Signed32 - Series field
- TaxDate? string - Tax date field
- 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 - Ship to code field
- Indicator? string - Indicator field
- FederalTaxID? string - Federal tax ID field
- DiscountPercent? decimal - Discount percent field
- PaymentReference? string - Payment reference field
- CreationDate? string - Creation date field
- UpdateDate? string - Update date field
- FinancialPeriod? Signed32 - Financial period field
- UserSign? Signed32 - User sign field
- TransNum? Signed32 - Trans number field
- VatSum? decimal - VAT sum field
- VatSumSys? decimal - VAT sum sys field
- VatSumFc? decimal - VAT sum foreign currency field
- NetProcedure? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- DocTotalFc? decimal - Document total foreign currency field
- DocTotalSys? decimal - Document total sys field
- Form1099? Signed32 - Form1099 field
- Box1099? string - Box1099 field
- RevisionPo? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- RequriedDate? string - Requried date field
- CancelDate? string - Cancel date field
- 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 - Segment field
- 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 - Payment method field
- PaymentBlock? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- PaymentBlockEntry? Signed32 - Payment block entry field
- CentralBankIndicator? string - Central bank indicator field
- 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 - Project field
- ExemptionValidityDateFrom? string - Exemption validity date from field
- ExemptionValidityDateTo? string - Exemption validity date to field
- 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 - External corrected document number field
- InternalCorrectedDocNum? Signed32 - Internal corrected document number field
- NextCorrectingDocument? Signed32 - Next correcting document field
- DeferredTax? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- TaxExemptionLetterNum? string - Tax exemption letter number field
- WTApplied? decimal - Withholding tax applied field
- WTAppliedFC? decimal - Withholding tax applied foreign currency field
- BillOfExchangeReserved? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- AgentCode? string - Agent code field
- WTAppliedSC? decimal - Withholding tax applied system currency field
- TotalEqualizationTax? decimal - Total equalization tax field
- TotalEqualizationTaxFC? decimal - Total equalization tax foreign currency field
- TotalEqualizationTaxSC? decimal - Total equalization tax system currency field
- NumberOfInstallments? Signed32 - Number of installments field
- 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 - Withholding tax non subject amount field
- WTNonSubjectAmountSC? decimal - Withholding tax non subject amount system currency field
- WTNonSubjectAmountFC? decimal - Withholding tax non subject amount foreign currency field
- WTExemptedAmount? decimal - Withholding tax exempted amount field
- WTExemptedAmountSC? decimal - Withholding tax exempted amount system currency field
- WTExemptedAmountFC? decimal - Withholding tax exempted amount foreign currency field
- BaseAmount? decimal - Base amount field
- BaseAmountSC? decimal - Base amount system currency field
- BaseAmountFC? decimal - Base amount foreign currency field
- WTAmount? decimal - Withholding tax amount field
- WTAmountSC? decimal - Withholding tax amount system currency field
- WTAmountFC? decimal - Withholding tax amount foreign currency field
- VatDate? string - VAT date field
- DocumentsOwner? Signed32 - Documents owner field
- FolioPrefixString? string - Folio prefix string field
- FolioNumber? Signed32 - Folio number field
- DocumentSubType? BoDocumentSubType - OData EnumType 'BoDocumentSubType'. Serialised by the Service Layer as the member name
- BPChannelCode? string - Business partner channel code field
- BPChannelContact? Signed32 - Business partner channel contact field
- Address2? string - Address2 field
- DocumentStatus? BoStatus - OData EnumType 'BoStatus'. Serialised by the Service Layer as the member name
- PeriodIndicator? string - Period indicator field
- PayToCode? string - Pay to code field
- ManualNumber? string - Manual number field
- 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 - Pay to bank country field
- PayToBankCode? string - Pay to bank code field
- PayToBankAccountNo? string - Pay to bank account number field
- PayToBankBranch? string - Pay to bank branch field
- BPL_IDAssignedToInvoice? Signed32 - BPL ID assigned to invoice field
- DownPayment? decimal - Down payment field
- ReserveInvoice? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- LanguageCode? Signed32 - Language code field
- TrackingNumber? string - Tracking number field
- PickRemark? string - Pick remark field
- ClosingDate? string - Closing date field
- SequenceCode? Signed32 - Sequence code field
- SequenceSerial? Signed32 - Sequence serial field
- SeriesString? string - Series string field
- SubSeriesString? string - Sub series string field
- SequenceModel? string - Sequence model field
- UseCorrectionVATGroup? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- TotalDiscount? decimal - Total discount field
- DownPaymentAmount? decimal - Down payment amount field
- DownPaymentPercentage? decimal - Down payment percentage field
- DownPaymentType? DownPaymentTypeEnum - OData EnumType 'DownPaymentTypeEnum'. Serialised by the Service Layer as the member name
- DownPaymentAmountSC? decimal - Down payment amount system currency field
- DownPaymentAmountFC? decimal - Down payment amount foreign currency field
- VatPercent? decimal - VAT percent field
- ServiceGrossProfitPercent? decimal - Service gross profit percent field
- OpeningRemarks? string - Opening remarks field
- ClosingRemarks? string - Closing remarks field
- RoundingDiffAmount? decimal - Rounding diff amount field
- RoundingDiffAmountFC? decimal - Rounding diff amount foreign currency field
- RoundingDiffAmountSC? decimal - Rounding diff amount system currency field
- Cancelled? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- SignatureInputMessage? string - Signature input message field
- SignatureDigest? string - Signature digest field
- CertificationNumber? string - Certification number field
- PrivateKeyVersion? Signed32 - Private key version field
- ControlAccount? string - Control account field
- 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 - GTS checker field
- GTSPayee? Signed32 - GTS payee field
- ExtraMonth? Signed32 - Extra month field
- ExtraDays? Signed32 - Extra days field
- CashDiscountDateOffset? Signed32 - Cash discount date offset field
- 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 - E tax web site field
- ETaxNumber? string - E tax number field
- NTSApprovedNumber? string - NTS approved number field
- EDocGenerationType? EDocGenerationTypeEnum - OData EnumType 'EDocGenerationTypeEnum'. Serialised by the Service Layer as the member name
- EDocSeries? Signed32 - E document series field
- EDocNum? string - E document number field
- EDocExportFormat? Signed32 - E document export format field
- EDocStatus? EDocStatusEnum - OData EnumType 'EDocStatusEnum'. Serialised by the Service Layer as the member name
- EDocErrorCode? string - E document error code field
- EDocErrorMessage? string - E document error message field
- DownPaymentStatus? BoSoStatus - OData EnumType 'BoSoStatus'. Serialised by the Service Layer as the member name
- GroupSeries? Signed32 - Group series field
- GroupNumber? Signed32 - Group number field
- 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 - POS equipment number field
- POSManufacturerSerialNumber? string - POS manufacturer serial number field
- POSCashierNumber? Signed32 - POS cashier number field
- 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 - Specified closing date field
- 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 - Total discount foreign currency field
- TotalDiscountSC? decimal - Total discount system currency field
- RelevantToGTS? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- BPLName? string - BPL name field
- VATRegNum? string - VAT reg number field
- AnnualInvoiceDeclarationReference? Signed32 - Annual invoice declaration reference field
- Supplier? string - Supplier field
- Releaser? Signed32 - Releaser field
- Receiver? Signed32 - Receiver field
- BlanketAgreementNumber? Signed32 - Blanket agreement number field
- 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 - Draft key field
- AssetValueDate? string - Asset value date field
- Requester? string - Requester field
- RequesterName? string - Requester name field
- RequesterBranch? Signed32 - Requester branch field
- RequesterDepartment? Signed32 - Requester department field
- RequesterEmail? string - Requester email field
- SendNotification? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ReqType? Signed32 - Req type field
- ReqCode? string - Req code field
- 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 - Authorization code field
- StartDeliveryDate? string - Start delivery date field
- StartDeliveryTime? string - Start delivery time field
- EndDeliveryDate? string - End delivery date field
- EndDeliveryTime? string - End delivery time field
- VehiclePlate? string - Vehicle plate field
- ATDocumentType? string - AT document type field
- ElecCommStatus? ElecCommStatusEnum - OData EnumType 'ElecCommStatusEnum'. Serialised by the Service Layer as the member name
- ElecCommMessage? string - Elec comm message field
- 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 - Fiscal document number field
- POSDailySummaryNo? Signed32 - POS daily summary number field
- POSReceiptNo? Signed32 - POS receipt number field
- PointOfIssueCode? string - Point of issue code field
- Letter? FolioLetterEnum - OData EnumType 'FolioLetterEnum'. Serialised by the Service Layer as the member name
- FolioNumberFrom? Signed32 - Folio number from field
- FolioNumberTo? Signed32 - Folio number to field
- InterimType? BoInterimDocTypes - OData EnumType 'BoInterimDocTypes'. Serialised by the Service Layer as the member name
- RelatedType? Signed32 - Related type field
- RelatedEntry? Signed32 - Related entry field
- SAPPassport? string - SAP passport field
- DocumentTaxID? string - Document tax ID field
- DateOfReportingControlStatementVAT? string - Date of reporting control statement VAT field
- ReportingSectionControlStatementVAT? string - Reporting section control statement VAT field
- ExcludeFromTaxReportControlStatementVAT? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- POS_CashRegister? Signed32 - POS cash register field
- UpdateTime? string - Update time field
- CreateQRCodeFrom? string - Create QR code from field
- PriceMode? PriceModeDocumentEnum - OData EnumType 'PriceModeDocumentEnum'. Serialised by the Service Layer as the member name
- PriceListNum? Signed32 - Price list number field
- DownPaymentTrasactionID? string - Down payment trasaction ID field
- OriginalRefNo? string - Original reference number field
- OriginalRefDate? string - Original reference date field
- 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 - Original credit or debit number field
- OriginalCreditOrDebitDate? string - Original credit or debit date field
- ECommerceOperator? string - E commerce operator field
- ECommerceGSTIN? string - E commerce GSTIN field
- TaxInvoiceNo? string - Tax invoice number field
- TaxInvoiceDate? string - Tax invoice date field
- ShipFrom? string - Ship from field
- 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 - Issuing reason field
- Cig? Signed32 - Cig field
- Cup? Signed32 - Cup field
- 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 - Paid to date field
- PaidToDateFC? decimal - Paid to date foreign currency field
- PaidToDateSys? decimal - Paid to date sys field
- FatherCard? string - Father card field
- FatherType? BoFatherCardTypes - OData EnumType 'BoFatherCardTypes'. Serialised by the Service Layer as the member name
- ShipState? string - Ship state field
- ShipPlace? string - Ship place field
- CustOffice? string - Customer office field
- FCI? string - FCI field
- AddLegIn? string - Add leg in field
- LegTextF? Signed32 - Leg text f field
- DANFELgTxt? string - DANFE lg txt field
- DataVersion? Signed32 - Data version field
- LastPageFolioNumber? Signed32 - Last page folio number field
- 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 - Ship to code for return field
- AddressForReturn? string - Address for return field
- Document_ApprovalRequests? DocumentApprovalRequest[] - Document approval requests field
- DocumentLines? DocumentLine[] - Document lines field
- 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[] - Electronic protocols field
- DocumentAdditionalExpenses? DocumentAdditionalExpense[] - Document additional expenses field
- DocumentDistributedExpenses? DocumentDistributedExpense[] - Document distributed expenses field
- WithholdingTaxDataWTXCollection? WithholdingTaxDataWTX[] - Withholding tax data WTX collection field
- WithholdingTaxDataCollection? WithholdingTaxData[] - Withholding tax data collection field
- DocumentPackages? DocumentPackage[] - Document packages field
- DocumentSpecialLines? DocumentSpecialLine[] - Document special lines field
- DocumentInstallments? DocumentInstallment[] - Document installments field
- DownPaymentsToDraw? DownPaymentToDraw[] - Down payments to draw field
- 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[] - Document references field
- DocumentAdditionalIntrastatExpenses? DocumentAdditionalIntrastatExpense[] - Document additional intrastat expenses field
- DutyStatus? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- BaseType? Signed32 - Base type field
- BaseEntry? Signed32 - Base entry field
- IndFinal? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- AllocationNumberIL? string - Allocation number IL field
- DigitalPayToAddress? string - Digital pay to address field
- DigitalPayments? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- SirenNumber? string - Siren number field
- SiretNumber? string - Siret number field
- RoutingCode? string - Routing code field
- Suffix? string - Suffix field
- SOIWizardId? Signed32 - SOI wizard ID field
- 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 - Expense code field
- LineTotal? decimal - Line total field
- LineTotalFC? decimal - Line total foreign currency field
- LineTotalSys? decimal - Line total sys field
- PaidToDate? decimal - Paid to date field
- PaidToDateFC? decimal - Paid to date foreign currency field
- PaidToDateSys? decimal - Paid to date sys field
- Remarks? string - Remarks field
- 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 - VAT group field
- TaxPercent? decimal - Tax percent field
- TaxSum? decimal - Tax sum field
- TaxSumFC? decimal - Tax sum foreign currency field
- TaxSumSys? decimal - Tax sum sys field
- DeductibleTaxSum? decimal - Deductible tax sum field
- DeductibleTaxSumFC? decimal - Deductible tax sum foreign currency field
- DeductibleTaxSumSys? decimal - Deductible tax sum sys field
- AquisitionTax? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- TaxCode? string - Tax code field
- TaxType? BoAdEpnsTaxTypes - OData EnumType 'BoAdEpnsTaxTypes'. Serialised by the Service Layer as the member name
- TaxPaid? decimal - Tax paid field
- TaxPaidFC? decimal - Tax paid foreign currency field
- TaxPaidSys? decimal - Tax paid sys field
- EqualizationTaxPercent? decimal - Equalization tax percent field
- EqualizationTaxSum? decimal - Equalization tax sum field
- EqualizationTaxFC? decimal - Equalization tax foreign currency field
- EqualizationTaxSys? decimal - Equalization tax sys field
- TaxTotalSum? decimal - Tax total sum field
- TaxTotalSumFC? decimal - Tax total sum foreign currency field
- TaxTotalSumSys? decimal - Tax total sum sys field
- BaseDocEntry? Signed32 - Base document entry field
- BaseDocLine? Signed32 - Base document line field
- BaseDocType? Signed32 - Base document type field
- BaseDocumentReference? Signed32 - Base document reference field
- LineNum? Signed32 - Line number field
- 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 - Target abs entry field
- TargetType? Signed32 - Target type field
- WTLiable? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- DistributionRule? string - Distribution rule field
- Project? string - Project field
- DistributionRule2? string - Distribution rule2 field
- DistributionRule3? string - Distribution rule3 field
- DistributionRule4? string - Distribution rule4 field
- DistributionRule5? string - Distribution rule5 field
- LineGross? decimal - Line gross field
- LineGrossSys? decimal - Line gross sys field
- LineGrossFC? decimal - Line gross foreign currency field
- ExternalCalcTaxRate? decimal - External calc tax rate field
- ExternalCalcTaxAmount? decimal - External calc tax amount field
- ExternalCalcTaxAmountFC? decimal - External calc tax amount foreign currency field
- ExternalCalcTaxAmountSC? decimal - External calc tax amount system currency field
- 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[] - Document expense tax jurisdictions field
- DocFreightEBooksDetails? DocFreightEBooksDetail[] - Document freight e books details field
sap.businessone.localization: DocumentAdditionalIntrastatExpense
The DocumentAdditionalIntrastatExpense complex type of the SAP Business One Service Layer
Fields
- ExpenseCode? Signed32 - Expense code field
- LineTotal? decimal - Line total field
- LineTotalFC? decimal - Line total foreign currency field
- LineTotalSys? decimal - Line total sys field
- PaidToDate? decimal - Paid to date field
- PaidToDateFC? decimal - Paid to date foreign currency field
- PaidToDateSys? decimal - Paid to date sys field
- DistributionMethod? BoAdEpnsDistribMethods - OData EnumType 'BoAdEpnsDistribMethods'. Serialised by the Service Layer as the member name
- BaseDocEntry? Signed32 - Base document entry field
- BaseDocLine? Signed32 - Base document line field
- BaseDocType? Signed32 - Base document type field
- BaseDocumentReference? Signed32 - Base document reference field
- LineNum? Signed32 - Line number field
sap.businessone.localization: DocumentApprovalRequest
The Document_ApprovalRequest complex type of the SAP Business One Service Layer
Fields
- activeForUpdate? BoYesNoEnum - Active for update field
- approvalTemplatesID? Signed32 - Approval templates ID field
- remarks? string - Remarks field
- approvalTemplatesName? string - Approval templates name field
sap.businessone.localization: DocumentCloseParams
The DocumentCloseParams complex type of the SAP Business One Service Layer
Fields
- docEntry? Signed32 - Document entry field
- specifiedClosingDate? string - Specified closing date field
- closingOption? ClosingOptionEnum - Closing option field
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 - Due date field
- Percentage? decimal - Percentage field
- Total? decimal - Total field
- LastDunningDate? string - Last dunning date field
- DunningLevel? Signed32 - Dunning level field
- TotalFC? decimal - Total foreign currency field
- InstallmentId? Signed32 - Installment ID field
- PaymentOrdered? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- PaidToDate? decimal - Paid to date field
- PaidToDateFC? decimal - Paid to date foreign currency field
sap.businessone.localization: DocumentLine
The DocumentLine complex type of the SAP Business One Service Layer
Fields
- LineNum? Signed32 - Line number field
- ItemCode? string - Item code field
- ItemDescription? string - Item description field
- Quantity? decimal - Quantity field
- ShipDate? string - Ship date field
- Price? decimal - Price field
- PriceAfterVAT? decimal - Price after VAT field
- Currency? string - Currency field
- Rate? decimal - Rate field
- DiscountPercent? decimal - Discount percent field
- VendorNum? string - Vendor number field
- SerialNum? string - Serial number field
- WarehouseCode? string - Warehouse code field
- SalesPersonCode? Signed32 - Sales person code field
- CommisionPercent? decimal - Commision percent field
- TreeType? BoItemTreeTypes - OData EnumType 'BoItemTreeTypes'. Serialised by the Service Layer as the member name
- AccountCode? string - Account code field
- UseBaseUnits? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- SupplierCatNum? string - Supplier cat number field
- CostingCode? string - Costing code field
- ProjectCode? string - Project code field
- BarCode? string - Bar code field
- VatGroup? string - VAT group field
- Height1? decimal - Height1 field
- Hight1Unit? Signed32 - Hight1 unit field
- Height2? decimal - Height2 field
- Height2Unit? Signed32 - Height2 unit field
- Lengh1? decimal - Lengh1 field
- Lengh1Unit? Signed32 - Lengh1 unit field
- Lengh2? decimal - Lengh2 field
- Lengh2Unit? Signed32 - Lengh2 unit field
- Weight1? decimal - Weight1 field
- Weight1Unit? Signed32 - Weight1 unit field
- Weight2? decimal - Weight2 field
- Weight2Unit? Signed32 - Weight2 unit field
- Factor1? decimal - Factor1 field
- Factor2? decimal - Factor2 field
- Factor3? decimal - Factor3 field
- Factor4? decimal - Factor4 field
- BaseType? Signed32 - Base type field
- BaseEntry? Signed32 - Base entry field
- BaseLine? Signed32 - Base line field
- Volume? decimal - Volume field
- VolumeUnit? Signed32 - Volume unit field
- Width1? decimal - Width1 field
- Width1Unit? Signed32 - Width1 unit field
- Width2? decimal - Width2 field
- Width2Unit? Signed32 - Width2 unit field
- Address? string - Address field
- TaxCode? string - Tax code field
- 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 - Pick quantity field
- PickListIdNumber? Signed32 - Pick list ID number field
- OriginalItem? string - Original item field
- BackOrder? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- FreeText? string - Free text field
- ShippingMethod? Signed32 - Shipping method field
- POTargetNum? Signed32 - Purchase order target number field
- POTargetEntry? string - Purchase order target entry field
- POTargetRowNum? Signed32 - Purchase order target row number field
- CorrectionInvoiceItem? BoCorInvItemStatus - OData EnumType 'BoCorInvItemStatus'. Serialised by the Service Layer as the member name
- CorrInvAmountToStock? decimal - Corr inv amount to stock field
- CorrInvAmountToDiffAcct? decimal - Corr inv amount to diff account field
- AppliedTax? decimal - Applied tax field
- AppliedTaxFC? decimal - Applied tax foreign currency field
- AppliedTaxSC? decimal - Applied tax system currency field
- 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 - Equalization tax percent field
- TotalEqualizationTax? decimal - Total equalization tax field
- TotalEqualizationTaxFC? decimal - Total equalization tax foreign currency field
- TotalEqualizationTaxSC? decimal - Total equalization tax system currency field
- NetTaxAmount? decimal - Net tax amount field
- NetTaxAmountFC? decimal - Net tax amount foreign currency field
- NetTaxAmountSC? decimal - Net tax amount system currency field
- MeasureUnit? string - Measure unit field
- UnitsOfMeasurment? decimal - Units of measurment field
- LineTotal? decimal - Line total field
- TaxPercentagePerRow? decimal - Tax percentage per row field
- TaxTotal? decimal - Tax total field
- ConsumerSalesForecast? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ExciseAmount? decimal - Excise amount field
- TaxPerUnit? decimal - Tax per unit field
- TotalInclTax? decimal - Total incl tax field
- CountryOrg? string - Country organization field
- SWW? string - SWW field
- 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 - Row total foreign currency field
- RowTotalSC? decimal - Row total system currency field
- LastBuyInmPrice? decimal - Last buy inm price field
- LastBuyDistributeSumFc? decimal - Last buy distribute sum foreign currency field
- LastBuyDistributeSumSc? decimal - Last buy distribute sum system currency field
- LastBuyDistributeSum? decimal - Last buy distribute sum field
- StockDistributesumForeign? decimal - Stock distributesum foreign field
- StockDistributesumSystem? decimal - Stock distributesum system field
- StockDistributesum? decimal - Stock distributesum field
- StockInmPrice? decimal - Stock inm price field
- PickStatusEx? BoDocumentLinePickStatus - OData EnumType 'BoDocumentLinePickStatus'. Serialised by the Service Layer as the member name
- TaxBeforeDPM? decimal - Tax before DPM field
- TaxBeforeDPMFC? decimal - Tax before DPMFC field
- TaxBeforeDPMSC? decimal - Tax before DPMSC field
- CFOPCode? string - CFOP code field
- CSTCode? string - CST code field
- Usage? Signed32 - Usage field
- TaxOnly? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- VisualOrder? Signed32 - Visual order field
- BaseOpenQuantity? decimal - Base open quantity field
- UnitPrice? decimal - Unit price field
- LineStatus? BoStatus - OData EnumType 'BoStatus'. Serialised by the Service Layer as the member name
- PackageQuantity? decimal - Package quantity field
- Text? string - Text field
- LineType? BoDocLineType - OData EnumType 'BoDocLineType'. Serialised by the Service Layer as the member name
- COGSCostingCode? string - COGS costing code field
- COGSAccountCode? string - COGS account code field
- ChangeAssemlyBoMWarehouse? string - Change assemly bo m warehouse field
- GrossBuyPrice? decimal - Gross buy price field
- GrossBase? Signed32 - Gross base field
- GrossProfitTotalBasePrice? decimal - Gross profit total base price field
- CostingCode2? string - Costing code2 field
- CostingCode3? string - Costing code3 field
- CostingCode4? string - Costing code4 field
- CostingCode5? string - Costing code5 field
- ItemDetails? string - Item details field
- LocationCode? Signed32 - Location code field
- ActualDeliveryDate? string - Actual delivery date field
- RemainingOpenQuantity? decimal - Remaining open quantity field
- OpenAmount? decimal - Open amount field
- OpenAmountFC? decimal - Open amount foreign currency field
- OpenAmountSC? decimal - Open amount system currency field
- ExLineNo? string - Ex line number field
- RequiredDate? string - Required date field
- RequiredQuantity? decimal - Required quantity field
- COGSCostingCode2? string - COGS costing code2 field
- COGSCostingCode3? string - COGS costing code3 field
- COGSCostingCode4? string - COGS costing code4 field
- COGSCostingCode5? string - COGS costing code5 field
- CSTforIPI? string - CS tfor IPI field
- CSTforPIS? string - CS tfor PIS field
- CSTforCOFINS? string - CS tfor COFINS field
- CreditOriginCode? string - Credit origin code field
- WithoutInventoryMovement? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- AgreementNo? Signed32 - Agreement number field
- AgreementRowNumber? Signed32 - Agreement row number field
- ActualBaseEntry? Signed32 - Actual base entry field
- ActualBaseLine? Signed32 - Actual base line field
- DocEntry? Signed32 - Document entry field
- Surpluses? decimal - Surpluses field
- DefectAndBreakup? decimal - Defect and breakup field
- Shortages? decimal - Shortages field
- 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 - Retirement quantity field
- RetirementAPC? decimal - Retirement APC field
- ThirdParty? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- PoNum? string - Purchase order number field
- PoItmNum? Signed32 - Purchase order itm number field
- ExpenseType? string - Expense type field
- ReceiptNumber? string - Receipt number field
- ExpenseOperationType? BoExpenseOperationTypeEnum - OData EnumType 'BoExpenseOperationTypeEnum'. Serialised by the Service Layer as the member name
- FederalTaxID? string - Federal tax ID field
- GrossProfit? decimal - Gross profit field
- GrossProfitFC? decimal - Gross profit foreign currency field
- GrossProfitSC? decimal - Gross profit system currency field
- 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 - Return cost field
- LineVendor? string - Line vendor field
- ReturnAction? Signed32 - Return action field
- ReturnReason? Signed32 - Return reason field
- StgSeqNum? Signed32 - Stg seq number field
- StgEntry? Signed32 - Stg entry field
- StgDesc? string - Stg description field
- UoMEntry? Signed32 - Uo m entry field
- UoMCode? string - Uo m code field
- InventoryQuantity? decimal - Inventory quantity field
- RemainingOpenInventoryQuantity? decimal - Remaining open inventory quantity field
- ParentLineNum? Signed32 - Parent line number field
- Incoterms? Signed32 - Incoterms field
- TransportMode? Signed32 - Transport mode field
- NatureOfTransaction? Signed32 - Nature of transaction field
- DestinationCountryForImport? string - Destination country for import field
- DestinationRegionForImport? Signed32 - Destination region for import field
- OriginCountryForExport? string - Origin country for export field
- OriginRegionForExport? Signed32 - Origin region for export field
- 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 - SAC entry field
- HSNEntry? Signed32 - HSN entry field
- GrossPrice? decimal - Gross price field
- GrossTotal? decimal - Gross total field
- GrossTotalFC? decimal - Gross total foreign currency field
- GrossTotalSC? decimal - Gross total system currency field
- NCMCode? Signed32 - NCM code field
- NVECode? string - NVE code field
- IndEscala? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- CtrSealQty? decimal - Ctr seal quantity field
- CNJPMan? string - CNJP man field
- CESTCode? Signed32 - CEST code field
- UFFiscalBenefitCode? string - UF fiscal benefit code field
- ReverseCharge? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ShipToCode? string - Ship to code field
- ShipToDescription? string - Ship to description field
- ShipFromCode? string - Ship from code field
- ShipFromDescription? string - Ship from description field
- OwnerCode? Signed32 - Owner code field
- ExternalCalcTaxRate? decimal - External calc tax rate field
- ExternalCalcTaxAmount? decimal - External calc tax amount field
- ExternalCalcTaxAmountFC? decimal - External calc tax amount foreign currency field
- ExternalCalcTaxAmountSC? decimal - External calc tax amount system currency field
- StandardItemIdentification? Signed32 - Standard item identification field
- CommodityClassification? Signed32 - Commodity classification field
- WeightOfRecycledPlastic? decimal - Weight of recycled plastic field
- PlasticPackageExemptionReason? string - Plastic package exemption reason field
- LegalText? string - Legal text field
- Cig? Signed32 - Cig field
- Cup? Signed32 - Cup field
- OperatingProfit? decimal - Operating profit field
- OperatingProfitFC? decimal - Operating profit foreign currency field
- OperatingProfitSC? decimal - Operating profit system currency field
- NetIncome? decimal - Net income field
- NetIncomeFC? decimal - Net income foreign currency field
- NetIncomeSC? decimal - Net income system currency field
- CSTforIBS? string - CS tfor IBS field
- CSTforCBS? string - CS tfor CBS field
- CSTforIS? string - CS tfor IS field
- UnencumberedReason? Signed32 - Unencumbered reason field
- CUSplit? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ListNum? Signed32 - List number field
- RecognizedTaxCode? string - Recognized tax code field
- LineTaxJurisdictions? LineTaxJurisdiction[] - Line tax jurisdictions field
- GeneratedAssets? GeneratedAsset[] - Generated assets field
- EBooksDetails? EBooksDetail[] - E books details field
- DocLinePickLists? DocLinePickList[] - Document line pick lists field
- DocumentLineAdditionalExpenses? DocumentLineAdditionalExpense[] - Document line additional expenses field
- WithholdingTaxLines? WithholdingTaxLine[] - Withholding tax lines field
- SerialNumbers? SerialNumber[] - Serial numbers field
- BatchNumbers? BatchNumber[] - Batch numbers field
- DocumentLinesBinAllocations? DocumentLinesBinAllocation[] - Document lines bin allocations field
- ExportProcesses? ExportProcess[] - Export processes field
- CCDNumbers? CCDNumber[] - CCD numbers field
- ImportProcesses? ImportProcess[] - Import processes field
sap.businessone.localization: DocumentLineAdditionalExpense
The DocumentLineAdditionalExpense complex type of the SAP Business One Service Layer
Fields
- LineNumber? Signed32 - Line number field
- GroupCode? Signed32 - Group code field
- ExpenseCode? Signed32 - Expense code field
- LineTotal? decimal - Line total field
- LineTotalFC? decimal - Line total foreign currency field
- LineTotalSys? decimal - Line total sys field
- PaidToDate? decimal - Paid to date field
- PaidToDateFC? decimal - Paid to date foreign currency field
- PaidToDateSys? decimal - Paid to date sys field
- TaxLiable? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- VatGroup? string - VAT group field
- TaxPercent? decimal - Tax percent field
- TaxSum? decimal - Tax sum field
- TaxSumFC? decimal - Tax sum foreign currency field
- TaxSumSys? decimal - Tax sum sys field
- DeductibleTaxSum? decimal - Deductible tax sum field
- DeductibleTaxSumFC? decimal - Deductible tax sum foreign currency field
- DeductibleTaxSumSys? decimal - Deductible tax sum sys field
- AquisitionTax? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- TaxCode? string - Tax code field
- TaxType? BoAdEpnsTaxTypes - OData EnumType 'BoAdEpnsTaxTypes'. Serialised by the Service Layer as the member name
- TaxPaid? decimal - Tax paid field
- TaxPaidFC? decimal - Tax paid foreign currency field
- TaxPaidSys? decimal - Tax paid sys field
- EqualizationTaxPercent? decimal - Equalization tax percent field
- EqualizationTaxSum? decimal - Equalization tax sum field
- EqualizationTaxFC? decimal - Equalization tax foreign currency field
- EqualizationTaxSys? decimal - Equalization tax sys field
- TaxTotalSum? decimal - Tax total sum field
- TaxTotalSumFC? decimal - Tax total sum foreign currency field
- TaxTotalSumSys? decimal - Tax total sum sys field
- WTLiable? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- BaseGroup? Signed32 - Base group field
- DistributionRule? string - Distribution rule field
- Project? string - Project field
- DistributionRule2? string - Distribution rule2 field
- DistributionRule3? string - Distribution rule3 field
- DistributionRule4? string - Distribution rule4 field
- DistributionRule5? string - Distribution rule5 field
- ExternalCalcTaxRate? decimal - External calc tax rate field
- ExternalCalcTaxAmount? decimal - External calc tax amount field
- ExternalCalcTaxAmountFC? decimal - External calc tax amount foreign currency field
- ExternalCalcTaxAmountSC? decimal - External calc tax amount system currency field
- 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[] - Line expense tax jurisdictions field
- LineFreightEBooksDetails? LineFreightEBooksDetail[] - Line freight e books details field
sap.businessone.localization: DocumentLinesBinAllocation
The DocumentLinesBinAllocation complex type of the SAP Business One Service Layer
Fields
- BinAbsEntry? Signed32 - Bin abs entry field
- Quantity? decimal - Quantity field
- AllowNegativeQuantity? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- SerialAndBatchNumbersBaseLine? Signed32 - Serial and batch numbers base line field
- BaseLineNumber? Signed32 - Base line number field
sap.businessone.localization: DocumentPackage
The DocumentPackage complex type of the SAP Business One Service Layer
Fields
- Number? Signed32 - Number field
- Type? string - Type field
- TotalWeight? decimal - Total weight field
- Units? Signed32 - Units field
- DocumentPackageItems? DocumentPackageItem[] - Document package items field
sap.businessone.localization: DocumentPackageItem
The DocumentPackageItem complex type of the SAP Business One Service Layer
Fields
- PackageNumber? Signed32 - Package number field
- ItemCode? string - Item code field
- Quantity? decimal - Quantity field
- UoMEntry? Signed32 - Uo m entry field
- MeasureUnit? string - Measure unit field
- UnitsOfMeasurement? decimal - Units of measurement field
sap.businessone.localization: DocumentReference
The DocumentReference complex type of the SAP Business One Service Layer
Fields
- docEntry? Signed32 - Document entry field
- issueDate? string - Issue date field
- issuerCode? string - Issuer code field
- extDocNum? string - Ext document number field
- lineNumber? Signed32 - Line number field
- refDocEntr? Signed32 - Reference document entr field
- remark? string - Remark field
- refDocNum? Signed32 - Reference document number field
- issuerCNPJ? string - Issuer CNPJ field
- series? string - Series field
- number? Signed32 - Number field
- subSeries? string - Sub series field
- linkRefTyp? LinkReferenceTypeEnum - Link reference typ field
- refAmount? decimal - Reference amount field
- model? string - Model field
- accessKey? string - Access key field
- refAccKey? string - Reference acc key field
- refObjType? ReferencedObjectTypeEnum - Reference obj type field
sap.businessone.localization: DocumentSpecialLine
The DocumentSpecialLine complex type of the SAP Business One Service Layer
Fields
- subtotalSC? decimal - Subtotal system currency field
- grossTotalFC? decimal - Gross total foreign currency field
- freight1? decimal - Freight1 field
- freight2? decimal - Freight2 field
- freight3SC? decimal - Freight3 system currency field
- taxAmountSC? decimal - Tax amount system currency field
- subtotal? decimal - Subtotal field
- freight3FC? decimal - Freight3 foreign currency field
- freight2FC? decimal - Freight2 foreign currency field
- orderNumber? Signed32 - Order number field
- afterLineNumber? Signed32 - After line number field
- freight1FC? decimal - Freight1 foreign currency field
- grossTotalSC? decimal - Gross total system currency field
- lineNum? Signed32 - Line number field
- lineText? string - Line text field
- taxAmount? decimal - Tax amount field
- taxAmountFC? decimal - Tax amount foreign currency field
- subtotalFC? decimal - Subtotal foreign currency field
- grossTotal? decimal - Gross total field
- freight2SC? decimal - Freight2 system currency field
- freight3? decimal - Freight3 field
- freight1SC? decimal - Freight1 system currency field
- lineType? BoDocSpecialLineType - Line type field
sap.businessone.localization: DownPaymentToDraw
The DownPaymentToDraw complex type of the SAP Business One Service Layer
Fields
- taxFC? decimal - Tax foreign currency field
- grossAmountToDraw? decimal - Gross amount to draw field
- docEntry? Signed32 - Document entry field
- grossAmountToDrawSC? decimal - Gross amount to draw system currency field
- tax? decimal - Tax field
- amountToDrawSC? decimal - Amount to draw system currency field
- rowNum? Signed32 - Row number field
- name? string - Name field
- docInternalID? Signed32 - Document internal ID field
- isGrossLine? BoYesNoEnum - Is gross line field
- details? string - Details field
- postingDate? string - Posting date field
- amountToDraw? decimal - Amount to draw field
- taxSC? decimal - Tax system currency field
- downPaymentType? DownPaymentTypeEnum - Down payment type field
- docNumber? Signed32 - Document number field
- grossAmountToDrawFC? decimal - Gross amount to draw foreign currency field
- downPaymentsToDrawDetails? DownPaymentToDrawDetails[] - Down payments to draw details field
- dueDate? string - Due date field
- amountToDrawFC? decimal - Amount to draw foreign currency field
sap.businessone.localization: DownPaymentToDrawDetails
The DownPaymentToDrawDetails complex type of the SAP Business One Service Layer
Fields
- seqNum? Signed32 - Seq number field
- vatGroupCode? string - VAT group code field
- taxFC? decimal - Tax foreign currency field
- grossAmountToDraw? decimal - Gross amount to draw field
- docEntry? Signed32 - Document entry field
- grossAmountToDrawSC? decimal - Gross amount to draw system currency field
- tax? decimal - Tax field
- taxAdjust? BoYesNoEnum - Tax adjust field
- rowNum? Signed32 - Row number field
- amountToDrawSC? decimal - Amount to draw system currency field
- docInternalID? Signed32 - Document internal ID field
- isGrossLine? BoYesNoEnum - Is gross line field
- amountToDraw? decimal - Amount to draw field
- taxSC? decimal - Tax system currency field
- grossAmountToDrawFC? decimal - Gross amount to draw foreign currency field
- lineType? LineTypeEnum - Line type field
- vatPercent? decimal - VAT percent field
- amountToDrawFC? decimal - Amount to draw foreign currency field
sap.businessone.localization: EBooks
The EBooks entity of the SAP Business One Service Layer
Fields
- aA? string - A a field
- eBooksLines? EBooksLine[] - E books lines field
- linkedDocType? Signed32 - Linked document type field
- totalVatAmount? decimal - Total VAT amount field
- cancelMARK? string - Cancel MARK field
- cPVATID? string - C PVATID field
- totalWithheldAmount? decimal - Total withheld amount field
- issueDate? string - Issue date field
- absEntry? Signed32 - Abs entry field
- mARK? string - M ARK field
- invoiceType? string - Invoice type field
- totalGrossValue? decimal - Total gross value field
- uID? string - U ID field
- series? string - Series field
- currency? string - Currency field
- linkedDocEntry? Signed32 - Linked document entry field
- isNegativeMark? BoYesNoEnum - Is negative mark field
- totalNetValue? decimal - Total net value field
- issuerVATID? string - Issuer VATID field
sap.businessone.localization: EBooksCollectionResponse
A paged collection of EBooks entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? EBooks[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.localization: EBooksDetail
The EBooksDetail complex type of the SAP Business One Service Layer
Fields
- IncomeClassificationType? Signed32 - Income classification type field
- IncomeClassificationCategory? Signed32 - Income classification category field
- ExpensesClassificationType? Signed32 - Expenses classification type field
- ExpensesClassificationCategory? Signed32 - Expenses classification category field
- NetValueLC? decimal - Net value local currency field
- NetValueFC? decimal - Net value foreign currency field
- NetValueSC? decimal - Net value system currency field
- VatCategory? Signed32 - VAT category field
- WithheldPercentCategory? Signed32 - Withheld percent category field
- WithheldAmountLC? decimal - Withheld amount local currency field
- WithheldAmountFC? decimal - Withheld amount foreign currency field
- WithheldAmountSC? decimal - Withheld amount system currency field
- VatClassificationType? Signed32 - VAT classification type field
- VatClassificationCategory? Signed32 - VAT classification category field
- VATExemptionCause? Signed32 - VAT exemption cause field
- RecType? Signed32 - Rec type field
- StampDutyCategory? Signed32 - Stamp duty category field
- OtherTaxesCategory? Signed32 - Other taxes category field
- FeesCategory? Signed32 - Fees category field
sap.businessone.localization: EBooksLine
The EBooksLine complex type of the SAP Business One Service Layer
Fields
- vatCategory? Signed32 - VAT category field
- vatAmount? decimal - VAT amount field
- vATClassificationCategory? Signed32 - V AT classification category field
- vATClassificationType? Signed32 - V AT classification type field
- feesCategory? Signed32 - Fees category field
- otherTaxesCategory? Signed32 - Other taxes category field
- lineNumber? Signed32 - Line number field
- vATExemptionCause? Signed32 - V AT exemption cause field
- expenseClassificationType? Signed32 - Expense classification type field
- withheldAmount? decimal - Withheld amount field
- recordType? Signed32 - Record type field
- stampDutyCategory? Signed32 - Stamp duty category field
- netValue? decimal - Net value field
- withheldPercentCategory? Signed32 - Withheld percent category field
- expenseClassificationCategory? Signed32 - Expense classification category field
sap.businessone.localization: EBooksParams
The EBooksParams complex type of the SAP Business One Service Layer
Fields
- linkedDocType? Signed32 - Linked document type field
- linkedDocEntry? Signed32 - Linked document entry field
- mARK? string - M ARK field
sap.businessone.localization: EcmAction
The EcmAction complex type of the SAP Business One Service Layer
Fields
- ActionID? Signed32 - Action ID field
- Protocol? string - Protocol field
- Type? EcmActionTypeEnum - OData EnumType 'EcmActionTypeEnum'. Serialised by the Service Layer as the member name
- Description? string - Description field
- Status? EcmActionStatusEnum - OData EnumType 'EcmActionStatusEnum'. Serialised by the Service Layer as the member name
- Message? string - Message field
- Environment? Signed32 - Environment field
- BusinessPlace? Signed32 - Business place field
- Submits? Signed32 - Submits field
- ObjectID? string - Object ID field
- ReportID? string - Report ID field
- SourceType? string - Source type field
- SourceObject? Signed32 - Source object field
- AssignedID? string - Assigned ID field
- DocumentBatch? string - Document batch field
- DocumentBatchLine? Signed32 - Document batch line field
- PeriodType? EcmActionPeriodTypeEnum - OData EnumType 'EcmActionPeriodTypeEnum'. Serialised by the Service Layer as the member name
- PeriodNumber? Signed32 - Period number field
- PeriodYear? Signed32 - Period year field
- PeriodDateFrom? string - Period date from field
- PeriodDateTo? string - Period date to field
- 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 - GUID field
- U_B1SYS_XMLAmount? decimal - User-defined field: b1 SYS XML amount field
- U_B1SYS_SendDateINTM? string - User-defined field: b1 SYS send date INTM field
sap.businessone.localization: EcmActionDocParams
The EcmActionDocParams complex type of the SAP Business One Service Layer
Fields
- sourceObject? Signed32 - Source object field
- sourceType? string - Source type field
- protocol? string - Protocol field
sap.businessone.localization: EcmActionLog
The EcmActionLog complex type of the SAP Business One Service Layer
Fields
- actionID? Signed32 - Action ID field
- 'type? EcmActionLogTypeEnum - Type field
- authorityProcess? ElectronicDocumentAuthorityProcessEnum - Authority process field
- exportFile? string - Export file field
- message? string - Message field
- logTime? Signed32 - Log time field
- isSensitive? BoYesNoEnum - Is sensitive field
- data? string - Data field
- exportFormat? Signed32 - Export format field
- logID? Signed32 - Log ID field
- logDate? string - Log date field
sap.businessone.localization: EcmActionLogParams
The EcmActionLogParams complex type of the SAP Business One Service Layer
Fields
- actionID? Signed32 - Action ID field
- logID? Signed32 - Log ID field
sap.businessone.localization: EcmActionParams
The EcmActionParams complex type of the SAP Business One Service Layer
Fields
- actionID? Signed32 - Action ID field
sap.businessone.localization: ECMActionStatusData
The ECMActionStatusData complex type of the SAP Business One Service Layer
Fields
- reportID? string - Report ID field
- receivDate? string - Receiv date field
- absEntry? Signed32 - Abs entry field
- actMessage? string - Act message field
- actStatus? EcmActionStatusEnum - Act status field
sap.businessone.localization: ECMCodeParams
The ECMCodeParams complex type of the SAP Business One Service Layer
Fields
- absEntry? Signed32 - Abs entry field
sap.businessone.localization: EDeliveryInfo
The EDeliveryInfo complex type of the SAP Business One Service Layer
Fields
- vehicleNo? string - Vehicle number field
- docEntry? Signed32 - Document entry field
- moveType? Signed32 - Move type field
sap.businessone.localization: EDFDocMapping
The EDFDocMapping complex type of the SAP Business One Service Layer
Fields
- description? string - Description field
- iD? Signed32 - I d field
- name? string - Name field
sap.businessone.localization: EDFDocMappingInputParams
The EDFDocMappingInputParams complex type of the SAP Business One Service Layer
Fields
- code? ElectronicDocProtocolCodeStrEnum - Code field
- docType? string - Document type field
sap.businessone.localization: EDFEntry
The EDFEntry complex type of the SAP Business One Service Layer
Fields
- AbsEntry? Signed32 - Abs entry field
- Code? ElectronicDocProtocolCodeStrEnum - OData EnumType 'ElectronicDocProtocolCodeStrEnum'. Serialised by the Service Layer as the member name
- ParentAbsEntry? Signed32 - Parent abs entry field
- 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 - Branch ID field
- Environment? Signed32 - Environment field
- Description? string - Description field
- Message? string - Message field
- Submits? Signed32 - Submits field
- ObjectID? string - Object ID field
- ReportID? string - Report ID field
- SrcObjType? string - Src obj type field
- SrcAbsEntry? Signed32 - Src abs entry field
- AssignedID? string - Assigned ID field
- DocBatchID? string - Document batch ID field
- DocBatchIndex? Signed32 - Document batch index field
- 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 - Period number field
- PeriodYear? Signed32 - Period year field
- PeriodDateFrom? string - Period date from field
- PeriodDateTo? string - Period date to field
- 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 - Create date field
- CreateTime? Signed32 - Create time field
- UpdateDate? string - Update date field
- UpdateTime? Signed32 - Update time field
- User? Signed32 - User field
- User2? Signed32 - User2 field
- ScheduledJobID? Signed32 - Scheduled job ID field
- GUID? string - GUID field
- Authority? string - Authority field
- CancellationStatus? ElectronicDocumentEntryCancellationStatusEnum - OData EnumType 'ElectronicDocumentEntryCancellationStatusEnum'. Serialised by the Service Layer as the member name
- ProcessingTarget? string - Processing target field
- EDocType? Signed32 - E document type field
- EDocNum? string - E document number field
- Emergency? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- StatusReason? string - Status reason field
- StatusDesc? string - Status description field
- U_B1SYS_XMLAmount? decimal - User-defined field: b1 SYS XML amount field
- U_B1SYS_SendDateINTM? string - User-defined field: b1 SYS send date INTM field
sap.businessone.localization: EDFEntryAddLogInputParams
The EDFEntryAddLogInputParams complex type of the SAP Business One Service Layer
Fields
- logData? string - Log data field
- authorityProcess? ElectronicDocumentAuthorityProcessEnum - Authority process field
- exportFile? string - Export file field
- logMessage? string - Log message field
- gUID? string - G UID field
- logType? ElectronicDocumentEntryLogTypeEnum - Log type field
- isSensitive? BoYesNoNoneEnum - Is sensitive field
- exportFormat? Signed32 - Export format field
- logDataContentType? ElectronicDocumentBlobContentTypeEnum - Log data content type field
- zipLogData? BoYesNoEnum - Zip log data field
- code? ElectronicDocProtocolCodeStrEnum - Code field
sap.businessone.localization: EDFEntryInputParams
The EDFEntryInputParams complex type of the SAP Business One Service Layer
Fields
- gUID? string - G UID field
- code? ElectronicDocProtocolCodeStrEnum - Code field
sap.businessone.localization: EDFEntryListInputParams
The EDFEntryListInputParams complex type of the SAP Business One Service Layer
Fields
- maxLines? Signed32 - Max lines field
- fromEntryID? Signed32 - From entry ID field
- cancellationStatusSet? string - Cancellation status set field
- branchID? Signed32 - Branch ID field
- storeEntryStatusSet? string - Store entry status set field
- processingTarget? ElectronicDocProcessingTargetEnum - Processing target field
- code? ElectronicDocProtocolCodeStrEnum - Code field
- storeEntryTypeSet? string - Store entry type set field
- toTime? Signed32 - To time field
- fromDate? string - From date field
- toDate? string - To date field
- processingTargetStr? string - Processing target str field
- fromTime? Signed32 - From time field
- 'ascending? BoYesNoEnum - Ascending field
sap.businessone.localization: EDFEntryLog
The EDFEntryLog complex type of the SAP Business One Service Layer
Fields
- AbsEntry? Signed32 - Abs entry field
- LogNumber? Signed32 - Log number field
- LogType? ElectronicDocumentEntryLogTypeEnum - OData EnumType 'ElectronicDocumentEntryLogTypeEnum'. Serialised by the Service Layer as the member name
- LogMessage? string - Log message field
- LogData? string - Log data field
- LogOperationDate? string - Log operation date field
- LogOperationTime? Signed32 - Log operation time field
- ExportFormat? Signed32 - Export format field
- ExportFile? string - Export file field
- 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 - Unzip log data field
- keepLogDataPrefix? BoYesNoEnum - Keep log data prefix field
- fileName? string - File name field
- gUID? string - G UID field
- logType? ElectronicDocumentEntryLogTypeEnum - Log type field
- logDataContentType? ElectronicDocumentBlobContentTypeEnum - Log data content type field
- code? ElectronicDocProtocolCodeStrEnum - Code field
sap.businessone.localization: EDFImportEntry
The EDFImportEntry complex type of the SAP Business One Service Layer
Fields
- status? ElectronicDocumentEntryStatusEnum - Status field
- isBPManual? BoYesNoEnum - Is business partner manual field
- user? Signed32 - User field
- message? string - Message field
- user2? Signed32 - User2 field
- authority? string - Authority field
- createTime? Signed32 - Create time field
- fileName? string - File name field
- gUID? string - G UID field
- testMode? string - Test mode field
- cardCode? string - Card code field
- absEntry? Signed32 - Abs entry field
- code? ElectronicDocProtocolCodeStrEnum - Code field
- createDate? string - Create date field
- mimeType? string - Mime type field
- assignedID? string - Assigned ID field
- updateDate? string - Update date field
- objectType? string - Object type field
- processingSource? string - Processing source field
- metaData? string - Meta data field
- updateTime? Signed32 - Update time field
- documentDate? string - Document date field
sap.businessone.localization: EDFMapping
The EDFMapping complex type of the SAP Business One Service Layer
Fields
- mapping? string - Mapping field
- hash? string - Hash field
- formatID? Signed32 - Format ID field
- name? string - Name field
sap.businessone.localization: EDFMappingInputParams
The EDFMappingInputParams complex type of the SAP Business One Service Layer
Fields
- hash? string - Hash field
sap.businessone.localization: EDFProtocol
The EDFProtocol entity of the SAP Business One Service Layer
Fields
- description? string - Description field
- isActive? BoYesNoEnum - Is active field
- code? ElectronicDocProtocolCodeStrEnum - Code field
sap.businessone.localization: EDFProtocolParameter
The EDFProtocolParameter complex type of the SAP Business One Service Layer
Fields
- userSignature? Signed32 - User signature field
- parameterType? string - Parameter type field
- uIOrder? Signed32 - U i order field
- paramValue? string - Param value field
- branchID? Signed32 - Branch ID field
- code? ElectronicDocProtocolCodeStrEnum - Code field
- createDate? string - Create date field
- parameterID? Signed32 - Parameter ID field
- logInstance? Signed32 - Log instance field
- updateDate? string - Update date field
- 'type? Signed32 - Type field
- updatingUser? Signed32 - Updating user field
- visible? BoYesNoEnum - Visible field
- paramParameters? string - Param parameters field
- paramName? string - Param name field
sap.businessone.localization: EDFProtocolParameterInputParams
The EDFProtocolParameterInputParams complex type of the SAP Business One Service Layer
Fields
- lineNum? Signed32 - Line number field
- branch? Signed32 - Branch field
- code? ElectronicDocProtocolCodeStrEnum - Code field
sap.businessone.localization: EDFProtocolWithParameters
The EDFProtocolWithParameters complex type of the SAP Business One Service Layer
Fields
- description? string - Description field
- isActive? BoYesNoEnum - Is active field
- eDFProtocolParametersCollection? EDFProtocolParameter[] - E DF protocol parameters collection field
- pWPExtendedProperties? PWPExtendedProperties - P WP extended properties field
- code? ElectronicDocProtocolCodeStrEnum - Code field
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 - A FE fce ID field
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 - E CM code params field
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 - A FE fce accounts payable check ECM2E ntry params field
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 - A FE renumber folio params field
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 - E CM code params field
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 - E CM code params field
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 - E CM code params field
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 - E CM code params field
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 - E CM action status data field
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 - Ecm action field
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 - Ecm action log field
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 - Ecm action field
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 - Ecm action params field
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 - Ecm action document params field
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 - Ecm action log params field
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 - Ecm action field
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 - Ecm action field
sap.businessone.localization: ElectronicDocumentsCollectionResponse
A paged collection of ElectronicDocuments entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? EDFProtocol[] - Value field
- odataNextLink? string - Odata next link field
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 - Emergency number field
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 - E DF import entry field
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 - E DF entry add log input params field
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 - E DF entry field
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 - E DF entry log input params field
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 - E DF document mapping input params field
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 - E DF entry input params field
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 - E DF entry list input params field
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 - E DF entry log input params field
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 - E DF entry log input params field
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 - E DF mapping input params field
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 - E DF protocol parameter input params field
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 - E DF entry field
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 - E DF protocol with parameters field
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 - E DF protocol parameter field
sap.businessone.localization: ElectronicFileFormat
The ElectronicFileFormat entity of the SAP Business One Service Layer
Fields
- menuName? string - Menu name field
- exportDeterminations? ExportDetermination[] - Export determinations field
- description? string - Description field
- schemaVersion? string - Schema version field
- version? string - Version field
- outputFilePath? string - Output file path field
- importDeterminations? ImportDetermination[] - Import determinations field
- formatID? Signed32 - Format ID field
- name? string - Name field
- menuPath? string - Menu path field
sap.businessone.localization: ElectronicFileFormatParams
The ElectronicFileFormatParams complex type of the SAP Business One Service Layer
Fields
- formatID? Signed32 - Format ID field
- name? string - Name field
sap.businessone.localization: ElectronicFileFormatsCollectionResponse
A paged collection of ElectronicFileFormats entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? ElectronicFileFormat[] - Value field
- odataNextLink? string - Odata next link field
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 - Mapping ID field
- TestingMode? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Confirmation? string - Confirmation field
- EDocType? Signed32 - E document type field
- CFDiCancellationReason? string - CF di cancellation reason field
- CFDiCancellationResponse? string - CF di cancellation response field
- RelatedDocuments? RelatedDocument[] - Related documents field
- EBooksRelevant? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- EBooksMARK? string - E books MARK field
- EBooksMARKofNegative? string - E books MAR kof negative field
- EBooksInvoiceType? string - E books invoice type field
- EBooksInvoiceTypeofNegative? string - E books invoice typeof negative field
- EBillingIRN? string - E billing IRN field
- EETPKP? string - EETPKP field
- EETBKP? string - EETBKP field
- SignatureInputMessage? string - Signature input message field
- SignatureDigest? string - Signature digest field
- FechaTimbrado? string - Fecha timbrado field
- SelloSAT? string - Sello SAT field
- PaymentMethod? string - Payment method field
- RfcProvCertif? string - Rfc prov certif field
- NoCertificadoSAT? string - Number certificado SAT field
- FPASequenceNumber? Signed32 - FPA sequence number field
- FPASendDateSDI? string - FPA send date SDI field
- FPAProgressivo? string - FPA progressivo field
- ProtocolDescription? string - Protocol description field
- CFDiExport? string - CF di export field
- EBillingAckNo? string - E billing ack number field
- EBillingAckDt? string - E billing ack dt field
- EBillingSignedInvoice? string - E billing signed invoice field
- EBillingSignedQRCode? string - E billing signed QR code field
- EBillingResponseStatus? string - E billing response status field
- CFDiCancellationReference? string - CF di cancellation reference field
- EBooksQRCodePath? string - E books QR code path field
- EBooksQRCodePathofNegative? string - E books QR code pathof negative field
- CartaPorteID? string - Carta porte ID field
- EBooksDispatchDate? string - E books dispatch date field
- EBooksDispatchTime? string - E books dispatch time field
sap.businessone.localization: EmergencyNumber
The EmergencyNumber complex type of the SAP Business One Service Layer
Fields
- status? string - Status field
- number? string - Number field
- absEntry? Signed32 - Abs entry field
- code? string - Code field
sap.businessone.localization: EWayBillDetails
The EWayBillDetails complex type of the SAP Business One Service Layer
Fields
- billFromName? string - Bill from name field
- shipToStateGSTCode? string - Ship to state GST code field
- transactionType? EWBTransactionTypeEnum - Transaction type field
- vehicleNo? string - Vehicle number field
- eWayBillExpirationDate? string - E way bill expiration date field
- dispatchFromAddress1? string - Dispatch from address1 field
- transporterName? string - Transporter name field
- billFromGSTIN? string - Bill from GSTIN field
- dispatchFromAddress2? string - Dispatch from address2 field
- dispatchFromZipCode? string - Dispatch from zip code field
- transporterID? string - Transporter ID field
- billToName? string - Bill to name field
- supplyType? EWBSupplyTypeEnum - Supply type field
- mainHSNEntry? Signed32 - Main HSN entry field
- shipToAddress2? string - Ship to address2 field
- shipToAddress1? string - Ship to address1 field
- distance? decimal - Distance field
- dispatchFromPlace? string - Dispatch from place field
- subType? Signed32 - Sub type field
- shipToZipCode? string - Ship to zip code field
- transportationMode? Signed32 - Transportation mode field
- transporterDocDate? string - Transporter document date field
- vehicleType? string - Vehicle type field
- transporterEntry? Signed32 - Transporter entry field
- docEntry? Signed32 - Document entry field
- documentType? string - Document type field
- billFromStateGSTCode? string - Bill from state GST code field
- dispatchFromStateGSTCode? string - Dispatch from state GST code field
- transporterDocNo? string - Transporter document number field
- shipToPlace? string - Ship to place field
- billToGSTIN? string - Bill to GSTIN field
- transporterLineNumber? Signed32 - Transporter line number field
- eWayBillNo? string - E way bill number field
- billToStateGSTCode? string - Bill to state GST code field
- eWayBillDate? string - E way bill date field
sap.businessone.localization: EWBTransporter
The EWBTransporter entity of the SAP Business One Service Layer
Fields
- transporterID? string - Transporter ID field
- eWBTransporterLines? EWBTransporterLine[] - E WB transporter lines field
- transporterName? string - Transporter name field
- absEntry? Signed32 - Abs entry field
- transporterCode? string - Transporter code field
sap.businessone.localization: EWBTransporterLine
The EWBTransporter_Line complex type of the SAP Business One Service Layer
Fields
- vehicleNo? string - Vehicle number field
- mode? Signed32 - Mode field
- vehicleType? string - Vehicle type field
- absEntry? Signed32 - Abs entry field
- lineNumber? Signed32 - Line number field
sap.businessone.localization: EWBTransporterParams
The EWBTransporterParams complex type of the SAP Business One Service Layer
Fields
- transporterID? string - Transporter ID field
- transporterName? string - Transporter name field
- absEntry? Signed32 - Abs entry field
- transporterCode? string - Transporter code field
sap.businessone.localization: EWBTransportersCollectionResponse
A paged collection of EWBTransporters entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? EWBTransporter[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.localization: ExportDetermination
The ExportDetermination entity of the SAP Business One Service Layer
Fields
- AbsEntry? Signed32 - Abs entry field
- Code? ElectronicDocProtocolCodeStrEnum - OData EnumType 'ElectronicDocProtocolCodeStrEnum'. Serialised by the Service Layer as the member name
- Priority? Signed32 - Priority field
- BusinessPartner? string - Business partner field
- Country? string - Country field
- Series? Signed32 - Series field
- DocumentType? string - Document type field
- ExportFormat? Signed32 - Export format field
- PathFileName? string - Path file name field
- DocumentSubType? string - Document sub type field
- VersionNumber? Signed32 - Version number field
- 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 - Odata metadata field
- value? ExportDetermination[] - Value field
- odataNextLink? string - Odata next link field
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 - Export determinations params field
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 - Lading bill type code field
- quantityOfExportedItems? decimal - Quantity of exported items field
- exportationNatureCode? Signed32 - Exportation nature code field
- ladingBillDate? string - Lading bill date field
- natureOfExport? string - Nature of export field
- ladingBillNumber? string - Lading bill number field
- lineNumber? Signed32 - Line number field
- exportationRegistryNumber? Signed32 - Exportation registry number field
- additionalItemSequentialNumber? Signed32 - Additional item sequential number field
- exportationDeclarationDate? string - Exportation declaration date field
- drawbackSuspensionRegime? string - Drawback suspension regime field
- merchandiseLeftCustomsDate? string - Merchandise left customs date field
- exportationDocumentTypeCode? Signed32 - Exportation document type code field
- exportationRegistryDate? string - Exportation registry date field
- exportationDeclarationNumber? Signed32 - Exportation declaration number field
sap.businessone.localization: FiscalPrinter
The FiscalPrinter entity of the SAP Business One Service Layer
Fields
- equipmentNo? string - Equipment number field
- model? string - Model field
- registerNo? Signed32 - Register number field
- fiscalPrintersParams? FiscalPrinterParams[] - Fiscal printers params field
- fiscalDocumentModel? string - Fiscal document model field
- nFModel? NFModel - N f model field
- manufacturerSerialN? string - Manufacturer serial n field
sap.businessone.localization: FiscalPrinterCollectionResponse
A paged collection of FiscalPrinter entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? FiscalPrinter[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.localization: FiscalPrinterParams
The FiscalPrinterParams complex type of the SAP Business One Service Layer
Fields
- equipmentNo? string - Equipment number field
sap.businessone.localization: GeneratedAsset
The GeneratedAsset complex type of the SAP Business One Service Layer
Fields
- status? GeneratedAssetStatusEnum - Status field
- amount? decimal - Amount field
- serialNumber? string - Serial number field
- remarks? string - Remarks field
- docEntry? Signed32 - Document entry field
- assetCode? string - Asset code field
- lineNumber? Signed32 - Line number field
- visualOrder? Signed32 - Visual order field
- amountSC? decimal - Amount system currency field
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 - Abs entry field
- inboundFile? string - Inbound file field
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 - G TI params field
sap.businessone.localization: IdentificationCode
The IdentificationCode entity of the SAP Business One Service Layer
Fields
- codelist? IdentificationCodeTypeEnum - Codelist field
- description? string - Description field
- schemaCode? string - Schema code field
- absEntry? Signed32 - Abs entry field
- code? string - Code field
- schemaDesc? string - Schema description field
sap.businessone.localization: IdentificationCodesCollectionResponse
A paged collection of IdentificationCodes entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? IdentificationCode[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.localization: ImportDetermination
The ImportDetermination entity of the SAP Business One Service Layer
Fields
- AbsEntry? Signed32 - Abs entry field
- Code? ElectronicDocProtocolCodeStrEnum - OData EnumType 'ElectronicDocProtocolCodeStrEnum'. Serialised by the Service Layer as the member name
- LineNumber? Signed32 - Line number field
- ObjectType? string - Object type field
- ObjectTypeXPath? string - Object type x path field
- FieldType? ImportFieldTypeEnum - OData EnumType 'ImportFieldTypeEnum'. Serialised by the Service Layer as the member name
- FieldTypeXPath? string - Field type x path field
- ImportFormat? Signed32 - Import format field
- DefaultDigitalSeries? Signed32 - Default digital series field
- VersionNumber? Signed32 - Version number field
- 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 - Odata metadata field
- value? ImportDetermination[] - Value field
- odataNextLink? string - Odata next link field
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 - Import determinations params field
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 - Date of registry DIDSIDA field
- importationDocumentNumber? string - Importation document number field
- customsClearanceDate? string - Customs clearance date field
- additionalItemSequentialNumber? Signed32 - Additional item sequential number field
- drawbackSuspensionRegime? string - Drawback suspension regime field
- typeOfImport? string - Type of import field
- additionalFreightToNavyAuthority? decimal - Additional freight to navy authority field
- drawbackRegimeConcessionAccountNumber? string - Drawback regime concession account number field
- importationDocumentTypeCode? string - Importation document type code field
- additionalNumber? string - Additional number field
- additionalItemDiscountValue? decimal - Additional item discount value field
- lineNumber? Signed32 - Line number field
sap.businessone.localization: IndiaHsn
The IndiaHsn entity of the SAP Business One Service Layer
Fields
- heading? string - Heading field
- description? string - Description field
- chapter? string - Chapter field
- chapterID? string - Chapter ID field
- subHeading? string - Sub heading field
- absEntry? Signed32 - Abs entry field
sap.businessone.localization: IndiaHsnCollectionResponse
A paged collection of IndiaHsn entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? IndiaHsn[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.localization: IndiaHsnParams
The IndiaHsnParams complex type of the SAP Business One Service Layer
Fields
- chapterID? string - Chapter ID field
- absEntry? Signed32 - Abs entry field
sap.businessone.localization: IndiaSacCode
The IndiaSacCode entity of the SAP Business One Service Layer
Fields
- serviceCode? string - Service code field
- serviceName? string - Service name field
- absEntry? Signed32 - Abs entry field
sap.businessone.localization: IndiaSacCodeCollectionResponse
A paged collection of IndiaSacCode entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? IndiaSacCode[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.localization: IndiaSacCodeParams
The IndiaSacCodeParams complex type of the SAP Business One Service Layer
Fields
- serviceCode? string - Service code field
- absEntry? Signed32 - Abs entry field
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 - Odata metadata field
- value? BEMReplicationPeriodParams[] - Value field
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 - Odata metadata field
- value? BrazilBeverageIndexerParams[] - Value field
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 - Odata metadata field
- value? EBooksParams[] - Value field
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 - Odata metadata field
- value? EWBTransporterParams[] - Value field
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 - Odata metadata field
- value? AFEFceAPCheckECM2Entry[] - Value field
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 - Odata metadata field
- value? AFEFceARGetDocuments[] - Value field
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 - Odata metadata field
- value? AFEFceActionGetByFceID[] - Value field
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 - Odata metadata field
- value? AFEFceActionGetPaymentData[] - Value field
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 - Odata metadata field
- value? AFEUpdFceAPARGetDocuments[] - Value field
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 - Odata metadata field
- value? EcmActionLog[] - Value field
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 - Odata metadata field
- value? EDFDocMapping[] - Value field
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 - Odata metadata field
- value? EmergencyNumber[] - Value field
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 - Odata metadata field
- value? BrazilFuelIndexerParams[] - Value field
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 - Odata metadata field
- value? EDFEntry[] - Value field
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 - Odata metadata field
- value? EDFEntryLog[] - Value field
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 - Odata metadata field
- value? EDFProtocol[] - Value field
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 - Odata metadata field
- value? ElectronicFileFormatParams[] - Value field
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 - Odata metadata field
- value? ExportDetermination[] - Value field
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 - Odata metadata field
- value? FiscalPrinterParams[] - Value field
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 - Odata metadata field
- value? GTIParams[] - Value field
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 - Odata metadata field
- value? ISDCreditMemoParams[] - Value field
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 - Odata metadata field
- value? ISDParams[] - Value field
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 - Odata metadata field
- value? ISDInvoiceParams[] - Value field
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 - Odata metadata field
- value? BrazilMultiIndexerParams[] - Value field
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 - Odata metadata field
- value? ISDRecipientCreditMemoParams[] - Value field
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 - Odata metadata field
- value? ISDRecipientInvoiceParams[] - Value field
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 - Odata metadata field
- value? IdentificationCode[] - Value field
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 - Odata metadata field
- value? ImportDetermination[] - Value field
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 - Odata metadata field
- value? IndiaHsnParams[] - Value field
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 - Odata metadata field
- value? IndiaSacCodeParams[] - Value field
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 - Odata metadata field
- value? IntrastatConfigurationParams[] - Value field
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 - Odata metadata field
- value? MaterialGroupParams[] - Value field
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 - Odata metadata field
- value? NCMCodeSetupParams[] - Value field
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 - Odata metadata field
- value? NFModelParams[] - Value field
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 - Odata metadata field
- value? BrazilNumericIndexerParams[] - Value field
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 - Odata metadata field
- value? NFTaxCategoryParams[] - Value field
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 - Odata metadata field
- value? OccurenceCodeParams[] - Value field
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 - Odata metadata field
- value? RetornoCodeParams[] - Value field
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 - Odata metadata field
- value? ServiceGroupParams[] - Value field
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 - Odata metadata field
- value? ServiceTaxPostingParams[] - Value field
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 - Odata metadata field
- value? BrazilStringIndexerParams[] - Value field
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 - Odata metadata field
- value? CIGCodeParams[] - Value field
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 - Odata metadata field
- value? CUPCodeParams[] - Value field
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 - Odata metadata field
- value? CertificateSeriesParams[] - Value field
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 - Odata metadata field
- value? DNFCodeSetupParams[] - Value field
sap.businessone.localization: IntrastatConfiguration
The IntrastatConfiguration entity of the SAP Business One Service Layer
Fields
- prcstVal? decimal - Prcst val field
- confType? IntrastatConfigurationEnum - Conf type field
- 'import? BoYesNoEnum - Import field
- absEntry? Signed32 - Abs entry field
- descr? string - Descr field
- code? string - Code field
- suppUnit? Signed32 - Supp unit field
- triangDeal? IntrastatConfigurationTriangDealEnum - Triang deal field
- dateFrom? string - Date from field
- export? BoYesNoEnum - Export field
- country? string - Country field
- confID? string - Conf ID field
- statCode? string - Stat code field
- dateTo? string - Date to field
sap.businessone.localization: IntrastatConfigurationCollectionResponse
A paged collection of IntrastatConfiguration entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? IntrastatConfiguration[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.localization: IntrastatConfigurationParams
The IntrastatConfigurationParams complex type of the SAP Business One Service Layer
Fields
- confType? IntrastatConfigurationEnum - Conf type field
- dateFrom? string - Date from field
- country? string - Country field
- absEntry? Signed32 - Abs entry field
- statCode? string - Stat code field
- code? string - Code field
- dateTo? string - Date to field
sap.businessone.localization: ISDCreditMemo
The ISDCreditMemo entity of the SAP Business One Service Layer
Fields
- DocumentEntry? Signed32 - Document entry field
- DocumentNumber? Signed32 - Document number field
- Series? Signed32 - Series field
- PostingDate? string - Posting date field
- DocDate? string - Document date field
- 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 - Origin reference number field
- OriginReferenceEntry? Signed32 - Origin reference entry field
- OriginDocumentDate? string - Origin document date field
- TransactionNumber? Signed32 - Transaction number field
- Remarks? string - Remarks field
- ObjectType? string - Object type field
- SourceLocationCode? Signed32 - Source location code field
- SourceLocationName? string - Source location name field
- SourceLocationGSTIN? string - Source location GSTIN field
- TargetLocationCode? Signed32 - Target location code field
- TargetLocationName? string - Target location name field
- TargetLocationGSTIN? string - Target location GSTIN field
- ISDEntry? Signed32 - ISD entry field
- DataSource? string - Data source field
- UserSignature? Signed32 - User signature field
- LogInstance? Signed32 - Log instance field
- UserSignature2? Signed32 - User signature2 field
- CreateDate? string - Create date field
- UpdateDate? string - Update date field
- JournalMemo? string - Journal memo field
- HandWritten? string - Hand written field
- PeriodIndicator? string - Period indicator field
- BPLId? Signed32 - BPL ID field
- BPLName? string - BPL name field
- VATRegNum? string - VAT reg number field
- ISDCreditMemoLines? ISDCreditMemoLine[] - ISD credit memo lines field
sap.businessone.localization: ISDCreditMemoLine
The ISDCreditMemoLine complex type of the SAP Business One Service Layer
Fields
- DocumentEntry? Signed32 - Document entry field
- LineNumber? Signed32 - Line number field
- SourceDocumentType? ISDDocumentTypeEnum - OData EnumType 'ISDDocumentTypeEnum'. Serialised by the Service Layer as the member name
- SourceDocumentNumber? Signed32 - Source document number field
- SourceDocumentEntry? Signed32 - Source document entry field
- SourceGSTTaxType? ISDSTATypeEnum - OData EnumType 'ISDSTATypeEnum'. Serialised by the Service Layer as the member name
- SourceTaxAccount? string - Source tax account field
- TargetGSTTaxType? ISDSTATypeEnum - OData EnumType 'ISDSTATypeEnum'. Serialised by the Service Layer as the member name
- TargetTaxAccount? string - Target tax account field
- DistributeAmount? decimal - Distribute amount field
- SourceDocumentSubtype? string - Source document subtype field
- 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 - Document entry field
- documentNumber? Signed32 - Document number field
sap.businessone.localization: ISDCreditMemosCollectionResponse
A paged collection of ISDCreditMemos entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? ISDCreditMemo[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.localization: ISDDocument
The ISDDocument entity of the SAP Business One Service Layer
Fields
- DocumentEntry? Signed32 - Document entry field
- DocumentNumber? Signed32 - Document number field
- SourceLocationCode? Signed32 - Source location code field
- SourceLocationName? string - Source location name field
- Series? Signed32 - Series field
- PostingDate? string - Posting date field
- DocDate? string - Document date field
- 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 - Original reference number field
- OriginalReferenceEntry? Signed32 - Original reference entry field
- OriginalDocumentDate? string - Original document date field
- Remarks? string - Remarks field
- ObjectType? string - Object type field
- DataSource? string - Data source field
- UserSignature? Signed32 - User signature field
- LogInstance? Signed32 - Log instance field
- UserSignature2? Signed32 - User signature2 field
- CreateDate? string - Create date field
- UpdateDate? string - Update date field
- HandWritten? string - Hand written field
- PeriodIndicator? string - Period indicator field
- DistributePercent? decimal - Distribute percent field
- BPLId? Signed32 - BPL ID field
- BPLName? string - BPL name field
- VATRegNum? string - VAT reg number field
- SourceDocumentType? ISDDocumentTypeEnum - OData EnumType 'ISDDocumentTypeEnum'. Serialised by the Service Layer as the member name
- DocNumFrom? Signed32 - Document number from field
- DocNumTo? Signed32 - Document number to field
- DocDateFrom? string - Document date from field
- DocDateTo? string - Document date to field
- DistributableLines? DistributableLine[] - Distributable lines field
- DistributedLines? DistributedLine[] - Distributed lines field
- AutoDistributionRuleLines? AutoDistributionRuleLine[] - Auto distribution rule lines field
sap.businessone.localization: ISDDocumentsCollectionResponse
A paged collection of ISDDocuments entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? ISDDocument[] - Value field
- odataNextLink? string - Odata next link field
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 - I SD params field
sap.businessone.localization: ISDInvoice
The ISDInvoice entity of the SAP Business One Service Layer
Fields
- DocumentEntry? Signed32 - Document entry field
- DocumentNumber? Signed32 - Document number field
- Series? Signed32 - Series field
- PostingDate? string - Posting date field
- DocDate? string - Document date field
- 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 - Origin reference number field
- OriginReferenceEntry? Signed32 - Origin reference entry field
- OriginDocumentDate? string - Origin document date field
- TransactionNumber? Signed32 - Transaction number field
- Remarks? string - Remarks field
- ObjectType? string - Object type field
- SourceLocationCode? Signed32 - Source location code field
- SourceLocationName? string - Source location name field
- SourceLocationGSTIN? string - Source location GSTIN field
- TargetLocationCode? Signed32 - Target location code field
- TargetLocationName? string - Target location name field
- TargetLocationGSTIN? string - Target location GSTIN field
- ISDEntry? Signed32 - ISD entry field
- DataSource? string - Data source field
- UserSignature? Signed32 - User signature field
- LogInstance? Signed32 - Log instance field
- UserSignature2? Signed32 - User signature2 field
- CreateDate? string - Create date field
- UpdateDate? string - Update date field
- JournalMemo? string - Journal memo field
- HandWritten? string - Hand written field
- PeriodIndicator? string - Period indicator field
- BPLId? Signed32 - BPL ID field
- BPLName? string - BPL name field
- VATRegNum? string - VAT reg number field
- ISDInvoiceLines? ISDInvoiceLine[] - ISD invoice lines field
sap.businessone.localization: ISDInvoiceLine
The ISDInvoiceLine complex type of the SAP Business One Service Layer
Fields
- DocumentEntry? Signed32 - Document entry field
- LineNumber? Signed32 - Line number field
- SourceDocumentType? ISDDocumentTypeEnum - OData EnumType 'ISDDocumentTypeEnum'. Serialised by the Service Layer as the member name
- SourceDocumentNumber? Signed32 - Source document number field
- SourceDocumentEntry? Signed32 - Source document entry field
- SourceGSTTaxType? ISDSTATypeEnum - OData EnumType 'ISDSTATypeEnum'. Serialised by the Service Layer as the member name
- SourceTaxAccount? string - Source tax account field
- TargetGSTTaxType? ISDSTATypeEnum - OData EnumType 'ISDSTATypeEnum'. Serialised by the Service Layer as the member name
- TargetTaxAccount? string - Target tax account field
- DistributeAmount? decimal - Distribute amount field
- SourceDocumentSubtype? string - Source document subtype field
- 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 - Document entry field
- documentNumber? Signed32 - Document number field
sap.businessone.localization: ISDInvoicesCollectionResponse
A paged collection of ISDInvoices entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? ISDInvoice[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.localization: ISDParams
The ISDParams complex type of the SAP Business One Service Layer
Fields
- documentEntry? Signed32 - Document entry field
- documentNumber? Signed32 - Document number field
sap.businessone.localization: ISDRecipientCreditMemo
The ISDRecipientCreditMemo entity of the SAP Business One Service Layer
Fields
- DocumentEntry? Signed32 - Document entry field
- DocumentNumber? Signed32 - Document number field
- Series? Signed32 - Series field
- PostingDate? string - Posting date field
- DocDate? string - Document date field
- DocumentStatus? ISDDocStatusEnum - OData EnumType 'ISDDocStatusEnum'. Serialised by the Service Layer as the member name
- ReferenceNumber? string - Reference number field
- ReferenceEntry? Signed32 - Reference entry field
- ReferenceDocumentDate? string - Reference document date field
- TransactionNumber? Signed32 - Transaction number field
- Remarks? string - Remarks field
- ObjectType? string - Object type field
- SourceLocationCode? Signed32 - Source location code field
- SourceLocationName? string - Source location name field
- SourceLocationGSTIN? string - Source location GSTIN field
- TargetLocationCode? Signed32 - Target location code field
- TargetLocationName? string - Target location name field
- TargetLocationGSTIN? string - Target location GSTIN field
- DataSource? string - Data source field
- UserSignature? Signed32 - User signature field
- LogInstance? Signed32 - Log instance field
- UserSignature2? Signed32 - User signature2 field
- CreateDate? string - Create date field
- UpdateDate? string - Update date field
- JournalMemo? string - Journal memo field
- HandWritten? string - Hand written field
- PeriodIndicator? string - Period indicator field
- BPLId? Signed32 - BPL ID field
- BPLName? string - BPL name field
- VATRegNum? string - VAT reg number field
- ISDRecipientCreditMemoLines? ISDRecipientCreditMemoLine[] - ISD recipient credit memo lines field
sap.businessone.localization: ISDRecipientCreditMemoLine
The ISDRecipientCreditMemoLine complex type of the SAP Business One Service Layer
Fields
- DocumentEntry? Signed32 - Document entry field
- LineNumber? Signed32 - Line number field
- GSTTaxType? ISDSTATypeEnum - OData EnumType 'ISDSTATypeEnum'. Serialised by the Service Layer as the member name
- TaxAccount? string - Tax account field
- ReceivedAmount? decimal - Received amount field
- EligibleAmount? decimal - Eligible amount field
sap.businessone.localization: ISDRecipientCreditMemoParams
The ISDRecipientCreditMemoParams complex type of the SAP Business One Service Layer
Fields
- documentEntry? Signed32 - Document entry field
- documentNumber? Signed32 - Document number field
sap.businessone.localization: ISDRecipientCreditMemosCollectionResponse
A paged collection of ISDRecipientCreditMemos entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? ISDRecipientCreditMemo[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.localization: ISDRecipientInvoice
The ISDRecipientInvoice entity of the SAP Business One Service Layer
Fields
- DocumentEntry? Signed32 - Document entry field
- DocumentNumber? Signed32 - Document number field
- Series? Signed32 - Series field
- PostingDate? string - Posting date field
- DocDate? string - Document date field
- DocumentStatus? ISDDocStatusEnum - OData EnumType 'ISDDocStatusEnum'. Serialised by the Service Layer as the member name
- ReferenceNumber? string - Reference number field
- ReferenceEntry? Signed32 - Reference entry field
- ReferenceDocumentDate? string - Reference document date field
- TransactionNumber? Signed32 - Transaction number field
- Remarks? string - Remarks field
- ObjectType? string - Object type field
- SourceLocationCode? Signed32 - Source location code field
- SourceLocationName? string - Source location name field
- SourceLocationGSTIN? string - Source location GSTIN field
- TargetLocationCode? Signed32 - Target location code field
- TargetLocationName? string - Target location name field
- TargetLocationGSTIN? string - Target location GSTIN field
- DataSource? string - Data source field
- UserSignature? Signed32 - User signature field
- LogInstance? Signed32 - Log instance field
- UserSignature2? Signed32 - User signature2 field
- CreateDate? string - Create date field
- UpdateDate? string - Update date field
- JournalMemo? string - Journal memo field
- HandWritten? string - Hand written field
- PeriodIndicator? string - Period indicator field
- BPLId? Signed32 - BPL ID field
- BPLName? string - BPL name field
- VATRegNum? string - VAT reg number field
- ISDRecipientInvoiceLines? ISDRecipientInvoiceLine[] - ISD recipient invoice lines field
sap.businessone.localization: ISDRecipientInvoiceLine
The ISDRecipientInvoiceLine complex type of the SAP Business One Service Layer
Fields
- DocumentEntry? Signed32 - Document entry field
- LineNumber? Signed32 - Line number field
- GSTTaxType? ISDSTATypeEnum - OData EnumType 'ISDSTATypeEnum'. Serialised by the Service Layer as the member name
- TaxAccount? string - Tax account field
- ReceivedAmount? decimal - Received amount field
- EligibleAmount? decimal - Eligible amount field
sap.businessone.localization: ISDRecipientInvoiceParams
The ISDRecipientInvoiceParams complex type of the SAP Business One Service Layer
Fields
- documentEntry? Signed32 - Document entry field
- documentNumber? Signed32 - Document number field
sap.businessone.localization: ISDRecipientInvoicesCollectionResponse
A paged collection of ISDRecipientInvoices entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? ISDRecipientInvoice[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.localization: LegalData
The LegalData entity of the SAP Business One Service Layer
Fields
- printerDllVersion? string - Printer dll version field
- fiscalNumber? string - Fiscal number field
- printerFirmwareVersion? string - Printer firmware version field
- legalDataDetailCollection? LegalDataDetail[] - Legal data detail collection field
- docEntry? Signed32 - Document entry field
- documentNumber? string - Document number field
- printerType? string - Printer type field
- sourceObjectType? BoAPARDocumentTypes - Source object type field
- sourceObjectEntry? Signed32 - Source object entry field
- printerBrand? string - Printer brand field
- dateOfPrinting? string - Date of printing field
- printerModel? string - Printer model field
- fiscalSeries? string - Fiscal series field
- timeOfPrinting? string - Time of printing field
- fiscalUserID? Signed32 - Fiscal user ID field
sap.businessone.localization: LegalDataCollectionResponse
A paged collection of LegalData entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? LegalData[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.localization: LegalDataDetail
The LegalDataDetail complex type of the SAP Business One Service Layer
Fields
- taxCode? string - Tax code field
- lineSequence? Signed32 - Line sequence field
- amount? decimal - Amount field
- taxRate? decimal - Tax rate field
- docEntry? Signed32 - Document entry field
- lineType? LegalDataLineTypeEnum - Line type field
sap.businessone.localization: LineExpenseTaxJurisdiction
The LineExpenseTaxJurisdiction complex type of the SAP Business One Service Layer
Fields
- JurisdictionCode? string - Jurisdiction code field
- JurisdictionType? Signed32 - Jurisdiction type field
- TaxAmount? decimal - Tax amount field
- TaxAmountSC? decimal - Tax amount system currency field
- TaxAmountFC? decimal - Tax amount foreign currency field
- TaxRate? decimal - Tax rate field
- DocEntry? Signed32 - Document entry field
- LineNumber? Signed32 - Line number field
- RowSequence? Signed32 - Row sequence field
- ExternalCalcTaxRate? decimal - External calc tax rate field
- ExternalCalcTaxAmount? decimal - External calc tax amount field
- ExternalCalcTaxAmountFC? decimal - External calc tax amount foreign currency field
- ExternalCalcTaxAmountSC? decimal - External calc tax amount system currency field
sap.businessone.localization: LineFreightEBooksDetail
The LineFreightEBooksDetail complex type of the SAP Business One Service Layer
Fields
- IncomeClassificationType? Signed32 - Income classification type field
- IncomeClassificationCategory? Signed32 - Income classification category field
- ExpensesClassificationType? Signed32 - Expenses classification type field
- ExpensesClassificationCategory? Signed32 - Expenses classification category field
- NetValueLC? decimal - Net value local currency field
- NetValueFC? decimal - Net value foreign currency field
- NetValueSC? decimal - Net value system currency field
- VatCategory? Signed32 - VAT category field
- WithheldPercentCategory? Signed32 - Withheld percent category field
- WithheldAmountLC? decimal - Withheld amount local currency field
- WithheldAmountFC? decimal - Withheld amount foreign currency field
- WithheldAmountSC? decimal - Withheld amount system currency field
- VatClassificationType? Signed32 - VAT classification type field
- VatClassificationCategory? Signed32 - VAT classification category field
- VATExemptionCause? Signed32 - VAT exemption cause field
sap.businessone.localization: LineTaxJurisdiction
The LineTaxJurisdiction complex type of the SAP Business One Service Layer
Fields
- JurisdictionCode? string - Jurisdiction code field
- JurisdictionType? Signed32 - Jurisdiction type field
- TaxAmount? decimal - Tax amount field
- TaxAmountSC? decimal - Tax amount system currency field
- TaxAmountFC? decimal - Tax amount foreign currency field
- TaxRate? decimal - Tax rate field
- DocEntry? Signed32 - Document entry field
- LineNumber? Signed32 - Line number field
- RowSequence? Signed32 - Row sequence field
- ExternalCalcTaxRate? decimal - External calc tax rate field
- ExternalCalcTaxAmount? decimal - External calc tax amount field
- ExternalCalcTaxAmountFC? decimal - External calc tax amount foreign currency field
- ExternalCalcTaxAmountSC? decimal - External calc tax amount system currency field
- BaseSum? decimal - Base sum field
- TaxInPrice? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- NonDeductiblePercent? decimal - Non deductible percent field
- 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 - Era name field
- StartDate? string - Start date field
- Code? string - Code field
sap.businessone.localization: LocalEraCollectionResponse
A paged collection of LocalEra entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? LocalEra[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.localization: MaterialGroup
The MaterialGroup entity of the SAP Business One Service Layer
Fields
- description? string - Description field
- absEntry? Signed32 - Abs entry field
- materialGroupCode? string - Material group code field
sap.businessone.localization: MaterialGroupParams
The MaterialGroupParams complex type of the SAP Business One Service Layer
Fields
- absEntry? Signed32 - Abs entry field
- materialGroupCode? string - Material group code field
sap.businessone.localization: MaterialGroupsCollectionResponse
A paged collection of MaterialGroups entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? MaterialGroup[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.localization: NCMCodeSetup
The NCMCodeSetup entity of the SAP Business One Service Layer
Fields
- nCMCode? string - N CM code field
- description? string - Description field
- groupCode? string - Group code field
- absEntry? Signed32 - Abs entry field
- dNFCodeSetup? DNFCodeSetup[] - D NF code setup field
sap.businessone.localization: NCMCodeSetupParams
The NCMCodeSetupParams complex type of the SAP Business One Service Layer
Fields
- nCMCode? string - N CM code field
- description? string - Description field
- absEntry? Signed32 - Abs entry field
sap.businessone.localization: NCMCodesSetupCollectionResponse
A paged collection of NCMCodesSetup entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? NCMCodeSetup[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.localization: NFModel
The NFModel entity of the SAP Business One Service Layer
Fields
- correctionInvoice? Document[] - Correction invoice field
- orders? Document[] - Orders field
- purchaseRequests? Document[] - Purchase requests field
- inventoryGenExits? Document[] - Inventory gen exits field
- purchaseQuotations? Document[] - Purchase quotations field
- purchaseDeliveryNotes? Document[] - Purchase delivery notes field
- invoices? Document[] - Invoices field
- purchaseDownPayments? Document[] - Purchase down payments field
- absEntry? string - Abs entry field
- creditNotes? Document[] - Credit notes field
- purchaseInvoices? Document[] - Purchase invoices field
- 'returns? Document[] - Returns field
- nFMDescription? string - N FM description field
- nFMCode? string - N FM code field
- correctionPurchaseInvoice? Document[] - Correction purchase invoice field
- quotations? Document[] - Quotations field
- purchaseCreditNotes? Document[] - Purchase credit notes field
- goodsReturnRequest? Document[] - Goods return request field
- returnRequest? Document[] - Return request field
- inventoryGenEntries? Document[] - Inventory gen entries field
- purchaseReturns? Document[] - Purchase returns field
- purchaseOrders? Document[] - Purchase orders field
- downPayments? Document[] - Down payments field
- correctionInvoiceReversal? Document[] - Correction invoice reversal field
- fiscalPrinter? FiscalPrinter[] - Fiscal printer field
- deliveryNotes? Document[] - Delivery notes field
- selfInvoices? Document[] - Self invoices field
- drafts? Document[] - Drafts field
- selfCreditMemos? Document[] - Self credit memos field
- correctionPurchaseInvoiceReversal? Document[] - Correction purchase invoice reversal field
- nFMName? string - N FM name field
sap.businessone.localization: NFModelParams
The NFModelParams complex type of the SAP Business One Service Layer
Fields
- nFMDescription? string - N FM description field
- nFMCode? string - N FM code field
- nFMName? string - N FM name field
- absEntry? string - Abs entry field
sap.businessone.localization: NFModelsCollectionResponse
A paged collection of NFModels entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? NFModel[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.localization: NFTaxCategoriesCollectionResponse
A paged collection of NFTaxCategories entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? NFTaxCategory[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.localization: NFTaxCategory
The NFTaxCategory entity of the SAP Business One Service Layer
Fields
- locked? BoYesNoEnum - Locked field
- notaFiscalCST? NotaFiscalCST[] - Nota fiscal CST field
- gPCId? Signed32 - G PC ID field
- code? string - Code field
- absId? Signed32 - Abs ID field
- cESTrel? BoYesNoEnum - C ES trel field
sap.businessone.localization: NFTaxCategoryParams
The NFTaxCategoryParams complex type of the SAP Business One Service Layer
Fields
- code? string - Code field
- absId? Signed32 - Abs ID field
sap.businessone.localization: NotaFiscalCFOP
The NotaFiscalCFOP entity of the SAP Business One Service Layer
Fields
- ID? Signed32 - ID field
- Description? string - Description field
- Code? string - Code field
- Application? string - Application field
- NotaFiscalUsage? NotaFiscalUsage[] - Nota fiscal usage field
sap.businessone.localization: NotaFiscalCFOPCollectionResponse
A paged collection of NotaFiscalCFOP entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? NotaFiscalCFOP[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.localization: NotaFiscalCST
The NotaFiscalCST entity of the SAP Business One Service Layer
Fields
- ID? Signed32 - ID field
- Code? string - Code field
- Situation? string - Situation field
- TaxCategory? Signed32 - Tax category field
- CSTCodeOutgoing? string - CST code outgoing field
- DescriptionOutgoing? string - Description outgoing field
- 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 - Odata metadata field
- value? NotaFiscalCST[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.localization: NotaFiscalUsage
The NotaFiscalUsage entity of the SAP Business One Service Layer
Fields
- ID? Signed32 - ID field
- Usage? string - Usage field
- IncomingInStateCFOPCode? string - Incoming in state CFOP code field
- IncomingOutStateCFOPCode? string - Incoming out state CFOP code field
- IncomingImportCFOPCode? string - Incoming import CFOP code field
- OutgoingInStateCFOPCode? string - Outgoing in state CFOP code field
- OutgoingOutStateCFOPCode? string - Outgoing out state CFOP code field
- OutgoingExportCFOPCode? string - Outgoing export CFOP code field
- Description? string - Description field
- 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 - Odata metadata field
- value? NotaFiscalUsage[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.localization: OccurenceCode
The OccurenceCode entity of the SAP Business One Service Layer
Fields
- requestedBoeStatus? BoBoeStatus - Requested boe status field
- isMovement? BoYesNoEnum - Is movement field
- description? string - Description field
- note? string - Note field
- absEntry? Signed32 - Abs entry field
- code? string - Code field
sap.businessone.localization: OccurenceCodeParams
The OccurenceCodeParams complex type of the SAP Business One Service Layer
Fields
- requestedBoeStatus? BoBoeStatus - Requested boe status field
- isMovement? BoYesNoEnum - Is movement field
- description? string - Description field
- note? string - Note field
- absEntry? Signed32 - Abs entry field
- code? string - Code field
sap.businessone.localization: OccurrenceCodesCollectionResponse
A paged collection of OccurrenceCodes entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? OccurenceCode[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.localization: PWPExtendedProperties
The PWPExtendedProperties complex type of the SAP Business One Service Layer
Fields
- isEncrypted? BoYesNoEnum - Is encrypted field
sap.businessone.localization: RelatedDocument
The RelatedDocument complex type of the SAP Business One Service Layer
Fields
- absEnry? Signed32 - Abs enry field
- absEntry? Signed32 - Abs entry field
- uUID? string - U UID field
- docTye? RelatedDocumentTypeEnum - Document tye field
- docType? RelatedDocumentTypeEnum - Document type field
sap.businessone.localization: RetornoCode
The RetornoCode entity of the SAP Business One Service Layer
Fields
- movementCode? Signed32 - Movement code field
- description? string - Description field
- occurenceCode? Signed32 - Occurence code field
- boeStatus? BoBoeStatus - Boe status field
- color? Signed32 - Color field
- bankCode? string - Bank code field
- absEntry? Signed32 - Abs entry field
- fileFormat? string - File format field
sap.businessone.localization: RetornoCodeParams
The RetornoCodeParams complex type of the SAP Business One Service Layer
Fields
- movementCode? Signed32 - Movement code field
- description? string - Description field
- occurenceCode? Signed32 - Occurence code field
- boeStatus? BoBoeStatus - Boe status field
- color? Signed32 - Color field
- bankCode? string - Bank code field
- absEntry? Signed32 - Abs entry field
- fileFormat? string - File format field
sap.businessone.localization: RetornoCodesCollectionResponse
A paged collection of RetornoCodes entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? RetornoCode[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.localization: SelfCreditMemosCollectionResponse
A paged collection of SelfCreditMemos entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? Document[] - Value field
- odataNextLink? string - Odata next link field
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 - Document field
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 - Document field
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 - Document close params field
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 - Document field
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 - Document field
sap.businessone.localization: SelfInvoicesCollectionResponse
A paged collection of SelfInvoices entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? Document[] - Value field
- odataNextLink? string - Odata next link field
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 - Document field
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 - Document field
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 - Document close params field
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 - Document field
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 - Document field
sap.businessone.localization: SerialNumber
The SerialNumber complex type of the SAP Business One Service Layer
Fields
- ManufacturerSerialNumber? string - Manufacturer serial number field
- InternalSerialNumber? string - Internal serial number field
- ExpiryDate? string - Expiry date field
- ManufactureDate? string - Manufacture date field
- ReceptionDate? string - Reception date field
- WarrantyStart? string - Warranty start field
- WarrantyEnd? string - Warranty end field
- Location? string - Location field
- Notes? string - Notes field
- BatchID? string - Batch ID field
- SystemSerialNumber? Signed32 - System serial number field
- BaseLineNumber? Signed32 - Base line number field
- Quantity? decimal - Quantity field
- TrackingNote? Signed32 - Tracking note field
- TrackingNoteLine? Signed32 - Tracking note line field
- ItemCode? string - Item code field
sap.businessone.localization: SeriesLine
The SeriesLine complex type of the SAP Business One Service Layer
Fields
- series? Signed32 - Series field
- nextNum? Signed32 - Next number field
- firstNum? Signed32 - First number field
- lastNum? Signed32 - Last number field
- prefix? string - Prefix field
sap.businessone.localization: ServiceGroup
The ServiceGroup entity of the SAP Business One Service Layer
Fields
- description? string - Description field
- serviceGroupCode? string - Service group code field
- absEntry? Signed32 - Abs entry field
sap.businessone.localization: ServiceGroupParams
The ServiceGroupParams complex type of the SAP Business One Service Layer
Fields
- serviceGroupCode? string - Service group code field
- absEntry? Signed32 - Abs entry field
sap.businessone.localization: ServiceGroupsCollectionResponse
A paged collection of ServiceGroups entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? ServiceGroup[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.localization: ServiceTaxPostingParams
The ServiceTaxPostingParams complex type of the SAP Business One Service Layer
Fields
- docEntry? Signed32 - Document entry field
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 - Service tax posting params field
sap.businessone.localization: TaxExtension
The TaxExtension complex type of the SAP Business One Service Layer
Fields
- buildingS? string - Building s field
- taxId3? string - Tax id3 field
- taxId2? string - Tax id2 field
- taxId5? string - Tax id5 field
- taxId4? string - Tax id4 field
- packQuantity? Signed32 - Pack quantity field
- taxId1? string - Tax id1 field
- taxId0? string - Tax id0 field
- vehicle? string - Vehicle field
- portCode? string - Port code field
- taxId7? string - Tax id7 field
- buildingB? string - Building b field
- taxId6? string - Tax id6 field
- taxId9? string - Tax id9 field
- taxId8? string - Tax id8 field
- carrier? string - Carrier field
- shipUnitNo? Signed32 - Ship unit number field
- streetS? string - Street s field
- differentialOfTaxRate? Signed32 - Differential of tax rate field
- zipCodeS? string - Zip code s field
- countryB? string - Country b field
- grossWeight? decimal - Gross weight field
- globalLocationNumberB? string - Global location number b field
- packDescription? string - Pack description field
- mainUsage? Signed32 - Main usage field
- docEntry? Signed32 - Document entry field
- brand? string - Brand field
- stateS? string - State s field
- countryS? string - Country s field
- blockB? string - Block b field
- state? string - State field
- globalLocationNumberS? string - Global location number s field
- importOrExportType? ImportOrExportTypeEnum - Import or export type field
- vehicleState? string - Vehicle state field
- blockS? string - Block s field
- stateB? string - State b field
- cityS? string - City s field
- county? string - County field
- boEValue? decimal - Bo e value field
- nFRef? string - N f reference field
- countyB? string - County b field
- billOfEntryNo? string - Bill of entry number field
- countyS? string - County s field
- taxId14? string - Tax id14 field
- taxId13? string - Tax id13 field
- claimRefund? BoYesNoEnum - Claim refund field
- taxId12? string - Tax id12 field
- netWeight? decimal - Net weight field
- originalBillOfEntryDate? string - Original bill of entry date field
- billOfEntryDate? string - Bill of entry date field
- zipCodeB? string - Zip code b field
- importOrExport? BoYesNoEnum - Import or export field
- originalBillOfEntryNo? string - Original bill of entry number field
- streetB? string - Street b field
- cityB? string - City b field
- isIGSTAccount? BoYesNoEnum - Is IGST account field
- incoterms? string - Incoterms field
sap.businessone.localization: TransportationDocumentCollectionResponse
A paged collection of TransportationDocument entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? TransportationDocumentData[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.localization: TransportationDocumentData
The TransportationDocumentData entity of the SAP Business One Service Layer
Fields
- nextNumber? Signed32 - Next number field
- cOTCode? string - C OT code field
- transportationNumber? string - Transportation number field
- transpDocNumber? Signed32 - Transp document number field
- vehicleID? string - Vehicle ID field
- weightUnit? Signed32 - Weight unit field
- trailerID? string - Trailer ID field
- issueGate? Signed32 - Issue gate field
- attachmentEntry? Signed32 - Attachment entry field
- elDocExportFormat? Signed32 - El document export format field
- warehouseCode? string - Warehouse code field
- weight? decimal - Weight field
- elDocGenType? ElectronicDocGenTypeEnum - El document gen type field
- expirationDate? string - Expiration date field
- transportationDocumentLineDataCollection? TransportationDocumentLineData[] - Transportation document line data collection field
- transportedTotalLC? decimal - Transported total local currency field
- electronicProtocols? ElectronicProtocol[] - Electronic protocols field
- carrierCode? string - Carrier code field
- canceled? BoYesNoEnum - Canceled field
- postDate? string - Post date field
sap.businessone.localization: TransportationDocumentLineData
The TransportationDocumentLineData complex type of the SAP Business One Service Layer
Fields
- itemCode? string - Item code field
- lineID? Signed32 - Line ID field
- transportedQuantity? decimal - Transported quantity field
- docNumber? Signed32 - Document number field
- transpDocNumber? Signed32 - Transp document number field
- docOrderNum? Signed32 - Document order number field
- docLineNumber? Signed32 - Document line number field
- docType? DocumentObjectTypeEnum - Document type field
sap.businessone.localization: WithholdingTaxData
The WithholdingTaxData complex type of the SAP Business One Service Layer
Fields
- WTCode? string - Withholding tax code field
- WTAmountSys? decimal - Withholding tax amount sys field
- WTAmountFC? decimal - Withholding tax amount foreign currency field
- WTAmount? decimal - Withholding tax amount field
- WithholdingType? string - Withholding type field
- TaxableAmountinSys? decimal - Taxable amountin sys field
- TaxableAmountFC? decimal - Taxable amount foreign currency field
- TaxableAmount? decimal - Taxable amount field
- RoundingType? string - Rounding type field
- Rate? decimal - Rate field
- Criteria? string - Criteria field
- Category? string - Category field
- BaseType? string - Base type field
- AppliedWTAmountSys? decimal - Applied withholding tax amount sys field
- AppliedWTAmountFC? decimal - Applied withholding tax amount foreign currency field
- AppliedWTAmount? decimal - Applied withholding tax amount field
- GLAccount? string - General ledger account field
- LineNum? Signed32 - Line number field
- BaseDocEntry? Signed32 - Base document entry field
- BaseDocLine? Signed32 - Base document line field
- BaseDocType? Signed32 - Base document type field
- BaseDocumentReference? Signed32 - Base document reference field
- Status? BoStatus - OData EnumType 'BoStatus'. Serialised by the Service Layer as the member name
- TargetAbsEntry? Signed32 - Target abs entry field
- TargetDocumentType? Signed32 - Target document type field
sap.businessone.localization: WithholdingTaxDataWTX
The WithholdingTaxDataWTX complex type of the SAP Business One Service Layer
Fields
- WTAmountSys? decimal - Withholding tax amount sys field
- WTAmountFC? decimal - Withholding tax amount foreign currency field
- WTAmount? decimal - Withholding tax amount field
- WithholdingType? string - Withholding type field
- TaxableAmountinSys? decimal - Taxable amountin sys field
- TaxableAmountFC? decimal - Taxable amount foreign currency field
- TaxableAmount? decimal - Taxable amount field
- Rate? decimal - Rate field
- Category? string - Category field
- BaseType? string - Base type field
- AppliedWTAmountSys? decimal - Applied withholding tax amount sys field
- AppliedWTAmountFC? decimal - Applied withholding tax amount foreign currency field
- AppliedWTAmount? decimal - Applied withholding tax amount field
- GLAccount? string - General ledger account field
- LineNum? Signed32 - Line number field
- BaseDocEntry? Signed32 - Base document entry field
- BaseDocLine? Signed32 - Base document line field
- BaseDocType? string - Base document type field
- WTAbsId? string - Withholding tax abs ID field
- ExemptRate? decimal - Exempt rate field
- BaseNetAmountSys? decimal - Base net amount sys field
- BaseNetAmountFC? decimal - Base net amount foreign currency field
- BaseNetAmount? decimal - Base net amount field
- BaseVatmountSys? decimal - Base vatmount sys field
- BaseVatmountFC? decimal - Base vatmount foreign currency field
- BaseVatmount? decimal - Base vatmount field
- AccumBaseAmountSys? decimal - Accum base amount sys field
- AccumBaseAmountFC? decimal - Accum base amount foreign currency field
- AccumBaseAmount? decimal - Accum base amount field
- AccumWTaxAmountSys? decimal - Accum w tax amount sys field
- AccumWTaxAmountFC? decimal - Accum w tax amount foreign currency field
- AccumWTaxAmount? decimal - Accum w tax amount field
sap.businessone.localization: WithholdingTaxLine
The WithholdingTaxLine complex type of the SAP Business One Service Layer
Fields
- WTCode? string - Withholding tax code field
- WTAmountSys? decimal - Withholding tax amount sys field
- WTAmountFC? decimal - Withholding tax amount foreign currency field
- WTAmount? decimal - Withholding tax amount field
- WithholdingType? string - Withholding type field
- TaxableAmountinSys? decimal - Taxable amountin sys field
- TaxableAmountFC? decimal - Taxable amount foreign currency field
- TaxableAmount? decimal - Taxable amount field
- RoundingType? string - Rounding type field
- Rate? decimal - Rate field
- Criteria? string - Criteria field
- Category? string - Category field
- BaseType? string - Base type field
- AppliedWTAmountSys? decimal - Applied withholding tax amount sys field
- AppliedWTAmountFC? decimal - Applied withholding tax amount foreign currency field
- AppliedWTAmount? decimal - Applied withholding tax amount field
- GLAccount? string - General ledger account field
- LineNum? Signed32 - Line number field
- BaseDocEntry? Signed32 - Base document entry field
- BaseDocLine? Signed32 - Base document line field
- BaseDocType? Signed32 - Base document type field
- BaseDocumentReference? Signed32 - Base document reference field
- Status? BoStatus - OData EnumType 'BoStatus'. Serialised by the Service Layer as the member name
- TargetAbsEntry? Signed32 - Target abs entry field
- TargetDocumentType? Signed32 - Target document type field
- CSTCodeIncoming? string - CST code incoming field
- CSTCodeOutgoing? string - CST code outgoing field
- Doc1LineNum? Signed32 - Doc1 line number field
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: 6 days ago
Version: 1.0.1
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