sap.businessone.sales
Module sap.businessone.sales
API
Definitions
ballerinax/sap.businessone.sales Ballerina library
Overview
SAP Business One is an enterprise resource planning (ERP) solution designed for small and midsize businesses by SAP SE. Its Service Layer exposes the Business One business objects through an OData web service interface.
The SAP Business One Sales (A/R) connector provides APIs for the sales (A/R) documents of SAP Business One: quotations, orders, deliveries, returns, invoices, credit memos, and dunning, exposed through the SAP Business One Service Layer (OData).
Key Features
- Create, read, update, close, and cancel sales documents
- Work with document lines, expenses, and serial/batch allocations
- Manage blanket agreements and sales tax invoices
- Drive document flows such as order-to-invoice
Setup guide
The connector requires an SAP Business One installation with the Service Layer component enabled (available for
SAP Business One, version for SAP HANA, and SAP Business One on Microsoft SQL Server 9.3 PL10+). The Service Layer
endpoint is https://<host>:50000/b1s/v1 by default. A Business One user with a license and the relevant object
authorizations is needed; sessions are opened against a specific company database (schema).
Quickstart
To use the sap.businessone.sales connector in your Ballerina application, modify the .bal file as follows:
Step 1: Import the module
import ballerinax/sap.businessone.sales;
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 = ?; sales:Client b1Client = check new ( {companyDb, username, password}, serviceUrl = serviceUrl );
Step 3: Invoke the connector operation
sales:Orders_CollectionResponse response = check b1Client->ordersList();
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.sales: 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
listBlanketAgreements
function listBlanketAgreements(ListBlanketAgreementsHeaders headers, *ListBlanketAgreementsQueries queries) returns BlanketAgreementsCollectionResponse|errorQuery the BlanketAgreements collection
Parameters
- headers ListBlanketAgreementsHeaders (default {}) - Headers to be sent with the request
- queries *ListBlanketAgreementsQueries - Queries to be sent with the request
Return Type
- BlanketAgreementsCollectionResponse|error - A page of entities
createBlanketAgreements
function createBlanketAgreements(BlanketAgreement payload, map<string|string[]> headers) returns BlanketAgreement|errorCreate a new BlanketAgreement
Parameters
- payload BlanketAgreement - Request payload
Return Type
- BlanketAgreement|error - The created entity
getBlanketAgreements
function getBlanketAgreements(Signed32 agreementNo, map<string|string[]> headers, *GetBlanketAgreementsQueries queries) returns BlanketAgreement|errorGet a single BlanketAgreement by key
Parameters
- agreementNo Signed32 - Key property 'AgreementNo' (Edm.Int32)
- queries *GetBlanketAgreementsQueries - Queries to be sent with the request
Return Type
- BlanketAgreement|error - The requested entity
deleteBlanketAgreements
Delete a BlanketAgreement
Parameters
- agreementNo Signed32 - Key property 'AgreementNo' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateBlanketAgreements
function updateBlanketAgreements(Signed32 agreementNo, BlanketAgreement payload, map<string|string[]> headers) returns error?Partially update a BlanketAgreement (PATCH/MERGE semantics)
Parameters
- agreementNo Signed32 - Key property 'AgreementNo' (Edm.Int32)
- payload BlanketAgreement - Request payload
Return Type
- error? - Updated. No content returned
blanketAgreementsCancelBlanketAgreement
function blanketAgreementsCancelBlanketAgreement(Signed32 agreementNo, map<string|string[]> headers) returns error?Bound action 'CancelBlanketAgreement' on BlanketAgreements (binding type BlanketAgreement)
Parameters
- agreementNo Signed32 - Key property 'AgreementNo' (Edm.Int32)
Return Type
- error? - Success. No content returned
blanketAgreementsGetRelatedDocuments
function blanketAgreementsGetRelatedDocuments(Signed32 agreementNo, map<string|string[]> headers) returns inline_response_200|errorBound action 'GetRelatedDocuments' on BlanketAgreements (binding type BlanketAgreement)
Parameters
- agreementNo Signed32 - Key property 'AgreementNo' (Edm.Int32)
Return Type
- inline_response_200|error - Function result
blanketAgreementsServiceGetBlanketAgreementList
function blanketAgreementsServiceGetBlanketAgreementList(map<string|string[]> headers) returns inline_response_200_1|errorGet blanket agreement list
Return Type
- inline_response_200_1|error - Function result
listCommissionGroups
function listCommissionGroups(ListCommissionGroupsHeaders headers, *ListCommissionGroupsQueries queries) returns CommissionGroupsCollectionResponse|errorQuery the CommissionGroups collection
Parameters
- headers ListCommissionGroupsHeaders (default {}) - Headers to be sent with the request
- queries *ListCommissionGroupsQueries - Queries to be sent with the request
Return Type
- CommissionGroupsCollectionResponse|error - A page of entities
createCommissionGroups
function createCommissionGroups(CommissionGroup payload, map<string|string[]> headers) returns CommissionGroup|errorCreate a new CommissionGroup
Parameters
- payload CommissionGroup - Request payload
Return Type
- CommissionGroup|error - The created entity
getCommissionGroups
function getCommissionGroups(Signed32 commissionGroupCode, map<string|string[]> headers, *GetCommissionGroupsQueries queries) returns CommissionGroup|errorGet a single CommissionGroup by key
Parameters
- commissionGroupCode Signed32 - Key property 'CommissionGroupCode' (Edm.Int32)
- queries *GetCommissionGroupsQueries - Queries to be sent with the request
Return Type
- CommissionGroup|error - The requested entity
deleteCommissionGroups
function deleteCommissionGroups(Signed32 commissionGroupCode, map<string|string[]> headers) returns error?Delete a CommissionGroup
Parameters
- commissionGroupCode Signed32 - Key property 'CommissionGroupCode' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateCommissionGroups
function updateCommissionGroups(Signed32 commissionGroupCode, CommissionGroup payload, map<string|string[]> headers) returns error?Partially update a CommissionGroup (PATCH/MERGE semantics)
Parameters
- commissionGroupCode Signed32 - Key property 'CommissionGroupCode' (Edm.Int32)
- payload CommissionGroup - Request payload
Return Type
- error? - Updated. No content returned
listCorrectionInvoice
function listCorrectionInvoice(ListCorrectionInvoiceHeaders headers, *ListCorrectionInvoiceQueries queries) returns CorrectionInvoiceCollectionResponse|errorQuery the CorrectionInvoice collection
Parameters
- headers ListCorrectionInvoiceHeaders (default {}) - Headers to be sent with the request
- queries *ListCorrectionInvoiceQueries - Queries to be sent with the request
Return Type
- CorrectionInvoiceCollectionResponse|error - A page of entities
createCorrectionInvoice
function createCorrectionInvoice(Document payload, map<string|string[]> headers) returns Document|errorCreate a new Document
Parameters
- payload Document - Request payload
getCorrectionInvoice
function getCorrectionInvoice(Signed32 docEntry, map<string|string[]> headers, *GetCorrectionInvoiceQueries queries) returns Document|errorGet a single Document by key
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
- queries *GetCorrectionInvoiceQueries - Queries to be sent with the request
deleteCorrectionInvoice
Delete a Document
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateCorrectionInvoice
function updateCorrectionInvoice(Signed32 docEntry, Document payload, map<string|string[]> headers) returns error?Partially update a Document (PATCH/MERGE semantics)
Return Type
- error? - Updated. No content returned
correctionInvoiceCancel
Bound action 'Cancel' on CorrectionInvoice (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Success. No content returned
correctionInvoiceClose
Bound action 'Close' on CorrectionInvoice (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Success. No content returned
correctionInvoiceCreateCancellationDocument
function correctionInvoiceCreateCancellationDocument(Signed32 docEntry, map<string|string[]> headers) returns Document|errorBound action 'CreateCancellationDocument' on CorrectionInvoice (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
correctionInvoiceReopen
Bound action 'Reopen' on CorrectionInvoice (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Success. No content returned
listCorrectionInvoiceReversal
function listCorrectionInvoiceReversal(ListCorrectionInvoiceReversalHeaders headers, *ListCorrectionInvoiceReversalQueries queries) returns CorrectionInvoiceReversalCollectionResponse|errorQuery the CorrectionInvoiceReversal collection
Parameters
- headers ListCorrectionInvoiceReversalHeaders (default {}) - Headers to be sent with the request
- queries *ListCorrectionInvoiceReversalQueries - Queries to be sent with the request
Return Type
- CorrectionInvoiceReversalCollectionResponse|error - A page of entities
createCorrectionInvoiceReversal
function createCorrectionInvoiceReversal(Document payload, map<string|string[]> headers) returns Document|errorCreate a new Document
Parameters
- payload Document - Request payload
getCorrectionInvoiceReversal
function getCorrectionInvoiceReversal(Signed32 docEntry, map<string|string[]> headers, *GetCorrectionInvoiceReversalQueries queries) returns Document|errorGet a single Document by key
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
- queries *GetCorrectionInvoiceReversalQueries - Queries to be sent with the request
deleteCorrectionInvoiceReversal
function deleteCorrectionInvoiceReversal(Signed32 docEntry, map<string|string[]> headers) returns error?Delete a Document
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateCorrectionInvoiceReversal
function updateCorrectionInvoiceReversal(Signed32 docEntry, Document payload, map<string|string[]> headers) returns error?Partially update a Document (PATCH/MERGE semantics)
Return Type
- error? - Updated. No content returned
correctionInvoiceReversalCancel
function correctionInvoiceReversalCancel(Signed32 docEntry, map<string|string[]> headers) returns error?Bound action 'Cancel' on CorrectionInvoiceReversal (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Success. No content returned
correctionInvoiceReversalClose
function correctionInvoiceReversalClose(Signed32 docEntry, map<string|string[]> headers) returns error?Bound action 'Close' on CorrectionInvoiceReversal (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Success. No content returned
correctionInvoiceReversalCreateCancellationDocument
function correctionInvoiceReversalCreateCancellationDocument(Signed32 docEntry, map<string|string[]> headers) returns Document|errorBound action 'CreateCancellationDocument' on CorrectionInvoiceReversal (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
correctionInvoiceReversalReopen
function correctionInvoiceReversalReopen(Signed32 docEntry, map<string|string[]> headers) returns error?Bound action 'Reopen' on CorrectionInvoiceReversal (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Success. No content returned
correctionInvoiceReversalServiceApproveAndAdd
function correctionInvoiceReversalServiceApproveAndAdd(CorrectionInvoiceReversalService_ApproveAndAdd_body payload, map<string|string[]> headers) returns error?Approve and add
Parameters
- payload CorrectionInvoiceReversalService_ApproveAndAdd_body - Request payload
Return Type
- error? - Success. No content returned
correctionInvoiceReversalServiceApproveAndUpdate
function correctionInvoiceReversalServiceApproveAndUpdate(CorrectionInvoiceReversalService_ApproveAndUpdate_body payload, map<string|string[]> headers) returns error?Approve and update
Parameters
- payload CorrectionInvoiceReversalService_ApproveAndUpdate_body - Request payload
Return Type
- error? - Success. No content returned
correctionInvoiceReversalServiceCloseByDate
function correctionInvoiceReversalServiceCloseByDate(CorrectionInvoiceReversalService_CloseByDate_body payload, map<string|string[]> headers) returns error?Close by date
Parameters
- payload CorrectionInvoiceReversalService_CloseByDate_body - Request payload
Return Type
- error? - Success. No content returned
correctionInvoiceReversalServiceExportEWayBill
function correctionInvoiceReversalServiceExportEWayBill(CorrectionInvoiceReversalService_ExportEWayBill_body payload, map<string|string[]> headers) returns error?Export E way bill
Parameters
- payload CorrectionInvoiceReversalService_ExportEWayBill_body - Request payload
Return Type
- error? - Success. No content returned
correctionInvoiceReversalServiceGetApprovalTemplates
function correctionInvoiceReversalServiceGetApprovalTemplates(CorrectionInvoiceReversalService_GetApprovalTemplates_body payload, map<string|string[]> headers) returns Document|errorGet approval templates
Parameters
- payload CorrectionInvoiceReversalService_GetApprovalTemplates_body - Request payload
correctionInvoiceReversalServiceHandleApprovalRequest
function correctionInvoiceReversalServiceHandleApprovalRequest(map<string|string[]> headers) returns error?Handle approval request
Return Type
- error? - Success. No content returned
correctionInvoiceReversalServiceInitData
function correctionInvoiceReversalServiceInitData(map<string|string[]> headers) returns Document|errorInit data
correctionInvoiceServiceApproveAndAdd
function correctionInvoiceServiceApproveAndAdd(CorrectionInvoiceService_ApproveAndAdd_body payload, map<string|string[]> headers) returns error?Approve and add
Parameters
- payload CorrectionInvoiceService_ApproveAndAdd_body - Request payload
Return Type
- error? - Success. No content returned
correctionInvoiceServiceApproveAndUpdate
function correctionInvoiceServiceApproveAndUpdate(CorrectionInvoiceService_ApproveAndUpdate_body payload, map<string|string[]> headers) returns error?Approve and update
Parameters
- payload CorrectionInvoiceService_ApproveAndUpdate_body - Request payload
Return Type
- error? - Success. No content returned
correctionInvoiceServiceCloseByDate
function correctionInvoiceServiceCloseByDate(CorrectionInvoiceService_CloseByDate_body payload, map<string|string[]> headers) returns error?Close by date
Parameters
- payload CorrectionInvoiceService_CloseByDate_body - Request payload
Return Type
- error? - Success. No content returned
correctionInvoiceServiceExportEWayBill
function correctionInvoiceServiceExportEWayBill(CorrectionInvoiceService_ExportEWayBill_body payload, map<string|string[]> headers) returns error?Export E way bill
Parameters
- payload CorrectionInvoiceService_ExportEWayBill_body - Request payload
Return Type
- error? - Success. No content returned
correctionInvoiceServiceGetApprovalTemplates
function correctionInvoiceServiceGetApprovalTemplates(CorrectionInvoiceService_GetApprovalTemplates_body payload, map<string|string[]> headers) returns Document|errorGet approval templates
Parameters
- payload CorrectionInvoiceService_GetApprovalTemplates_body - Request payload
correctionInvoiceServiceHandleApprovalRequest
Handle approval request
Return Type
- error? - Success. No content returned
correctionInvoiceServiceInitData
Init data
listCreditNotes
function listCreditNotes(ListCreditNotesHeaders headers, *ListCreditNotesQueries queries) returns CreditNotesCollectionResponse|errorQuery the CreditNotes collection
Parameters
- headers ListCreditNotesHeaders (default {}) - Headers to be sent with the request
- queries *ListCreditNotesQueries - Queries to be sent with the request
Return Type
- CreditNotesCollectionResponse|error - A page of entities
createCreditNotes
Create a new Document
Parameters
- payload Document - Request payload
getCreditNotes
function getCreditNotes(Signed32 docEntry, map<string|string[]> headers, *GetCreditNotesQueries queries) returns Document|errorGet a single Document by key
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
- queries *GetCreditNotesQueries - Queries to be sent with the request
deleteCreditNotes
Delete a Document
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateCreditNotes
function updateCreditNotes(Signed32 docEntry, Document payload, map<string|string[]> headers) returns error?Partially update a Document (PATCH/MERGE semantics)
Return Type
- error? - Updated. No content returned
creditNotesCancel
Bound action 'Cancel' on CreditNotes (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Success. No content returned
creditNotesClose
Bound action 'Close' on CreditNotes (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Success. No content returned
creditNotesCreateCancellationDocument
function creditNotesCreateCancellationDocument(Signed32 docEntry, map<string|string[]> headers) returns Document|errorBound action 'CreateCancellationDocument' on CreditNotes (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
creditNotesReopen
Bound action 'Reopen' on CreditNotes (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Success. No content returned
creditNotesServiceApproveAndAdd
function creditNotesServiceApproveAndAdd(CreditNotesService_ApproveAndAdd_body payload, map<string|string[]> headers) returns error?Approve and add
Parameters
- payload CreditNotesService_ApproveAndAdd_body - Request payload
Return Type
- error? - Success. No content returned
creditNotesServiceApproveAndUpdate
function creditNotesServiceApproveAndUpdate(CreditNotesService_ApproveAndUpdate_body payload, map<string|string[]> headers) returns error?Approve and update
Parameters
- payload CreditNotesService_ApproveAndUpdate_body - Request payload
Return Type
- error? - Success. No content returned
creditNotesServiceCancel2
function creditNotesServiceCancel2(CreditNotesService_Cancel2_body payload, map<string|string[]> headers) returns error?Cancel2
Parameters
- payload CreditNotesService_Cancel2_body - Request payload
Return Type
- error? - Success. No content returned
creditNotesServiceCloseByDate
function creditNotesServiceCloseByDate(CreditNotesService_CloseByDate_body payload, map<string|string[]> headers) returns error?Close by date
Parameters
- payload CreditNotesService_CloseByDate_body - Request payload
Return Type
- error? - Success. No content returned
creditNotesServiceExportEWayBill
function creditNotesServiceExportEWayBill(CreditNotesService_ExportEWayBill_body payload, map<string|string[]> headers) returns error?Export E way bill
Parameters
- payload CreditNotesService_ExportEWayBill_body - Request payload
Return Type
- error? - Success. No content returned
creditNotesServiceGetApprovalTemplates
function creditNotesServiceGetApprovalTemplates(CreditNotesService_GetApprovalTemplates_body payload, map<string|string[]> headers) returns Document|errorGet approval templates
Parameters
- payload CreditNotesService_GetApprovalTemplates_body - Request payload
creditNotesServiceHandleApprovalRequest
Handle approval request
Return Type
- error? - Success. No content returned
creditNotesServiceInitData
Init data
creditNotesServiceRequestApproveCancellation
function creditNotesServiceRequestApproveCancellation(CreditNotesService_RequestApproveCancellation_body payload, map<string|string[]> headers) returns error?Request approve cancellation
Parameters
- payload CreditNotesService_RequestApproveCancellation_body - Request payload
Return Type
- error? - Success. No content returned
listDeliveryNotes
function listDeliveryNotes(ListDeliveryNotesHeaders headers, *ListDeliveryNotesQueries queries) returns DeliveryNotesCollectionResponse|errorQuery the DeliveryNotes collection
Parameters
- headers ListDeliveryNotesHeaders (default {}) - Headers to be sent with the request
- queries *ListDeliveryNotesQueries - Queries to be sent with the request
Return Type
- DeliveryNotesCollectionResponse|error - A page of entities
createDeliveryNotes
Create a new Document
Parameters
- payload Document - Request payload
getDeliveryNotes
function getDeliveryNotes(Signed32 docEntry, map<string|string[]> headers, *GetDeliveryNotesQueries queries) returns Document|errorGet a single Document by key
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
- queries *GetDeliveryNotesQueries - Queries to be sent with the request
deleteDeliveryNotes
Delete a Document
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateDeliveryNotes
function updateDeliveryNotes(Signed32 docEntry, Document payload, map<string|string[]> headers) returns error?Partially update a Document (PATCH/MERGE semantics)
Return Type
- error? - Updated. No content returned
deliveryNotesCancel
Bound action 'Cancel' on DeliveryNotes (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Success. No content returned
deliveryNotesClose
Bound action 'Close' on DeliveryNotes (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Success. No content returned
deliveryNotesCreateCancellationDocument
function deliveryNotesCreateCancellationDocument(Signed32 docEntry, map<string|string[]> headers) returns Document|errorBound action 'CreateCancellationDocument' on DeliveryNotes (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
deliveryNotesReopen
Bound action 'Reopen' on DeliveryNotes (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Success. No content returned
deliveryNotesServiceApproveAndAdd
function deliveryNotesServiceApproveAndAdd(DeliveryNotesService_ApproveAndAdd_body payload, map<string|string[]> headers) returns error?Approve and add
Parameters
- payload DeliveryNotesService_ApproveAndAdd_body - Request payload
Return Type
- error? - Success. No content returned
deliveryNotesServiceApproveAndUpdate
function deliveryNotesServiceApproveAndUpdate(DeliveryNotesService_ApproveAndUpdate_body payload, map<string|string[]> headers) returns error?Approve and update
Parameters
- payload DeliveryNotesService_ApproveAndUpdate_body - Request payload
Return Type
- error? - Success. No content returned
deliveryNotesServiceCancel2
function deliveryNotesServiceCancel2(DeliveryNotesService_Cancel2_body payload, map<string|string[]> headers) returns error?Cancel2
Parameters
- payload DeliveryNotesService_Cancel2_body - Request payload
Return Type
- error? - Success. No content returned
deliveryNotesServiceCloseByDate
function deliveryNotesServiceCloseByDate(DeliveryNotesService_CloseByDate_body payload, map<string|string[]> headers) returns error?Close by date
Parameters
- payload DeliveryNotesService_CloseByDate_body - Request payload
Return Type
- error? - Success. No content returned
deliveryNotesServiceExportEWayBill
function deliveryNotesServiceExportEWayBill(DeliveryNotesService_ExportEWayBill_body payload, map<string|string[]> headers) returns error?Export E way bill
Parameters
- payload DeliveryNotesService_ExportEWayBill_body - Request payload
Return Type
- error? - Success. No content returned
deliveryNotesServiceGetApprovalTemplates
function deliveryNotesServiceGetApprovalTemplates(DeliveryNotesService_GetApprovalTemplates_body payload, map<string|string[]> headers) returns Document|errorGet approval templates
Parameters
- payload DeliveryNotesService_GetApprovalTemplates_body - Request payload
deliveryNotesServiceHandleApprovalRequest
Handle approval request
Return Type
- error? - Success. No content returned
deliveryNotesServiceInitData
Init data
listDownPayments
function listDownPayments(ListDownPaymentsHeaders headers, *ListDownPaymentsQueries queries) returns DownPaymentsCollectionResponse|errorQuery the DownPayments collection
Parameters
- headers ListDownPaymentsHeaders (default {}) - Headers to be sent with the request
- queries *ListDownPaymentsQueries - Queries to be sent with the request
Return Type
- DownPaymentsCollectionResponse|error - A page of entities
createDownPayments
Create a new Document
Parameters
- payload Document - Request payload
getDownPayments
function getDownPayments(Signed32 docEntry, map<string|string[]> headers, *GetDownPaymentsQueries queries) returns Document|errorGet a single Document by key
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
- queries *GetDownPaymentsQueries - Queries to be sent with the request
deleteDownPayments
Delete a Document
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateDownPayments
function updateDownPayments(Signed32 docEntry, Document payload, map<string|string[]> headers) returns error?Partially update a Document (PATCH/MERGE semantics)
Return Type
- error? - Updated. No content returned
downPaymentsCancel
Bound action 'Cancel' on DownPayments (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Success. No content returned
downPaymentsClose
Bound action 'Close' on DownPayments (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Success. No content returned
downPaymentsCreateCancellationDocument
function downPaymentsCreateCancellationDocument(Signed32 docEntry, map<string|string[]> headers) returns Document|errorBound action 'CreateCancellationDocument' on DownPayments (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
downPaymentsReopen
Bound action 'Reopen' on DownPayments (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Success. No content returned
downPaymentsServiceApproveAndAdd
function downPaymentsServiceApproveAndAdd(DownPaymentsService_ApproveAndAdd_body payload, map<string|string[]> headers) returns error?Approve and add
Parameters
- payload DownPaymentsService_ApproveAndAdd_body - Request payload
Return Type
- error? - Success. No content returned
downPaymentsServiceApproveAndUpdate
function downPaymentsServiceApproveAndUpdate(DownPaymentsService_ApproveAndUpdate_body payload, map<string|string[]> headers) returns error?Approve and update
Parameters
- payload DownPaymentsService_ApproveAndUpdate_body - Request payload
Return Type
- error? - Success. No content returned
downPaymentsServiceCloseByDate
function downPaymentsServiceCloseByDate(DownPaymentsService_CloseByDate_body payload, map<string|string[]> headers) returns error?Close by date
Parameters
- payload DownPaymentsService_CloseByDate_body - Request payload
Return Type
- error? - Success. No content returned
downPaymentsServiceExportEWayBill
function downPaymentsServiceExportEWayBill(DownPaymentsService_ExportEWayBill_body payload, map<string|string[]> headers) returns error?Export E way bill
Parameters
- payload DownPaymentsService_ExportEWayBill_body - Request payload
Return Type
- error? - Success. No content returned
downPaymentsServiceGetApprovalTemplates
function downPaymentsServiceGetApprovalTemplates(DownPaymentsService_GetApprovalTemplates_body payload, map<string|string[]> headers) returns Document|errorGet approval templates
Parameters
- payload DownPaymentsService_GetApprovalTemplates_body - Request payload
downPaymentsServiceHandleApprovalRequest
Handle approval request
Return Type
- error? - Success. No content returned
downPaymentsServiceInitData
Init data
listDrafts
function listDrafts(ListDraftsHeaders headers, *ListDraftsQueries queries) returns DraftsCollectionResponse|errorQuery the Drafts collection
Parameters
- headers ListDraftsHeaders (default {}) - Headers to be sent with the request
- queries *ListDraftsQueries - Queries to be sent with the request
Return Type
- DraftsCollectionResponse|error - A page of entities
createDrafts
Create a new Document
Parameters
- payload Document - Request payload
getDrafts
function getDrafts(Signed32 docEntry, map<string|string[]> headers, *GetDraftsQueries queries) returns Document|errorGet a single Document by key
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
- queries *GetDraftsQueries - Queries to be sent with the request
deleteDrafts
Delete a Document
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateDrafts
function updateDrafts(Signed32 docEntry, Document payload, map<string|string[]> headers) returns error?Partially update a Document (PATCH/MERGE semantics)
Return Type
- error? - Updated. No content returned
draftsCancel
Bound action 'Cancel' on Drafts (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Success. No content returned
draftsClose
Bound action 'Close' on Drafts (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Success. No content returned
draftsCreateCancellationDocument
function draftsCreateCancellationDocument(Signed32 docEntry, map<string|string[]> headers) returns Document|errorBound action 'CreateCancellationDocument' on Drafts (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
draftsReopen
Bound action 'Reopen' on Drafts (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Success. No content returned
draftsServiceApproveAndAdd
function draftsServiceApproveAndAdd(DraftsService_ApproveAndAdd_body payload, map<string|string[]> headers) returns error?Approve and add
Parameters
- payload DraftsService_ApproveAndAdd_body - Request payload
Return Type
- error? - Success. No content returned
draftsServiceApproveAndUpdate
function draftsServiceApproveAndUpdate(DraftsService_ApproveAndUpdate_body payload, map<string|string[]> headers) returns error?Approve and update
Parameters
- payload DraftsService_ApproveAndUpdate_body - Request payload
Return Type
- error? - Success. No content returned
draftsServiceCloseByDate
function draftsServiceCloseByDate(DraftsService_CloseByDate_body payload, map<string|string[]> headers) returns error?Close by date
Parameters
- payload DraftsService_CloseByDate_body - Request payload
Return Type
- error? - Success. No content returned
draftsServiceExportEWayBill
function draftsServiceExportEWayBill(DraftsService_ExportEWayBill_body payload, map<string|string[]> headers) returns error?Export E way bill
Parameters
- payload DraftsService_ExportEWayBill_body - Request payload
Return Type
- error? - Success. No content returned
draftsServiceGetApprovalTemplates
function draftsServiceGetApprovalTemplates(DraftsService_GetApprovalTemplates_body payload, map<string|string[]> headers) returns Document|errorGet approval templates
Parameters
- payload DraftsService_GetApprovalTemplates_body - Request payload
draftsServiceHandleApprovalRequest
Handle approval request
Return Type
- error? - Success. No content returned
draftsServiceInitData
Init data
draftsServiceSaveDraftToDocument
function draftsServiceSaveDraftToDocument(DraftsService_SaveDraftToDocument_body payload, map<string|string[]> headers) returns error?Save draft to document
Parameters
- payload DraftsService_SaveDraftToDocument_body - Request payload
Return Type
- error? - Success. No content returned
listDunningLetters
function listDunningLetters(ListDunningLettersHeaders headers, *ListDunningLettersQueries queries) returns DunningLettersCollectionResponse|errorQuery the DunningLetters collection
Parameters
- headers ListDunningLettersHeaders (default {}) - Headers to be sent with the request
- queries *ListDunningLettersQueries - Queries to be sent with the request
Return Type
- DunningLettersCollectionResponse|error - A page of entities
createDunningLetters
function createDunningLetters(DunningLetter payload, map<string|string[]> headers) returns DunningLetter|errorCreate a new DunningLetter
Parameters
- payload DunningLetter - Request payload
Return Type
- DunningLetter|error - The created entity
getDunningLetters
function getDunningLetters(Signed32 rowNumber, map<string|string[]> headers, *GetDunningLettersQueries queries) returns DunningLetter|errorGet a single DunningLetter by key
Parameters
- rowNumber Signed32 - Key property 'RowNumber' (Edm.Int32)
- queries *GetDunningLettersQueries - Queries to be sent with the request
Return Type
- DunningLetter|error - The requested entity
deleteDunningLetters
Delete a DunningLetter
Parameters
- rowNumber Signed32 - Key property 'RowNumber' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateDunningLetters
function updateDunningLetters(Signed32 rowNumber, DunningLetter payload, map<string|string[]> headers) returns error?Partially update a DunningLetter (PATCH/MERGE semantics)
Parameters
- rowNumber Signed32 - Key property 'RowNumber' (Edm.Int32)
- payload DunningLetter - Request payload
Return Type
- error? - Updated. No content returned
listDunningTerms
function listDunningTerms(ListDunningTermsHeaders headers, *ListDunningTermsQueries queries) returns DunningTermsCollectionResponse|errorQuery the DunningTerms collection
Parameters
- headers ListDunningTermsHeaders (default {}) - Headers to be sent with the request
- queries *ListDunningTermsQueries - Queries to be sent with the request
Return Type
- DunningTermsCollectionResponse|error - A page of entities
createDunningTerms
function createDunningTerms(DunningTerm payload, map<string|string[]> headers) returns DunningTerm|errorCreate a new DunningTerm
Parameters
- payload DunningTerm - Request payload
Return Type
- DunningTerm|error - The created entity
getDunningTerms
function getDunningTerms(string code, map<string|string[]> headers, *GetDunningTermsQueries queries) returns DunningTerm|errorGet a single DunningTerm by key
Parameters
- code string - Key property 'Code' (Edm.String)
- queries *GetDunningTermsQueries - Queries to be sent with the request
Return Type
- DunningTerm|error - The requested entity
deleteDunningTerms
Delete a DunningTerm
Parameters
- code string - Key property 'Code' (Edm.String)
Return Type
- error? - Deleted. No content returned
updateDunningTerms
function updateDunningTerms(string code, DunningTerm payload, map<string|string[]> headers) returns error?Partially update a DunningTerm (PATCH/MERGE semantics)
Return Type
- error? - Updated. No content returned
dunningTermsServiceGetDunningTermList
function dunningTermsServiceGetDunningTermList(map<string|string[]> headers) returns inline_response_200_2|errorGet dunning term list
Return Type
- inline_response_200_2|error - Function result
listInvoices
function listInvoices(ListInvoicesHeaders headers, *ListInvoicesQueries queries) returns InvoicesCollectionResponse|errorQuery the Invoices collection
Parameters
- headers ListInvoicesHeaders (default {}) - Headers to be sent with the request
- queries *ListInvoicesQueries - Queries to be sent with the request
Return Type
- InvoicesCollectionResponse|error - A page of entities
createInvoices
Create a new Document
Parameters
- payload Document - Request payload
getInvoices
function getInvoices(Signed32 docEntry, map<string|string[]> headers, *GetInvoicesQueries queries) returns Document|errorGet a single Document by key
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
- queries *GetInvoicesQueries - Queries to be sent with the request
deleteInvoices
Delete a Document
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateInvoices
function updateInvoices(Signed32 docEntry, Document payload, map<string|string[]> headers) returns error?Partially update a Document (PATCH/MERGE semantics)
Return Type
- error? - Updated. No content returned
invoicesCancel
Bound action 'Cancel' on Invoices (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Success. No content returned
invoicesClose
Bound action 'Close' on Invoices (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Success. No content returned
invoicesCreateCancellationDocument
function invoicesCreateCancellationDocument(Signed32 docEntry, map<string|string[]> headers) returns Document|errorBound action 'CreateCancellationDocument' on Invoices (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
invoicesReopen
Bound action 'Reopen' on Invoices (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Success. No content returned
invoicesServiceApproveAndAdd
function invoicesServiceApproveAndAdd(InvoicesService_ApproveAndAdd_body payload, map<string|string[]> headers) returns error?Approve and add
Parameters
- payload InvoicesService_ApproveAndAdd_body - Request payload
Return Type
- error? - Success. No content returned
invoicesServiceApproveAndUpdate
function invoicesServiceApproveAndUpdate(InvoicesService_ApproveAndUpdate_body payload, map<string|string[]> headers) returns error?Approve and update
Parameters
- payload InvoicesService_ApproveAndUpdate_body - Request payload
Return Type
- error? - Success. No content returned
invoicesServiceCancel2
function invoicesServiceCancel2(InvoicesService_Cancel2_body payload, map<string|string[]> headers) returns error?Cancel2
Parameters
- payload InvoicesService_Cancel2_body - Request payload
Return Type
- error? - Success. No content returned
invoicesServiceCloseByDate
function invoicesServiceCloseByDate(InvoicesService_CloseByDate_body payload, map<string|string[]> headers) returns error?Close by date
Parameters
- payload InvoicesService_CloseByDate_body - Request payload
Return Type
- error? - Success. No content returned
invoicesServiceExportEWayBill
function invoicesServiceExportEWayBill(InvoicesService_ExportEWayBill_body payload, map<string|string[]> headers) returns error?Export E way bill
Parameters
- payload InvoicesService_ExportEWayBill_body - Request payload
Return Type
- error? - Success. No content returned
invoicesServiceGetApprovalTemplates
function invoicesServiceGetApprovalTemplates(InvoicesService_GetApprovalTemplates_body payload, map<string|string[]> headers) returns Document|errorGet approval templates
Parameters
- payload InvoicesService_GetApprovalTemplates_body - Request payload
invoicesServiceHandleApprovalRequest
Handle approval request
Return Type
- error? - Success. No content returned
invoicesServiceInitData
Init data
invoicesServiceRequestApproveCancellation
function invoicesServiceRequestApproveCancellation(InvoicesService_RequestApproveCancellation_body payload, map<string|string[]> headers) returns error?Request approve cancellation
Parameters
- payload InvoicesService_RequestApproveCancellation_body - Request payload
Return Type
- error? - Success. No content returned
listOrders
function listOrders(ListOrdersHeaders headers, *ListOrdersQueries queries) returns OrdersCollectionResponse|errorQuery the Orders collection
Parameters
- headers ListOrdersHeaders (default {}) - Headers to be sent with the request
- queries *ListOrdersQueries - Queries to be sent with the request
Return Type
- OrdersCollectionResponse|error - A page of entities
createOrders
Create a new Document
Parameters
- payload Document - Request payload
getOrders
function getOrders(Signed32 docEntry, map<string|string[]> headers, *GetOrdersQueries queries) returns Document|errorGet a single Document by key
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
- queries *GetOrdersQueries - Queries to be sent with the request
deleteOrders
Delete a Document
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateOrders
function updateOrders(Signed32 docEntry, Document payload, map<string|string[]> headers) returns error?Partially update a Document (PATCH/MERGE semantics)
Return Type
- error? - Updated. No content returned
ordersCancel
Bound action 'Cancel' on Orders (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Success. No content returned
ordersClose
Bound action 'Close' on Orders (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Success. No content returned
ordersCreateCancellationDocument
function ordersCreateCancellationDocument(Signed32 docEntry, map<string|string[]> headers) returns Document|errorBound action 'CreateCancellationDocument' on Orders (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
ordersReopen
Bound action 'Reopen' on Orders (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Success. No content returned
ordersServiceApproveAndAdd
function ordersServiceApproveAndAdd(OrdersService_ApproveAndAdd_body payload, map<string|string[]> headers) returns error?Approve and add
Parameters
- payload OrdersService_ApproveAndAdd_body - Request payload
Return Type
- error? - Success. No content returned
ordersServiceApproveAndUpdate
function ordersServiceApproveAndUpdate(OrdersService_ApproveAndUpdate_body payload, map<string|string[]> headers) returns error?Approve and update
Parameters
- payload OrdersService_ApproveAndUpdate_body - Request payload
Return Type
- error? - Success. No content returned
ordersServiceCloseByDate
function ordersServiceCloseByDate(OrdersService_CloseByDate_body payload, map<string|string[]> headers) returns error?Close by date
Parameters
- payload OrdersService_CloseByDate_body - Request payload
Return Type
- error? - Success. No content returned
ordersServiceExportEWayBill
function ordersServiceExportEWayBill(OrdersService_ExportEWayBill_body payload, map<string|string[]> headers) returns error?Export E way bill
Parameters
- payload OrdersService_ExportEWayBill_body - Request payload
Return Type
- error? - Success. No content returned
ordersServiceGetApprovalTemplates
function ordersServiceGetApprovalTemplates(OrdersService_GetApprovalTemplates_body payload, map<string|string[]> headers) returns Document|errorGet approval templates
Parameters
- payload OrdersService_GetApprovalTemplates_body - Request payload
ordersServiceHandleApprovalRequest
Handle approval request
Return Type
- error? - Success. No content returned
ordersServiceInitData
Init data
ordersServicePreview
function ordersServicePreview(OrdersService_Preview_body payload, map<string|string[]> headers) returns Document|errorPreview
Parameters
- payload OrdersService_Preview_body - Request payload
listPOSDailySummary
function listPOSDailySummary(ListPOSDailySummaryHeaders headers, *ListPOSDailySummaryQueries queries) returns POSDailySummaryCollectionResponse|errorQuery the POSDailySummary collection
Parameters
- headers ListPOSDailySummaryHeaders (default {}) - Headers to be sent with the request
- queries *ListPOSDailySummaryQueries - Queries to be sent with the request
Return Type
- POSDailySummaryCollectionResponse|error - A page of entities
createPOSDailySummary
function createPOSDailySummary(POSDailySummary payload, map<string|string[]> headers) returns POSDailySummary|errorCreate a new POSDailySummary
Parameters
- payload POSDailySummary - Request payload
Return Type
- POSDailySummary|error - The created entity
getPOSDailySummary
function getPOSDailySummary(Signed32 absEntry, map<string|string[]> headers, *GetPOSDailySummaryQueries queries) returns POSDailySummary|errorGet a single POSDailySummary by key
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
- queries *GetPOSDailySummaryQueries - Queries to be sent with the request
Return Type
- POSDailySummary|error - The requested entity
deletePOSDailySummary
Delete a POSDailySummary
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updatePOSDailySummary
function updatePOSDailySummary(Signed32 absEntry, POSDailySummary payload, map<string|string[]> headers) returns error?Partially update a POSDailySummary (PATCH/MERGE semantics)
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
- payload POSDailySummary - Request payload
Return Type
- error? - Updated. No content returned
listQuotations
function listQuotations(ListQuotationsHeaders headers, *ListQuotationsQueries queries) returns QuotationsCollectionResponse|errorQuery the Quotations collection
Parameters
- headers ListQuotationsHeaders (default {}) - Headers to be sent with the request
- queries *ListQuotationsQueries - Queries to be sent with the request
Return Type
- QuotationsCollectionResponse|error - A page of entities
createQuotations
Create a new Document
Parameters
- payload Document - Request payload
getQuotations
function getQuotations(Signed32 docEntry, map<string|string[]> headers, *GetQuotationsQueries queries) returns Document|errorGet a single Document by key
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
- queries *GetQuotationsQueries - Queries to be sent with the request
deleteQuotations
Delete a Document
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateQuotations
function updateQuotations(Signed32 docEntry, Document payload, map<string|string[]> headers) returns error?Partially update a Document (PATCH/MERGE semantics)
Return Type
- error? - Updated. No content returned
quotationsCancel
Bound action 'Cancel' on Quotations (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Success. No content returned
quotationsClose
Bound action 'Close' on Quotations (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Success. No content returned
quotationsCreateCancellationDocument
function quotationsCreateCancellationDocument(Signed32 docEntry, map<string|string[]> headers) returns Document|errorBound action 'CreateCancellationDocument' on Quotations (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
quotationsReopen
Bound action 'Reopen' on Quotations (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Success. No content returned
quotationsServiceApproveAndAdd
function quotationsServiceApproveAndAdd(QuotationsService_ApproveAndAdd_body payload, map<string|string[]> headers) returns error?Approve and add
Parameters
- payload QuotationsService_ApproveAndAdd_body - Request payload
Return Type
- error? - Success. No content returned
quotationsServiceApproveAndUpdate
function quotationsServiceApproveAndUpdate(QuotationsService_ApproveAndUpdate_body payload, map<string|string[]> headers) returns error?Approve and update
Parameters
- payload QuotationsService_ApproveAndUpdate_body - Request payload
Return Type
- error? - Success. No content returned
quotationsServiceCloseByDate
function quotationsServiceCloseByDate(QuotationsService_CloseByDate_body payload, map<string|string[]> headers) returns error?Close by date
Parameters
- payload QuotationsService_CloseByDate_body - Request payload
Return Type
- error? - Success. No content returned
quotationsServiceExportEWayBill
function quotationsServiceExportEWayBill(QuotationsService_ExportEWayBill_body payload, map<string|string[]> headers) returns error?Export E way bill
Parameters
- payload QuotationsService_ExportEWayBill_body - Request payload
Return Type
- error? - Success. No content returned
quotationsServiceGetApprovalTemplates
function quotationsServiceGetApprovalTemplates(QuotationsService_GetApprovalTemplates_body payload, map<string|string[]> headers) returns Document|errorGet approval templates
Parameters
- payload QuotationsService_GetApprovalTemplates_body - Request payload
quotationsServiceHandleApprovalRequest
Handle approval request
Return Type
- error? - Success. No content returned
quotationsServiceInitData
Init data
listReturnRequest
function listReturnRequest(ListReturnRequestHeaders headers, *ListReturnRequestQueries queries) returns ReturnRequestCollectionResponse|errorQuery the ReturnRequest collection
Parameters
- headers ListReturnRequestHeaders (default {}) - Headers to be sent with the request
- queries *ListReturnRequestQueries - Queries to be sent with the request
Return Type
- ReturnRequestCollectionResponse|error - A page of entities
createReturnRequest
Create a new Document
Parameters
- payload Document - Request payload
getReturnRequest
function getReturnRequest(Signed32 docEntry, map<string|string[]> headers, *GetReturnRequestQueries queries) returns Document|errorGet a single Document by key
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
- queries *GetReturnRequestQueries - Queries to be sent with the request
deleteReturnRequest
Delete a Document
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateReturnRequest
function updateReturnRequest(Signed32 docEntry, Document payload, map<string|string[]> headers) returns error?Partially update a Document (PATCH/MERGE semantics)
Return Type
- error? - Updated. No content returned
returnRequestCancel
Bound action 'Cancel' on ReturnRequest (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Success. No content returned
returnRequestClose
Bound action 'Close' on ReturnRequest (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Success. No content returned
returnRequestCreateCancellationDocument
function returnRequestCreateCancellationDocument(Signed32 docEntry, map<string|string[]> headers) returns Document|errorBound action 'CreateCancellationDocument' on ReturnRequest (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
returnRequestReopen
Bound action 'Reopen' on ReturnRequest (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Success. No content returned
returnRequestServiceApproveAndAdd
function returnRequestServiceApproveAndAdd(ReturnRequestService_ApproveAndAdd_body payload, map<string|string[]> headers) returns error?Approve and add
Parameters
- payload ReturnRequestService_ApproveAndAdd_body - Request payload
Return Type
- error? - Success. No content returned
returnRequestServiceApproveAndUpdate
function returnRequestServiceApproveAndUpdate(ReturnRequestService_ApproveAndUpdate_body payload, map<string|string[]> headers) returns error?Approve and update
Parameters
- payload ReturnRequestService_ApproveAndUpdate_body - Request payload
Return Type
- error? - Success. No content returned
returnRequestServiceCloseByDate
function returnRequestServiceCloseByDate(ReturnRequestService_CloseByDate_body payload, map<string|string[]> headers) returns error?Close by date
Parameters
- payload ReturnRequestService_CloseByDate_body - Request payload
Return Type
- error? - Success. No content returned
returnRequestServiceExportEWayBill
function returnRequestServiceExportEWayBill(ReturnRequestService_ExportEWayBill_body payload, map<string|string[]> headers) returns error?Export E way bill
Parameters
- payload ReturnRequestService_ExportEWayBill_body - Request payload
Return Type
- error? - Success. No content returned
returnRequestServiceGetApprovalTemplates
function returnRequestServiceGetApprovalTemplates(ReturnRequestService_GetApprovalTemplates_body payload, map<string|string[]> headers) returns Document|errorGet approval templates
Parameters
- payload ReturnRequestService_GetApprovalTemplates_body - Request payload
returnRequestServiceHandleApprovalRequest
Handle approval request
Return Type
- error? - Success. No content returned
returnRequestServiceInitData
Init data
listReturns
function listReturns(ListReturnsHeaders headers, *ListReturnsQueries queries) returns ReturnsCollectionResponse|errorQuery the Returns collection
Parameters
- headers ListReturnsHeaders (default {}) - Headers to be sent with the request
- queries *ListReturnsQueries - Queries to be sent with the request
Return Type
- ReturnsCollectionResponse|error - A page of entities
createReturns
Create a new Document
Parameters
- payload Document - Request payload
getReturns
function getReturns(Signed32 docEntry, map<string|string[]> headers, *GetReturnsQueries queries) returns Document|errorGet a single Document by key
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
- queries *GetReturnsQueries - Queries to be sent with the request
deleteReturns
Delete a Document
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateReturns
function updateReturns(Signed32 docEntry, Document payload, map<string|string[]> headers) returns error?Partially update a Document (PATCH/MERGE semantics)
Return Type
- error? - Updated. No content returned
returnsCancel
Bound action 'Cancel' on Returns (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Success. No content returned
returnsClose
Bound action 'Close' on Returns (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Success. No content returned
returnsCreateCancellationDocument
function returnsCreateCancellationDocument(Signed32 docEntry, map<string|string[]> headers) returns Document|errorBound action 'CreateCancellationDocument' on Returns (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
returnsReopen
Bound action 'Reopen' on Returns (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Success. No content returned
returnsServiceApproveAndAdd
function returnsServiceApproveAndAdd(ReturnsService_ApproveAndAdd_body payload, map<string|string[]> headers) returns error?Approve and add
Parameters
- payload ReturnsService_ApproveAndAdd_body - Request payload
Return Type
- error? - Success. No content returned
returnsServiceApproveAndUpdate
function returnsServiceApproveAndUpdate(ReturnsService_ApproveAndUpdate_body payload, map<string|string[]> headers) returns error?Approve and update
Parameters
- payload ReturnsService_ApproveAndUpdate_body - Request payload
Return Type
- error? - Success. No content returned
returnsServiceCancel2
function returnsServiceCancel2(ReturnsService_Cancel2_body payload, map<string|string[]> headers) returns error?Cancel2
Parameters
- payload ReturnsService_Cancel2_body - Request payload
Return Type
- error? - Success. No content returned
returnsServiceCloseByDate
function returnsServiceCloseByDate(ReturnsService_CloseByDate_body payload, map<string|string[]> headers) returns error?Close by date
Parameters
- payload ReturnsService_CloseByDate_body - Request payload
Return Type
- error? - Success. No content returned
returnsServiceExportEWayBill
function returnsServiceExportEWayBill(ReturnsService_ExportEWayBill_body payload, map<string|string[]> headers) returns error?Export E way bill
Parameters
- payload ReturnsService_ExportEWayBill_body - Request payload
Return Type
- error? - Success. No content returned
returnsServiceGetApprovalTemplates
function returnsServiceGetApprovalTemplates(ReturnsService_GetApprovalTemplates_body payload, map<string|string[]> headers) returns Document|errorGet approval templates
Parameters
- payload ReturnsService_GetApprovalTemplates_body - Request payload
returnsServiceHandleApprovalRequest
Handle approval request
Return Type
- error? - Success. No content returned
returnsServiceInitData
Init data
listSalesPersons
function listSalesPersons(ListSalesPersonsHeaders headers, *ListSalesPersonsQueries queries) returns SalesPersonsCollectionResponse|errorQuery the SalesPersons collection
Parameters
- headers ListSalesPersonsHeaders (default {}) - Headers to be sent with the request
- queries *ListSalesPersonsQueries - Queries to be sent with the request
Return Type
- SalesPersonsCollectionResponse|error - A page of entities
createSalesPersons
function createSalesPersons(SalesPerson payload, map<string|string[]> headers) returns SalesPerson|errorCreate a new SalesPerson
Parameters
- payload SalesPerson - Request payload
Return Type
- SalesPerson|error - The created entity
getSalesPersons
function getSalesPersons(Signed32 salesEmployeeCode, map<string|string[]> headers, *GetSalesPersonsQueries queries) returns SalesPerson|errorGet a single SalesPerson by key
Parameters
- salesEmployeeCode Signed32 - Key property 'SalesEmployeeCode' (Edm.Int32)
- queries *GetSalesPersonsQueries - Queries to be sent with the request
Return Type
- SalesPerson|error - The requested entity
deleteSalesPersons
function deleteSalesPersons(Signed32 salesEmployeeCode, map<string|string[]> headers) returns error?Delete a SalesPerson
Parameters
- salesEmployeeCode Signed32 - Key property 'SalesEmployeeCode' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateSalesPersons
function updateSalesPersons(Signed32 salesEmployeeCode, SalesPerson payload, map<string|string[]> headers) returns error?Partially update a SalesPerson (PATCH/MERGE semantics)
Parameters
- salesEmployeeCode Signed32 - Key property 'SalesEmployeeCode' (Edm.Int32)
- payload SalesPerson - Request payload
Return Type
- error? - Updated. No content returned
listSalesTaxInvoices
function listSalesTaxInvoices(ListSalesTaxInvoicesHeaders headers, *ListSalesTaxInvoicesQueries queries) returns SalesTaxInvoicesCollectionResponse|errorQuery the SalesTaxInvoices collection
Parameters
- headers ListSalesTaxInvoicesHeaders (default {}) - Headers to be sent with the request
- queries *ListSalesTaxInvoicesQueries - Queries to be sent with the request
Return Type
- SalesTaxInvoicesCollectionResponse|error - A page of entities
createSalesTaxInvoices
function createSalesTaxInvoices(SalesTaxInvoice payload, map<string|string[]> headers) returns SalesTaxInvoice|errorCreate a new SalesTaxInvoice
Parameters
- payload SalesTaxInvoice - Request payload
Return Type
- SalesTaxInvoice|error - The created entity
getSalesTaxInvoices
function getSalesTaxInvoices(Signed32 docEntry, map<string|string[]> headers, *GetSalesTaxInvoicesQueries queries) returns SalesTaxInvoice|errorGet a single SalesTaxInvoice by key
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
- queries *GetSalesTaxInvoicesQueries - Queries to be sent with the request
Return Type
- SalesTaxInvoice|error - The requested entity
deleteSalesTaxInvoices
Delete a SalesTaxInvoice
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateSalesTaxInvoices
function updateSalesTaxInvoices(Signed32 docEntry, SalesTaxInvoice payload, map<string|string[]> headers) returns error?Partially update a SalesTaxInvoice (PATCH/MERGE semantics)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
- payload SalesTaxInvoice - Request payload
Return Type
- error? - Updated. 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.sales: AddressExtension
The AddressExtension complex type of the SAP Business One Service Layer
Fields
- ShipToStreet? string -
- ShipToStreetNo? string -
- ShipToBlock? string -
- ShipToBuilding? string -
- ShipToCity? string -
- ShipToZipCode? string -
- ShipToCounty? string -
- ShipToState? string -
- ShipToCountry? string -
- ShipToAddressType? string -
- BillToStreet? string -
- BillToStreetNo? string -
- BillToBlock? string -
- BillToBuilding? string -
- BillToCity? string -
- BillToZipCode? string -
- BillToCounty? string -
- BillToState? string -
- BillToCountry? string -
- BillToAddressType? string -
- ShipToGlobalLocationNumber? string -
- BillToGlobalLocationNumber? string -
- ShipToAddress2? string -
- ShipToAddress3? string -
- BillToAddress2? string -
- BillToAddress3? string -
- PlaceOfSupply? string -
- PurchasePlaceOfSupply? string -
- DocEntry? Signed32 -
- GoodsIssuePlaceBP? string -
- GoodsIssuePlaceCNPJ? string -
- GoodsIssuePlaceCPF? string -
- GoodsIssuePlaceStreet? string -
- GoodsIssuePlaceStreetNo? string -
- GoodsIssuePlaceBuilding? string -
- GoodsIssuePlaceZip? string -
- GoodsIssuePlaceBlock? string -
- GoodsIssuePlaceCity? string -
- GoodsIssuePlaceCounty? string -
- GoodsIssuePlaceState? string -
- GoodsIssuePlaceCountry? string -
- GoodsIssuePlacePhone? string -
- GoodsIssuePlaceEMail? string -
- GoodsIssuePlaceDepartureDate? string -
- DeliveryPlaceBP? string -
- DeliveryPlaceCNPJ? string -
- DeliveryPlaceCPF? string -
- DeliveryPlaceStreet? string -
- DeliveryPlaceStreetNo? string -
- DeliveryPlaceBuilding? string -
- DeliveryPlaceZip? string -
- DeliveryPlaceBlock? string -
- DeliveryPlaceCity? string -
- DeliveryPlaceCounty? string -
- DeliveryPlaceState? string -
- DeliveryPlaceCountry? string -
- DeliveryPlacePhone? string -
- DeliveryPlaceEMail? string -
- DeliveryPlaceDepartureDate? string -
- ShipToStreetForReturn? string -
- ShipToStreetNoForReturn? string -
- ShipToBlockForReturn? string -
- ShipToBuildingForReturn? string -
- ShipToCityForReturn? string -
- ShipToZipCodeForReturn? string -
- ShipToCountyForReturn? string -
- ShipToStateForReturn? string -
- ShipToCountryForReturn? string -
- ShipToAddressTypeForReturn? string -
- ShipToGlobalLocationNumberForReturn? string -
- ShipToAddress2ForReturn? string -
- ShipToAddress3ForReturn? string -
sap.businessone.sales: BatchNumber
The BatchNumber complex type of the SAP Business One Service Layer
Fields
- BatchNumber? string -
- ManufacturerSerialNumber? string -
- InternalSerialNumber? string -
- ExpiryDate? string -
- ManufacturingDate? string -
- AddmisionDate? string -
- Location? string -
- Notes? string -
- Quantity? decimal -
- BaseLineNumber? Signed32 -
- TrackingNote? Signed32 -
- TrackingNoteLine? Signed32 -
- ItemCode? string -
- SystemSerialNumber? Signed32 -
sap.businessone.sales: BlanketAgreement
The BlanketAgreement entity of the SAP Business One Service Layer
Fields
- AgreementNo? Signed32 -
- BPCode? string -
- BPName? string -
- ContactPersonCode? Signed32 -
- StartDate? string -
- EndDate? string -
- TerminateDate? string -
- Description? string -
- AgreementType? BlanketAgreementTypeEnum - OData EnumType 'BlanketAgreementTypeEnum'. Serialised by the Service Layer as the member name
- Status? BlanketAgreementStatusEnum - OData EnumType 'BlanketAgreementStatusEnum'. Serialised by the Service Layer as the member name
- Owner? Signed32 -
- IgnorePricesInAgreement? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Renewal? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- RemindUnit? BoRemindUnits - OData EnumType 'BoRemindUnits'. Serialised by the Service Layer as the member name
- RemindTime? Signed32 -
- Remarks? string -
- AttachmentEntry? Signed32 -
- SettlementProbability? decimal -
- AgreementMethod? BlanketAgreementMethodEnum - OData EnumType 'BlanketAgreementMethodEnum'. Serialised by the Service Layer as the member name
- PaymentTerms? Signed32 -
- PriceList? Signed32 -
- SigningDate? string -
- AmendmentTo? Signed32 -
- Series? Signed32 -
- DocNum? Signed32 -
- HandWritten? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- PeriodIndicator? string -
- PaymentMethod? string -
- ExchangeRate? decimal -
- ShippingType? Signed32 -
- NumAtCard? string -
- Project? string -
- PriceMode? PriceModeEnum - OData EnumType 'PriceModeEnum'. Serialised by the Service Layer as the member name
- BPCurrency? string -
- BPType? BlanketAgreementBPTypeEnum - OData EnumType 'BlanketAgreementBPTypeEnum'. Serialised by the Service Layer as the member name
- SAPPassport? string -
- BlanketAgreements_ItemsLines? BlanketAgreementsItemsLine[] -
sap.businessone.sales: BlanketAgreementParams
The BlanketAgreementParams complex type of the SAP Business One Service Layer
Fields
- agreementNo? Signed32 -
sap.businessone.sales: BlanketAgreementsCollectionResponse
A paged collection of BlanketAgreements entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? BlanketAgreement[] -
- odataNextLink? string -
sap.businessone.sales: BlanketAgreementsDetailsLine
The BlanketAgreements_DetailsLine complex type of the SAP Business One Service Layer
Fields
- AgreementNo? Signed32 -
- AgreementRowNumber? Signed32 -
- AgreementEffectiveRowNumber? Signed32 -
- Frequency? BlanketAgreementDatePeriodsEnum - OData EnumType 'BlanketAgreementDatePeriodsEnum'. Serialised by the Service Layer as the member name
- From? string -
- To? string -
- ReleaseInformation? string -
- Quantity? decimal -
- Warehouse? string -
- FreeText? string -
- ConsumeSalesForecast? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- PlannedAmountLC? decimal -
- PlannedAmountFC? decimal -
sap.businessone.sales: BlanketAgreementsDocument
The BlanketAgreementsDocument complex type of the SAP Business One Service Layer
Fields
- docStatus? BADocumentStatus -
- documentNo? Signed32 -
- discount? decimal -
- documentType? BlanketAgreementDocTypeEnum -
- quantity? decimal -
- rowStatus? BoStatus -
- itemDescription? string -
- unitPrice? decimal -
- uoM? string -
- unitsOfMeasurement? decimal -
- itemNo? string -
- uoMCode? string -
- documentRowNumber? Signed32 -
- documentDate? string -
- agreementRowNumber? Signed32 -
sap.businessone.sales: BlanketAgreementsItemsLine
The BlanketAgreements_ItemsLine complex type of the SAP Business One Service Layer
Fields
- AgreementNo? Signed32 -
- AgreementRowNumber? Signed32 -
- ItemNo? string -
- ItemDescription? string -
- ItemGroup? Signed32 -
- PlannedQuantity? decimal -
- UnitPrice? decimal -
- PriceCurrency? string -
- CumulativeQuantity? decimal -
- CumulativeAmountLC? decimal -
- CumulativeAmountFC? decimal -
- FreeText? string -
- InventoryUoM? string -
- PortionOfReturns? decimal -
- EndOfWarranty? string -
- PlannedAmountLC? decimal -
- PlannedAmountFC? decimal -
- LineDiscount? decimal -
- UoMEntry? Signed32 -
- UoMCode? string -
- UnitsOfMeasurement? decimal -
- UndeliveredCumulativeQuantity? decimal -
- UndeliveredCumulativeAmountLC? decimal -
- UndeliveredCumulativeAmountFC? decimal -
- ShippingType? Signed32 -
- Project? string -
- TaxCode? string -
- TAXRate? decimal -
- PlannedVATAmountLC? decimal -
- PlannedVATAmountFC? decimal -
- CumulativeVATAmountLC? decimal -
- CumulativeVATAmountFC? decimal -
- BlanketAgreements_DetailsLines? BlanketAgreementsDetailsLine[] -
sap.businessone.sales: CCDNumber
The CCDNumber complex type of the SAP Business One Service Layer
Fields
- TrackingNote? Signed32 -
- TrackingNoteLine? Signed32 -
- CCDNumber? string -
- Quantity? decimal -
- CountryOfOrigin? string -
- SubLineNumber? Signed32 -
- DocumentEntry? Signed32 -
- BaseLineNumber? Signed32 -
- ChildNumber? Signed32 -
sap.businessone.sales: CommissionGroup
The CommissionGroup entity of the SAP Business One Service Layer
Fields
- CommissionGroupCode? Signed32 -
- CommissionGroupName? string -
- CommissionPercentage? decimal -
- SalesPersons? SalesPerson[] -
sap.businessone.sales: CommissionGroupsCollectionResponse
A paged collection of CommissionGroups entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? CommissionGroup[] -
- odataNextLink? string -
sap.businessone.sales: 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.sales: CorrectionInvoiceCollectionResponse
A paged collection of CorrectionInvoice entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? Document[] -
- odataNextLink? string -
sap.businessone.sales: CorrectionInvoiceReversalCollectionResponse
A paged collection of CorrectionInvoiceReversal entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? Document[] -
- odataNextLink? string -
sap.businessone.sales: CorrectionInvoiceReversalService_ApproveAndAdd_body
Represents the request payload for the CorrectionInvoiceReversalService_ApproveAndAdd operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.sales: CorrectionInvoiceReversalService_ApproveAndUpdate_body
Represents the request payload for the CorrectionInvoiceReversalService_ApproveAndUpdate operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.sales: CorrectionInvoiceReversalService_CloseByDate_body
Represents the request payload for the CorrectionInvoiceReversalService_CloseByDate operation of the SAP Business One Service Layer
Fields
- documentCloseParams? DocumentCloseParams -
sap.businessone.sales: CorrectionInvoiceReversalService_ExportEWayBill_body
Represents the request payload for the CorrectionInvoiceReversalService_ExportEWayBill operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.sales: CorrectionInvoiceReversalService_GetApprovalTemplates_body
Represents the request payload for the CorrectionInvoiceReversalService_GetApprovalTemplates operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.sales: CorrectionInvoiceService_ApproveAndAdd_body
Represents the request payload for the CorrectionInvoiceService_ApproveAndAdd operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.sales: CorrectionInvoiceService_ApproveAndUpdate_body
Represents the request payload for the CorrectionInvoiceService_ApproveAndUpdate operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.sales: CorrectionInvoiceService_CloseByDate_body
Represents the request payload for the CorrectionInvoiceService_CloseByDate operation of the SAP Business One Service Layer
Fields
- documentCloseParams? DocumentCloseParams -
sap.businessone.sales: CorrectionInvoiceService_ExportEWayBill_body
Represents the request payload for the CorrectionInvoiceService_ExportEWayBill operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.sales: CorrectionInvoiceService_GetApprovalTemplates_body
Represents the request payload for the CorrectionInvoiceService_GetApprovalTemplates operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.sales: CreditNotesCollectionResponse
A paged collection of CreditNotes entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? Document[] -
- odataNextLink? string -
sap.businessone.sales: CreditNotesService_ApproveAndAdd_body
Represents the request payload for the CreditNotesService_ApproveAndAdd operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.sales: CreditNotesService_ApproveAndUpdate_body
Represents the request payload for the CreditNotesService_ApproveAndUpdate operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.sales: CreditNotesService_Cancel2_body
Represents the request payload for the CreditNotesService_Cancel2 operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.sales: CreditNotesService_CloseByDate_body
Represents the request payload for the CreditNotesService_CloseByDate operation of the SAP Business One Service Layer
Fields
- documentCloseParams? DocumentCloseParams -
sap.businessone.sales: CreditNotesService_ExportEWayBill_body
Represents the request payload for the CreditNotesService_ExportEWayBill operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.sales: CreditNotesService_GetApprovalTemplates_body
Represents the request payload for the CreditNotesService_GetApprovalTemplates operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.sales: CreditNotesService_RequestApproveCancellation_body
Represents the request payload for the CreditNotesService_RequestApproveCancellation operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.sales: DeliveryNotesCollectionResponse
A paged collection of DeliveryNotes entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? Document[] -
- odataNextLink? string -
sap.businessone.sales: DeliveryNotesService_ApproveAndAdd_body
Represents the request payload for the DeliveryNotesService_ApproveAndAdd operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.sales: DeliveryNotesService_ApproveAndUpdate_body
Represents the request payload for the DeliveryNotesService_ApproveAndUpdate operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.sales: DeliveryNotesService_Cancel2_body
Represents the request payload for the DeliveryNotesService_Cancel2 operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.sales: DeliveryNotesService_CloseByDate_body
Represents the request payload for the DeliveryNotesService_CloseByDate operation of the SAP Business One Service Layer
Fields
- documentCloseParams? DocumentCloseParams -
sap.businessone.sales: DeliveryNotesService_ExportEWayBill_body
Represents the request payload for the DeliveryNotesService_ExportEWayBill operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.sales: DeliveryNotesService_GetApprovalTemplates_body
Represents the request payload for the DeliveryNotesService_GetApprovalTemplates operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.sales: DocExpenseTaxJurisdiction
The DocExpenseTaxJurisdiction complex type of the SAP Business One Service Layer
Fields
- JurisdictionCode? string -
- JurisdictionType? Signed32 -
- TaxAmount? decimal -
- TaxAmountSC? decimal -
- TaxAmountFC? decimal -
- TaxRate? decimal -
- DocEntry? Signed32 -
- LineNumber? Signed32 -
- RowSequence? Signed32 -
- ExternalCalcTaxRate? decimal -
- ExternalCalcTaxAmount? decimal -
- ExternalCalcTaxAmountFC? decimal -
- ExternalCalcTaxAmountSC? decimal -
sap.businessone.sales: DocFreightEBooksDetail
The DocFreightEBooksDetail complex type of the SAP Business One Service Layer
Fields
- IncomeClassificationType? Signed32 -
- IncomeClassificationCategory? Signed32 -
- ExpensesClassificationType? Signed32 -
- ExpensesClassificationCategory? Signed32 -
- NetValueLC? decimal -
- NetValueFC? decimal -
- NetValueSC? decimal -
- VatCategory? Signed32 -
- WithheldPercentCategory? Signed32 -
- WithheldAmountLC? decimal -
- WithheldAmountFC? decimal -
- WithheldAmountSC? decimal -
- VatClassificationType? Signed32 -
- VatClassificationCategory? Signed32 -
- VATExemptionCause? Signed32 -
sap.businessone.sales: DocLinePickList
The DocLinePickList complex type of the SAP Business One Service Layer
Fields
- pickListLineNum? Signed32 -
- pickListBatchAndBinLineNum? Signed32 -
- pickListEntry? Signed32 -
sap.businessone.sales: Document
The Document entity of the SAP Business One Service Layer
Fields
- DocEntry? Signed32 -
- DocNum? Signed32 -
- DocType? BoDocumentTypes - OData EnumType 'BoDocumentTypes'. Serialised by the Service Layer as the member name
- HandWritten? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Printed? PrintStatusEnum - OData EnumType 'PrintStatusEnum'. Serialised by the Service Layer as the member name
- DocDate? string -
- DocDueDate? string -
- CardCode? string -
- CardName? string -
- Address? string -
- NumAtCard? string -
- DocTotal? decimal -
- AttachmentEntry? Signed32 -
- DocCurrency? string -
- DocRate? decimal -
- Reference1? string -
- Reference2? string -
- Comments? string -
- JournalMemo? string -
- PaymentGroupCode? Signed32 -
- DocTime? string -
- SalesPersonCode? Signed32 -
- TransportationCode? Signed32 -
- Confirmed? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ImportFileNum? Signed32 -
- SummeryType? BoDocSummaryTypes - OData EnumType 'BoDocSummaryTypes'. Serialised by the Service Layer as the member name
- ContactPersonCode? Signed32 -
- ShowSCN? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Series? Signed32 -
- TaxDate? string -
- PartialSupply? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- DocObjectCode? BoObjectTypes - OData EnumType 'BoObjectTypes'. Serialised by the Service Layer as the member name
- ShipToCode? string -
- Indicator? string -
- FederalTaxID? string -
- DiscountPercent? decimal -
- PaymentReference? string -
- CreationDate? string -
- UpdateDate? string -
- FinancialPeriod? Signed32 -
- UserSign? Signed32 -
- TransNum? Signed32 -
- VatSum? decimal -
- VatSumSys? decimal -
- VatSumFc? decimal -
- NetProcedure? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- DocTotalFc? decimal -
- DocTotalSys? decimal -
- Form1099? Signed32 -
- Box1099? string -
- RevisionPo? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- RequriedDate? string -
- CancelDate? string -
- BlockDunning? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Submitted? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Segment? Signed32 -
- PickStatus? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Pick? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- PaymentMethod? string -
- PaymentBlock? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- PaymentBlockEntry? Signed32 -
- CentralBankIndicator? string -
- MaximumCashDiscount? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Reserve? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Project? string -
- ExemptionValidityDateFrom? string -
- ExemptionValidityDateTo? string -
- WareHouseUpdateType? BoDocWhsUpdateTypes - OData EnumType 'BoDocWhsUpdateTypes'. Serialised by the Service Layer as the member name
- Rounding? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ExternalCorrectedDocNum? string -
- InternalCorrectedDocNum? Signed32 -
- NextCorrectingDocument? Signed32 -
- DeferredTax? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- TaxExemptionLetterNum? string -
- WTApplied? decimal -
- WTAppliedFC? decimal -
- BillOfExchangeReserved? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- AgentCode? string -
- WTAppliedSC? decimal -
- TotalEqualizationTax? decimal -
- TotalEqualizationTaxFC? decimal -
- TotalEqualizationTaxSC? decimal -
- NumberOfInstallments? Signed32 -
- ApplyTaxOnFirstInstallment? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- TaxOnInstallments? BoTaxOnInstallmentsTypeEnum - OData EnumType 'BoTaxOnInstallmentsTypeEnum'. Serialised by the Service Layer as the member name
- WTNonSubjectAmount? decimal -
- WTNonSubjectAmountSC? decimal -
- WTNonSubjectAmountFC? decimal -
- WTExemptedAmount? decimal -
- WTExemptedAmountSC? decimal -
- WTExemptedAmountFC? decimal -
- BaseAmount? decimal -
- BaseAmountSC? decimal -
- BaseAmountFC? decimal -
- WTAmount? decimal -
- WTAmountSC? decimal -
- WTAmountFC? decimal -
- VatDate? string -
- DocumentsOwner? Signed32 -
- FolioPrefixString? string -
- FolioNumber? Signed32 -
- DocumentSubType? BoDocumentSubType - OData EnumType 'BoDocumentSubType'. Serialised by the Service Layer as the member name
- BPChannelCode? string -
- BPChannelContact? Signed32 -
- Address2? string -
- DocumentStatus? BoStatus - OData EnumType 'BoStatus'. Serialised by the Service Layer as the member name
- PeriodIndicator? string -
- PayToCode? string -
- ManualNumber? string -
- UseShpdGoodsAct? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- IsPayToBank? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- PayToBankCountry? string -
- PayToBankCode? string -
- PayToBankAccountNo? string -
- PayToBankBranch? string -
- BPL_IDAssignedToInvoice? Signed32 -
- DownPayment? decimal -
- ReserveInvoice? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- LanguageCode? Signed32 -
- TrackingNumber? string -
- PickRemark? string -
- ClosingDate? string -
- SequenceCode? Signed32 -
- SequenceSerial? Signed32 -
- SeriesString? string -
- SubSeriesString? string -
- SequenceModel? string -
- UseCorrectionVATGroup? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- TotalDiscount? decimal -
- DownPaymentAmount? decimal -
- DownPaymentPercentage? decimal -
- DownPaymentType? DownPaymentTypeEnum - OData EnumType 'DownPaymentTypeEnum'. Serialised by the Service Layer as the member name
- DownPaymentAmountSC? decimal -
- DownPaymentAmountFC? decimal -
- VatPercent? decimal -
- ServiceGrossProfitPercent? decimal -
- OpeningRemarks? string -
- ClosingRemarks? string -
- RoundingDiffAmount? decimal -
- RoundingDiffAmountFC? decimal -
- RoundingDiffAmountSC? decimal -
- Cancelled? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- SignatureInputMessage? string -
- SignatureDigest? string -
- CertificationNumber? string -
- PrivateKeyVersion? Signed32 -
- ControlAccount? string -
- InsuranceOperation347? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ArchiveNonremovableSalesQuotation? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- GTSChecker? Signed32 -
- GTSPayee? Signed32 -
- ExtraMonth? Signed32 -
- ExtraDays? Signed32 -
- CashDiscountDateOffset? Signed32 -
- StartFrom? BoPayTermDueTypes - OData EnumType 'BoPayTermDueTypes'. Serialised by the Service Layer as the member name
- NTSApproved? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ETaxWebSite? Signed32 -
- ETaxNumber? string -
- NTSApprovedNumber? string -
- EDocGenerationType? EDocGenerationTypeEnum - OData EnumType 'EDocGenerationTypeEnum'. Serialised by the Service Layer as the member name
- EDocSeries? Signed32 -
- EDocNum? string -
- EDocExportFormat? Signed32 -
- EDocStatus? EDocStatusEnum - OData EnumType 'EDocStatusEnum'. Serialised by the Service Layer as the member name
- EDocErrorCode? string -
- EDocErrorMessage? string -
- DownPaymentStatus? BoSoStatus - OData EnumType 'BoSoStatus'. Serialised by the Service Layer as the member name
- GroupSeries? Signed32 -
- GroupNumber? Signed32 -
- GroupHandWritten? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ReopenOriginalDocument? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ReopenManuallyClosedOrCanceledDocument? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- CreateOnlineQuotation? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- POSEquipmentNumber? string -
- POSManufacturerSerialNumber? string -
- POSCashierNumber? Signed32 -
- ApplyCurrentVATRatesForDownPaymentsToDraw? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ClosingOption? ClosingOptionEnum - OData EnumType 'ClosingOptionEnum'. Serialised by the Service Layer as the member name
- SpecifiedClosingDate? string -
- OpenForLandedCosts? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- AuthorizationStatus? DocumentAuthorizationStatusEnum - OData EnumType 'DocumentAuthorizationStatusEnum'. Serialised by the Service Layer as the member name
- TotalDiscountFC? decimal -
- TotalDiscountSC? decimal -
- RelevantToGTS? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- BPLName? string -
- VATRegNum? string -
- AnnualInvoiceDeclarationReference? Signed32 -
- Supplier? string -
- Releaser? Signed32 -
- Receiver? Signed32 -
- BlanketAgreementNumber? Signed32 -
- IsAlteration? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- CancelStatus? CancelStatusEnum - OData EnumType 'CancelStatusEnum'. Serialised by the Service Layer as the member name
- DraftKey? Signed32 -
- AssetValueDate? string -
- Requester? string -
- RequesterName? string -
- RequesterBranch? Signed32 -
- RequesterDepartment? Signed32 -
- RequesterEmail? string -
- SendNotification? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ReqType? Signed32 -
- ReqCode? string -
- InvoicePayment? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- DocumentDelivery? DocumentDeliveryTypeEnum - OData EnumType 'DocumentDeliveryTypeEnum'. Serialised by the Service Layer as the member name
- AuthorizationCode? string -
- StartDeliveryDate? string -
- StartDeliveryTime? string -
- EndDeliveryDate? string -
- EndDeliveryTime? string -
- VehiclePlate? string -
- ATDocumentType? string -
- ElecCommStatus? ElecCommStatusEnum - OData EnumType 'ElecCommStatusEnum'. Serialised by the Service Layer as the member name
- ElecCommMessage? string -
- ReuseDocumentNum? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ReuseNotaFiscalNum? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- PrintSEPADirect? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- FiscalDocNum? string -
- POSDailySummaryNo? Signed32 -
- POSReceiptNo? Signed32 -
- PointOfIssueCode? string -
- Letter? FolioLetterEnum - OData EnumType 'FolioLetterEnum'. Serialised by the Service Layer as the member name
- FolioNumberFrom? Signed32 -
- FolioNumberTo? Signed32 -
- InterimType? BoInterimDocTypes - OData EnumType 'BoInterimDocTypes'. Serialised by the Service Layer as the member name
- RelatedType? Signed32 -
- RelatedEntry? Signed32 -
- SAPPassport? string -
- DocumentTaxID? string -
- DateOfReportingControlStatementVAT? string -
- ReportingSectionControlStatementVAT? string -
- ExcludeFromTaxReportControlStatementVAT? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- POS_CashRegister? Signed32 -
- UpdateTime? string -
- CreateQRCodeFrom? string -
- PriceMode? PriceModeDocumentEnum - OData EnumType 'PriceModeDocumentEnum'. Serialised by the Service Layer as the member name
- PriceListNum? Signed32 -
- DownPaymentTrasactionID? string -
- OriginalRefNo? string -
- OriginalRefDate? string -
- Revision? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- GSTTransactionType? GSTTransactionTypeEnum - OData EnumType 'GSTTransactionTypeEnum'. Serialised by the Service Layer as the member name
- OriginalCreditOrDebitNo? string -
- OriginalCreditOrDebitDate? string -
- ECommerceOperator? string -
- ECommerceGSTIN? string -
- TaxInvoiceNo? string -
- TaxInvoiceDate? string -
- ShipFrom? string -
- CommissionTrade? CommissionTradeTypeEnum - OData EnumType 'CommissionTradeTypeEnum'. Serialised by the Service Layer as the member name
- CommissionTradeReturn? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- UseBillToAddrToDetermineTax? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- IssuingReason? Signed32 -
- Cig? Signed32 -
- Cup? Signed32 -
- EDocType? EDocTypeEnum - OData EnumType 'EDocTypeEnum'. Serialised by the Service Layer as the member name
- FCEAsPaymentMeans? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- PaidToDate? decimal -
- PaidToDateFC? decimal -
- PaidToDateSys? decimal -
- FatherCard? string -
- FatherType? BoFatherCardTypes - OData EnumType 'BoFatherCardTypes'. Serialised by the Service Layer as the member name
- ShipState? string -
- ShipPlace? string -
- CustOffice? string -
- FCI? string -
- AddLegIn? string -
- LegTextF? Signed32 -
- DANFELgTxt? string -
- DataVersion? Signed32 -
- LastPageFolioNumber? Signed32 -
- InventoryStatus? BoStatus - OData EnumType 'BoStatus'. Serialised by the Service Layer as the member name
- PlasticPackagingTaxRelevant? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- NotRelevantForMonthlyInvoice? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- EndAt? BoPayTermDueTypes - OData EnumType 'BoPayTermDueTypes'. Serialised by the Service Layer as the member name
- ShipToCodeForReturn? string -
- AddressForReturn? string -
- Document_ApprovalRequests? DocumentApprovalRequest[] -
- DocumentLines? DocumentLine[] -
- EWayBillDetails? EWayBillDetails - The
EWayBillDetailscomplex type of the SAP Business One Service Layer
- EDeliveryInfo? EDeliveryInfo - The
EDeliveryInfocomplex type of the SAP Business One Service Layer
- ElectronicProtocols? ElectronicProtocol[] -
- DocumentAdditionalExpenses? DocumentAdditionalExpense[] -
- DocumentDistributedExpenses? DocumentDistributedExpense[] -
- WithholdingTaxDataWTXCollection? WithholdingTaxDataWTX[] -
- WithholdingTaxDataCollection? WithholdingTaxData[] -
- DocumentPackages? DocumentPackage[] -
- DocumentSpecialLines? DocumentSpecialLine[] -
- DocumentInstallments? DocumentInstallment[] -
- DownPaymentsToDraw? DownPaymentToDraw[] -
- TaxExtension? TaxExtension - The
TaxExtensioncomplex type of the SAP Business One Service Layer
- AddressExtension? AddressExtension - The
AddressExtensioncomplex type of the SAP Business One Service Layer
- DocumentReferences? DocumentReference[] -
- DocumentAdditionalIntrastatExpenses? DocumentAdditionalIntrastatExpense[] -
- DutyStatus? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- BaseType? Signed32 -
- BaseEntry? Signed32 -
- IndFinal? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- AllocationNumberIL? string -
- DigitalPayToAddress? string -
- DigitalPayments? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- SirenNumber? string -
- SiretNumber? string -
- RoutingCode? string -
- Suffix? string -
- SOIWizardId? Signed32 -
- SalesPerson? SalesPerson - The
SalesPersonentity of the SAP Business One Service Layer
- POSDailySummary? POSDailySummary - The
POSDailySummaryentity of the SAP Business One Service Layer
sap.businessone.sales: DocumentAdditionalExpense
The DocumentAdditionalExpense complex type of the SAP Business One Service Layer
Fields
- ExpenseCode? Signed32 -
- LineTotal? decimal -
- LineTotalFC? decimal -
- LineTotalSys? decimal -
- PaidToDate? decimal -
- PaidToDateFC? decimal -
- PaidToDateSys? decimal -
- Remarks? string -
- DistributionMethod? BoAdEpnsDistribMethods - OData EnumType 'BoAdEpnsDistribMethods'. Serialised by the Service Layer as the member name
- TaxLiable? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- VatGroup? string -
- TaxPercent? decimal -
- TaxSum? decimal -
- TaxSumFC? decimal -
- TaxSumSys? decimal -
- DeductibleTaxSum? decimal -
- DeductibleTaxSumFC? decimal -
- DeductibleTaxSumSys? decimal -
- AquisitionTax? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- TaxCode? string -
- TaxType? BoAdEpnsTaxTypes - OData EnumType 'BoAdEpnsTaxTypes'. Serialised by the Service Layer as the member name
- TaxPaid? decimal -
- TaxPaidFC? decimal -
- TaxPaidSys? decimal -
- EqualizationTaxPercent? decimal -
- EqualizationTaxSum? decimal -
- EqualizationTaxFC? decimal -
- EqualizationTaxSys? decimal -
- TaxTotalSum? decimal -
- TaxTotalSumFC? decimal -
- TaxTotalSumSys? decimal -
- BaseDocEntry? Signed32 -
- BaseDocLine? Signed32 -
- BaseDocType? Signed32 -
- BaseDocumentReference? Signed32 -
- LineNum? Signed32 -
- LastPurchasePrice? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Status? BoStatus - OData EnumType 'BoStatus'. Serialised by the Service Layer as the member name
- Stock? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- TargetAbsEntry? Signed32 -
- TargetType? Signed32 -
- WTLiable? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- DistributionRule? string -
- Project? string -
- DistributionRule2? string -
- DistributionRule3? string -
- DistributionRule4? string -
- DistributionRule5? string -
- LineGross? decimal -
- LineGrossSys? decimal -
- LineGrossFC? decimal -
- ExternalCalcTaxRate? decimal -
- ExternalCalcTaxAmount? decimal -
- ExternalCalcTaxAmountFC? decimal -
- ExternalCalcTaxAmountSC? decimal -
- CUSplit? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- DocFreight? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- DocExpenseTaxJurisdictions? DocExpenseTaxJurisdiction[] -
- DocFreightEBooksDetails? DocFreightEBooksDetail[] -
sap.businessone.sales: DocumentAdditionalIntrastatExpense
The DocumentAdditionalIntrastatExpense complex type of the SAP Business One Service Layer
Fields
- ExpenseCode? Signed32 -
- LineTotal? decimal -
- LineTotalFC? decimal -
- LineTotalSys? decimal -
- PaidToDate? decimal -
- PaidToDateFC? decimal -
- PaidToDateSys? decimal -
- DistributionMethod? BoAdEpnsDistribMethods - OData EnumType 'BoAdEpnsDistribMethods'. Serialised by the Service Layer as the member name
- BaseDocEntry? Signed32 -
- BaseDocLine? Signed32 -
- BaseDocType? Signed32 -
- BaseDocumentReference? Signed32 -
- LineNum? Signed32 -
sap.businessone.sales: DocumentApprovalRequest
The Document_ApprovalRequest complex type of the SAP Business One Service Layer
Fields
- activeForUpdate? BoYesNoEnum -
- approvalTemplatesID? Signed32 -
- remarks? string -
- approvalTemplatesName? string -
sap.businessone.sales: DocumentCloseParams
The DocumentCloseParams complex type of the SAP Business One Service Layer
Fields
- docEntry? Signed32 -
- specifiedClosingDate? string -
- closingOption? ClosingOptionEnum -
sap.businessone.sales: DocumentDistributedExpense
The DocumentDistributedExpense complex type of the SAP Business One Service Layer
sap.businessone.sales: DocumentInstallment
The DocumentInstallment complex type of the SAP Business One Service Layer
Fields
- DueDate? string -
- Percentage? decimal -
- Total? decimal -
- LastDunningDate? string -
- DunningLevel? Signed32 -
- TotalFC? decimal -
- InstallmentId? Signed32 -
- PaymentOrdered? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- PaidToDate? decimal -
- PaidToDateFC? decimal -
sap.businessone.sales: DocumentLine
The DocumentLine complex type of the SAP Business One Service Layer
Fields
- LineNum? Signed32 -
- ItemCode? string -
- ItemDescription? string -
- Quantity? decimal -
- ShipDate? string -
- Price? decimal -
- PriceAfterVAT? decimal -
- Currency? string -
- Rate? decimal -
- DiscountPercent? decimal -
- VendorNum? string -
- SerialNum? string -
- WarehouseCode? string -
- SalesPersonCode? Signed32 -
- CommisionPercent? decimal -
- TreeType? BoItemTreeTypes - OData EnumType 'BoItemTreeTypes'. Serialised by the Service Layer as the member name
- AccountCode? string -
- UseBaseUnits? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- SupplierCatNum? string -
- CostingCode? string -
- ProjectCode? string -
- BarCode? string -
- VatGroup? string -
- Height1? decimal -
- Hight1Unit? Signed32 -
- Height2? decimal -
- Height2Unit? Signed32 -
- Lengh1? decimal -
- Lengh1Unit? Signed32 -
- Lengh2? decimal -
- Lengh2Unit? Signed32 -
- Weight1? decimal -
- Weight1Unit? Signed32 -
- Weight2? decimal -
- Weight2Unit? Signed32 -
- Factor1? decimal -
- Factor2? decimal -
- Factor3? decimal -
- Factor4? decimal -
- BaseType? Signed32 -
- BaseEntry? Signed32 -
- BaseLine? Signed32 -
- Volume? decimal -
- VolumeUnit? Signed32 -
- Width1? decimal -
- Width1Unit? Signed32 -
- Width2? decimal -
- Width2Unit? Signed32 -
- Address? string -
- TaxCode? string -
- TaxType? BoTaxTypes - OData EnumType 'BoTaxTypes'. Serialised by the Service Layer as the member name
- TaxLiable? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- PickStatus? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- PickQuantity? decimal -
- PickListIdNumber? Signed32 -
- OriginalItem? string -
- BackOrder? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- FreeText? string -
- ShippingMethod? Signed32 -
- POTargetNum? Signed32 -
- POTargetEntry? string -
- POTargetRowNum? Signed32 -
- CorrectionInvoiceItem? BoCorInvItemStatus - OData EnumType 'BoCorInvItemStatus'. Serialised by the Service Layer as the member name
- CorrInvAmountToStock? decimal -
- CorrInvAmountToDiffAcct? decimal -
- AppliedTax? decimal -
- AppliedTaxFC? decimal -
- AppliedTaxSC? decimal -
- WTLiable? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- DeferredTax? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- EqualizationTaxPercent? decimal -
- TotalEqualizationTax? decimal -
- TotalEqualizationTaxFC? decimal -
- TotalEqualizationTaxSC? decimal -
- NetTaxAmount? decimal -
- NetTaxAmountFC? decimal -
- NetTaxAmountSC? decimal -
- MeasureUnit? string -
- UnitsOfMeasurment? decimal -
- LineTotal? decimal -
- TaxPercentagePerRow? decimal -
- TaxTotal? decimal -
- ConsumerSalesForecast? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ExciseAmount? decimal -
- TaxPerUnit? decimal -
- TotalInclTax? decimal -
- CountryOrg? string -
- SWW? string -
- TransactionType? BoTransactionTypeEnum - OData EnumType 'BoTransactionTypeEnum'. Serialised by the Service Layer as the member name
- DistributeExpense? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- RowTotalFC? decimal -
- RowTotalSC? decimal -
- LastBuyInmPrice? decimal -
- LastBuyDistributeSumFc? decimal -
- LastBuyDistributeSumSc? decimal -
- LastBuyDistributeSum? decimal -
- StockDistributesumForeign? decimal -
- StockDistributesumSystem? decimal -
- StockDistributesum? decimal -
- StockInmPrice? decimal -
- PickStatusEx? BoDocumentLinePickStatus - OData EnumType 'BoDocumentLinePickStatus'. Serialised by the Service Layer as the member name
- TaxBeforeDPM? decimal -
- TaxBeforeDPMFC? decimal -
- TaxBeforeDPMSC? decimal -
- CFOPCode? string -
- CSTCode? string -
- Usage? Signed32 -
- TaxOnly? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- VisualOrder? Signed32 -
- BaseOpenQuantity? decimal -
- UnitPrice? decimal -
- LineStatus? BoStatus - OData EnumType 'BoStatus'. Serialised by the Service Layer as the member name
- PackageQuantity? decimal -
- Text? string -
- LineType? BoDocLineType - OData EnumType 'BoDocLineType'. Serialised by the Service Layer as the member name
- COGSCostingCode? string -
- COGSAccountCode? string -
- ChangeAssemlyBoMWarehouse? string -
- GrossBuyPrice? decimal -
- GrossBase? Signed32 -
- GrossProfitTotalBasePrice? decimal -
- CostingCode2? string -
- CostingCode3? string -
- CostingCode4? string -
- CostingCode5? string -
- ItemDetails? string -
- LocationCode? Signed32 -
- ActualDeliveryDate? string -
- RemainingOpenQuantity? decimal -
- OpenAmount? decimal -
- OpenAmountFC? decimal -
- OpenAmountSC? decimal -
- ExLineNo? string -
- RequiredDate? string -
- RequiredQuantity? decimal -
- COGSCostingCode2? string -
- COGSCostingCode3? string -
- COGSCostingCode4? string -
- COGSCostingCode5? string -
- CSTforIPI? string -
- CSTforPIS? string -
- CSTforCOFINS? string -
- CreditOriginCode? string -
- WithoutInventoryMovement? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- AgreementNo? Signed32 -
- AgreementRowNumber? Signed32 -
- ActualBaseEntry? Signed32 -
- ActualBaseLine? Signed32 -
- DocEntry? Signed32 -
- Surpluses? decimal -
- DefectAndBreakup? decimal -
- Shortages? decimal -
- ConsiderQuantity? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- PartialRetirement? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- RetirementQuantity? decimal -
- RetirementAPC? decimal -
- ThirdParty? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- PoNum? string -
- PoItmNum? Signed32 -
- ExpenseType? string -
- ReceiptNumber? string -
- ExpenseOperationType? BoExpenseOperationTypeEnum - OData EnumType 'BoExpenseOperationTypeEnum'. Serialised by the Service Layer as the member name
- FederalTaxID? string -
- GrossProfit? decimal -
- GrossProfitFC? decimal -
- GrossProfitSC? decimal -
- PriceSource? DocumentPriceSourceEnum - OData EnumType 'DocumentPriceSourceEnum'. Serialised by the Service Layer as the member name
- EnableReturnCost? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ReturnCost? decimal -
- LineVendor? string -
- ReturnAction? Signed32 -
- ReturnReason? Signed32 -
- StgSeqNum? Signed32 -
- StgEntry? Signed32 -
- StgDesc? string -
- UoMEntry? Signed32 -
- UoMCode? string -
- InventoryQuantity? decimal -
- RemainingOpenInventoryQuantity? decimal -
- ParentLineNum? Signed32 -
- Incoterms? Signed32 -
- TransportMode? Signed32 -
- NatureOfTransaction? Signed32 -
- DestinationCountryForImport? string -
- DestinationRegionForImport? Signed32 -
- OriginCountryForExport? string -
- OriginRegionForExport? Signed32 -
- ItemType? BoDocItemType - OData EnumType 'BoDocItemType'. Serialised by the Service Layer as the member name
- ChangeInventoryQuantityIndependently? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- FreeOfChargeBP? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- SACEntry? Signed32 -
- HSNEntry? Signed32 -
- GrossPrice? decimal -
- GrossTotal? decimal -
- GrossTotalFC? decimal -
- GrossTotalSC? decimal -
- NCMCode? Signed32 -
- NVECode? string -
- IndEscala? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- CtrSealQty? decimal -
- CNJPMan? string -
- CESTCode? Signed32 -
- UFFiscalBenefitCode? string -
- ReverseCharge? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ShipToCode? string -
- ShipToDescription? string -
- ShipFromCode? string -
- ShipFromDescription? string -
- OwnerCode? Signed32 -
- ExternalCalcTaxRate? decimal -
- ExternalCalcTaxAmount? decimal -
- ExternalCalcTaxAmountFC? decimal -
- ExternalCalcTaxAmountSC? decimal -
- StandardItemIdentification? Signed32 -
- CommodityClassification? Signed32 -
- WeightOfRecycledPlastic? decimal -
- PlasticPackageExemptionReason? string -
- LegalText? string -
- Cig? Signed32 -
- Cup? Signed32 -
- OperatingProfit? decimal -
- OperatingProfitFC? decimal -
- OperatingProfitSC? decimal -
- NetIncome? decimal -
- NetIncomeFC? decimal -
- NetIncomeSC? decimal -
- CSTforIBS? string -
- CSTforCBS? string -
- CSTforIS? string -
- UnencumberedReason? Signed32 -
- CUSplit? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ListNum? Signed32 -
- RecognizedTaxCode? string -
- LineTaxJurisdictions? LineTaxJurisdiction[] -
- GeneratedAssets? GeneratedAsset[] -
- EBooksDetails? EBooksDetail[] -
- DocLinePickLists? DocLinePickList[] -
- DocumentLineAdditionalExpenses? DocumentLineAdditionalExpense[] -
- WithholdingTaxLines? WithholdingTaxLine[] -
- SerialNumbers? SerialNumber[] -
- BatchNumbers? BatchNumber[] -
- DocumentLinesBinAllocations? DocumentLinesBinAllocation[] -
- ExportProcesses? ExportProcess[] -
- CCDNumbers? CCDNumber[] -
- ImportProcesses? ImportProcess[] -
sap.businessone.sales: DocumentLineAdditionalExpense
The DocumentLineAdditionalExpense complex type of the SAP Business One Service Layer
Fields
- LineNumber? Signed32 -
- GroupCode? Signed32 -
- ExpenseCode? Signed32 -
- LineTotal? decimal -
- LineTotalFC? decimal -
- LineTotalSys? decimal -
- PaidToDate? decimal -
- PaidToDateFC? decimal -
- PaidToDateSys? decimal -
- TaxLiable? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- VatGroup? string -
- TaxPercent? decimal -
- TaxSum? decimal -
- TaxSumFC? decimal -
- TaxSumSys? decimal -
- DeductibleTaxSum? decimal -
- DeductibleTaxSumFC? decimal -
- DeductibleTaxSumSys? decimal -
- AquisitionTax? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- TaxCode? string -
- TaxType? BoAdEpnsTaxTypes - OData EnumType 'BoAdEpnsTaxTypes'. Serialised by the Service Layer as the member name
- TaxPaid? decimal -
- TaxPaidFC? decimal -
- TaxPaidSys? decimal -
- EqualizationTaxPercent? decimal -
- EqualizationTaxSum? decimal -
- EqualizationTaxFC? decimal -
- EqualizationTaxSys? decimal -
- TaxTotalSum? decimal -
- TaxTotalSumFC? decimal -
- TaxTotalSumSys? decimal -
- WTLiable? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- BaseGroup? Signed32 -
- DistributionRule? string -
- Project? string -
- DistributionRule2? string -
- DistributionRule3? string -
- DistributionRule4? string -
- DistributionRule5? string -
- ExternalCalcTaxRate? decimal -
- ExternalCalcTaxAmount? decimal -
- ExternalCalcTaxAmountFC? decimal -
- ExternalCalcTaxAmountSC? decimal -
- CUSplit? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- DocFreight? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- LineExpenseTaxJurisdictions? LineExpenseTaxJurisdiction[] -
- LineFreightEBooksDetails? LineFreightEBooksDetail[] -
sap.businessone.sales: DocumentLinesBinAllocation
The DocumentLinesBinAllocation complex type of the SAP Business One Service Layer
Fields
- BinAbsEntry? Signed32 -
- Quantity? decimal -
- AllowNegativeQuantity? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- SerialAndBatchNumbersBaseLine? Signed32 -
- BaseLineNumber? Signed32 -
sap.businessone.sales: DocumentPackage
The DocumentPackage complex type of the SAP Business One Service Layer
Fields
- Number? Signed32 -
- Type? string -
- TotalWeight? decimal -
- Units? Signed32 -
- DocumentPackageItems? DocumentPackageItem[] -
sap.businessone.sales: DocumentPackageItem
The DocumentPackageItem complex type of the SAP Business One Service Layer
Fields
- PackageNumber? Signed32 -
- ItemCode? string -
- Quantity? decimal -
- UoMEntry? Signed32 -
- MeasureUnit? string -
- UnitsOfMeasurement? decimal -
sap.businessone.sales: DocumentReference
The DocumentReference complex type of the SAP Business One Service Layer
Fields
- docEntry? Signed32 -
- issueDate? string -
- issuerCode? string -
- extDocNum? string -
- lineNumber? Signed32 -
- refDocEntr? Signed32 -
- remark? string -
- refDocNum? Signed32 -
- issuerCNPJ? string -
- series? string -
- number? Signed32 -
- subSeries? string -
- linkRefTyp? LinkReferenceTypeEnum -
- refAmount? decimal -
- model? string -
- accessKey? string -
- refAccKey? string -
- refObjType? ReferencedObjectTypeEnum -
sap.businessone.sales: DocumentSpecialLine
The DocumentSpecialLine complex type of the SAP Business One Service Layer
Fields
- subtotalSC? decimal -
- grossTotalFC? decimal -
- freight1? decimal -
- freight2? decimal -
- freight3SC? decimal -
- taxAmountSC? decimal -
- subtotal? decimal -
- freight3FC? decimal -
- freight2FC? decimal -
- orderNumber? Signed32 -
- afterLineNumber? Signed32 -
- freight1FC? decimal -
- grossTotalSC? decimal -
- lineNum? Signed32 -
- lineText? string -
- taxAmount? decimal -
- taxAmountFC? decimal -
- subtotalFC? decimal -
- grossTotal? decimal -
- freight2SC? decimal -
- freight3? decimal -
- freight1SC? decimal -
- lineType? BoDocSpecialLineType -
sap.businessone.sales: DownPaymentsCollectionResponse
A paged collection of DownPayments entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? Document[] -
- odataNextLink? string -
sap.businessone.sales: DownPaymentsService_ApproveAndAdd_body
Represents the request payload for the DownPaymentsService_ApproveAndAdd operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.sales: DownPaymentsService_ApproveAndUpdate_body
Represents the request payload for the DownPaymentsService_ApproveAndUpdate operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.sales: DownPaymentsService_CloseByDate_body
Represents the request payload for the DownPaymentsService_CloseByDate operation of the SAP Business One Service Layer
Fields
- documentCloseParams? DocumentCloseParams -
sap.businessone.sales: DownPaymentsService_ExportEWayBill_body
Represents the request payload for the DownPaymentsService_ExportEWayBill operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.sales: DownPaymentsService_GetApprovalTemplates_body
Represents the request payload for the DownPaymentsService_GetApprovalTemplates operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.sales: DownPaymentToDraw
The DownPaymentToDraw complex type of the SAP Business One Service Layer
Fields
- taxFC? decimal -
- grossAmountToDraw? decimal -
- docEntry? Signed32 -
- grossAmountToDrawSC? decimal -
- tax? decimal -
- amountToDrawSC? decimal -
- rowNum? Signed32 -
- name? string -
- docInternalID? Signed32 -
- isGrossLine? BoYesNoEnum -
- details? string -
- postingDate? string -
- amountToDraw? decimal -
- taxSC? decimal -
- downPaymentType? DownPaymentTypeEnum -
- docNumber? Signed32 -
- grossAmountToDrawFC? decimal -
- downPaymentsToDrawDetails? DownPaymentToDrawDetails[] -
- dueDate? string -
- amountToDrawFC? decimal -
sap.businessone.sales: DownPaymentToDrawDetails
The DownPaymentToDrawDetails complex type of the SAP Business One Service Layer
Fields
- seqNum? Signed32 -
- vatGroupCode? string -
- taxFC? decimal -
- grossAmountToDraw? decimal -
- docEntry? Signed32 -
- grossAmountToDrawSC? decimal -
- tax? decimal -
- taxAdjust? BoYesNoEnum -
- rowNum? Signed32 -
- amountToDrawSC? decimal -
- docInternalID? Signed32 -
- isGrossLine? BoYesNoEnum -
- amountToDraw? decimal -
- taxSC? decimal -
- grossAmountToDrawFC? decimal -
- lineType? LineTypeEnum -
- vatPercent? decimal -
- amountToDrawFC? decimal -
sap.businessone.sales: DraftsCollectionResponse
A paged collection of Drafts entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? Document[] -
- odataNextLink? string -
sap.businessone.sales: DraftsService_ApproveAndAdd_body
Represents the request payload for the DraftsService_ApproveAndAdd operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.sales: DraftsService_ApproveAndUpdate_body
Represents the request payload for the DraftsService_ApproveAndUpdate operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.sales: DraftsService_CloseByDate_body
Represents the request payload for the DraftsService_CloseByDate operation of the SAP Business One Service Layer
Fields
- documentCloseParams? DocumentCloseParams -
sap.businessone.sales: DraftsService_ExportEWayBill_body
Represents the request payload for the DraftsService_ExportEWayBill operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.sales: DraftsService_GetApprovalTemplates_body
Represents the request payload for the DraftsService_GetApprovalTemplates operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.sales: DraftsService_SaveDraftToDocument_body
Represents the request payload for the DraftsService_SaveDraftToDocument operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.sales: DunningLetter
The DunningLetter entity of the SAP Business One Service Layer
Fields
- FeeCurrency? string -
- RowNumber? Signed32 -
- LetterFormat? string -
- Effectiveafter? string -
- MinimumBalanceCurrency? string -
- Feeperletter? decimal -
- CalcInterest? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- MinimumBalance? decimal -
sap.businessone.sales: DunningLettersCollectionResponse
A paged collection of DunningLetters entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? DunningLetter[] -
- odataNextLink? string -
sap.businessone.sales: DunningTerm
The DunningTerm entity of the SAP Business One Service Layer
Fields
- exchangeRateSelect? ExchangeRateSelectEnum -
- dunningTermLines? DunningTermLine[] -
- calculateInterestMethod? CalculateInterestMethodEnum -
- daysInMonth? Signed32 -
- automaticPosting? AutomaticPostingEnum -
- letterFeeCurrency? string -
- minimumBalance? decimal -
- code? string -
- groupingMethod? GroupingMethodEnum -
- daysInYear? Signed32 -
- name? string -
- letterFee? decimal -
- feeAccount? string -
- interestAccount? string -
- applyHighestLetterTemplate? BoYesNoEnum -
- baseDateSelect? BaseDateSelectEnum -
- includeInterest? BoYesNoEnum -
- yearlyInterestRate? decimal -
- minimumBalanceCurrency? string -
sap.businessone.sales: DunningTermLine
The DunningTermLine complex type of the SAP Business One Service Layer
Fields
- letterFee? decimal -
- mininumBalance? decimal -
- effectiveafter? string -
- letterFeeCurrency? string -
- calculateInterest? BoYesNoEnum -
- levelNum? Signed32 -
- letterFormat? DunningLetterTypeEnum -
- mininumBalanceCurrency? string -
sap.businessone.sales: DunningTermParams
The DunningTermParams complex type of the SAP Business One Service Layer
Fields
- code? string -
- name? string -
sap.businessone.sales: DunningTermsCollectionResponse
A paged collection of DunningTerms entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? DunningTerm[] -
- odataNextLink? string -
sap.businessone.sales: EBooksDetail
The EBooksDetail complex type of the SAP Business One Service Layer
Fields
- IncomeClassificationType? Signed32 -
- IncomeClassificationCategory? Signed32 -
- ExpensesClassificationType? Signed32 -
- ExpensesClassificationCategory? Signed32 -
- NetValueLC? decimal -
- NetValueFC? decimal -
- NetValueSC? decimal -
- VatCategory? Signed32 -
- WithheldPercentCategory? Signed32 -
- WithheldAmountLC? decimal -
- WithheldAmountFC? decimal -
- WithheldAmountSC? decimal -
- VatClassificationType? Signed32 -
- VatClassificationCategory? Signed32 -
- VATExemptionCause? Signed32 -
- RecType? Signed32 -
- StampDutyCategory? Signed32 -
- OtherTaxesCategory? Signed32 -
- FeesCategory? Signed32 -
sap.businessone.sales: EDeliveryInfo
The EDeliveryInfo complex type of the SAP Business One Service Layer
Fields
- vehicleNo? string -
- docEntry? Signed32 -
- moveType? Signed32 -
sap.businessone.sales: ElectronicProtocol
The ElectronicProtocol complex type of the SAP Business One Service Layer
Fields
- ProtocolCode? ElectronicDocProtocolCodeEnum - OData EnumType 'ElectronicDocProtocolCodeEnum'. Serialised by the Service Layer as the member name
- GenerationType? ElectronicDocGenTypeEnum - OData EnumType 'ElectronicDocGenTypeEnum'. Serialised by the Service Layer as the member name
- MappingID? Signed32 -
- TestingMode? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Confirmation? string -
- EDocType? Signed32 -
- CFDiCancellationReason? string -
- CFDiCancellationResponse? string -
- RelatedDocuments? RelatedDocument[] -
- EBooksRelevant? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- EBooksMARK? string -
- EBooksMARKofNegative? string -
- EBooksInvoiceType? string -
- EBooksInvoiceTypeofNegative? string -
- EBillingIRN? string -
- EETPKP? string -
- EETBKP? string -
- SignatureInputMessage? string -
- SignatureDigest? string -
- FechaTimbrado? string -
- SelloSAT? string -
- PaymentMethod? string -
- RfcProvCertif? string -
- NoCertificadoSAT? string -
- FPASequenceNumber? Signed32 -
- FPASendDateSDI? string -
- FPAProgressivo? string -
- ProtocolDescription? string -
- CFDiExport? string -
- EBillingAckNo? string -
- EBillingAckDt? string -
- EBillingSignedInvoice? string -
- EBillingSignedQRCode? string -
- EBillingResponseStatus? string -
- CFDiCancellationReference? string -
- EBooksQRCodePath? string -
- EBooksQRCodePathofNegative? string -
- CartaPorteID? string -
- EBooksDispatchDate? string -
- EBooksDispatchTime? string -
sap.businessone.sales: EWayBillDetails
The EWayBillDetails complex type of the SAP Business One Service Layer
Fields
- billFromName? string -
- shipToStateGSTCode? string -
- transactionType? EWBTransactionTypeEnum -
- vehicleNo? string -
- eWayBillExpirationDate? string -
- dispatchFromAddress1? string -
- transporterName? string -
- billFromGSTIN? string -
- dispatchFromAddress2? string -
- dispatchFromZipCode? string -
- transporterID? string -
- billToName? string -
- supplyType? EWBSupplyTypeEnum -
- mainHSNEntry? Signed32 -
- shipToAddress2? string -
- shipToAddress1? string -
- distance? decimal -
- dispatchFromPlace? string -
- subType? Signed32 -
- shipToZipCode? string -
- transportationMode? Signed32 -
- transporterDocDate? string -
- vehicleType? string -
- transporterEntry? Signed32 -
- docEntry? Signed32 -
- documentType? string -
- billFromStateGSTCode? string -
- dispatchFromStateGSTCode? string -
- transporterDocNo? string -
- shipToPlace? string -
- billToGSTIN? string -
- transporterLineNumber? Signed32 -
- eWayBillNo? string -
- billToStateGSTCode? string -
- eWayBillDate? string -
sap.businessone.sales: ExportProcess
The ExportProcess complex type of the SAP Business One Service Layer
Fields
- ladingBillTypeCode? Signed32 -
- quantityOfExportedItems? decimal -
- exportationNatureCode? Signed32 -
- ladingBillDate? string -
- natureOfExport? string -
- ladingBillNumber? string -
- lineNumber? Signed32 -
- exportationRegistryNumber? Signed32 -
- additionalItemSequentialNumber? Signed32 -
- exportationDeclarationDate? string -
- drawbackSuspensionRegime? string -
- merchandiseLeftCustomsDate? string -
- exportationDocumentTypeCode? Signed32 -
- exportationRegistryDate? string -
- exportationDeclarationNumber? Signed32 -
sap.businessone.sales: GeneratedAsset
The GeneratedAsset complex type of the SAP Business One Service Layer
Fields
- status? GeneratedAssetStatusEnum -
- amount? decimal -
- serialNumber? string -
- remarks? string -
- docEntry? Signed32 -
- assetCode? string -
- lineNumber? Signed32 -
- visualOrder? Signed32 -
- amountSC? decimal -
sap.businessone.sales: GetBlanketAgreementsQueries
Represents the Queries record for the operation: getBlanketAgreements
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.sales: GetCommissionGroupsQueries
Represents the Queries record for the operation: getCommissionGroups
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.sales: GetCorrectionInvoiceQueries
Represents the Queries record for the operation: getCorrectionInvoice
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.sales: GetCorrectionInvoiceReversalQueries
Represents the Queries record for the operation: getCorrectionInvoiceReversal
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.sales: GetCreditNotesQueries
Represents the Queries record for the operation: getCreditNotes
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.sales: GetDeliveryNotesQueries
Represents the Queries record for the operation: getDeliveryNotes
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.sales: GetDownPaymentsQueries
Represents the Queries record for the operation: getDownPayments
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.sales: GetDraftsQueries
Represents the Queries record for the operation: getDrafts
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.sales: GetDunningLettersQueries
Represents the Queries record for the operation: getDunningLetters
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.sales: GetDunningTermsQueries
Represents the Queries record for the operation: getDunningTerms
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.sales: GetInvoicesQueries
Represents the Queries record for the operation: getInvoices
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.sales: GetOrdersQueries
Represents the Queries record for the operation: getOrders
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.sales: GetPOSDailySummaryQueries
Represents the Queries record for the operation: getPOSDailySummary
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.sales: GetQuotationsQueries
Represents the Queries record for the operation: getQuotations
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.sales: GetReturnRequestQueries
Represents the Queries record for the operation: getReturnRequest
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.sales: GetReturnsQueries
Represents the Queries record for the operation: getReturns
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.sales: GetSalesPersonsQueries
Represents the Queries record for the operation: getSalesPersons
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.sales: GetSalesTaxInvoicesQueries
Represents the Queries record for the operation: getSalesTaxInvoices
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.sales: ImportProcess
The ImportProcess complex type of the SAP Business One Service Layer
Fields
- dateOfRegistryDIDSIDA? string -
- importationDocumentNumber? string -
- customsClearanceDate? string -
- additionalItemSequentialNumber? Signed32 -
- drawbackSuspensionRegime? string -
- typeOfImport? string -
- additionalFreightToNavyAuthority? decimal -
- drawbackRegimeConcessionAccountNumber? string -
- importationDocumentTypeCode? string -
- additionalNumber? string -
- additionalItemDiscountValue? decimal -
- lineNumber? Signed32 -
sap.businessone.sales: inline_response_200
Represents the response payload for the BlanketAgreements_GetRelatedDocuments operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? BlanketAgreementsDocument[] -
sap.businessone.sales: inline_response_200_1
Represents the response payload for the BlanketAgreementsService_GetBlanketAgreementList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? BlanketAgreementParams[] -
sap.businessone.sales: inline_response_200_2
Represents the response payload for the DunningTermsService_GetDunningTermList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? DunningTermParams[] -
sap.businessone.sales: InvoicesCollectionResponse
A paged collection of Invoices entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? Document[] -
- odataNextLink? string -
sap.businessone.sales: InvoicesService_ApproveAndAdd_body
Represents the request payload for the InvoicesService_ApproveAndAdd operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.sales: InvoicesService_ApproveAndUpdate_body
Represents the request payload for the InvoicesService_ApproveAndUpdate operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.sales: InvoicesService_Cancel2_body
Represents the request payload for the InvoicesService_Cancel2 operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.sales: InvoicesService_CloseByDate_body
Represents the request payload for the InvoicesService_CloseByDate operation of the SAP Business One Service Layer
Fields
- documentCloseParams? DocumentCloseParams -
sap.businessone.sales: InvoicesService_ExportEWayBill_body
Represents the request payload for the InvoicesService_ExportEWayBill operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.sales: InvoicesService_GetApprovalTemplates_body
Represents the request payload for the InvoicesService_GetApprovalTemplates operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.sales: InvoicesService_RequestApproveCancellation_body
Represents the request payload for the InvoicesService_RequestApproveCancellation operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.sales: LineExpenseTaxJurisdiction
The LineExpenseTaxJurisdiction complex type of the SAP Business One Service Layer
Fields
- JurisdictionCode? string -
- JurisdictionType? Signed32 -
- TaxAmount? decimal -
- TaxAmountSC? decimal -
- TaxAmountFC? decimal -
- TaxRate? decimal -
- DocEntry? Signed32 -
- LineNumber? Signed32 -
- RowSequence? Signed32 -
- ExternalCalcTaxRate? decimal -
- ExternalCalcTaxAmount? decimal -
- ExternalCalcTaxAmountFC? decimal -
- ExternalCalcTaxAmountSC? decimal -
sap.businessone.sales: LineFreightEBooksDetail
The LineFreightEBooksDetail complex type of the SAP Business One Service Layer
Fields
- IncomeClassificationType? Signed32 -
- IncomeClassificationCategory? Signed32 -
- ExpensesClassificationType? Signed32 -
- ExpensesClassificationCategory? Signed32 -
- NetValueLC? decimal -
- NetValueFC? decimal -
- NetValueSC? decimal -
- VatCategory? Signed32 -
- WithheldPercentCategory? Signed32 -
- WithheldAmountLC? decimal -
- WithheldAmountFC? decimal -
- WithheldAmountSC? decimal -
- VatClassificationType? Signed32 -
- VatClassificationCategory? Signed32 -
- VATExemptionCause? Signed32 -
sap.businessone.sales: LineTaxJurisdiction
The LineTaxJurisdiction complex type of the SAP Business One Service Layer
Fields
- JurisdictionCode? string -
- JurisdictionType? Signed32 -
- TaxAmount? decimal -
- TaxAmountSC? decimal -
- TaxAmountFC? decimal -
- TaxRate? decimal -
- DocEntry? Signed32 -
- LineNumber? Signed32 -
- RowSequence? Signed32 -
- ExternalCalcTaxRate? decimal -
- ExternalCalcTaxAmount? decimal -
- ExternalCalcTaxAmountFC? decimal -
- ExternalCalcTaxAmountSC? decimal -
- BaseSum? decimal -
- TaxInPrice? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- NonDeductiblePercent? decimal -
- TaxOnReserveInvoice? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Exempt? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Unencumbered? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
sap.businessone.sales: ListBlanketAgreementsHeaders
Represents the Headers record for the operation: listBlanketAgreements
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.sales: ListBlanketAgreementsQueries
Represents the Queries record for the operation: listBlanketAgreements
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.sales: ListCommissionGroupsHeaders
Represents the Headers record for the operation: listCommissionGroups
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.sales: ListCommissionGroupsQueries
Represents the Queries record for the operation: listCommissionGroups
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.sales: ListCorrectionInvoiceHeaders
Represents the Headers record for the operation: listCorrectionInvoice
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.sales: ListCorrectionInvoiceQueries
Represents the Queries record for the operation: listCorrectionInvoice
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.sales: ListCorrectionInvoiceReversalHeaders
Represents the Headers record for the operation: listCorrectionInvoiceReversal
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.sales: ListCorrectionInvoiceReversalQueries
Represents the Queries record for the operation: listCorrectionInvoiceReversal
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.sales: ListCreditNotesHeaders
Represents the Headers record for the operation: listCreditNotes
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.sales: ListCreditNotesQueries
Represents the Queries record for the operation: listCreditNotes
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.sales: ListDeliveryNotesHeaders
Represents the Headers record for the operation: listDeliveryNotes
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.sales: ListDeliveryNotesQueries
Represents the Queries record for the operation: listDeliveryNotes
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.sales: ListDownPaymentsHeaders
Represents the Headers record for the operation: listDownPayments
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.sales: ListDownPaymentsQueries
Represents the Queries record for the operation: listDownPayments
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.sales: ListDraftsHeaders
Represents the Headers record for the operation: listDrafts
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.sales: ListDraftsQueries
Represents the Queries record for the operation: listDrafts
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.sales: ListDunningLettersHeaders
Represents the Headers record for the operation: listDunningLetters
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.sales: ListDunningLettersQueries
Represents the Queries record for the operation: listDunningLetters
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.sales: ListDunningTermsHeaders
Represents the Headers record for the operation: listDunningTerms
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.sales: ListDunningTermsQueries
Represents the Queries record for the operation: listDunningTerms
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.sales: ListInvoicesHeaders
Represents the Headers record for the operation: listInvoices
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.sales: ListInvoicesQueries
Represents the Queries record for the operation: listInvoices
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.sales: ListOrdersHeaders
Represents the Headers record for the operation: listOrders
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.sales: ListOrdersQueries
Represents the Queries record for the operation: listOrders
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.sales: ListPOSDailySummaryHeaders
Represents the Headers record for the operation: listPOSDailySummary
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.sales: ListPOSDailySummaryQueries
Represents the Queries record for the operation: listPOSDailySummary
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.sales: ListQuotationsHeaders
Represents the Headers record for the operation: listQuotations
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.sales: ListQuotationsQueries
Represents the Queries record for the operation: listQuotations
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.sales: ListReturnRequestHeaders
Represents the Headers record for the operation: listReturnRequest
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.sales: ListReturnRequestQueries
Represents the Queries record for the operation: listReturnRequest
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.sales: ListReturnsHeaders
Represents the Headers record for the operation: listReturns
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.sales: ListReturnsQueries
Represents the Queries record for the operation: listReturns
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.sales: ListSalesPersonsHeaders
Represents the Headers record for the operation: listSalesPersons
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.sales: ListSalesPersonsQueries
Represents the Queries record for the operation: listSalesPersons
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.sales: ListSalesTaxInvoicesHeaders
Represents the Headers record for the operation: listSalesTaxInvoices
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.sales: ListSalesTaxInvoicesQueries
Represents the Queries record for the operation: listSalesTaxInvoices
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.sales: OrdersCollectionResponse
A paged collection of Orders entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? Document[] -
- odataNextLink? string -
sap.businessone.sales: OrdersService_ApproveAndAdd_body
Represents the request payload for the OrdersService_ApproveAndAdd operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.sales: OrdersService_ApproveAndUpdate_body
Represents the request payload for the OrdersService_ApproveAndUpdate operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.sales: OrdersService_CloseByDate_body
Represents the request payload for the OrdersService_CloseByDate operation of the SAP Business One Service Layer
Fields
- documentCloseParams? DocumentCloseParams -
sap.businessone.sales: OrdersService_ExportEWayBill_body
Represents the request payload for the OrdersService_ExportEWayBill operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.sales: OrdersService_GetApprovalTemplates_body
Represents the request payload for the OrdersService_GetApprovalTemplates operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.sales: OrdersService_Preview_body
Represents the request payload for the OrdersService_Preview operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.sales: POSDailySummary
The POSDailySummary entity of the SAP Business One Service Layer
Fields
- pOSTotalizerCollection? POSTotalizer[] -
- correctionInvoice? Document[] -
- orders? Document[] -
- purchaseRequests? Document[] -
- inventoryGenExits? Document[] -
- purchaseQuotations? Document[] -
- purchaseDeliveryNotes? Document[] -
- invoices? Document[] -
- purchaseDownPayments? Document[] -
- absEntry? Signed32 -
- creditNotes? Document[] -
- purchaseInvoices? Document[] -
- pISTotal? decimal -
- 'returns? Document[] -
- resetCounterPosition? Signed32 -
- correctionPurchaseInvoice? Document[] -
- quotations? Document[] -
- purchaseCreditNotes? Document[] -
- goodsReturnRequest? Document[] -
- operationCounter? Signed32 -
- returnRequest? Document[] -
- inventoryGenEntries? Document[] -
- purchaseReturns? Document[] -
- equipmentNo? string -
- purchaseOrders? Document[] -
- downPayments? Document[] -
- correctionInvoiceReversal? Document[] -
- counterPosition? Signed32 -
- grossSales? decimal -
- deliveryNotes? Document[] -
- selfInvoices? Document[] -
- date? string -
- drafts? Document[] -
- selfCreditMemos? Document[] -
- total? decimal -
- correctionPurchaseInvoiceReversal? Document[] -
- cOFINSTotal? decimal -
sap.businessone.sales: POSDailySummaryCollectionResponse
A paged collection of POSDailySummary entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? POSDailySummary[] -
- odataNextLink? string -
sap.businessone.sales: POSTotalizer
The POSTotalizer complex type of the SAP Business One Service Layer
Fields
- lineNum? Signed32 -
- description? string -
- number? Signed32 -
- total? decimal -
- code? string -
sap.businessone.sales: QuotationsCollectionResponse
A paged collection of Quotations entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? Document[] -
- odataNextLink? string -
sap.businessone.sales: QuotationsService_ApproveAndAdd_body
Represents the request payload for the QuotationsService_ApproveAndAdd operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.sales: QuotationsService_ApproveAndUpdate_body
Represents the request payload for the QuotationsService_ApproveAndUpdate operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.sales: QuotationsService_CloseByDate_body
Represents the request payload for the QuotationsService_CloseByDate operation of the SAP Business One Service Layer
Fields
- documentCloseParams? DocumentCloseParams -
sap.businessone.sales: QuotationsService_ExportEWayBill_body
Represents the request payload for the QuotationsService_ExportEWayBill operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.sales: QuotationsService_GetApprovalTemplates_body
Represents the request payload for the QuotationsService_GetApprovalTemplates operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.sales: RelatedDocument
The RelatedDocument complex type of the SAP Business One Service Layer
Fields
- absEnry? Signed32 -
- absEntry? Signed32 -
- uUID? string -
- docTye? RelatedDocumentTypeEnum -
- docType? RelatedDocumentTypeEnum -
sap.businessone.sales: ReturnRequestCollectionResponse
A paged collection of ReturnRequest entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? Document[] -
- odataNextLink? string -
sap.businessone.sales: ReturnRequestService_ApproveAndAdd_body
Represents the request payload for the ReturnRequestService_ApproveAndAdd operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.sales: ReturnRequestService_ApproveAndUpdate_body
Represents the request payload for the ReturnRequestService_ApproveAndUpdate operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.sales: ReturnRequestService_CloseByDate_body
Represents the request payload for the ReturnRequestService_CloseByDate operation of the SAP Business One Service Layer
Fields
- documentCloseParams? DocumentCloseParams -
sap.businessone.sales: ReturnRequestService_ExportEWayBill_body
Represents the request payload for the ReturnRequestService_ExportEWayBill operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.sales: ReturnRequestService_GetApprovalTemplates_body
Represents the request payload for the ReturnRequestService_GetApprovalTemplates operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.sales: ReturnsCollectionResponse
A paged collection of Returns entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? Document[] -
- odataNextLink? string -
sap.businessone.sales: ReturnsService_ApproveAndAdd_body
Represents the request payload for the ReturnsService_ApproveAndAdd operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.sales: ReturnsService_ApproveAndUpdate_body
Represents the request payload for the ReturnsService_ApproveAndUpdate operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.sales: ReturnsService_Cancel2_body
Represents the request payload for the ReturnsService_Cancel2 operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.sales: ReturnsService_CloseByDate_body
Represents the request payload for the ReturnsService_CloseByDate operation of the SAP Business One Service Layer
Fields
- documentCloseParams? DocumentCloseParams -
sap.businessone.sales: ReturnsService_ExportEWayBill_body
Represents the request payload for the ReturnsService_ExportEWayBill operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.sales: ReturnsService_GetApprovalTemplates_body
Represents the request payload for the ReturnsService_GetApprovalTemplates operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.sales: SalesPerson
The SalesPerson entity of the SAP Business One Service Layer
Fields
- SalesEmployeeCode? Signed32 -
- SalesEmployeeName? string -
- Remarks? string -
- CommissionForSalesEmployee? decimal -
- CommissionGroup? Signed32 -
- Locked? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- EmployeeID? Signed32 -
- Active? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Telephone? string -
- Mobile? string -
- Fax? string -
- Email? string -
- PurchaseQuotations? Document[] -
- CommissionGroup2? CommissionGroup - The
CommissionGroupentity of the SAP Business One Service Layer
- CorrectionInvoiceReversal? Document[] -
- CorrectionInvoice? Document[] -
- PurchaseDeliveryNotes? Document[] -
- CorrectionPurchaseInvoice? Document[] -
- InventoryGenEntries? Document[] -
- Orders? Document[] -
- InventoryGenExits? Document[] -
- Drafts? Document[] -
- ReturnRequest? Document[] -
- DeliveryNotes? Document[] -
- PurchaseInvoices? Document[] -
- SelfInvoices? Document[] -
- Invoices? Document[] -
- CreditNotes? Document[] -
- PurchaseCreditNotes? Document[] -
- DownPayments? Document[] -
- PurchaseDownPayments? Document[] -
- PurchaseReturns? Document[] -
- PurchaseOrders? Document[] -
- SelfCreditMemos? Document[] -
- Quotations? Document[] -
- Returns? Document[] -
- GoodsReturnRequest? Document[] -
- CorrectionPurchaseInvoiceReversal? Document[] -
- PurchaseRequests? Document[] -
sap.businessone.sales: SalesPersonsCollectionResponse
A paged collection of SalesPersons entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? SalesPerson[] -
- odataNextLink? string -
sap.businessone.sales: SalesTaxInvoice
The SalesTaxInvoice entity of the SAP Business One Service Layer
Fields
- DocEntry? Signed32 -
- DocNum? Signed32 -
- DocType? BoTaxInvoiceTypes - OData EnumType 'BoTaxInvoiceTypes'. Serialised by the Service Layer as the member name
- Printed? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- DocDate? string -
- CardCode? string -
- CreationDate? string -
- UpdateDate? string -
- DocDueDate? string -
- Series? Signed32 -
- Segment? Signed32 -
- ContactPersonCode? Signed32 -
- TaxDate? string -
- Comments? string -
- ShipToCode? string -
- Address? string -
- Address2? string -
- CurrencySource? BoCurrencySources - OData EnumType 'BoCurrencySources'. Serialised by the Service Layer as the member name
- DocCurrency? string -
- CustomerOrVendorRefNo? string -
- CustomerOrVendorName? string -
- CancelDate? string -
- DocumentTotal? decimal -
- TaxTotal? decimal -
- PaymentRefNo? string -
- PaymentRefDate? string -
- AlterationRevision? Signed32 -
- SalesTaxInvoiceLines? SalesTaxInvoiceLine[] -
- SalesTaxInvoiceOperationCodes? SalesTaxInvoiceOperationCode[] -
- SalesTaxInvoiceDocumentReferences? SalesTaxInvoiceDocumentReference[] -
- SalesTaxInvoiceLinkedDownPayments? SalesTaxInvoiceLinkedDownPayment[] -
sap.businessone.sales: SalesTaxInvoiceDocumentReference
The SalesTaxInvoiceDocumentReference complex type of the SAP Business One Service Layer
Fields
- DocEntry? Signed32 -
- LineNumber? Signed32 -
- ReferencedDocEntry? Signed32 -
- ReferencedDocNumber? Signed32 -
- ExternalReferencedDocNumber? string -
- ReferencedObjectType? ReferencedObjectTypeEnum - OData EnumType 'ReferencedObjectTypeEnum'. Serialised by the Service Layer as the member name
- IssueDate? string -
- Remark? string -
- CardCode? string -
sap.businessone.sales: SalesTaxInvoiceLine
The SalesTaxInvoiceLine complex type of the SAP Business One Service Layer
Fields
- RefEntry1? Signed32 -
- RefEntry2? Signed32 -
sap.businessone.sales: SalesTaxInvoiceLinkedDownPayment
The SalesTaxInvoiceLinkedDownPayment complex type of the SAP Business One Service Layer
Fields
- DocEntry? Signed32 -
- LineNum? Signed32 -
- DownPaymentType? Signed32 -
- DownPaymentEntry? Signed32 -
- DownPaymentNum? Signed32 -
- PaymentType? Signed32 -
- PaymentEntry? Signed32 -
- PaymentNum? Signed32 -
- PaymentTaxDate? string -
- TransferDate? string -
- TransferReference? string -
- AmountToDraw? decimal -
- AmountToDrawFC? decimal -
- AmountToDrawSC? decimal -
- Tax? decimal -
- TaxFC? decimal -
- TaxSC? decimal -
- GrossAmountToDraw? decimal -
- GrossAmountToDrawFC? decimal -
- GrossAmountToDrawSC? decimal -
- DocCurrency? string -
sap.businessone.sales: SalesTaxInvoiceOperationCode
The SalesTaxInvoiceOperationCode complex type of the SAP Business One Service Layer
Fields
- OpCode? Signed32 -
sap.businessone.sales: SalesTaxInvoicesCollectionResponse
A paged collection of SalesTaxInvoices entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? SalesTaxInvoice[] -
- odataNextLink? string -
sap.businessone.sales: SerialNumber
The SerialNumber complex type of the SAP Business One Service Layer
Fields
- ManufacturerSerialNumber? string -
- InternalSerialNumber? string -
- ExpiryDate? string -
- ManufactureDate? string -
- ReceptionDate? string -
- WarrantyStart? string -
- WarrantyEnd? string -
- Location? string -
- Notes? string -
- BatchID? string -
- SystemSerialNumber? Signed32 -
- BaseLineNumber? Signed32 -
- Quantity? decimal -
- TrackingNote? Signed32 -
- TrackingNoteLine? Signed32 -
- ItemCode? string -
sap.businessone.sales: TaxExtension
The TaxExtension complex type of the SAP Business One Service Layer
Fields
- buildingS? string -
- taxId3? string -
- taxId2? string -
- taxId5? string -
- taxId4? string -
- packQuantity? Signed32 -
- taxId1? string -
- taxId0? string -
- vehicle? string -
- portCode? string -
- taxId7? string -
- buildingB? string -
- taxId6? string -
- taxId9? string -
- taxId8? string -
- carrier? string -
- shipUnitNo? Signed32 -
- streetS? string -
- differentialOfTaxRate? Signed32 -
- zipCodeS? string -
- countryB? string -
- grossWeight? decimal -
- globalLocationNumberB? string -
- packDescription? string -
- mainUsage? Signed32 -
- docEntry? Signed32 -
- brand? string -
- stateS? string -
- countryS? string -
- blockB? string -
- state? string -
- globalLocationNumberS? string -
- importOrExportType? ImportOrExportTypeEnum -
- vehicleState? string -
- blockS? string -
- stateB? string -
- cityS? string -
- county? string -
- boEValue? decimal -
- nFRef? string -
- countyB? string -
- billOfEntryNo? string -
- countyS? string -
- taxId14? string -
- taxId13? string -
- claimRefund? BoYesNoEnum -
- taxId12? string -
- netWeight? decimal -
- originalBillOfEntryDate? string -
- billOfEntryDate? string -
- zipCodeB? string -
- importOrExport? BoYesNoEnum -
- originalBillOfEntryNo? string -
- streetB? string -
- cityB? string -
- isIGSTAccount? BoYesNoEnum -
- incoterms? string -
sap.businessone.sales: WithholdingTaxData
The WithholdingTaxData complex type of the SAP Business One Service Layer
Fields
- WTCode? string -
- WTAmountSys? decimal -
- WTAmountFC? decimal -
- WTAmount? decimal -
- WithholdingType? string -
- TaxableAmountinSys? decimal -
- TaxableAmountFC? decimal -
- TaxableAmount? decimal -
- RoundingType? string -
- Rate? decimal -
- Criteria? string -
- Category? string -
- BaseType? string -
- AppliedWTAmountSys? decimal -
- AppliedWTAmountFC? decimal -
- AppliedWTAmount? decimal -
- GLAccount? string -
- LineNum? Signed32 -
- BaseDocEntry? Signed32 -
- BaseDocLine? Signed32 -
- BaseDocType? Signed32 -
- BaseDocumentReference? Signed32 -
- Status? BoStatus - OData EnumType 'BoStatus'. Serialised by the Service Layer as the member name
- TargetAbsEntry? Signed32 -
- TargetDocumentType? Signed32 -
sap.businessone.sales: WithholdingTaxDataWTX
The WithholdingTaxDataWTX complex type of the SAP Business One Service Layer
Fields
- WTAmountSys? decimal -
- WTAmountFC? decimal -
- WTAmount? decimal -
- WithholdingType? string -
- TaxableAmountinSys? decimal -
- TaxableAmountFC? decimal -
- TaxableAmount? decimal -
- Rate? decimal -
- Category? string -
- BaseType? string -
- AppliedWTAmountSys? decimal -
- AppliedWTAmountFC? decimal -
- AppliedWTAmount? decimal -
- GLAccount? string -
- LineNum? Signed32 -
- BaseDocEntry? Signed32 -
- BaseDocLine? Signed32 -
- BaseDocType? string -
- WTAbsId? string -
- ExemptRate? decimal -
- BaseNetAmountSys? decimal -
- BaseNetAmountFC? decimal -
- BaseNetAmount? decimal -
- BaseVatmountSys? decimal -
- BaseVatmountFC? decimal -
- BaseVatmount? decimal -
- AccumBaseAmountSys? decimal -
- AccumBaseAmountFC? decimal -
- AccumBaseAmount? decimal -
- AccumWTaxAmountSys? decimal -
- AccumWTaxAmountFC? decimal -
- AccumWTaxAmount? decimal -
sap.businessone.sales: WithholdingTaxLine
The WithholdingTaxLine complex type of the SAP Business One Service Layer
Fields
- WTCode? string -
- WTAmountSys? decimal -
- WTAmountFC? decimal -
- WTAmount? decimal -
- WithholdingType? string -
- TaxableAmountinSys? decimal -
- TaxableAmountFC? decimal -
- TaxableAmount? decimal -
- RoundingType? string -
- Rate? decimal -
- Criteria? string -
- Category? string -
- BaseType? string -
- AppliedWTAmountSys? decimal -
- AppliedWTAmountFC? decimal -
- AppliedWTAmount? decimal -
- GLAccount? string -
- LineNum? Signed32 -
- BaseDocEntry? Signed32 -
- BaseDocLine? Signed32 -
- BaseDocType? Signed32 -
- BaseDocumentReference? Signed32 -
- Status? BoStatus - OData EnumType 'BoStatus'. Serialised by the Service Layer as the member name
- TargetAbsEntry? Signed32 -
- TargetDocumentType? Signed32 -
- CSTCodeIncoming? string -
- CSTCodeOutgoing? string -
- Doc1LineNum? Signed32 -
Union types
sap.businessone.sales: ElectronicDocGenTypeEnum
ElectronicDocGenTypeEnum
OData EnumType 'ElectronicDocGenTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.sales: ClosingOptionEnum
ClosingOptionEnum
OData EnumType 'ClosingOptionEnum'. Serialised by the Service Layer as the member name
sap.businessone.sales: PrintStatusEnum
PrintStatusEnum
OData EnumType 'PrintStatusEnum'. Serialised by the Service Layer as the member name
sap.businessone.sales: CancelStatusEnum
CancelStatusEnum
OData EnumType 'CancelStatusEnum'. Serialised by the Service Layer as the member name
sap.businessone.sales: BoAdEpnsDistribMethods
BoAdEpnsDistribMethods
OData EnumType 'BoAdEpnsDistribMethods'. Serialised by the Service Layer as the member name
sap.businessone.sales: BoCorInvItemStatus
BoCorInvItemStatus
OData EnumType 'BoCorInvItemStatus'. Serialised by the Service Layer as the member name
sap.businessone.sales: BoPayTermDueTypes
BoPayTermDueTypes
OData EnumType 'BoPayTermDueTypes'. Serialised by the Service Layer as the member name
sap.businessone.sales: DocumentPriceSourceEnum
DocumentPriceSourceEnum
OData EnumType 'DocumentPriceSourceEnum'. Serialised by the Service Layer as the member name
sap.businessone.sales: BlanketAgreementMethodEnum
BlanketAgreementMethodEnum
OData EnumType 'BlanketAgreementMethodEnum'. Serialised by the Service Layer as the member name
sap.businessone.sales: BoDocumentSubType
BoDocumentSubType
OData EnumType 'BoDocumentSubType'. Serialised by the Service Layer as the member name
sap.businessone.sales: BoDocSpecialLineType
BoDocSpecialLineType
OData EnumType 'BoDocSpecialLineType'. Serialised by the Service Layer as the member name
sap.businessone.sales: PriceModeDocumentEnum
PriceModeDocumentEnum
OData EnumType 'PriceModeDocumentEnum'. Serialised by the Service Layer as the member name
sap.businessone.sales: BoTaxTypes
BoTaxTypes
OData EnumType 'BoTaxTypes'. Serialised by the Service Layer as the member name
sap.businessone.sales: BoDocSummaryTypes
BoDocSummaryTypes
OData EnumType 'BoDocSummaryTypes'. Serialised by the Service Layer as the member name
sap.businessone.sales: BoRemindUnits
BoRemindUnits
OData EnumType 'BoRemindUnits'. Serialised by the Service Layer as the member name
sap.businessone.sales: DocumentAuthorizationStatusEnum
DocumentAuthorizationStatusEnum
OData EnumType 'DocumentAuthorizationStatusEnum'. Serialised by the Service Layer as the member name
sap.businessone.sales: BoDocumentLinePickStatus
BoDocumentLinePickStatus
OData EnumType 'BoDocumentLinePickStatus'. Serialised by the Service Layer as the member name
sap.businessone.sales: GSTTransactionTypeEnum
GSTTransactionTypeEnum
OData EnumType 'GSTTransactionTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.sales: BoSoStatus
BoSoStatus
OData EnumType 'BoSoStatus'. Serialised by the Service Layer as the member name
sap.businessone.sales: EDocTypeEnum
EDocTypeEnum
OData EnumType 'EDocTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.sales: ReferencedObjectTypeEnum
ReferencedObjectTypeEnum
OData EnumType 'ReferencedObjectTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.sales: BoDocLineType
BoDocLineType
OData EnumType 'BoDocLineType'. Serialised by the Service Layer as the member name
sap.businessone.sales: BoTransactionTypeEnum
BoTransactionTypeEnum
OData EnumType 'BoTransactionTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.sales: EDocStatusEnum
EDocStatusEnum
OData EnumType 'EDocStatusEnum'. Serialised by the Service Layer as the member name
sap.businessone.sales: BoExpenseOperationTypeEnum
BoExpenseOperationTypeEnum
OData EnumType 'BoExpenseOperationTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.sales: BoCurrencySources
BoCurrencySources
OData EnumType 'BoCurrencySources'. Serialised by the Service Layer as the member name
sap.businessone.sales: BlanketAgreementStatusEnum
BlanketAgreementStatusEnum
OData EnumType 'BlanketAgreementStatusEnum'. Serialised by the Service Layer as the member name
sap.businessone.sales: BoStatus
BoStatus
OData EnumType 'BoStatus'. Serialised by the Service Layer as the member name
sap.businessone.sales: LinkReferenceTypeEnum
LinkReferenceTypeEnum
OData EnumType 'LinkReferenceTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.sales: BlanketAgreementTypeEnum
BlanketAgreementTypeEnum
OData EnumType 'BlanketAgreementTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.sales: BADocumentStatus
BADocumentStatus
OData EnumType 'BADocumentStatus'. Serialised by the Service Layer as the member name
sap.businessone.sales: BaseDateSelectEnum
BaseDateSelectEnum
OData EnumType 'BaseDateSelectEnum'. Serialised by the Service Layer as the member name
sap.businessone.sales: BoAdEpnsTaxTypes
BoAdEpnsTaxTypes
OData EnumType 'BoAdEpnsTaxTypes'. Serialised by the Service Layer as the member name
sap.businessone.sales: RelatedDocumentTypeEnum
RelatedDocumentTypeEnum
OData EnumType 'RelatedDocumentTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.sales: BoFatherCardTypes
BoFatherCardTypes
OData EnumType 'BoFatherCardTypes'. Serialised by the Service Layer as the member name
sap.businessone.sales: BlanketAgreementBPTypeEnum
BlanketAgreementBPTypeEnum
OData EnumType 'BlanketAgreementBPTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.sales: BoInterimDocTypes
BoInterimDocTypes
OData EnumType 'BoInterimDocTypes'. Serialised by the Service Layer as the member name
sap.businessone.sales: DownPaymentTypeEnum
DownPaymentTypeEnum
OData EnumType 'DownPaymentTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.sales: BoDocWhsUpdateTypes
BoDocWhsUpdateTypes
OData EnumType 'BoDocWhsUpdateTypes'. Serialised by the Service Layer as the member name
sap.businessone.sales: BoYesNoEnum
BoYesNoEnum
OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
sap.businessone.sales: EWBSupplyTypeEnum
EWBSupplyTypeEnum
OData EnumType 'EWBSupplyTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.sales: LineTypeEnum
LineTypeEnum
OData EnumType 'LineTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.sales: BlanketAgreementDocTypeEnum
BlanketAgreementDocTypeEnum
OData EnumType 'BlanketAgreementDocTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.sales: ImportOrExportTypeEnum
ImportOrExportTypeEnum
OData EnumType 'ImportOrExportTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.sales: BlanketAgreementDatePeriodsEnum
BlanketAgreementDatePeriodsEnum
OData EnumType 'BlanketAgreementDatePeriodsEnum'. Serialised by the Service Layer as the member name
sap.businessone.sales: EDocGenerationTypeEnum
EDocGenerationTypeEnum
OData EnumType 'EDocGenerationTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.sales: FolioLetterEnum
FolioLetterEnum
OData EnumType 'FolioLetterEnum'. Serialised by the Service Layer as the member name
sap.businessone.sales: DocumentDeliveryTypeEnum
DocumentDeliveryTypeEnum
OData EnumType 'DocumentDeliveryTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.sales: CommissionTradeTypeEnum
CommissionTradeTypeEnum
OData EnumType 'CommissionTradeTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.sales: BoTaxOnInstallmentsTypeEnum
BoTaxOnInstallmentsTypeEnum
OData EnumType 'BoTaxOnInstallmentsTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.sales: GroupingMethodEnum
GroupingMethodEnum
OData EnumType 'GroupingMethodEnum'. Serialised by the Service Layer as the member name
sap.businessone.sales: BoDocItemType
BoDocItemType
OData EnumType 'BoDocItemType'. Serialised by the Service Layer as the member name
sap.businessone.sales: ElectronicDocProtocolCodeEnum
ElectronicDocProtocolCodeEnum
OData EnumType 'ElectronicDocProtocolCodeEnum'. Serialised by the Service Layer as the member name
sap.businessone.sales: ElecCommStatusEnum
ElecCommStatusEnum
OData EnumType 'ElecCommStatusEnum'. Serialised by the Service Layer as the member name
sap.businessone.sales: EWBTransactionTypeEnum
EWBTransactionTypeEnum
OData EnumType 'EWBTransactionTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.sales: PriceModeEnum
PriceModeEnum
OData EnumType 'PriceModeEnum'. Serialised by the Service Layer as the member name
sap.businessone.sales: DunningLetterTypeEnum
DunningLetterTypeEnum
OData EnumType 'DunningLetterTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.sales: BoObjectTypes
BoObjectTypes
OData EnumType 'BoObjectTypes'. Serialised by the Service Layer as the member name
sap.businessone.sales: GeneratedAssetStatusEnum
GeneratedAssetStatusEnum
OData EnumType 'GeneratedAssetStatusEnum'. Serialised by the Service Layer as the member name
sap.businessone.sales: AutomaticPostingEnum
AutomaticPostingEnum
OData EnumType 'AutomaticPostingEnum'. Serialised by the Service Layer as the member name
sap.businessone.sales: CalculateInterestMethodEnum
CalculateInterestMethodEnum
OData EnumType 'CalculateInterestMethodEnum'. Serialised by the Service Layer as the member name
sap.businessone.sales: ExchangeRateSelectEnum
ExchangeRateSelectEnum
OData EnumType 'ExchangeRateSelectEnum'. Serialised by the Service Layer as the member name
sap.businessone.sales: BoItemTreeTypes
BoItemTreeTypes
OData EnumType 'BoItemTreeTypes'. Serialised by the Service Layer as the member name
sap.businessone.sales: BoTaxInvoiceTypes
BoTaxInvoiceTypes
OData EnumType 'BoTaxInvoiceTypes'. Serialised by the Service Layer as the member name
sap.businessone.sales: BoDocumentTypes
BoDocumentTypes
OData EnumType 'BoDocumentTypes'. Serialised by the Service Layer as the member name
Import
import ballerinax/sap.businessone.sales;Metadata
Released date: 12 days ago
Version: 1.0.0
License: Apache-2.0
Compatibility
Platform: any
Ballerina version: 2201.13.0
GraalVM compatible: Yes
Pull count
Total: 0
Current verison: 0
Weekly downloads
Keywords
Name/SAP Business One Sales
Area/ERP & Business Operations
Vendor/SAP
Cost/Paid
Type/Connector
SAP Business One
Sales
ERP
Contributors