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

The Service Layer endpoint follows the pattern https://<host>:50000/b1s/v1.
Quickstart
To use the sap.businessone.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 - Ship to street field
- ShipToStreetNo? string - Ship to street number field
- ShipToBlock? string - Ship to block field
- ShipToBuilding? string - Ship to building field
- ShipToCity? string - Ship to city field
- ShipToZipCode? string - Ship to zip code field
- ShipToCounty? string - Ship to county field
- ShipToState? string - Ship to state field
- ShipToCountry? string - Ship to country field
- ShipToAddressType? string - Ship to address type field
- BillToStreet? string - Bill to street field
- BillToStreetNo? string - Bill to street number field
- BillToBlock? string - Bill to block field
- BillToBuilding? string - Bill to building field
- BillToCity? string - Bill to city field
- BillToZipCode? string - Bill to zip code field
- BillToCounty? string - Bill to county field
- BillToState? string - Bill to state field
- BillToCountry? string - Bill to country field
- BillToAddressType? string - Bill to address type field
- ShipToGlobalLocationNumber? string - Ship to global location number field
- BillToGlobalLocationNumber? string - Bill to global location number field
- ShipToAddress2? string - Ship to address2 field
- ShipToAddress3? string - Ship to address3 field
- BillToAddress2? string - Bill to address2 field
- BillToAddress3? string - Bill to address3 field
- PlaceOfSupply? string - Place of supply field
- PurchasePlaceOfSupply? string - Purchase place of supply field
- DocEntry? Signed32 - Document entry field
- GoodsIssuePlaceBP? string - Goods issue place business partner field
- GoodsIssuePlaceCNPJ? string - Goods issue place CNPJ field
- GoodsIssuePlaceCPF? string - Goods issue place CPF field
- GoodsIssuePlaceStreet? string - Goods issue place street field
- GoodsIssuePlaceStreetNo? string - Goods issue place street number field
- GoodsIssuePlaceBuilding? string - Goods issue place building field
- GoodsIssuePlaceZip? string - Goods issue place zip field
- GoodsIssuePlaceBlock? string - Goods issue place block field
- GoodsIssuePlaceCity? string - Goods issue place city field
- GoodsIssuePlaceCounty? string - Goods issue place county field
- GoodsIssuePlaceState? string - Goods issue place state field
- GoodsIssuePlaceCountry? string - Goods issue place country field
- GoodsIssuePlacePhone? string - Goods issue place phone field
- GoodsIssuePlaceEMail? string - Goods issue place e mail field
- GoodsIssuePlaceDepartureDate? string - Goods issue place departure date field
- DeliveryPlaceBP? string - Delivery place business partner field
- DeliveryPlaceCNPJ? string - Delivery place CNPJ field
- DeliveryPlaceCPF? string - Delivery place CPF field
- DeliveryPlaceStreet? string - Delivery place street field
- DeliveryPlaceStreetNo? string - Delivery place street number field
- DeliveryPlaceBuilding? string - Delivery place building field
- DeliveryPlaceZip? string - Delivery place zip field
- DeliveryPlaceBlock? string - Delivery place block field
- DeliveryPlaceCity? string - Delivery place city field
- DeliveryPlaceCounty? string - Delivery place county field
- DeliveryPlaceState? string - Delivery place state field
- DeliveryPlaceCountry? string - Delivery place country field
- DeliveryPlacePhone? string - Delivery place phone field
- DeliveryPlaceEMail? string - Delivery place e mail field
- DeliveryPlaceDepartureDate? string - Delivery place departure date field
- ShipToStreetForReturn? string - Ship to street for return field
- ShipToStreetNoForReturn? string - Ship to street number for return field
- ShipToBlockForReturn? string - Ship to block for return field
- ShipToBuildingForReturn? string - Ship to building for return field
- ShipToCityForReturn? string - Ship to city for return field
- ShipToZipCodeForReturn? string - Ship to zip code for return field
- ShipToCountyForReturn? string - Ship to county for return field
- ShipToStateForReturn? string - Ship to state for return field
- ShipToCountryForReturn? string - Ship to country for return field
- ShipToAddressTypeForReturn? string - Ship to address type for return field
- ShipToGlobalLocationNumberForReturn? string - Ship to global location number for return field
- ShipToAddress2ForReturn? string - Ship to address2 for return field
- ShipToAddress3ForReturn? string - Ship to address3 for return field
sap.businessone.sales: BatchNumber
The BatchNumber complex type of the SAP Business One Service Layer
Fields
- BatchNumber? string - Batch number field
- ManufacturerSerialNumber? string - Manufacturer serial number field
- InternalSerialNumber? string - Internal serial number field
- ExpiryDate? string - Expiry date field
- ManufacturingDate? string - Manufacturing date field
- AddmisionDate? string - Addmision date field
- Location? string - Location field
- Notes? string - Notes field
- Quantity? decimal - Quantity field
- BaseLineNumber? Signed32 - Base line number field
- TrackingNote? Signed32 - Tracking note field
- TrackingNoteLine? Signed32 - Tracking note line field
- ItemCode? string - Item code field
- SystemSerialNumber? Signed32 - System serial number field
sap.businessone.sales: BlanketAgreement
The BlanketAgreement entity of the SAP Business One Service Layer
Fields
- AgreementNo? Signed32 - Agreement number field
- BPCode? string - Business partner code field
- BPName? string - Business partner name field
- ContactPersonCode? Signed32 - Contact person code field
- StartDate? string - Start date field
- EndDate? string - End date field
- TerminateDate? string - Terminate date field
- Description? string - Description field
- 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 - Owner field
- 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 - Remind time field
- Remarks? string - Remarks field
- AttachmentEntry? Signed32 - Attachment entry field
- SettlementProbability? decimal - Settlement probability field
- AgreementMethod? BlanketAgreementMethodEnum - OData EnumType 'BlanketAgreementMethodEnum'. Serialised by the Service Layer as the member name
- PaymentTerms? Signed32 - Payment terms field
- PriceList? Signed32 - Price list field
- SigningDate? string - Signing date field
- AmendmentTo? Signed32 - Amendment to field
- Series? Signed32 - Series field
- DocNum? Signed32 - Document number field
- HandWritten? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- PeriodIndicator? string - Period indicator field
- PaymentMethod? string - Payment method field
- ExchangeRate? decimal - Exchange rate field
- ShippingType? Signed32 - Shipping type field
- NumAtCard? string - Number at card field
- Project? string - Project field
- PriceMode? PriceModeEnum - OData EnumType 'PriceModeEnum'. Serialised by the Service Layer as the member name
- BPCurrency? string - Business partner currency field
- BPType? BlanketAgreementBPTypeEnum - OData EnumType 'BlanketAgreementBPTypeEnum'. Serialised by the Service Layer as the member name
- SAPPassport? string - SAP passport field
- BlanketAgreements_ItemsLines? BlanketAgreementsItemsLine[] - Blanket agreements items lines field
sap.businessone.sales: BlanketAgreementParams
The BlanketAgreementParams complex type of the SAP Business One Service Layer
Fields
- agreementNo? Signed32 - Agreement number field
sap.businessone.sales: BlanketAgreementsCollectionResponse
A paged collection of BlanketAgreements entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? BlanketAgreement[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.sales: BlanketAgreementsDetailsLine
The BlanketAgreements_DetailsLine complex type of the SAP Business One Service Layer
Fields
- AgreementNo? Signed32 - Agreement number field
- AgreementRowNumber? Signed32 - Agreement row number field
- AgreementEffectiveRowNumber? Signed32 - Agreement effective row number field
- Frequency? BlanketAgreementDatePeriodsEnum - OData EnumType 'BlanketAgreementDatePeriodsEnum'. Serialised by the Service Layer as the member name
- From? string - From field
- To? string - To field
- ReleaseInformation? string - Release information field
- Quantity? decimal - Quantity field
- Warehouse? string - Warehouse field
- FreeText? string - Free text field
- ConsumeSalesForecast? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- PlannedAmountLC? decimal - Planned amount local currency field
- PlannedAmountFC? decimal - Planned amount foreign currency field
sap.businessone.sales: BlanketAgreementsDocument
The BlanketAgreementsDocument complex type of the SAP Business One Service Layer
Fields
- docStatus? BADocumentStatus - Document status field
- documentNo? Signed32 - Document number field
- discount? decimal - Discount field
- documentType? BlanketAgreementDocTypeEnum - Document type field
- quantity? decimal - Quantity field
- rowStatus? BoStatus - Row status field
- itemDescription? string - Item description field
- unitPrice? decimal - Unit price field
- uoM? string - Uo m field
- unitsOfMeasurement? decimal - Units of measurement field
- itemNo? string - Item number field
- uoMCode? string - Uo m code field
- documentRowNumber? Signed32 - Document row number field
- documentDate? string - Document date field
- agreementRowNumber? Signed32 - Agreement row number field
sap.businessone.sales: BlanketAgreementsItemsLine
The BlanketAgreements_ItemsLine complex type of the SAP Business One Service Layer
Fields
- AgreementNo? Signed32 - Agreement number field
- AgreementRowNumber? Signed32 - Agreement row number field
- ItemNo? string - Item number field
- ItemDescription? string - Item description field
- ItemGroup? Signed32 - Item group field
- PlannedQuantity? decimal - Planned quantity field
- UnitPrice? decimal - Unit price field
- PriceCurrency? string - Price currency field
- CumulativeQuantity? decimal - Cumulative quantity field
- CumulativeAmountLC? decimal - Cumulative amount local currency field
- CumulativeAmountFC? decimal - Cumulative amount foreign currency field
- FreeText? string - Free text field
- InventoryUoM? string - Inventory uo m field
- PortionOfReturns? decimal - Portion of returns field
- EndOfWarranty? string - End of warranty field
- PlannedAmountLC? decimal - Planned amount local currency field
- PlannedAmountFC? decimal - Planned amount foreign currency field
- LineDiscount? decimal - Line discount field
- UoMEntry? Signed32 - Uo m entry field
- UoMCode? string - Uo m code field
- UnitsOfMeasurement? decimal - Units of measurement field
- UndeliveredCumulativeQuantity? decimal - Undelivered cumulative quantity field
- UndeliveredCumulativeAmountLC? decimal - Undelivered cumulative amount local currency field
- UndeliveredCumulativeAmountFC? decimal - Undelivered cumulative amount foreign currency field
- ShippingType? Signed32 - Shipping type field
- Project? string - Project field
- TaxCode? string - Tax code field
- TAXRate? decimal - TAX rate field
- PlannedVATAmountLC? decimal - Planned VAT amount local currency field
- PlannedVATAmountFC? decimal - Planned VAT amount foreign currency field
- CumulativeVATAmountLC? decimal - Cumulative VAT amount local currency field
- CumulativeVATAmountFC? decimal - Cumulative VAT amount foreign currency field
- BlanketAgreements_DetailsLines? BlanketAgreementsDetailsLine[] - Blanket agreements details lines field
sap.businessone.sales: CCDNumber
The CCDNumber complex type of the SAP Business One Service Layer
Fields
- TrackingNote? Signed32 - Tracking note field
- TrackingNoteLine? Signed32 - Tracking note line field
- CCDNumber? string - CCD number field
- Quantity? decimal - Quantity field
- CountryOfOrigin? string - Country of origin field
- SubLineNumber? Signed32 - Sub line number field
- DocumentEntry? Signed32 - Document entry field
- BaseLineNumber? Signed32 - Base line number field
- ChildNumber? Signed32 - Child number field
sap.businessone.sales: CommissionGroup
The CommissionGroup entity of the SAP Business One Service Layer
Fields
- CommissionGroupCode? Signed32 - Commission group code field
- CommissionGroupName? string - Commission group name field
- CommissionPercentage? decimal - Commission percentage field
- SalesPersons? SalesPerson[] - Sales persons field
sap.businessone.sales: CommissionGroupsCollectionResponse
A paged collection of CommissionGroups entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? CommissionGroup[] - Value field
- odataNextLink? string - Odata next link field
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 - Odata metadata field
- value? Document[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.sales: CorrectionInvoiceReversalCollectionResponse
A paged collection of CorrectionInvoiceReversal entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? Document[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.sales: CorrectionInvoiceReversalService_ApproveAndAdd_body
Represents the request payload for the CorrectionInvoiceReversalService_ApproveAndAdd operation of the SAP Business One Service Layer
Fields
- document? Document - Document field
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 - Document field
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 - Document close params field
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 - Document field
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 - Document field
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 - Document field
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 - Document field
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 - Document close params field
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 - Document field
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 - Document field
sap.businessone.sales: CreditNotesCollectionResponse
A paged collection of CreditNotes entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? Document[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.sales: CreditNotesService_ApproveAndAdd_body
Represents the request payload for the CreditNotesService_ApproveAndAdd operation of the SAP Business One Service Layer
Fields
- document? Document - Document field
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 - Document field
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 - Document field
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 - Document close params field
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 - Document field
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 - Document field
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 - Document field
sap.businessone.sales: DeliveryNotesCollectionResponse
A paged collection of DeliveryNotes entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? Document[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.sales: DeliveryNotesService_ApproveAndAdd_body
Represents the request payload for the DeliveryNotesService_ApproveAndAdd operation of the SAP Business One Service Layer
Fields
- document? Document - Document field
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 - Document field
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 - Document field
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 - Document close params field
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 - Document field
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 - Document field
sap.businessone.sales: DocExpenseTaxJurisdiction
The DocExpenseTaxJurisdiction complex type of the SAP Business One Service Layer
Fields
- JurisdictionCode? string - Jurisdiction code field
- JurisdictionType? Signed32 - Jurisdiction type field
- TaxAmount? decimal - Tax amount field
- TaxAmountSC? decimal - Tax amount system currency field
- TaxAmountFC? decimal - Tax amount foreign currency field
- TaxRate? decimal - Tax rate field
- DocEntry? Signed32 - Document entry field
- LineNumber? Signed32 - Line number field
- RowSequence? Signed32 - Row sequence field
- ExternalCalcTaxRate? decimal - External calc tax rate field
- ExternalCalcTaxAmount? decimal - External calc tax amount field
- ExternalCalcTaxAmountFC? decimal - External calc tax amount foreign currency field
- ExternalCalcTaxAmountSC? decimal - External calc tax amount system currency field
sap.businessone.sales: DocFreightEBooksDetail
The DocFreightEBooksDetail complex type of the SAP Business One Service Layer
Fields
- IncomeClassificationType? Signed32 - Income classification type field
- IncomeClassificationCategory? Signed32 - Income classification category field
- ExpensesClassificationType? Signed32 - Expenses classification type field
- ExpensesClassificationCategory? Signed32 - Expenses classification category field
- NetValueLC? decimal - Net value local currency field
- NetValueFC? decimal - Net value foreign currency field
- NetValueSC? decimal - Net value system currency field
- VatCategory? Signed32 - VAT category field
- WithheldPercentCategory? Signed32 - Withheld percent category field
- WithheldAmountLC? decimal - Withheld amount local currency field
- WithheldAmountFC? decimal - Withheld amount foreign currency field
- WithheldAmountSC? decimal - Withheld amount system currency field
- VatClassificationType? Signed32 - VAT classification type field
- VatClassificationCategory? Signed32 - VAT classification category field
- VATExemptionCause? Signed32 - VAT exemption cause field
sap.businessone.sales: DocLinePickList
The DocLinePickList complex type of the SAP Business One Service Layer
Fields
- pickListLineNum? Signed32 - Pick list line number field
- pickListBatchAndBinLineNum? Signed32 - Pick list batch and bin line number field
- pickListEntry? Signed32 - Pick list entry field
sap.businessone.sales: Document
The Document entity of the SAP Business One Service Layer
Fields
- DocEntry? Signed32 - Document entry field
- DocNum? Signed32 - Document number field
- DocType? BoDocumentTypes - OData EnumType 'BoDocumentTypes'. Serialised by the Service Layer as the member name
- HandWritten? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Printed? PrintStatusEnum - OData EnumType 'PrintStatusEnum'. Serialised by the Service Layer as the member name
- DocDate? string - Document date field
- DocDueDate? string - Document due date field
- CardCode? string - Card code field
- CardName? string - Card name field
- Address? string - Address field
- NumAtCard? string - Number at card field
- DocTotal? decimal - Document total field
- AttachmentEntry? Signed32 - Attachment entry field
- DocCurrency? string - Document currency field
- DocRate? decimal - Document rate field
- Reference1? string - Reference1 field
- Reference2? string - Reference2 field
- Comments? string - Comments field
- JournalMemo? string - Journal memo field
- PaymentGroupCode? Signed32 - Payment group code field
- DocTime? string - Document time field
- SalesPersonCode? Signed32 - Sales person code field
- TransportationCode? Signed32 - Transportation code field
- Confirmed? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ImportFileNum? Signed32 - Import file number field
- SummeryType? BoDocSummaryTypes - OData EnumType 'BoDocSummaryTypes'. Serialised by the Service Layer as the member name
- ContactPersonCode? Signed32 - Contact person code field
- ShowSCN? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Series? Signed32 - Series field
- TaxDate? string - Tax date field
- PartialSupply? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- DocObjectCode? BoObjectTypes - OData EnumType 'BoObjectTypes'. Serialised by the Service Layer as the member name
- ShipToCode? string - Ship to code field
- Indicator? string - Indicator field
- FederalTaxID? string - Federal tax ID field
- DiscountPercent? decimal - Discount percent field
- PaymentReference? string - Payment reference field
- CreationDate? string - Creation date field
- UpdateDate? string - Update date field
- FinancialPeriod? Signed32 - Financial period field
- UserSign? Signed32 - User sign field
- TransNum? Signed32 - Trans number field
- VatSum? decimal - VAT sum field
- VatSumSys? decimal - VAT sum sys field
- VatSumFc? decimal - VAT sum foreign currency field
- NetProcedure? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- DocTotalFc? decimal - Document total foreign currency field
- DocTotalSys? decimal - Document total sys field
- Form1099? Signed32 - Form1099 field
- Box1099? string - Box1099 field
- RevisionPo? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- RequriedDate? string - Requried date field
- CancelDate? string - Cancel date field
- BlockDunning? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Submitted? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Segment? Signed32 - Segment field
- PickStatus? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Pick? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- PaymentMethod? string - Payment method field
- PaymentBlock? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- PaymentBlockEntry? Signed32 - Payment block entry field
- CentralBankIndicator? string - Central bank indicator field
- MaximumCashDiscount? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Reserve? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Project? string - Project field
- ExemptionValidityDateFrom? string - Exemption validity date from field
- ExemptionValidityDateTo? string - Exemption validity date to field
- WareHouseUpdateType? BoDocWhsUpdateTypes - OData EnumType 'BoDocWhsUpdateTypes'. Serialised by the Service Layer as the member name
- Rounding? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ExternalCorrectedDocNum? string - External corrected document number field
- InternalCorrectedDocNum? Signed32 - Internal corrected document number field
- NextCorrectingDocument? Signed32 - Next correcting document field
- DeferredTax? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- TaxExemptionLetterNum? string - Tax exemption letter number field
- WTApplied? decimal - Withholding tax applied field
- WTAppliedFC? decimal - Withholding tax applied foreign currency field
- BillOfExchangeReserved? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- AgentCode? string - Agent code field
- WTAppliedSC? decimal - Withholding tax applied system currency field
- TotalEqualizationTax? decimal - Total equalization tax field
- TotalEqualizationTaxFC? decimal - Total equalization tax foreign currency field
- TotalEqualizationTaxSC? decimal - Total equalization tax system currency field
- NumberOfInstallments? Signed32 - Number of installments field
- ApplyTaxOnFirstInstallment? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- TaxOnInstallments? BoTaxOnInstallmentsTypeEnum - OData EnumType 'BoTaxOnInstallmentsTypeEnum'. Serialised by the Service Layer as the member name
- WTNonSubjectAmount? decimal - Withholding tax non subject amount field
- WTNonSubjectAmountSC? decimal - Withholding tax non subject amount system currency field
- WTNonSubjectAmountFC? decimal - Withholding tax non subject amount foreign currency field
- WTExemptedAmount? decimal - Withholding tax exempted amount field
- WTExemptedAmountSC? decimal - Withholding tax exempted amount system currency field
- WTExemptedAmountFC? decimal - Withholding tax exempted amount foreign currency field
- BaseAmount? decimal - Base amount field
- BaseAmountSC? decimal - Base amount system currency field
- BaseAmountFC? decimal - Base amount foreign currency field
- WTAmount? decimal - Withholding tax amount field
- WTAmountSC? decimal - Withholding tax amount system currency field
- WTAmountFC? decimal - Withholding tax amount foreign currency field
- VatDate? string - VAT date field
- DocumentsOwner? Signed32 - Documents owner field
- FolioPrefixString? string - Folio prefix string field
- FolioNumber? Signed32 - Folio number field
- DocumentSubType? BoDocumentSubType - OData EnumType 'BoDocumentSubType'. Serialised by the Service Layer as the member name
- BPChannelCode? string - Business partner channel code field
- BPChannelContact? Signed32 - Business partner channel contact field
- Address2? string - Address2 field
- DocumentStatus? BoStatus - OData EnumType 'BoStatus'. Serialised by the Service Layer as the member name
- PeriodIndicator? string - Period indicator field
- PayToCode? string - Pay to code field
- ManualNumber? string - Manual number field
- UseShpdGoodsAct? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- IsPayToBank? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- PayToBankCountry? string - Pay to bank country field
- PayToBankCode? string - Pay to bank code field
- PayToBankAccountNo? string - Pay to bank account number field
- PayToBankBranch? string - Pay to bank branch field
- BPL_IDAssignedToInvoice? Signed32 - BPL ID assigned to invoice field
- DownPayment? decimal - Down payment field
- ReserveInvoice? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- LanguageCode? Signed32 - Language code field
- TrackingNumber? string - Tracking number field
- PickRemark? string - Pick remark field
- ClosingDate? string - Closing date field
- SequenceCode? Signed32 - Sequence code field
- SequenceSerial? Signed32 - Sequence serial field
- SeriesString? string - Series string field
- SubSeriesString? string - Sub series string field
- SequenceModel? string - Sequence model field
- UseCorrectionVATGroup? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- TotalDiscount? decimal - Total discount field
- DownPaymentAmount? decimal - Down payment amount field
- DownPaymentPercentage? decimal - Down payment percentage field
- DownPaymentType? DownPaymentTypeEnum - OData EnumType 'DownPaymentTypeEnum'. Serialised by the Service Layer as the member name
- DownPaymentAmountSC? decimal - Down payment amount system currency field
- DownPaymentAmountFC? decimal - Down payment amount foreign currency field
- VatPercent? decimal - VAT percent field
- ServiceGrossProfitPercent? decimal - Service gross profit percent field
- OpeningRemarks? string - Opening remarks field
- ClosingRemarks? string - Closing remarks field
- RoundingDiffAmount? decimal - Rounding diff amount field
- RoundingDiffAmountFC? decimal - Rounding diff amount foreign currency field
- RoundingDiffAmountSC? decimal - Rounding diff amount system currency field
- Cancelled? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- SignatureInputMessage? string - Signature input message field
- SignatureDigest? string - Signature digest field
- CertificationNumber? string - Certification number field
- PrivateKeyVersion? Signed32 - Private key version field
- ControlAccount? string - Control account field
- InsuranceOperation347? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ArchiveNonremovableSalesQuotation? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- GTSChecker? Signed32 - GTS checker field
- GTSPayee? Signed32 - GTS payee field
- ExtraMonth? Signed32 - Extra month field
- ExtraDays? Signed32 - Extra days field
- CashDiscountDateOffset? Signed32 - Cash discount date offset field
- StartFrom? BoPayTermDueTypes - OData EnumType 'BoPayTermDueTypes'. Serialised by the Service Layer as the member name
- NTSApproved? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ETaxWebSite? Signed32 - E tax web site field
- ETaxNumber? string - E tax number field
- NTSApprovedNumber? string - NTS approved number field
- EDocGenerationType? EDocGenerationTypeEnum - OData EnumType 'EDocGenerationTypeEnum'. Serialised by the Service Layer as the member name
- EDocSeries? Signed32 - E document series field
- EDocNum? string - E document number field
- EDocExportFormat? Signed32 - E document export format field
- EDocStatus? EDocStatusEnum - OData EnumType 'EDocStatusEnum'. Serialised by the Service Layer as the member name
- EDocErrorCode? string - E document error code field
- EDocErrorMessage? string - E document error message field
- DownPaymentStatus? BoSoStatus - OData EnumType 'BoSoStatus'. Serialised by the Service Layer as the member name
- GroupSeries? Signed32 - Group series field
- GroupNumber? Signed32 - Group number field
- GroupHandWritten? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ReopenOriginalDocument? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ReopenManuallyClosedOrCanceledDocument? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- CreateOnlineQuotation? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- POSEquipmentNumber? string - POS equipment number field
- POSManufacturerSerialNumber? string - POS manufacturer serial number field
- POSCashierNumber? Signed32 - POS cashier number field
- ApplyCurrentVATRatesForDownPaymentsToDraw? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ClosingOption? ClosingOptionEnum - OData EnumType 'ClosingOptionEnum'. Serialised by the Service Layer as the member name
- SpecifiedClosingDate? string - Specified closing date field
- OpenForLandedCosts? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- AuthorizationStatus? DocumentAuthorizationStatusEnum - OData EnumType 'DocumentAuthorizationStatusEnum'. Serialised by the Service Layer as the member name
- TotalDiscountFC? decimal - Total discount foreign currency field
- TotalDiscountSC? decimal - Total discount system currency field
- RelevantToGTS? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- BPLName? string - BPL name field
- VATRegNum? string - VAT reg number field
- AnnualInvoiceDeclarationReference? Signed32 - Annual invoice declaration reference field
- Supplier? string - Supplier field
- Releaser? Signed32 - Releaser field
- Receiver? Signed32 - Receiver field
- BlanketAgreementNumber? Signed32 - Blanket agreement number field
- IsAlteration? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- CancelStatus? CancelStatusEnum - OData EnumType 'CancelStatusEnum'. Serialised by the Service Layer as the member name
- DraftKey? Signed32 - Draft key field
- AssetValueDate? string - Asset value date field
- Requester? string - Requester field
- RequesterName? string - Requester name field
- RequesterBranch? Signed32 - Requester branch field
- RequesterDepartment? Signed32 - Requester department field
- RequesterEmail? string - Requester email field
- SendNotification? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ReqType? Signed32 - Req type field
- ReqCode? string - Req code field
- InvoicePayment? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- DocumentDelivery? DocumentDeliveryTypeEnum - OData EnumType 'DocumentDeliveryTypeEnum'. Serialised by the Service Layer as the member name
- AuthorizationCode? string - Authorization code field
- StartDeliveryDate? string - Start delivery date field
- StartDeliveryTime? string - Start delivery time field
- EndDeliveryDate? string - End delivery date field
- EndDeliveryTime? string - End delivery time field
- VehiclePlate? string - Vehicle plate field
- ATDocumentType? string - AT document type field
- ElecCommStatus? ElecCommStatusEnum - OData EnumType 'ElecCommStatusEnum'. Serialised by the Service Layer as the member name
- ElecCommMessage? string - Elec comm message field
- ReuseDocumentNum? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ReuseNotaFiscalNum? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- PrintSEPADirect? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- FiscalDocNum? string - Fiscal document number field
- POSDailySummaryNo? Signed32 - POS daily summary number field
- POSReceiptNo? Signed32 - POS receipt number field
- PointOfIssueCode? string - Point of issue code field
- Letter? FolioLetterEnum - OData EnumType 'FolioLetterEnum'. Serialised by the Service Layer as the member name
- FolioNumberFrom? Signed32 - Folio number from field
- FolioNumberTo? Signed32 - Folio number to field
- InterimType? BoInterimDocTypes - OData EnumType 'BoInterimDocTypes'. Serialised by the Service Layer as the member name
- RelatedType? Signed32 - Related type field
- RelatedEntry? Signed32 - Related entry field
- SAPPassport? string - SAP passport field
- DocumentTaxID? string - Document tax ID field
- DateOfReportingControlStatementVAT? string - Date of reporting control statement VAT field
- ReportingSectionControlStatementVAT? string - Reporting section control statement VAT field
- ExcludeFromTaxReportControlStatementVAT? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- POS_CashRegister? Signed32 - POS cash register field
- UpdateTime? string - Update time field
- CreateQRCodeFrom? string - Create QR code from field
- PriceMode? PriceModeDocumentEnum - OData EnumType 'PriceModeDocumentEnum'. Serialised by the Service Layer as the member name
- PriceListNum? Signed32 - Price list number field
- DownPaymentTrasactionID? string - Down payment trasaction ID field
- OriginalRefNo? string - Original reference number field
- OriginalRefDate? string - Original reference date field
- Revision? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- GSTTransactionType? GSTTransactionTypeEnum - OData EnumType 'GSTTransactionTypeEnum'. Serialised by the Service Layer as the member name
- OriginalCreditOrDebitNo? string - Original credit or debit number field
- OriginalCreditOrDebitDate? string - Original credit or debit date field
- ECommerceOperator? string - E commerce operator field
- ECommerceGSTIN? string - E commerce GSTIN field
- TaxInvoiceNo? string - Tax invoice number field
- TaxInvoiceDate? string - Tax invoice date field
- ShipFrom? string - Ship from field
- CommissionTrade? CommissionTradeTypeEnum - OData EnumType 'CommissionTradeTypeEnum'. Serialised by the Service Layer as the member name
- CommissionTradeReturn? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- UseBillToAddrToDetermineTax? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- IssuingReason? Signed32 - Issuing reason field
- Cig? Signed32 - Cig field
- Cup? Signed32 - Cup field
- EDocType? EDocTypeEnum - OData EnumType 'EDocTypeEnum'. Serialised by the Service Layer as the member name
- FCEAsPaymentMeans? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- PaidToDate? decimal - Paid to date field
- PaidToDateFC? decimal - Paid to date foreign currency field
- PaidToDateSys? decimal - Paid to date sys field
- FatherCard? string - Father card field
- FatherType? BoFatherCardTypes - OData EnumType 'BoFatherCardTypes'. Serialised by the Service Layer as the member name
- ShipState? string - Ship state field
- ShipPlace? string - Ship place field
- CustOffice? string - Customer office field
- FCI? string - FCI field
- AddLegIn? string - Add leg in field
- LegTextF? Signed32 - Leg text f field
- DANFELgTxt? string - DANFE lg txt field
- DataVersion? Signed32 - Data version field
- LastPageFolioNumber? Signed32 - Last page folio number field
- InventoryStatus? BoStatus - OData EnumType 'BoStatus'. Serialised by the Service Layer as the member name
- PlasticPackagingTaxRelevant? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- NotRelevantForMonthlyInvoice? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- EndAt? BoPayTermDueTypes - OData EnumType 'BoPayTermDueTypes'. Serialised by the Service Layer as the member name
- ShipToCodeForReturn? string - Ship to code for return field
- AddressForReturn? string - Address for return field
- Document_ApprovalRequests? DocumentApprovalRequest[] - Document approval requests field
- DocumentLines? DocumentLine[] - Document lines field
- EWayBillDetails? EWayBillDetails - The
EWayBillDetailscomplex type of the SAP Business One Service Layer
- EDeliveryInfo? EDeliveryInfo - The
EDeliveryInfocomplex type of the SAP Business One Service Layer
- ElectronicProtocols? ElectronicProtocol[] - Electronic protocols field
- DocumentAdditionalExpenses? DocumentAdditionalExpense[] - Document additional expenses field
- DocumentDistributedExpenses? DocumentDistributedExpense[] - Document distributed expenses field
- WithholdingTaxDataWTXCollection? WithholdingTaxDataWTX[] - Withholding tax data WTX collection field
- WithholdingTaxDataCollection? WithholdingTaxData[] - Withholding tax data collection field
- DocumentPackages? DocumentPackage[] - Document packages field
- DocumentSpecialLines? DocumentSpecialLine[] - Document special lines field
- DocumentInstallments? DocumentInstallment[] - Document installments field
- DownPaymentsToDraw? DownPaymentToDraw[] - Down payments to draw field
- TaxExtension? TaxExtension - The
TaxExtensioncomplex type of the SAP Business One Service Layer
- AddressExtension? AddressExtension - The
AddressExtensioncomplex type of the SAP Business One Service Layer
- DocumentReferences? DocumentReference[] - Document references field
- DocumentAdditionalIntrastatExpenses? DocumentAdditionalIntrastatExpense[] - Document additional intrastat expenses field
- DutyStatus? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- BaseType? Signed32 - Base type field
- BaseEntry? Signed32 - Base entry field
- IndFinal? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- AllocationNumberIL? string - Allocation number IL field
- DigitalPayToAddress? string - Digital pay to address field
- DigitalPayments? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- SirenNumber? string - Siren number field
- SiretNumber? string - Siret number field
- RoutingCode? string - Routing code field
- Suffix? string - Suffix field
- SOIWizardId? Signed32 - SOI wizard ID field
- 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 - Expense code field
- LineTotal? decimal - Line total field
- LineTotalFC? decimal - Line total foreign currency field
- LineTotalSys? decimal - Line total sys field
- PaidToDate? decimal - Paid to date field
- PaidToDateFC? decimal - Paid to date foreign currency field
- PaidToDateSys? decimal - Paid to date sys field
- Remarks? string - Remarks field
- DistributionMethod? BoAdEpnsDistribMethods - OData EnumType 'BoAdEpnsDistribMethods'. Serialised by the Service Layer as the member name
- TaxLiable? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- VatGroup? string - VAT group field
- TaxPercent? decimal - Tax percent field
- TaxSum? decimal - Tax sum field
- TaxSumFC? decimal - Tax sum foreign currency field
- TaxSumSys? decimal - Tax sum sys field
- DeductibleTaxSum? decimal - Deductible tax sum field
- DeductibleTaxSumFC? decimal - Deductible tax sum foreign currency field
- DeductibleTaxSumSys? decimal - Deductible tax sum sys field
- AquisitionTax? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- TaxCode? string - Tax code field
- TaxType? BoAdEpnsTaxTypes - OData EnumType 'BoAdEpnsTaxTypes'. Serialised by the Service Layer as the member name
- TaxPaid? decimal - Tax paid field
- TaxPaidFC? decimal - Tax paid foreign currency field
- TaxPaidSys? decimal - Tax paid sys field
- EqualizationTaxPercent? decimal - Equalization tax percent field
- EqualizationTaxSum? decimal - Equalization tax sum field
- EqualizationTaxFC? decimal - Equalization tax foreign currency field
- EqualizationTaxSys? decimal - Equalization tax sys field
- TaxTotalSum? decimal - Tax total sum field
- TaxTotalSumFC? decimal - Tax total sum foreign currency field
- TaxTotalSumSys? decimal - Tax total sum sys field
- BaseDocEntry? Signed32 - Base document entry field
- BaseDocLine? Signed32 - Base document line field
- BaseDocType? Signed32 - Base document type field
- BaseDocumentReference? Signed32 - Base document reference field
- LineNum? Signed32 - Line number field
- LastPurchasePrice? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Status? BoStatus - OData EnumType 'BoStatus'. Serialised by the Service Layer as the member name
- Stock? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- TargetAbsEntry? Signed32 - Target abs entry field
- TargetType? Signed32 - Target type field
- WTLiable? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- DistributionRule? string - Distribution rule field
- Project? string - Project field
- DistributionRule2? string - Distribution rule2 field
- DistributionRule3? string - Distribution rule3 field
- DistributionRule4? string - Distribution rule4 field
- DistributionRule5? string - Distribution rule5 field
- LineGross? decimal - Line gross field
- LineGrossSys? decimal - Line gross sys field
- LineGrossFC? decimal - Line gross foreign currency field
- ExternalCalcTaxRate? decimal - External calc tax rate field
- ExternalCalcTaxAmount? decimal - External calc tax amount field
- ExternalCalcTaxAmountFC? decimal - External calc tax amount foreign currency field
- ExternalCalcTaxAmountSC? decimal - External calc tax amount system currency field
- CUSplit? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- DocFreight? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- DocExpenseTaxJurisdictions? DocExpenseTaxJurisdiction[] - Document expense tax jurisdictions field
- DocFreightEBooksDetails? DocFreightEBooksDetail[] - Document freight e books details field
sap.businessone.sales: DocumentAdditionalIntrastatExpense
The DocumentAdditionalIntrastatExpense complex type of the SAP Business One Service Layer
Fields
- ExpenseCode? Signed32 - Expense code field
- LineTotal? decimal - Line total field
- LineTotalFC? decimal - Line total foreign currency field
- LineTotalSys? decimal - Line total sys field
- PaidToDate? decimal - Paid to date field
- PaidToDateFC? decimal - Paid to date foreign currency field
- PaidToDateSys? decimal - Paid to date sys field
- DistributionMethod? BoAdEpnsDistribMethods - OData EnumType 'BoAdEpnsDistribMethods'. Serialised by the Service Layer as the member name
- BaseDocEntry? Signed32 - Base document entry field
- BaseDocLine? Signed32 - Base document line field
- BaseDocType? Signed32 - Base document type field
- BaseDocumentReference? Signed32 - Base document reference field
- LineNum? Signed32 - Line number field
sap.businessone.sales: DocumentApprovalRequest
The Document_ApprovalRequest complex type of the SAP Business One Service Layer
Fields
- activeForUpdate? BoYesNoEnum - Active for update field
- approvalTemplatesID? Signed32 - Approval templates ID field
- remarks? string - Remarks field
- approvalTemplatesName? string - Approval templates name field
sap.businessone.sales: DocumentCloseParams
The DocumentCloseParams complex type of the SAP Business One Service Layer
Fields
- docEntry? Signed32 - Document entry field
- specifiedClosingDate? string - Specified closing date field
- closingOption? ClosingOptionEnum - Closing option field
sap.businessone.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 - Due date field
- Percentage? decimal - Percentage field
- Total? decimal - Total field
- LastDunningDate? string - Last dunning date field
- DunningLevel? Signed32 - Dunning level field
- TotalFC? decimal - Total foreign currency field
- InstallmentId? Signed32 - Installment ID field
- PaymentOrdered? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- PaidToDate? decimal - Paid to date field
- PaidToDateFC? decimal - Paid to date foreign currency field
sap.businessone.sales: DocumentLine
The DocumentLine complex type of the SAP Business One Service Layer
Fields
- LineNum? Signed32 - Line number field
- ItemCode? string - Item code field
- ItemDescription? string - Item description field
- Quantity? decimal - Quantity field
- ShipDate? string - Ship date field
- Price? decimal - Price field
- PriceAfterVAT? decimal - Price after VAT field
- Currency? string - Currency field
- Rate? decimal - Rate field
- DiscountPercent? decimal - Discount percent field
- VendorNum? string - Vendor number field
- SerialNum? string - Serial number field
- WarehouseCode? string - Warehouse code field
- SalesPersonCode? Signed32 - Sales person code field
- CommisionPercent? decimal - Commision percent field
- TreeType? BoItemTreeTypes - OData EnumType 'BoItemTreeTypes'. Serialised by the Service Layer as the member name
- AccountCode? string - Account code field
- UseBaseUnits? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- SupplierCatNum? string - Supplier cat number field
- CostingCode? string - Costing code field
- ProjectCode? string - Project code field
- BarCode? string - Bar code field
- VatGroup? string - VAT group field
- Height1? decimal - Height1 field
- Hight1Unit? Signed32 - Hight1 unit field
- Height2? decimal - Height2 field
- Height2Unit? Signed32 - Height2 unit field
- Lengh1? decimal - Lengh1 field
- Lengh1Unit? Signed32 - Lengh1 unit field
- Lengh2? decimal - Lengh2 field
- Lengh2Unit? Signed32 - Lengh2 unit field
- Weight1? decimal - Weight1 field
- Weight1Unit? Signed32 - Weight1 unit field
- Weight2? decimal - Weight2 field
- Weight2Unit? Signed32 - Weight2 unit field
- Factor1? decimal - Factor1 field
- Factor2? decimal - Factor2 field
- Factor3? decimal - Factor3 field
- Factor4? decimal - Factor4 field
- BaseType? Signed32 - Base type field
- BaseEntry? Signed32 - Base entry field
- BaseLine? Signed32 - Base line field
- Volume? decimal - Volume field
- VolumeUnit? Signed32 - Volume unit field
- Width1? decimal - Width1 field
- Width1Unit? Signed32 - Width1 unit field
- Width2? decimal - Width2 field
- Width2Unit? Signed32 - Width2 unit field
- Address? string - Address field
- TaxCode? string - Tax code field
- TaxType? BoTaxTypes - OData EnumType 'BoTaxTypes'. Serialised by the Service Layer as the member name
- TaxLiable? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- PickStatus? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- PickQuantity? decimal - Pick quantity field
- PickListIdNumber? Signed32 - Pick list ID number field
- OriginalItem? string - Original item field
- BackOrder? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- FreeText? string - Free text field
- ShippingMethod? Signed32 - Shipping method field
- POTargetNum? Signed32 - Purchase order target number field
- POTargetEntry? string - Purchase order target entry field
- POTargetRowNum? Signed32 - Purchase order target row number field
- CorrectionInvoiceItem? BoCorInvItemStatus - OData EnumType 'BoCorInvItemStatus'. Serialised by the Service Layer as the member name
- CorrInvAmountToStock? decimal - Corr inv amount to stock field
- CorrInvAmountToDiffAcct? decimal - Corr inv amount to diff account field
- AppliedTax? decimal - Applied tax field
- AppliedTaxFC? decimal - Applied tax foreign currency field
- AppliedTaxSC? decimal - Applied tax system currency field
- WTLiable? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- DeferredTax? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- EqualizationTaxPercent? decimal - Equalization tax percent field
- TotalEqualizationTax? decimal - Total equalization tax field
- TotalEqualizationTaxFC? decimal - Total equalization tax foreign currency field
- TotalEqualizationTaxSC? decimal - Total equalization tax system currency field
- NetTaxAmount? decimal - Net tax amount field
- NetTaxAmountFC? decimal - Net tax amount foreign currency field
- NetTaxAmountSC? decimal - Net tax amount system currency field
- MeasureUnit? string - Measure unit field
- UnitsOfMeasurment? decimal - Units of measurment field
- LineTotal? decimal - Line total field
- TaxPercentagePerRow? decimal - Tax percentage per row field
- TaxTotal? decimal - Tax total field
- ConsumerSalesForecast? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ExciseAmount? decimal - Excise amount field
- TaxPerUnit? decimal - Tax per unit field
- TotalInclTax? decimal - Total incl tax field
- CountryOrg? string - Country organization field
- SWW? string - SWW field
- TransactionType? BoTransactionTypeEnum - OData EnumType 'BoTransactionTypeEnum'. Serialised by the Service Layer as the member name
- DistributeExpense? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- RowTotalFC? decimal - Row total foreign currency field
- RowTotalSC? decimal - Row total system currency field
- LastBuyInmPrice? decimal - Last buy inm price field
- LastBuyDistributeSumFc? decimal - Last buy distribute sum foreign currency field
- LastBuyDistributeSumSc? decimal - Last buy distribute sum system currency field
- LastBuyDistributeSum? decimal - Last buy distribute sum field
- StockDistributesumForeign? decimal - Stock distributesum foreign field
- StockDistributesumSystem? decimal - Stock distributesum system field
- StockDistributesum? decimal - Stock distributesum field
- StockInmPrice? decimal - Stock inm price field
- PickStatusEx? BoDocumentLinePickStatus - OData EnumType 'BoDocumentLinePickStatus'. Serialised by the Service Layer as the member name
- TaxBeforeDPM? decimal - Tax before DPM field
- TaxBeforeDPMFC? decimal - Tax before DPMFC field
- TaxBeforeDPMSC? decimal - Tax before DPMSC field
- CFOPCode? string - CFOP code field
- CSTCode? string - CST code field
- Usage? Signed32 - Usage field
- TaxOnly? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- VisualOrder? Signed32 - Visual order field
- BaseOpenQuantity? decimal - Base open quantity field
- UnitPrice? decimal - Unit price field
- LineStatus? BoStatus - OData EnumType 'BoStatus'. Serialised by the Service Layer as the member name
- PackageQuantity? decimal - Package quantity field
- Text? string - Text field
- LineType? BoDocLineType - OData EnumType 'BoDocLineType'. Serialised by the Service Layer as the member name
- COGSCostingCode? string - COGS costing code field
- COGSAccountCode? string - COGS account code field
- ChangeAssemlyBoMWarehouse? string - Change assemly bo m warehouse field
- GrossBuyPrice? decimal - Gross buy price field
- GrossBase? Signed32 - Gross base field
- GrossProfitTotalBasePrice? decimal - Gross profit total base price field
- CostingCode2? string - Costing code2 field
- CostingCode3? string - Costing code3 field
- CostingCode4? string - Costing code4 field
- CostingCode5? string - Costing code5 field
- ItemDetails? string - Item details field
- LocationCode? Signed32 - Location code field
- ActualDeliveryDate? string - Actual delivery date field
- RemainingOpenQuantity? decimal - Remaining open quantity field
- OpenAmount? decimal - Open amount field
- OpenAmountFC? decimal - Open amount foreign currency field
- OpenAmountSC? decimal - Open amount system currency field
- ExLineNo? string - Ex line number field
- RequiredDate? string - Required date field
- RequiredQuantity? decimal - Required quantity field
- COGSCostingCode2? string - COGS costing code2 field
- COGSCostingCode3? string - COGS costing code3 field
- COGSCostingCode4? string - COGS costing code4 field
- COGSCostingCode5? string - COGS costing code5 field
- CSTforIPI? string - CS tfor IPI field
- CSTforPIS? string - CS tfor PIS field
- CSTforCOFINS? string - CS tfor COFINS field
- CreditOriginCode? string - Credit origin code field
- WithoutInventoryMovement? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- AgreementNo? Signed32 - Agreement number field
- AgreementRowNumber? Signed32 - Agreement row number field
- ActualBaseEntry? Signed32 - Actual base entry field
- ActualBaseLine? Signed32 - Actual base line field
- DocEntry? Signed32 - Document entry field
- Surpluses? decimal - Surpluses field
- DefectAndBreakup? decimal - Defect and breakup field
- Shortages? decimal - Shortages field
- ConsiderQuantity? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- PartialRetirement? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- RetirementQuantity? decimal - Retirement quantity field
- RetirementAPC? decimal - Retirement APC field
- ThirdParty? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- PoNum? string - Purchase order number field
- PoItmNum? Signed32 - Purchase order itm number field
- ExpenseType? string - Expense type field
- ReceiptNumber? string - Receipt number field
- ExpenseOperationType? BoExpenseOperationTypeEnum - OData EnumType 'BoExpenseOperationTypeEnum'. Serialised by the Service Layer as the member name
- FederalTaxID? string - Federal tax ID field
- GrossProfit? decimal - Gross profit field
- GrossProfitFC? decimal - Gross profit foreign currency field
- GrossProfitSC? decimal - Gross profit system currency field
- PriceSource? DocumentPriceSourceEnum - OData EnumType 'DocumentPriceSourceEnum'. Serialised by the Service Layer as the member name
- EnableReturnCost? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ReturnCost? decimal - Return cost field
- LineVendor? string - Line vendor field
- ReturnAction? Signed32 - Return action field
- ReturnReason? Signed32 - Return reason field
- StgSeqNum? Signed32 - Stg seq number field
- StgEntry? Signed32 - Stg entry field
- StgDesc? string - Stg description field
- UoMEntry? Signed32 - Uo m entry field
- UoMCode? string - Uo m code field
- InventoryQuantity? decimal - Inventory quantity field
- RemainingOpenInventoryQuantity? decimal - Remaining open inventory quantity field
- ParentLineNum? Signed32 - Parent line number field
- Incoterms? Signed32 - Incoterms field
- TransportMode? Signed32 - Transport mode field
- NatureOfTransaction? Signed32 - Nature of transaction field
- DestinationCountryForImport? string - Destination country for import field
- DestinationRegionForImport? Signed32 - Destination region for import field
- OriginCountryForExport? string - Origin country for export field
- OriginRegionForExport? Signed32 - Origin region for export field
- ItemType? BoDocItemType - OData EnumType 'BoDocItemType'. Serialised by the Service Layer as the member name
- ChangeInventoryQuantityIndependently? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- FreeOfChargeBP? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- SACEntry? Signed32 - SAC entry field
- HSNEntry? Signed32 - HSN entry field
- GrossPrice? decimal - Gross price field
- GrossTotal? decimal - Gross total field
- GrossTotalFC? decimal - Gross total foreign currency field
- GrossTotalSC? decimal - Gross total system currency field
- NCMCode? Signed32 - NCM code field
- NVECode? string - NVE code field
- IndEscala? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- CtrSealQty? decimal - Ctr seal quantity field
- CNJPMan? string - CNJP man field
- CESTCode? Signed32 - CEST code field
- UFFiscalBenefitCode? string - UF fiscal benefit code field
- ReverseCharge? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ShipToCode? string - Ship to code field
- ShipToDescription? string - Ship to description field
- ShipFromCode? string - Ship from code field
- ShipFromDescription? string - Ship from description field
- OwnerCode? Signed32 - Owner code field
- ExternalCalcTaxRate? decimal - External calc tax rate field
- ExternalCalcTaxAmount? decimal - External calc tax amount field
- ExternalCalcTaxAmountFC? decimal - External calc tax amount foreign currency field
- ExternalCalcTaxAmountSC? decimal - External calc tax amount system currency field
- StandardItemIdentification? Signed32 - Standard item identification field
- CommodityClassification? Signed32 - Commodity classification field
- WeightOfRecycledPlastic? decimal - Weight of recycled plastic field
- PlasticPackageExemptionReason? string - Plastic package exemption reason field
- LegalText? string - Legal text field
- Cig? Signed32 - Cig field
- Cup? Signed32 - Cup field
- OperatingProfit? decimal - Operating profit field
- OperatingProfitFC? decimal - Operating profit foreign currency field
- OperatingProfitSC? decimal - Operating profit system currency field
- NetIncome? decimal - Net income field
- NetIncomeFC? decimal - Net income foreign currency field
- NetIncomeSC? decimal - Net income system currency field
- CSTforIBS? string - CS tfor IBS field
- CSTforCBS? string - CS tfor CBS field
- CSTforIS? string - CS tfor IS field
- UnencumberedReason? Signed32 - Unencumbered reason field
- CUSplit? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ListNum? Signed32 - List number field
- RecognizedTaxCode? string - Recognized tax code field
- LineTaxJurisdictions? LineTaxJurisdiction[] - Line tax jurisdictions field
- GeneratedAssets? GeneratedAsset[] - Generated assets field
- EBooksDetails? EBooksDetail[] - E books details field
- DocLinePickLists? DocLinePickList[] - Document line pick lists field
- DocumentLineAdditionalExpenses? DocumentLineAdditionalExpense[] - Document line additional expenses field
- WithholdingTaxLines? WithholdingTaxLine[] - Withholding tax lines field
- SerialNumbers? SerialNumber[] - Serial numbers field
- BatchNumbers? BatchNumber[] - Batch numbers field
- DocumentLinesBinAllocations? DocumentLinesBinAllocation[] - Document lines bin allocations field
- ExportProcesses? ExportProcess[] - Export processes field
- CCDNumbers? CCDNumber[] - CCD numbers field
- ImportProcesses? ImportProcess[] - Import processes field
sap.businessone.sales: DocumentLineAdditionalExpense
The DocumentLineAdditionalExpense complex type of the SAP Business One Service Layer
Fields
- LineNumber? Signed32 - Line number field
- GroupCode? Signed32 - Group code field
- ExpenseCode? Signed32 - Expense code field
- LineTotal? decimal - Line total field
- LineTotalFC? decimal - Line total foreign currency field
- LineTotalSys? decimal - Line total sys field
- PaidToDate? decimal - Paid to date field
- PaidToDateFC? decimal - Paid to date foreign currency field
- PaidToDateSys? decimal - Paid to date sys field
- TaxLiable? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- VatGroup? string - VAT group field
- TaxPercent? decimal - Tax percent field
- TaxSum? decimal - Tax sum field
- TaxSumFC? decimal - Tax sum foreign currency field
- TaxSumSys? decimal - Tax sum sys field
- DeductibleTaxSum? decimal - Deductible tax sum field
- DeductibleTaxSumFC? decimal - Deductible tax sum foreign currency field
- DeductibleTaxSumSys? decimal - Deductible tax sum sys field
- AquisitionTax? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- TaxCode? string - Tax code field
- TaxType? BoAdEpnsTaxTypes - OData EnumType 'BoAdEpnsTaxTypes'. Serialised by the Service Layer as the member name
- TaxPaid? decimal - Tax paid field
- TaxPaidFC? decimal - Tax paid foreign currency field
- TaxPaidSys? decimal - Tax paid sys field
- EqualizationTaxPercent? decimal - Equalization tax percent field
- EqualizationTaxSum? decimal - Equalization tax sum field
- EqualizationTaxFC? decimal - Equalization tax foreign currency field
- EqualizationTaxSys? decimal - Equalization tax sys field
- TaxTotalSum? decimal - Tax total sum field
- TaxTotalSumFC? decimal - Tax total sum foreign currency field
- TaxTotalSumSys? decimal - Tax total sum sys field
- WTLiable? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- BaseGroup? Signed32 - Base group field
- DistributionRule? string - Distribution rule field
- Project? string - Project field
- DistributionRule2? string - Distribution rule2 field
- DistributionRule3? string - Distribution rule3 field
- DistributionRule4? string - Distribution rule4 field
- DistributionRule5? string - Distribution rule5 field
- ExternalCalcTaxRate? decimal - External calc tax rate field
- ExternalCalcTaxAmount? decimal - External calc tax amount field
- ExternalCalcTaxAmountFC? decimal - External calc tax amount foreign currency field
- ExternalCalcTaxAmountSC? decimal - External calc tax amount system currency field
- CUSplit? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- DocFreight? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- LineExpenseTaxJurisdictions? LineExpenseTaxJurisdiction[] - Line expense tax jurisdictions field
- LineFreightEBooksDetails? LineFreightEBooksDetail[] - Line freight e books details field
sap.businessone.sales: DocumentLinesBinAllocation
The DocumentLinesBinAllocation complex type of the SAP Business One Service Layer
Fields
- BinAbsEntry? Signed32 - Bin abs entry field
- Quantity? decimal - Quantity field
- AllowNegativeQuantity? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- SerialAndBatchNumbersBaseLine? Signed32 - Serial and batch numbers base line field
- BaseLineNumber? Signed32 - Base line number field
sap.businessone.sales: DocumentPackage
The DocumentPackage complex type of the SAP Business One Service Layer
Fields
- Number? Signed32 - Number field
- Type? string - Type field
- TotalWeight? decimal - Total weight field
- Units? Signed32 - Units field
- DocumentPackageItems? DocumentPackageItem[] - Document package items field
sap.businessone.sales: DocumentPackageItem
The DocumentPackageItem complex type of the SAP Business One Service Layer
Fields
- PackageNumber? Signed32 - Package number field
- ItemCode? string - Item code field
- Quantity? decimal - Quantity field
- UoMEntry? Signed32 - Uo m entry field
- MeasureUnit? string - Measure unit field
- UnitsOfMeasurement? decimal - Units of measurement field
sap.businessone.sales: DocumentReference
The DocumentReference complex type of the SAP Business One Service Layer
Fields
- docEntry? Signed32 - Document entry field
- issueDate? string - Issue date field
- issuerCode? string - Issuer code field
- extDocNum? string - Ext document number field
- lineNumber? Signed32 - Line number field
- refDocEntr? Signed32 - Reference document entr field
- remark? string - Remark field
- refDocNum? Signed32 - Reference document number field
- issuerCNPJ? string - Issuer CNPJ field
- series? string - Series field
- number? Signed32 - Number field
- subSeries? string - Sub series field
- linkRefTyp? LinkReferenceTypeEnum - Link reference typ field
- refAmount? decimal - Reference amount field
- model? string - Model field
- accessKey? string - Access key field
- refAccKey? string - Reference acc key field
- refObjType? ReferencedObjectTypeEnum - Reference obj type field
sap.businessone.sales: DocumentSpecialLine
The DocumentSpecialLine complex type of the SAP Business One Service Layer
Fields
- subtotalSC? decimal - Subtotal system currency field
- grossTotalFC? decimal - Gross total foreign currency field
- freight1? decimal - Freight1 field
- freight2? decimal - Freight2 field
- freight3SC? decimal - Freight3 system currency field
- taxAmountSC? decimal - Tax amount system currency field
- subtotal? decimal - Subtotal field
- freight3FC? decimal - Freight3 foreign currency field
- freight2FC? decimal - Freight2 foreign currency field
- orderNumber? Signed32 - Order number field
- afterLineNumber? Signed32 - After line number field
- freight1FC? decimal - Freight1 foreign currency field
- grossTotalSC? decimal - Gross total system currency field
- lineNum? Signed32 - Line number field
- lineText? string - Line text field
- taxAmount? decimal - Tax amount field
- taxAmountFC? decimal - Tax amount foreign currency field
- subtotalFC? decimal - Subtotal foreign currency field
- grossTotal? decimal - Gross total field
- freight2SC? decimal - Freight2 system currency field
- freight3? decimal - Freight3 field
- freight1SC? decimal - Freight1 system currency field
- lineType? BoDocSpecialLineType - Line type field
sap.businessone.sales: DownPaymentsCollectionResponse
A paged collection of DownPayments entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? Document[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.sales: DownPaymentsService_ApproveAndAdd_body
Represents the request payload for the DownPaymentsService_ApproveAndAdd operation of the SAP Business One Service Layer
Fields
- document? Document - Document field
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 - Document field
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 - Document close params field
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 - Document field
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 - Document field
sap.businessone.sales: DownPaymentToDraw
The DownPaymentToDraw complex type of the SAP Business One Service Layer
Fields
- taxFC? decimal - Tax foreign currency field
- grossAmountToDraw? decimal - Gross amount to draw field
- docEntry? Signed32 - Document entry field
- grossAmountToDrawSC? decimal - Gross amount to draw system currency field
- tax? decimal - Tax field
- amountToDrawSC? decimal - Amount to draw system currency field
- rowNum? Signed32 - Row number field
- name? string - Name field
- docInternalID? Signed32 - Document internal ID field
- isGrossLine? BoYesNoEnum - Is gross line field
- details? string - Details field
- postingDate? string - Posting date field
- amountToDraw? decimal - Amount to draw field
- taxSC? decimal - Tax system currency field
- downPaymentType? DownPaymentTypeEnum - Down payment type field
- docNumber? Signed32 - Document number field
- grossAmountToDrawFC? decimal - Gross amount to draw foreign currency field
- downPaymentsToDrawDetails? DownPaymentToDrawDetails[] - Down payments to draw details field
- dueDate? string - Due date field
- amountToDrawFC? decimal - Amount to draw foreign currency field
sap.businessone.sales: DownPaymentToDrawDetails
The DownPaymentToDrawDetails complex type of the SAP Business One Service Layer
Fields
- seqNum? Signed32 - Seq number field
- vatGroupCode? string - VAT group code field
- taxFC? decimal - Tax foreign currency field
- grossAmountToDraw? decimal - Gross amount to draw field
- docEntry? Signed32 - Document entry field
- grossAmountToDrawSC? decimal - Gross amount to draw system currency field
- tax? decimal - Tax field
- taxAdjust? BoYesNoEnum - Tax adjust field
- rowNum? Signed32 - Row number field
- amountToDrawSC? decimal - Amount to draw system currency field
- docInternalID? Signed32 - Document internal ID field
- isGrossLine? BoYesNoEnum - Is gross line field
- amountToDraw? decimal - Amount to draw field
- taxSC? decimal - Tax system currency field
- grossAmountToDrawFC? decimal - Gross amount to draw foreign currency field
- lineType? LineTypeEnum - Line type field
- vatPercent? decimal - VAT percent field
- amountToDrawFC? decimal - Amount to draw foreign currency field
sap.businessone.sales: DraftsCollectionResponse
A paged collection of Drafts entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? Document[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.sales: DraftsService_ApproveAndAdd_body
Represents the request payload for the DraftsService_ApproveAndAdd operation of the SAP Business One Service Layer
Fields
- document? Document - Document field
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 - Document field
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 - Document close params field
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 - Document field
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 - Document field
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 - Document field
sap.businessone.sales: DunningLetter
The DunningLetter entity of the SAP Business One Service Layer
Fields
- FeeCurrency? string - Fee currency field
- RowNumber? Signed32 - Row number field
- LetterFormat? string - Letter format field
- Effectiveafter? string - Effectiveafter field
- MinimumBalanceCurrency? string - Minimum balance currency field
- Feeperletter? decimal - Feeperletter field
- CalcInterest? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- MinimumBalance? decimal - Minimum balance field
sap.businessone.sales: DunningLettersCollectionResponse
A paged collection of DunningLetters entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? DunningLetter[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.sales: DunningTerm
The DunningTerm entity of the SAP Business One Service Layer
Fields
- exchangeRateSelect? ExchangeRateSelectEnum - Exchange rate select field
- dunningTermLines? DunningTermLine[] - Dunning term lines field
- calculateInterestMethod? CalculateInterestMethodEnum - Calculate interest method field
- daysInMonth? Signed32 - Days in month field
- automaticPosting? AutomaticPostingEnum - Automatic posting field
- letterFeeCurrency? string - Letter fee currency field
- minimumBalance? decimal - Minimum balance field
- code? string - Code field
- groupingMethod? GroupingMethodEnum - Grouping method field
- daysInYear? Signed32 - Days in year field
- name? string - Name field
- letterFee? decimal - Letter fee field
- feeAccount? string - Fee account field
- interestAccount? string - Interest account field
- applyHighestLetterTemplate? BoYesNoEnum - Apply highest letter template field
- baseDateSelect? BaseDateSelectEnum - Base date select field
- includeInterest? BoYesNoEnum - Include interest field
- yearlyInterestRate? decimal - Yearly interest rate field
- minimumBalanceCurrency? string - Minimum balance currency field
sap.businessone.sales: DunningTermLine
The DunningTermLine complex type of the SAP Business One Service Layer
Fields
- letterFee? decimal - Letter fee field
- mininumBalance? decimal - Mininum balance field
- effectiveafter? string - Effectiveafter field
- letterFeeCurrency? string - Letter fee currency field
- calculateInterest? BoYesNoEnum - Calculate interest field
- levelNum? Signed32 - Level number field
- letterFormat? DunningLetterTypeEnum - Letter format field
- mininumBalanceCurrency? string - Mininum balance currency field
sap.businessone.sales: DunningTermParams
The DunningTermParams complex type of the SAP Business One Service Layer
Fields
- code? string - Code field
- name? string - Name field
sap.businessone.sales: DunningTermsCollectionResponse
A paged collection of DunningTerms entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? DunningTerm[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.sales: EBooksDetail
The EBooksDetail complex type of the SAP Business One Service Layer
Fields
- IncomeClassificationType? Signed32 - Income classification type field
- IncomeClassificationCategory? Signed32 - Income classification category field
- ExpensesClassificationType? Signed32 - Expenses classification type field
- ExpensesClassificationCategory? Signed32 - Expenses classification category field
- NetValueLC? decimal - Net value local currency field
- NetValueFC? decimal - Net value foreign currency field
- NetValueSC? decimal - Net value system currency field
- VatCategory? Signed32 - VAT category field
- WithheldPercentCategory? Signed32 - Withheld percent category field
- WithheldAmountLC? decimal - Withheld amount local currency field
- WithheldAmountFC? decimal - Withheld amount foreign currency field
- WithheldAmountSC? decimal - Withheld amount system currency field
- VatClassificationType? Signed32 - VAT classification type field
- VatClassificationCategory? Signed32 - VAT classification category field
- VATExemptionCause? Signed32 - VAT exemption cause field
- RecType? Signed32 - Rec type field
- StampDutyCategory? Signed32 - Stamp duty category field
- OtherTaxesCategory? Signed32 - Other taxes category field
- FeesCategory? Signed32 - Fees category field
sap.businessone.sales: EDeliveryInfo
The EDeliveryInfo complex type of the SAP Business One Service Layer
Fields
- vehicleNo? string - Vehicle number field
- docEntry? Signed32 - Document entry field
- moveType? Signed32 - Move type field
sap.businessone.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 - Mapping ID field
- TestingMode? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Confirmation? string - Confirmation field
- EDocType? Signed32 - E document type field
- CFDiCancellationReason? string - CF di cancellation reason field
- CFDiCancellationResponse? string - CF di cancellation response field
- RelatedDocuments? RelatedDocument[] - Related documents field
- EBooksRelevant? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- EBooksMARK? string - E books MARK field
- EBooksMARKofNegative? string - E books MAR kof negative field
- EBooksInvoiceType? string - E books invoice type field
- EBooksInvoiceTypeofNegative? string - E books invoice typeof negative field
- EBillingIRN? string - E billing IRN field
- EETPKP? string - EETPKP field
- EETBKP? string - EETBKP field
- SignatureInputMessage? string - Signature input message field
- SignatureDigest? string - Signature digest field
- FechaTimbrado? string - Fecha timbrado field
- SelloSAT? string - Sello SAT field
- PaymentMethod? string - Payment method field
- RfcProvCertif? string - Rfc prov certif field
- NoCertificadoSAT? string - Number certificado SAT field
- FPASequenceNumber? Signed32 - FPA sequence number field
- FPASendDateSDI? string - FPA send date SDI field
- FPAProgressivo? string - FPA progressivo field
- ProtocolDescription? string - Protocol description field
- CFDiExport? string - CF di export field
- EBillingAckNo? string - E billing ack number field
- EBillingAckDt? string - E billing ack dt field
- EBillingSignedInvoice? string - E billing signed invoice field
- EBillingSignedQRCode? string - E billing signed QR code field
- EBillingResponseStatus? string - E billing response status field
- CFDiCancellationReference? string - CF di cancellation reference field
- EBooksQRCodePath? string - E books QR code path field
- EBooksQRCodePathofNegative? string - E books QR code pathof negative field
- CartaPorteID? string - Carta porte ID field
- EBooksDispatchDate? string - E books dispatch date field
- EBooksDispatchTime? string - E books dispatch time field
sap.businessone.sales: EWayBillDetails
The EWayBillDetails complex type of the SAP Business One Service Layer
Fields
- billFromName? string - Bill from name field
- shipToStateGSTCode? string - Ship to state GST code field
- transactionType? EWBTransactionTypeEnum - Transaction type field
- vehicleNo? string - Vehicle number field
- eWayBillExpirationDate? string - E way bill expiration date field
- dispatchFromAddress1? string - Dispatch from address1 field
- transporterName? string - Transporter name field
- billFromGSTIN? string - Bill from GSTIN field
- dispatchFromAddress2? string - Dispatch from address2 field
- dispatchFromZipCode? string - Dispatch from zip code field
- transporterID? string - Transporter ID field
- billToName? string - Bill to name field
- supplyType? EWBSupplyTypeEnum - Supply type field
- mainHSNEntry? Signed32 - Main HSN entry field
- shipToAddress2? string - Ship to address2 field
- shipToAddress1? string - Ship to address1 field
- distance? decimal - Distance field
- dispatchFromPlace? string - Dispatch from place field
- subType? Signed32 - Sub type field
- shipToZipCode? string - Ship to zip code field
- transportationMode? Signed32 - Transportation mode field
- transporterDocDate? string - Transporter document date field
- vehicleType? string - Vehicle type field
- transporterEntry? Signed32 - Transporter entry field
- docEntry? Signed32 - Document entry field
- documentType? string - Document type field
- billFromStateGSTCode? string - Bill from state GST code field
- dispatchFromStateGSTCode? string - Dispatch from state GST code field
- transporterDocNo? string - Transporter document number field
- shipToPlace? string - Ship to place field
- billToGSTIN? string - Bill to GSTIN field
- transporterLineNumber? Signed32 - Transporter line number field
- eWayBillNo? string - E way bill number field
- billToStateGSTCode? string - Bill to state GST code field
- eWayBillDate? string - E way bill date field
sap.businessone.sales: ExportProcess
The ExportProcess complex type of the SAP Business One Service Layer
Fields
- ladingBillTypeCode? Signed32 - Lading bill type code field
- quantityOfExportedItems? decimal - Quantity of exported items field
- exportationNatureCode? Signed32 - Exportation nature code field
- ladingBillDate? string - Lading bill date field
- natureOfExport? string - Nature of export field
- ladingBillNumber? string - Lading bill number field
- lineNumber? Signed32 - Line number field
- exportationRegistryNumber? Signed32 - Exportation registry number field
- additionalItemSequentialNumber? Signed32 - Additional item sequential number field
- exportationDeclarationDate? string - Exportation declaration date field
- drawbackSuspensionRegime? string - Drawback suspension regime field
- merchandiseLeftCustomsDate? string - Merchandise left customs date field
- exportationDocumentTypeCode? Signed32 - Exportation document type code field
- exportationRegistryDate? string - Exportation registry date field
- exportationDeclarationNumber? Signed32 - Exportation declaration number field
sap.businessone.sales: GeneratedAsset
The GeneratedAsset complex type of the SAP Business One Service Layer
Fields
- status? GeneratedAssetStatusEnum - Status field
- amount? decimal - Amount field
- serialNumber? string - Serial number field
- remarks? string - Remarks field
- docEntry? Signed32 - Document entry field
- assetCode? string - Asset code field
- lineNumber? Signed32 - Line number field
- visualOrder? Signed32 - Visual order field
- amountSC? decimal - Amount system currency field
sap.businessone.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 - Date of registry DIDSIDA field
- importationDocumentNumber? string - Importation document number field
- customsClearanceDate? string - Customs clearance date field
- additionalItemSequentialNumber? Signed32 - Additional item sequential number field
- drawbackSuspensionRegime? string - Drawback suspension regime field
- typeOfImport? string - Type of import field
- additionalFreightToNavyAuthority? decimal - Additional freight to navy authority field
- drawbackRegimeConcessionAccountNumber? string - Drawback regime concession account number field
- importationDocumentTypeCode? string - Importation document type code field
- additionalNumber? string - Additional number field
- additionalItemDiscountValue? decimal - Additional item discount value field
- lineNumber? Signed32 - Line number field
sap.businessone.sales: inline_response_200
Represents the response payload for the BlanketAgreements_GetRelatedDocuments operation of the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? BlanketAgreementsDocument[] - Value field
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 - Odata metadata field
- value? BlanketAgreementParams[] - Value field
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 - Odata metadata field
- value? DunningTermParams[] - Value field
sap.businessone.sales: InvoicesCollectionResponse
A paged collection of Invoices entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? Document[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.sales: InvoicesService_ApproveAndAdd_body
Represents the request payload for the InvoicesService_ApproveAndAdd operation of the SAP Business One Service Layer
Fields
- document? Document - Document field
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 - Document field
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 - Document field
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 - Document close params field
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 - Document field
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 - Document field
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 - Document field
sap.businessone.sales: LineExpenseTaxJurisdiction
The LineExpenseTaxJurisdiction complex type of the SAP Business One Service Layer
Fields
- JurisdictionCode? string - Jurisdiction code field
- JurisdictionType? Signed32 - Jurisdiction type field
- TaxAmount? decimal - Tax amount field
- TaxAmountSC? decimal - Tax amount system currency field
- TaxAmountFC? decimal - Tax amount foreign currency field
- TaxRate? decimal - Tax rate field
- DocEntry? Signed32 - Document entry field
- LineNumber? Signed32 - Line number field
- RowSequence? Signed32 - Row sequence field
- ExternalCalcTaxRate? decimal - External calc tax rate field
- ExternalCalcTaxAmount? decimal - External calc tax amount field
- ExternalCalcTaxAmountFC? decimal - External calc tax amount foreign currency field
- ExternalCalcTaxAmountSC? decimal - External calc tax amount system currency field
sap.businessone.sales: LineFreightEBooksDetail
The LineFreightEBooksDetail complex type of the SAP Business One Service Layer
Fields
- IncomeClassificationType? Signed32 - Income classification type field
- IncomeClassificationCategory? Signed32 - Income classification category field
- ExpensesClassificationType? Signed32 - Expenses classification type field
- ExpensesClassificationCategory? Signed32 - Expenses classification category field
- NetValueLC? decimal - Net value local currency field
- NetValueFC? decimal - Net value foreign currency field
- NetValueSC? decimal - Net value system currency field
- VatCategory? Signed32 - VAT category field
- WithheldPercentCategory? Signed32 - Withheld percent category field
- WithheldAmountLC? decimal - Withheld amount local currency field
- WithheldAmountFC? decimal - Withheld amount foreign currency field
- WithheldAmountSC? decimal - Withheld amount system currency field
- VatClassificationType? Signed32 - VAT classification type field
- VatClassificationCategory? Signed32 - VAT classification category field
- VATExemptionCause? Signed32 - VAT exemption cause field
sap.businessone.sales: LineTaxJurisdiction
The LineTaxJurisdiction complex type of the SAP Business One Service Layer
Fields
- JurisdictionCode? string - Jurisdiction code field
- JurisdictionType? Signed32 - Jurisdiction type field
- TaxAmount? decimal - Tax amount field
- TaxAmountSC? decimal - Tax amount system currency field
- TaxAmountFC? decimal - Tax amount foreign currency field
- TaxRate? decimal - Tax rate field
- DocEntry? Signed32 - Document entry field
- LineNumber? Signed32 - Line number field
- RowSequence? Signed32 - Row sequence field
- ExternalCalcTaxRate? decimal - External calc tax rate field
- ExternalCalcTaxAmount? decimal - External calc tax amount field
- ExternalCalcTaxAmountFC? decimal - External calc tax amount foreign currency field
- ExternalCalcTaxAmountSC? decimal - External calc tax amount system currency field
- BaseSum? decimal - Base sum field
- TaxInPrice? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- NonDeductiblePercent? decimal - Non deductible percent field
- TaxOnReserveInvoice? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Exempt? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Unencumbered? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
sap.businessone.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 - Odata metadata field
- value? Document[] - Value field
- odataNextLink? string - Odata next link field
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 - Document field
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 - Document field
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 - Document close params field
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 - Document field
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 - Document field
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 - Document field
sap.businessone.sales: POSDailySummary
The POSDailySummary entity of the SAP Business One Service Layer
Fields
- pOSTotalizerCollection? POSTotalizer[] - P OS totalizer collection field
- correctionInvoice? Document[] - Correction invoice field
- orders? Document[] - Orders field
- purchaseRequests? Document[] - Purchase requests field
- inventoryGenExits? Document[] - Inventory gen exits field
- purchaseQuotations? Document[] - Purchase quotations field
- purchaseDeliveryNotes? Document[] - Purchase delivery notes field
- invoices? Document[] - Invoices field
- purchaseDownPayments? Document[] - Purchase down payments field
- absEntry? Signed32 - Abs entry field
- creditNotes? Document[] - Credit notes field
- purchaseInvoices? Document[] - Purchase invoices field
- pISTotal? decimal - P IS total field
- 'returns? Document[] - Returns field
- resetCounterPosition? Signed32 - Reset counter position field
- correctionPurchaseInvoice? Document[] - Correction purchase invoice field
- quotations? Document[] - Quotations field
- purchaseCreditNotes? Document[] - Purchase credit notes field
- goodsReturnRequest? Document[] - Goods return request field
- operationCounter? Signed32 - Operation counter field
- returnRequest? Document[] - Return request field
- inventoryGenEntries? Document[] - Inventory gen entries field
- purchaseReturns? Document[] - Purchase returns field
- equipmentNo? string - Equipment number field
- purchaseOrders? Document[] - Purchase orders field
- downPayments? Document[] - Down payments field
- correctionInvoiceReversal? Document[] - Correction invoice reversal field
- counterPosition? Signed32 - Counter position field
- grossSales? decimal - Gross sales field
- deliveryNotes? Document[] - Delivery notes field
- selfInvoices? Document[] - Self invoices field
- date? string - Date field
- drafts? Document[] - Drafts field
- selfCreditMemos? Document[] - Self credit memos field
- total? decimal - Total field
- correctionPurchaseInvoiceReversal? Document[] - Correction purchase invoice reversal field
- cOFINSTotal? decimal - C OFINS total field
sap.businessone.sales: POSDailySummaryCollectionResponse
A paged collection of POSDailySummary entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? POSDailySummary[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.sales: POSTotalizer
The POSTotalizer complex type of the SAP Business One Service Layer
Fields
- lineNum? Signed32 - Line number field
- description? string - Description field
- number? Signed32 - Number field
- total? decimal - Total field
- code? string - Code field
sap.businessone.sales: QuotationsCollectionResponse
A paged collection of Quotations entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? Document[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.sales: QuotationsService_ApproveAndAdd_body
Represents the request payload for the QuotationsService_ApproveAndAdd operation of the SAP Business One Service Layer
Fields
- document? Document - Document field
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 - Document field
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 - Document close params field
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 - Document field
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 - Document field
sap.businessone.sales: RelatedDocument
The RelatedDocument complex type of the SAP Business One Service Layer
Fields
- absEnry? Signed32 - Abs enry field
- absEntry? Signed32 - Abs entry field
- uUID? string - U UID field
- docTye? RelatedDocumentTypeEnum - Document tye field
- docType? RelatedDocumentTypeEnum - Document type field
sap.businessone.sales: ReturnRequestCollectionResponse
A paged collection of ReturnRequest entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? Document[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.sales: ReturnRequestService_ApproveAndAdd_body
Represents the request payload for the ReturnRequestService_ApproveAndAdd operation of the SAP Business One Service Layer
Fields
- document? Document - Document field
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 - Document field
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 - Document close params field
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 - Document field
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 - Document field
sap.businessone.sales: ReturnsCollectionResponse
A paged collection of Returns entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? Document[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.sales: ReturnsService_ApproveAndAdd_body
Represents the request payload for the ReturnsService_ApproveAndAdd operation of the SAP Business One Service Layer
Fields
- document? Document - Document field
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 - Document field
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 - Document field
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 - Document close params field
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 - Document field
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 - Document field
sap.businessone.sales: SalesPerson
The SalesPerson entity of the SAP Business One Service Layer
Fields
- SalesEmployeeCode? Signed32 - Sales employee code field
- SalesEmployeeName? string - Sales employee name field
- Remarks? string - Remarks field
- CommissionForSalesEmployee? decimal - Commission for sales employee field
- CommissionGroup? Signed32 - Commission group field
- Locked? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- EmployeeID? Signed32 - Employee ID field
- Active? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Telephone? string - Telephone field
- Mobile? string - Mobile field
- Fax? string - Fax field
- Email? string - Email field
- PurchaseQuotations? Document[] - Purchase quotations field
- CommissionGroup2? CommissionGroup - The
CommissionGroupentity of the SAP Business One Service Layer
- CorrectionInvoiceReversal? Document[] - Correction invoice reversal field
- CorrectionInvoice? Document[] - Correction invoice field
- PurchaseDeliveryNotes? Document[] - Purchase delivery notes field
- CorrectionPurchaseInvoice? Document[] - Correction purchase invoice field
- InventoryGenEntries? Document[] - Inventory gen entries field
- Orders? Document[] - Orders field
- InventoryGenExits? Document[] - Inventory gen exits field
- Drafts? Document[] - Drafts field
- ReturnRequest? Document[] - Return request field
- DeliveryNotes? Document[] - Delivery notes field
- PurchaseInvoices? Document[] - Purchase invoices field
- SelfInvoices? Document[] - Self invoices field
- Invoices? Document[] - Invoices field
- CreditNotes? Document[] - Credit notes field
- PurchaseCreditNotes? Document[] - Purchase credit notes field
- DownPayments? Document[] - Down payments field
- PurchaseDownPayments? Document[] - Purchase down payments field
- PurchaseReturns? Document[] - Purchase returns field
- PurchaseOrders? Document[] - Purchase orders field
- SelfCreditMemos? Document[] - Self credit memos field
- Quotations? Document[] - Quotations field
- Returns? Document[] - Returns field
- GoodsReturnRequest? Document[] - Goods return request field
- CorrectionPurchaseInvoiceReversal? Document[] - Correction purchase invoice reversal field
- PurchaseRequests? Document[] - Purchase requests field
sap.businessone.sales: SalesPersonsCollectionResponse
A paged collection of SalesPersons entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? SalesPerson[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.sales: SalesTaxInvoice
The SalesTaxInvoice entity of the SAP Business One Service Layer
Fields
- DocEntry? Signed32 - Document entry field
- DocNum? Signed32 - Document number field
- 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 - Document date field
- CardCode? string - Card code field
- CreationDate? string - Creation date field
- UpdateDate? string - Update date field
- DocDueDate? string - Document due date field
- Series? Signed32 - Series field
- Segment? Signed32 - Segment field
- ContactPersonCode? Signed32 - Contact person code field
- TaxDate? string - Tax date field
- Comments? string - Comments field
- ShipToCode? string - Ship to code field
- Address? string - Address field
- Address2? string - Address2 field
- CurrencySource? BoCurrencySources - OData EnumType 'BoCurrencySources'. Serialised by the Service Layer as the member name
- DocCurrency? string - Document currency field
- CustomerOrVendorRefNo? string - Customer or vendor reference number field
- CustomerOrVendorName? string - Customer or vendor name field
- CancelDate? string - Cancel date field
- DocumentTotal? decimal - Document total field
- TaxTotal? decimal - Tax total field
- PaymentRefNo? string - Payment reference number field
- PaymentRefDate? string - Payment reference date field
- AlterationRevision? Signed32 - Alteration revision field
- SalesTaxInvoiceLines? SalesTaxInvoiceLine[] - Sales tax invoice lines field
- SalesTaxInvoiceOperationCodes? SalesTaxInvoiceOperationCode[] - Sales tax invoice operation codes field
- SalesTaxInvoiceDocumentReferences? SalesTaxInvoiceDocumentReference[] - Sales tax invoice document references field
- SalesTaxInvoiceLinkedDownPayments? SalesTaxInvoiceLinkedDownPayment[] - Sales tax invoice linked down payments field
sap.businessone.sales: SalesTaxInvoiceDocumentReference
The SalesTaxInvoiceDocumentReference complex type of the SAP Business One Service Layer
Fields
- DocEntry? Signed32 - Document entry field
- LineNumber? Signed32 - Line number field
- ReferencedDocEntry? Signed32 - Referenced document entry field
- ReferencedDocNumber? Signed32 - Referenced document number field
- ExternalReferencedDocNumber? string - External referenced document number field
- ReferencedObjectType? ReferencedObjectTypeEnum - OData EnumType 'ReferencedObjectTypeEnum'. Serialised by the Service Layer as the member name
- IssueDate? string - Issue date field
- Remark? string - Remark field
- CardCode? string - Card code field
sap.businessone.sales: SalesTaxInvoiceLine
The SalesTaxInvoiceLine complex type of the SAP Business One Service Layer
Fields
- RefEntry1? Signed32 - Reference entry1 field
- RefEntry2? Signed32 - Reference entry2 field
sap.businessone.sales: SalesTaxInvoiceLinkedDownPayment
The SalesTaxInvoiceLinkedDownPayment complex type of the SAP Business One Service Layer
Fields
- DocEntry? Signed32 - Document entry field
- LineNum? Signed32 - Line number field
- DownPaymentType? Signed32 - Down payment type field
- DownPaymentEntry? Signed32 - Down payment entry field
- DownPaymentNum? Signed32 - Down payment number field
- PaymentType? Signed32 - Payment type field
- PaymentEntry? Signed32 - Payment entry field
- PaymentNum? Signed32 - Payment number field
- PaymentTaxDate? string - Payment tax date field
- TransferDate? string - Transfer date field
- TransferReference? string - Transfer reference field
- AmountToDraw? decimal - Amount to draw field
- AmountToDrawFC? decimal - Amount to draw foreign currency field
- AmountToDrawSC? decimal - Amount to draw system currency field
- Tax? decimal - Tax field
- TaxFC? decimal - Tax foreign currency field
- TaxSC? decimal - Tax system currency field
- GrossAmountToDraw? decimal - Gross amount to draw field
- GrossAmountToDrawFC? decimal - Gross amount to draw foreign currency field
- GrossAmountToDrawSC? decimal - Gross amount to draw system currency field
- DocCurrency? string - Document currency field
sap.businessone.sales: SalesTaxInvoiceOperationCode
The SalesTaxInvoiceOperationCode complex type of the SAP Business One Service Layer
Fields
- OpCode? Signed32 - Op code field
sap.businessone.sales: SalesTaxInvoicesCollectionResponse
A paged collection of SalesTaxInvoices entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? SalesTaxInvoice[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.sales: SerialNumber
The SerialNumber complex type of the SAP Business One Service Layer
Fields
- ManufacturerSerialNumber? string - Manufacturer serial number field
- InternalSerialNumber? string - Internal serial number field
- ExpiryDate? string - Expiry date field
- ManufactureDate? string - Manufacture date field
- ReceptionDate? string - Reception date field
- WarrantyStart? string - Warranty start field
- WarrantyEnd? string - Warranty end field
- Location? string - Location field
- Notes? string - Notes field
- BatchID? string - Batch ID field
- SystemSerialNumber? Signed32 - System serial number field
- BaseLineNumber? Signed32 - Base line number field
- Quantity? decimal - Quantity field
- TrackingNote? Signed32 - Tracking note field
- TrackingNoteLine? Signed32 - Tracking note line field
- ItemCode? string - Item code field
sap.businessone.sales: TaxExtension
The TaxExtension complex type of the SAP Business One Service Layer
Fields
- buildingS? string - Building s field
- taxId3? string - Tax id3 field
- taxId2? string - Tax id2 field
- taxId5? string - Tax id5 field
- taxId4? string - Tax id4 field
- packQuantity? Signed32 - Pack quantity field
- taxId1? string - Tax id1 field
- taxId0? string - Tax id0 field
- vehicle? string - Vehicle field
- portCode? string - Port code field
- taxId7? string - Tax id7 field
- buildingB? string - Building b field
- taxId6? string - Tax id6 field
- taxId9? string - Tax id9 field
- taxId8? string - Tax id8 field
- carrier? string - Carrier field
- shipUnitNo? Signed32 - Ship unit number field
- streetS? string - Street s field
- differentialOfTaxRate? Signed32 - Differential of tax rate field
- zipCodeS? string - Zip code s field
- countryB? string - Country b field
- grossWeight? decimal - Gross weight field
- globalLocationNumberB? string - Global location number b field
- packDescription? string - Pack description field
- mainUsage? Signed32 - Main usage field
- docEntry? Signed32 - Document entry field
- brand? string - Brand field
- stateS? string - State s field
- countryS? string - Country s field
- blockB? string - Block b field
- state? string - State field
- globalLocationNumberS? string - Global location number s field
- importOrExportType? ImportOrExportTypeEnum - Import or export type field
- vehicleState? string - Vehicle state field
- blockS? string - Block s field
- stateB? string - State b field
- cityS? string - City s field
- county? string - County field
- boEValue? decimal - Bo e value field
- nFRef? string - N f reference field
- countyB? string - County b field
- billOfEntryNo? string - Bill of entry number field
- countyS? string - County s field
- taxId14? string - Tax id14 field
- taxId13? string - Tax id13 field
- claimRefund? BoYesNoEnum - Claim refund field
- taxId12? string - Tax id12 field
- netWeight? decimal - Net weight field
- originalBillOfEntryDate? string - Original bill of entry date field
- billOfEntryDate? string - Bill of entry date field
- zipCodeB? string - Zip code b field
- importOrExport? BoYesNoEnum - Import or export field
- originalBillOfEntryNo? string - Original bill of entry number field
- streetB? string - Street b field
- cityB? string - City b field
- isIGSTAccount? BoYesNoEnum - Is IGST account field
- incoterms? string - Incoterms field
sap.businessone.sales: WithholdingTaxData
The WithholdingTaxData complex type of the SAP Business One Service Layer
Fields
- WTCode? string - Withholding tax code field
- WTAmountSys? decimal - Withholding tax amount sys field
- WTAmountFC? decimal - Withholding tax amount foreign currency field
- WTAmount? decimal - Withholding tax amount field
- WithholdingType? string - Withholding type field
- TaxableAmountinSys? decimal - Taxable amountin sys field
- TaxableAmountFC? decimal - Taxable amount foreign currency field
- TaxableAmount? decimal - Taxable amount field
- RoundingType? string - Rounding type field
- Rate? decimal - Rate field
- Criteria? string - Criteria field
- Category? string - Category field
- BaseType? string - Base type field
- AppliedWTAmountSys? decimal - Applied withholding tax amount sys field
- AppliedWTAmountFC? decimal - Applied withholding tax amount foreign currency field
- AppliedWTAmount? decimal - Applied withholding tax amount field
- GLAccount? string - General ledger account field
- LineNum? Signed32 - Line number field
- BaseDocEntry? Signed32 - Base document entry field
- BaseDocLine? Signed32 - Base document line field
- BaseDocType? Signed32 - Base document type field
- BaseDocumentReference? Signed32 - Base document reference field
- Status? BoStatus - OData EnumType 'BoStatus'. Serialised by the Service Layer as the member name
- TargetAbsEntry? Signed32 - Target abs entry field
- TargetDocumentType? Signed32 - Target document type field
sap.businessone.sales: WithholdingTaxDataWTX
The WithholdingTaxDataWTX complex type of the SAP Business One Service Layer
Fields
- WTAmountSys? decimal - Withholding tax amount sys field
- WTAmountFC? decimal - Withholding tax amount foreign currency field
- WTAmount? decimal - Withholding tax amount field
- WithholdingType? string - Withholding type field
- TaxableAmountinSys? decimal - Taxable amountin sys field
- TaxableAmountFC? decimal - Taxable amount foreign currency field
- TaxableAmount? decimal - Taxable amount field
- Rate? decimal - Rate field
- Category? string - Category field
- BaseType? string - Base type field
- AppliedWTAmountSys? decimal - Applied withholding tax amount sys field
- AppliedWTAmountFC? decimal - Applied withholding tax amount foreign currency field
- AppliedWTAmount? decimal - Applied withholding tax amount field
- GLAccount? string - General ledger account field
- LineNum? Signed32 - Line number field
- BaseDocEntry? Signed32 - Base document entry field
- BaseDocLine? Signed32 - Base document line field
- BaseDocType? string - Base document type field
- WTAbsId? string - Withholding tax abs ID field
- ExemptRate? decimal - Exempt rate field
- BaseNetAmountSys? decimal - Base net amount sys field
- BaseNetAmountFC? decimal - Base net amount foreign currency field
- BaseNetAmount? decimal - Base net amount field
- BaseVatmountSys? decimal - Base vatmount sys field
- BaseVatmountFC? decimal - Base vatmount foreign currency field
- BaseVatmount? decimal - Base vatmount field
- AccumBaseAmountSys? decimal - Accum base amount sys field
- AccumBaseAmountFC? decimal - Accum base amount foreign currency field
- AccumBaseAmount? decimal - Accum base amount field
- AccumWTaxAmountSys? decimal - Accum w tax amount sys field
- AccumWTaxAmountFC? decimal - Accum w tax amount foreign currency field
- AccumWTaxAmount? decimal - Accum w tax amount field
sap.businessone.sales: WithholdingTaxLine
The WithholdingTaxLine complex type of the SAP Business One Service Layer
Fields
- WTCode? string - Withholding tax code field
- WTAmountSys? decimal - Withholding tax amount sys field
- WTAmountFC? decimal - Withholding tax amount foreign currency field
- WTAmount? decimal - Withholding tax amount field
- WithholdingType? string - Withholding type field
- TaxableAmountinSys? decimal - Taxable amountin sys field
- TaxableAmountFC? decimal - Taxable amount foreign currency field
- TaxableAmount? decimal - Taxable amount field
- RoundingType? string - Rounding type field
- Rate? decimal - Rate field
- Criteria? string - Criteria field
- Category? string - Category field
- BaseType? string - Base type field
- AppliedWTAmountSys? decimal - Applied withholding tax amount sys field
- AppliedWTAmountFC? decimal - Applied withholding tax amount foreign currency field
- AppliedWTAmount? decimal - Applied withholding tax amount field
- GLAccount? string - General ledger account field
- LineNum? Signed32 - Line number field
- BaseDocEntry? Signed32 - Base document entry field
- BaseDocLine? Signed32 - Base document line field
- BaseDocType? Signed32 - Base document type field
- BaseDocumentReference? Signed32 - Base document reference field
- Status? BoStatus - OData EnumType 'BoStatus'. Serialised by the Service Layer as the member name
- TargetAbsEntry? Signed32 - Target abs entry field
- TargetDocumentType? Signed32 - Target document type field
- CSTCodeIncoming? string - CST code incoming field
- CSTCodeOutgoing? string - CST code outgoing field
- Doc1LineNum? Signed32 - Doc1 line number field
Union types
sap.businessone.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: 6 days ago
Version: 1.0.1
License: Apache-2.0
Compatibility
Platform: any
Ballerina version: 2201.13.0
GraalVM compatible: Yes
Pull count
Total: 0
Current verison: 0
Weekly downloads
Keywords
Name/SAP Business One Sales
Area/ERP & Business Operations
Vendor/SAP
Cost/Paid
Type/Connector
SAP Business One
Sales
ERP
Contributors