sap.businessone.purchasing
Module sap.businessone.purchasing
API
Definitions
ballerinax/sap.businessone.purchasing Ballerina library
Overview
SAP Business One is an enterprise resource planning (ERP) solution designed for small and midsize businesses by SAP SE. Its Service Layer exposes the Business One business objects through an OData web service interface.
The SAP Business One Purchasing (A/P) connector provides APIs for the purchasing (A/P) documents of SAP Business One: purchase requests, quotations, orders, goods receipts, returns, invoices, and landed costs, exposed through the SAP Business One Service Layer (OData).
Key Features
- Create, read, update, close, and cancel purchasing documents
- Process goods receipt POs and A/P invoices
- Manage landed costs and import postings
Setup guide
The connector requires an SAP Business One installation with the Service Layer component enabled (available for
SAP Business One, version for SAP HANA, and SAP Business One on Microsoft SQL Server 9.3 PL10+). The Service Layer
endpoint is https://<host>:50000/b1s/v1 by default. A Business One user with a license and the relevant object
authorizations is needed; sessions are opened against a specific company database (schema).
Quickstart
To use the sap.businessone.purchasing connector in your Ballerina application, modify the .bal file as follows:
Step 1: Import the module
import ballerinax/sap.businessone.purchasing;
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 = ?; purchasing:Client b1Client = check new ( {companyDb, username, password}, serviceUrl = serviceUrl );
Step 3: Invoke the connector operation
purchasing:PurchaseOrders_CollectionResponse response = check b1Client->purchaseOrdersList();
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.purchasing: 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
listCorrectionPurchaseInvoice
function listCorrectionPurchaseInvoice(ListCorrectionPurchaseInvoiceHeaders headers, *ListCorrectionPurchaseInvoiceQueries queries) returns CorrectionPurchaseInvoiceCollectionResponse|errorQuery the CorrectionPurchaseInvoice collection
Parameters
- headers ListCorrectionPurchaseInvoiceHeaders (default {}) - Headers to be sent with the request
- queries *ListCorrectionPurchaseInvoiceQueries - Queries to be sent with the request
Return Type
- CorrectionPurchaseInvoiceCollectionResponse|error - A page of entities
createCorrectionPurchaseInvoice
function createCorrectionPurchaseInvoice(Document payload, map<string|string[]> headers) returns Document|errorCreate a new Document
Parameters
- payload Document - Request payload
getCorrectionPurchaseInvoice
function getCorrectionPurchaseInvoice(Signed32 docEntry, map<string|string[]> headers, *GetCorrectionPurchaseInvoiceQueries queries) returns Document|errorGet a single Document by key
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
- queries *GetCorrectionPurchaseInvoiceQueries - Queries to be sent with the request
deleteCorrectionPurchaseInvoice
function deleteCorrectionPurchaseInvoice(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
updateCorrectionPurchaseInvoice
function updateCorrectionPurchaseInvoice(Signed32 docEntry, Document payload, map<string|string[]> headers) returns error?Partially update a Document (PATCH/MERGE semantics)
Return Type
- error? - Updated. No content returned
correctionPurchaseInvoiceCancel
function correctionPurchaseInvoiceCancel(Signed32 docEntry, map<string|string[]> headers) returns error?Bound action 'Cancel' on CorrectionPurchaseInvoice (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Success. No content returned
correctionPurchaseInvoiceClose
function correctionPurchaseInvoiceClose(Signed32 docEntry, map<string|string[]> headers) returns error?Bound action 'Close' on CorrectionPurchaseInvoice (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Success. No content returned
correctionPurchaseInvoiceCreateCancellationDocument
function correctionPurchaseInvoiceCreateCancellationDocument(Signed32 docEntry, map<string|string[]> headers) returns Document|errorBound action 'CreateCancellationDocument' on CorrectionPurchaseInvoice (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
correctionPurchaseInvoiceReopen
function correctionPurchaseInvoiceReopen(Signed32 docEntry, map<string|string[]> headers) returns error?Bound action 'Reopen' on CorrectionPurchaseInvoice (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Success. No content returned
listCorrectionPurchaseInvoiceReversal
function listCorrectionPurchaseInvoiceReversal(ListCorrectionPurchaseInvoiceReversalHeaders headers, *ListCorrectionPurchaseInvoiceReversalQueries queries) returns CorrectionPurchaseInvoiceReversalCollectionResponse|errorQuery the CorrectionPurchaseInvoiceReversal collection
Parameters
- headers ListCorrectionPurchaseInvoiceReversalHeaders (default {}) - Headers to be sent with the request
- queries *ListCorrectionPurchaseInvoiceReversalQueries - Queries to be sent with the request
Return Type
- CorrectionPurchaseInvoiceReversalCollectionResponse|error - A page of entities
createCorrectionPurchaseInvoiceReversal
function createCorrectionPurchaseInvoiceReversal(Document payload, map<string|string[]> headers) returns Document|errorCreate a new Document
Parameters
- payload Document - Request payload
getCorrectionPurchaseInvoiceReversal
function getCorrectionPurchaseInvoiceReversal(Signed32 docEntry, map<string|string[]> headers, *GetCorrectionPurchaseInvoiceReversalQueries queries) returns Document|errorGet a single Document by key
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
- queries *GetCorrectionPurchaseInvoiceReversalQueries - Queries to be sent with the request
deleteCorrectionPurchaseInvoiceReversal
function deleteCorrectionPurchaseInvoiceReversal(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
updateCorrectionPurchaseInvoiceReversal
function updateCorrectionPurchaseInvoiceReversal(Signed32 docEntry, Document payload, map<string|string[]> headers) returns error?Partially update a Document (PATCH/MERGE semantics)
Return Type
- error? - Updated. No content returned
correctionPurchaseInvoiceReversalCancel
function correctionPurchaseInvoiceReversalCancel(Signed32 docEntry, map<string|string[]> headers) returns error?Bound action 'Cancel' on CorrectionPurchaseInvoiceReversal (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Success. No content returned
correctionPurchaseInvoiceReversalClose
function correctionPurchaseInvoiceReversalClose(Signed32 docEntry, map<string|string[]> headers) returns error?Bound action 'Close' on CorrectionPurchaseInvoiceReversal (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Success. No content returned
correctionPurchaseInvoiceReversalCreateCancellationDocument
function correctionPurchaseInvoiceReversalCreateCancellationDocument(Signed32 docEntry, map<string|string[]> headers) returns Document|errorBound action 'CreateCancellationDocument' on CorrectionPurchaseInvoiceReversal (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
correctionPurchaseInvoiceReversalReopen
function correctionPurchaseInvoiceReversalReopen(Signed32 docEntry, map<string|string[]> headers) returns error?Bound action 'Reopen' on CorrectionPurchaseInvoiceReversal (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Success. No content returned
correctionPurchaseInvoiceReversalServiceApproveAndAdd
function correctionPurchaseInvoiceReversalServiceApproveAndAdd(CorrectionPurchaseInvoiceReversalService_ApproveAndAdd_body payload, map<string|string[]> headers) returns error?Approve and add
Parameters
- payload CorrectionPurchaseInvoiceReversalService_ApproveAndAdd_body - Request payload
Return Type
- error? - Success. No content returned
correctionPurchaseInvoiceReversalServiceApproveAndUpdate
function correctionPurchaseInvoiceReversalServiceApproveAndUpdate(CorrectionPurchaseInvoiceReversalService_ApproveAndUpdate_body payload, map<string|string[]> headers) returns error?Approve and update
Parameters
- payload CorrectionPurchaseInvoiceReversalService_ApproveAndUpdate_body - Request payload
Return Type
- error? - Success. No content returned
correctionPurchaseInvoiceReversalServiceCloseByDate
function correctionPurchaseInvoiceReversalServiceCloseByDate(CorrectionPurchaseInvoiceReversalService_CloseByDate_body payload, map<string|string[]> headers) returns error?Close by date
Parameters
- payload CorrectionPurchaseInvoiceReversalService_CloseByDate_body - Request payload
Return Type
- error? - Success. No content returned
correctionPurchaseInvoiceReversalServiceExportEWayBill
function correctionPurchaseInvoiceReversalServiceExportEWayBill(CorrectionPurchaseInvoiceReversalService_ExportEWayBill_body payload, map<string|string[]> headers) returns error?Export E way bill
Parameters
- payload CorrectionPurchaseInvoiceReversalService_ExportEWayBill_body - Request payload
Return Type
- error? - Success. No content returned
correctionPurchaseInvoiceReversalServiceGetApprovalTemplates
function correctionPurchaseInvoiceReversalServiceGetApprovalTemplates(CorrectionPurchaseInvoiceReversalService_GetApprovalTemplates_body payload, map<string|string[]> headers) returns Document|errorGet approval templates
Parameters
- payload CorrectionPurchaseInvoiceReversalService_GetApprovalTemplates_body - Request payload
correctionPurchaseInvoiceReversalServiceHandleApprovalRequest
function correctionPurchaseInvoiceReversalServiceHandleApprovalRequest(map<string|string[]> headers) returns error?Handle approval request
Return Type
- error? - Success. No content returned
correctionPurchaseInvoiceReversalServiceInitData
function correctionPurchaseInvoiceReversalServiceInitData(map<string|string[]> headers) returns Document|errorInit data
correctionPurchaseInvoiceServiceApproveAndAdd
function correctionPurchaseInvoiceServiceApproveAndAdd(CorrectionPurchaseInvoiceService_ApproveAndAdd_body payload, map<string|string[]> headers) returns error?Approve and add
Parameters
- payload CorrectionPurchaseInvoiceService_ApproveAndAdd_body - Request payload
Return Type
- error? - Success. No content returned
correctionPurchaseInvoiceServiceApproveAndUpdate
function correctionPurchaseInvoiceServiceApproveAndUpdate(CorrectionPurchaseInvoiceService_ApproveAndUpdate_body payload, map<string|string[]> headers) returns error?Approve and update
Parameters
- payload CorrectionPurchaseInvoiceService_ApproveAndUpdate_body - Request payload
Return Type
- error? - Success. No content returned
correctionPurchaseInvoiceServiceCloseByDate
function correctionPurchaseInvoiceServiceCloseByDate(CorrectionPurchaseInvoiceService_CloseByDate_body payload, map<string|string[]> headers) returns error?Close by date
Parameters
- payload CorrectionPurchaseInvoiceService_CloseByDate_body - Request payload
Return Type
- error? - Success. No content returned
correctionPurchaseInvoiceServiceExportEWayBill
function correctionPurchaseInvoiceServiceExportEWayBill(CorrectionPurchaseInvoiceService_ExportEWayBill_body payload, map<string|string[]> headers) returns error?Export E way bill
Parameters
- payload CorrectionPurchaseInvoiceService_ExportEWayBill_body - Request payload
Return Type
- error? - Success. No content returned
correctionPurchaseInvoiceServiceGetApprovalTemplates
function correctionPurchaseInvoiceServiceGetApprovalTemplates(CorrectionPurchaseInvoiceService_GetApprovalTemplates_body payload, map<string|string[]> headers) returns Document|errorGet approval templates
Parameters
- payload CorrectionPurchaseInvoiceService_GetApprovalTemplates_body - Request payload
correctionPurchaseInvoiceServiceHandleApprovalRequest
function correctionPurchaseInvoiceServiceHandleApprovalRequest(map<string|string[]> headers) returns error?Handle approval request
Return Type
- error? - Success. No content returned
correctionPurchaseInvoiceServiceInitData
function correctionPurchaseInvoiceServiceInitData(map<string|string[]> headers) returns Document|errorInit data
listGoodsReturnRequest
function listGoodsReturnRequest(ListGoodsReturnRequestHeaders headers, *ListGoodsReturnRequestQueries queries) returns GoodsReturnRequestCollectionResponse|errorQuery the GoodsReturnRequest collection
Parameters
- headers ListGoodsReturnRequestHeaders (default {}) - Headers to be sent with the request
- queries *ListGoodsReturnRequestQueries - Queries to be sent with the request
Return Type
- GoodsReturnRequestCollectionResponse|error - A page of entities
createGoodsReturnRequest
function createGoodsReturnRequest(Document payload, map<string|string[]> headers) returns Document|errorCreate a new Document
Parameters
- payload Document - Request payload
getGoodsReturnRequest
function getGoodsReturnRequest(Signed32 docEntry, map<string|string[]> headers, *GetGoodsReturnRequestQueries queries) returns Document|errorGet a single Document by key
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
- queries *GetGoodsReturnRequestQueries - Queries to be sent with the request
deleteGoodsReturnRequest
Delete a Document
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateGoodsReturnRequest
function updateGoodsReturnRequest(Signed32 docEntry, Document payload, map<string|string[]> headers) returns error?Partially update a Document (PATCH/MERGE semantics)
Return Type
- error? - Updated. No content returned
goodsReturnRequestCancel
Bound action 'Cancel' on GoodsReturnRequest (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Success. No content returned
goodsReturnRequestClose
Bound action 'Close' on GoodsReturnRequest (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Success. No content returned
goodsReturnRequestCreateCancellationDocument
function goodsReturnRequestCreateCancellationDocument(Signed32 docEntry, map<string|string[]> headers) returns Document|errorBound action 'CreateCancellationDocument' on GoodsReturnRequest (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
goodsReturnRequestReopen
Bound action 'Reopen' on GoodsReturnRequest (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Success. No content returned
goodsReturnRequestServiceApproveAndAdd
function goodsReturnRequestServiceApproveAndAdd(GoodsReturnRequestService_ApproveAndAdd_body payload, map<string|string[]> headers) returns error?Approve and add
Parameters
- payload GoodsReturnRequestService_ApproveAndAdd_body - Request payload
Return Type
- error? - Success. No content returned
goodsReturnRequestServiceApproveAndUpdate
function goodsReturnRequestServiceApproveAndUpdate(GoodsReturnRequestService_ApproveAndUpdate_body payload, map<string|string[]> headers) returns error?Approve and update
Parameters
- payload GoodsReturnRequestService_ApproveAndUpdate_body - Request payload
Return Type
- error? - Success. No content returned
goodsReturnRequestServiceCloseByDate
function goodsReturnRequestServiceCloseByDate(GoodsReturnRequestService_CloseByDate_body payload, map<string|string[]> headers) returns error?Close by date
Parameters
- payload GoodsReturnRequestService_CloseByDate_body - Request payload
Return Type
- error? - Success. No content returned
goodsReturnRequestServiceExportEWayBill
function goodsReturnRequestServiceExportEWayBill(GoodsReturnRequestService_ExportEWayBill_body payload, map<string|string[]> headers) returns error?Export E way bill
Parameters
- payload GoodsReturnRequestService_ExportEWayBill_body - Request payload
Return Type
- error? - Success. No content returned
goodsReturnRequestServiceGetApprovalTemplates
function goodsReturnRequestServiceGetApprovalTemplates(GoodsReturnRequestService_GetApprovalTemplates_body payload, map<string|string[]> headers) returns Document|errorGet approval templates
Parameters
- payload GoodsReturnRequestService_GetApprovalTemplates_body - Request payload
goodsReturnRequestServiceHandleApprovalRequest
function goodsReturnRequestServiceHandleApprovalRequest(map<string|string[]> headers) returns error?Handle approval request
Return Type
- error? - Success. No content returned
goodsReturnRequestServiceInitData
Init data
listLandedCosts
function listLandedCosts(ListLandedCostsHeaders headers, *ListLandedCostsQueries queries) returns LandedCostsCollectionResponse|errorQuery the LandedCosts collection
Parameters
- headers ListLandedCostsHeaders (default {}) - Headers to be sent with the request
- queries *ListLandedCostsQueries - Queries to be sent with the request
Return Type
- LandedCostsCollectionResponse|error - A page of entities
createLandedCosts
function createLandedCosts(LandedCost payload, map<string|string[]> headers) returns LandedCost|errorCreate a new LandedCost
Parameters
- payload LandedCost - Request payload
Return Type
- LandedCost|error - The created entity
getLandedCosts
function getLandedCosts(Signed32 docEntry, map<string|string[]> headers, *GetLandedCostsQueries queries) returns LandedCost|errorGet a single LandedCost by key
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
- queries *GetLandedCostsQueries - Queries to be sent with the request
Return Type
- LandedCost|error - The requested entity
deleteLandedCosts
Delete a LandedCost
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateLandedCosts
function updateLandedCosts(Signed32 docEntry, LandedCost payload, map<string|string[]> headers) returns error?Partially update a LandedCost (PATCH/MERGE semantics)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
- payload LandedCost - Request payload
Return Type
- error? - Updated. No content returned
landedCostsCancelLandedCost
function landedCostsCancelLandedCost(Signed32 docEntry, map<string|string[]> headers) returns error?Bound action 'CancelLandedCost' on LandedCosts (binding type LandedCost)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Success. No content returned
landedCostsCloseLandedCost
Bound action 'CloseLandedCost' on LandedCosts (binding type LandedCost)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Success. No content returned
listLandedCostsCodes
function listLandedCostsCodes(ListLandedCostsCodesHeaders headers, *ListLandedCostsCodesQueries queries) returns LandedCostsCodesCollectionResponse|errorQuery the LandedCostsCodes collection
Parameters
- headers ListLandedCostsCodesHeaders (default {}) - Headers to be sent with the request
- queries *ListLandedCostsCodesQueries - Queries to be sent with the request
Return Type
- LandedCostsCodesCollectionResponse|error - A page of entities
createLandedCostsCodes
function createLandedCostsCodes(LandedCostsCode payload, map<string|string[]> headers) returns LandedCostsCode|errorCreate a new LandedCostsCode
Parameters
- payload LandedCostsCode - Request payload
Return Type
- LandedCostsCode|error - The created entity
getLandedCostsCodes
function getLandedCostsCodes(string code, map<string|string[]> headers, *GetLandedCostsCodesQueries queries) returns LandedCostsCode|errorGet a single LandedCostsCode by key
Parameters
- code string - Key property 'Code' (Edm.String)
- queries *GetLandedCostsCodesQueries - Queries to be sent with the request
Return Type
- LandedCostsCode|error - The requested entity
deleteLandedCostsCodes
Delete a LandedCostsCode
Parameters
- code string - Key property 'Code' (Edm.String)
Return Type
- error? - Deleted. No content returned
updateLandedCostsCodes
function updateLandedCostsCodes(string code, LandedCostsCode payload, map<string|string[]> headers) returns error?Partially update a LandedCostsCode (PATCH/MERGE semantics)
Return Type
- error? - Updated. No content returned
landedCostsServiceGetLandedCostList
function landedCostsServiceGetLandedCostList(map<string|string[]> headers) returns inline_response_200|errorGet landed cost list
Return Type
- inline_response_200|error - Function result
listPurchaseCreditNotes
function listPurchaseCreditNotes(ListPurchaseCreditNotesHeaders headers, *ListPurchaseCreditNotesQueries queries) returns PurchaseCreditNotesCollectionResponse|errorQuery the PurchaseCreditNotes collection
Parameters
- headers ListPurchaseCreditNotesHeaders (default {}) - Headers to be sent with the request
- queries *ListPurchaseCreditNotesQueries - Queries to be sent with the request
Return Type
- PurchaseCreditNotesCollectionResponse|error - A page of entities
createPurchaseCreditNotes
function createPurchaseCreditNotes(Document payload, map<string|string[]> headers) returns Document|errorCreate a new Document
Parameters
- payload Document - Request payload
getPurchaseCreditNotes
function getPurchaseCreditNotes(Signed32 docEntry, map<string|string[]> headers, *GetPurchaseCreditNotesQueries queries) returns Document|errorGet a single Document by key
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
- queries *GetPurchaseCreditNotesQueries - Queries to be sent with the request
deletePurchaseCreditNotes
Delete a Document
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updatePurchaseCreditNotes
function updatePurchaseCreditNotes(Signed32 docEntry, Document payload, map<string|string[]> headers) returns error?Partially update a Document (PATCH/MERGE semantics)
Return Type
- error? - Updated. No content returned
purchaseCreditNotesCancel
Bound action 'Cancel' on PurchaseCreditNotes (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Success. No content returned
purchaseCreditNotesClose
Bound action 'Close' on PurchaseCreditNotes (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Success. No content returned
purchaseCreditNotesCreateCancellationDocument
function purchaseCreditNotesCreateCancellationDocument(Signed32 docEntry, map<string|string[]> headers) returns Document|errorBound action 'CreateCancellationDocument' on PurchaseCreditNotes (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
purchaseCreditNotesReopen
Bound action 'Reopen' on PurchaseCreditNotes (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Success. No content returned
purchaseCreditNotesServiceApproveAndAdd
function purchaseCreditNotesServiceApproveAndAdd(PurchaseCreditNotesService_ApproveAndAdd_body payload, map<string|string[]> headers) returns error?Approve and add
Parameters
- payload PurchaseCreditNotesService_ApproveAndAdd_body - Request payload
Return Type
- error? - Success. No content returned
purchaseCreditNotesServiceApproveAndUpdate
function purchaseCreditNotesServiceApproveAndUpdate(PurchaseCreditNotesService_ApproveAndUpdate_body payload, map<string|string[]> headers) returns error?Approve and update
Parameters
- payload PurchaseCreditNotesService_ApproveAndUpdate_body - Request payload
Return Type
- error? - Success. No content returned
purchaseCreditNotesServiceCancel2
function purchaseCreditNotesServiceCancel2(PurchaseCreditNotesService_Cancel2_body payload, map<string|string[]> headers) returns error?Cancel2
Parameters
- payload PurchaseCreditNotesService_Cancel2_body - Request payload
Return Type
- error? - Success. No content returned
purchaseCreditNotesServiceCloseByDate
function purchaseCreditNotesServiceCloseByDate(PurchaseCreditNotesService_CloseByDate_body payload, map<string|string[]> headers) returns error?Close by date
Parameters
- payload PurchaseCreditNotesService_CloseByDate_body - Request payload
Return Type
- error? - Success. No content returned
purchaseCreditNotesServiceExportEWayBill
function purchaseCreditNotesServiceExportEWayBill(PurchaseCreditNotesService_ExportEWayBill_body payload, map<string|string[]> headers) returns error?Export E way bill
Parameters
- payload PurchaseCreditNotesService_ExportEWayBill_body - Request payload
Return Type
- error? - Success. No content returned
purchaseCreditNotesServiceGetApprovalTemplates
function purchaseCreditNotesServiceGetApprovalTemplates(PurchaseCreditNotesService_GetApprovalTemplates_body payload, map<string|string[]> headers) returns Document|errorGet approval templates
Parameters
- payload PurchaseCreditNotesService_GetApprovalTemplates_body - Request payload
purchaseCreditNotesServiceHandleApprovalRequest
function purchaseCreditNotesServiceHandleApprovalRequest(map<string|string[]> headers) returns error?Handle approval request
Return Type
- error? - Success. No content returned
purchaseCreditNotesServiceInitData
Init data
listPurchaseDeliveryNotes
function listPurchaseDeliveryNotes(ListPurchaseDeliveryNotesHeaders headers, *ListPurchaseDeliveryNotesQueries queries) returns PurchaseDeliveryNotesCollectionResponse|errorQuery the PurchaseDeliveryNotes collection
Parameters
- headers ListPurchaseDeliveryNotesHeaders (default {}) - Headers to be sent with the request
- queries *ListPurchaseDeliveryNotesQueries - Queries to be sent with the request
Return Type
- PurchaseDeliveryNotesCollectionResponse|error - A page of entities
createPurchaseDeliveryNotes
function createPurchaseDeliveryNotes(Document payload, map<string|string[]> headers) returns Document|errorCreate a new Document
Parameters
- payload Document - Request payload
getPurchaseDeliveryNotes
function getPurchaseDeliveryNotes(Signed32 docEntry, map<string|string[]> headers, *GetPurchaseDeliveryNotesQueries queries) returns Document|errorGet a single Document by key
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
- queries *GetPurchaseDeliveryNotesQueries - Queries to be sent with the request
deletePurchaseDeliveryNotes
function deletePurchaseDeliveryNotes(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
updatePurchaseDeliveryNotes
function updatePurchaseDeliveryNotes(Signed32 docEntry, Document payload, map<string|string[]> headers) returns error?Partially update a Document (PATCH/MERGE semantics)
Return Type
- error? - Updated. No content returned
purchaseDeliveryNotesCancel
function purchaseDeliveryNotesCancel(Signed32 docEntry, map<string|string[]> headers) returns error?Bound action 'Cancel' on PurchaseDeliveryNotes (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Success. No content returned
purchaseDeliveryNotesClose
Bound action 'Close' on PurchaseDeliveryNotes (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Success. No content returned
purchaseDeliveryNotesCreateCancellationDocument
function purchaseDeliveryNotesCreateCancellationDocument(Signed32 docEntry, map<string|string[]> headers) returns Document|errorBound action 'CreateCancellationDocument' on PurchaseDeliveryNotes (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
purchaseDeliveryNotesReopen
function purchaseDeliveryNotesReopen(Signed32 docEntry, map<string|string[]> headers) returns error?Bound action 'Reopen' on PurchaseDeliveryNotes (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Success. No content returned
purchaseDeliveryNotesServiceApproveAndAdd
function purchaseDeliveryNotesServiceApproveAndAdd(PurchaseDeliveryNotesService_ApproveAndAdd_body payload, map<string|string[]> headers) returns error?Approve and add
Parameters
- payload PurchaseDeliveryNotesService_ApproveAndAdd_body - Request payload
Return Type
- error? - Success. No content returned
purchaseDeliveryNotesServiceApproveAndUpdate
function purchaseDeliveryNotesServiceApproveAndUpdate(PurchaseDeliveryNotesService_ApproveAndUpdate_body payload, map<string|string[]> headers) returns error?Approve and update
Parameters
- payload PurchaseDeliveryNotesService_ApproveAndUpdate_body - Request payload
Return Type
- error? - Success. No content returned
purchaseDeliveryNotesServiceCancel2
function purchaseDeliveryNotesServiceCancel2(PurchaseDeliveryNotesService_Cancel2_body payload, map<string|string[]> headers) returns error?Cancel2
Parameters
- payload PurchaseDeliveryNotesService_Cancel2_body - Request payload
Return Type
- error? - Success. No content returned
purchaseDeliveryNotesServiceCloseByDate
function purchaseDeliveryNotesServiceCloseByDate(PurchaseDeliveryNotesService_CloseByDate_body payload, map<string|string[]> headers) returns error?Close by date
Parameters
- payload PurchaseDeliveryNotesService_CloseByDate_body - Request payload
Return Type
- error? - Success. No content returned
purchaseDeliveryNotesServiceExportEWayBill
function purchaseDeliveryNotesServiceExportEWayBill(PurchaseDeliveryNotesService_ExportEWayBill_body payload, map<string|string[]> headers) returns error?Export E way bill
Parameters
- payload PurchaseDeliveryNotesService_ExportEWayBill_body - Request payload
Return Type
- error? - Success. No content returned
purchaseDeliveryNotesServiceGetApprovalTemplates
function purchaseDeliveryNotesServiceGetApprovalTemplates(PurchaseDeliveryNotesService_GetApprovalTemplates_body payload, map<string|string[]> headers) returns Document|errorGet approval templates
Parameters
- payload PurchaseDeliveryNotesService_GetApprovalTemplates_body - Request payload
purchaseDeliveryNotesServiceHandleApprovalRequest
function purchaseDeliveryNotesServiceHandleApprovalRequest(map<string|string[]> headers) returns error?Handle approval request
Return Type
- error? - Success. No content returned
purchaseDeliveryNotesServiceInitData
Init data
listPurchaseDownPayments
function listPurchaseDownPayments(ListPurchaseDownPaymentsHeaders headers, *ListPurchaseDownPaymentsQueries queries) returns PurchaseDownPaymentsCollectionResponse|errorQuery the PurchaseDownPayments collection
Parameters
- headers ListPurchaseDownPaymentsHeaders (default {}) - Headers to be sent with the request
- queries *ListPurchaseDownPaymentsQueries - Queries to be sent with the request
Return Type
- PurchaseDownPaymentsCollectionResponse|error - A page of entities
createPurchaseDownPayments
function createPurchaseDownPayments(Document payload, map<string|string[]> headers) returns Document|errorCreate a new Document
Parameters
- payload Document - Request payload
getPurchaseDownPayments
function getPurchaseDownPayments(Signed32 docEntry, map<string|string[]> headers, *GetPurchaseDownPaymentsQueries queries) returns Document|errorGet a single Document by key
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
- queries *GetPurchaseDownPaymentsQueries - Queries to be sent with the request
deletePurchaseDownPayments
Delete a Document
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updatePurchaseDownPayments
function updatePurchaseDownPayments(Signed32 docEntry, Document payload, map<string|string[]> headers) returns error?Partially update a Document (PATCH/MERGE semantics)
Return Type
- error? - Updated. No content returned
purchaseDownPaymentsCancel
Bound action 'Cancel' on PurchaseDownPayments (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Success. No content returned
purchaseDownPaymentsClose
Bound action 'Close' on PurchaseDownPayments (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Success. No content returned
purchaseDownPaymentsCreateCancellationDocument
function purchaseDownPaymentsCreateCancellationDocument(Signed32 docEntry, map<string|string[]> headers) returns Document|errorBound action 'CreateCancellationDocument' on PurchaseDownPayments (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
purchaseDownPaymentsReopen
Bound action 'Reopen' on PurchaseDownPayments (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Success. No content returned
purchaseDownPaymentsServiceApproveAndAdd
function purchaseDownPaymentsServiceApproveAndAdd(PurchaseDownPaymentsService_ApproveAndAdd_body payload, map<string|string[]> headers) returns error?Approve and add
Parameters
- payload PurchaseDownPaymentsService_ApproveAndAdd_body - Request payload
Return Type
- error? - Success. No content returned
purchaseDownPaymentsServiceApproveAndUpdate
function purchaseDownPaymentsServiceApproveAndUpdate(PurchaseDownPaymentsService_ApproveAndUpdate_body payload, map<string|string[]> headers) returns error?Approve and update
Parameters
- payload PurchaseDownPaymentsService_ApproveAndUpdate_body - Request payload
Return Type
- error? - Success. No content returned
purchaseDownPaymentsServiceCloseByDate
function purchaseDownPaymentsServiceCloseByDate(PurchaseDownPaymentsService_CloseByDate_body payload, map<string|string[]> headers) returns error?Close by date
Parameters
- payload PurchaseDownPaymentsService_CloseByDate_body - Request payload
Return Type
- error? - Success. No content returned
purchaseDownPaymentsServiceExportEWayBill
function purchaseDownPaymentsServiceExportEWayBill(PurchaseDownPaymentsService_ExportEWayBill_body payload, map<string|string[]> headers) returns error?Export E way bill
Parameters
- payload PurchaseDownPaymentsService_ExportEWayBill_body - Request payload
Return Type
- error? - Success. No content returned
purchaseDownPaymentsServiceGetApprovalTemplates
function purchaseDownPaymentsServiceGetApprovalTemplates(PurchaseDownPaymentsService_GetApprovalTemplates_body payload, map<string|string[]> headers) returns Document|errorGet approval templates
Parameters
- payload PurchaseDownPaymentsService_GetApprovalTemplates_body - Request payload
purchaseDownPaymentsServiceHandleApprovalRequest
function purchaseDownPaymentsServiceHandleApprovalRequest(map<string|string[]> headers) returns error?Handle approval request
Return Type
- error? - Success. No content returned
purchaseDownPaymentsServiceInitData
Init data
listPurchaseInvoices
function listPurchaseInvoices(ListPurchaseInvoicesHeaders headers, *ListPurchaseInvoicesQueries queries) returns PurchaseInvoicesCollectionResponse|errorQuery the PurchaseInvoices collection
Parameters
- headers ListPurchaseInvoicesHeaders (default {}) - Headers to be sent with the request
- queries *ListPurchaseInvoicesQueries - Queries to be sent with the request
Return Type
- PurchaseInvoicesCollectionResponse|error - A page of entities
createPurchaseInvoices
function createPurchaseInvoices(Document payload, map<string|string[]> headers) returns Document|errorCreate a new Document
Parameters
- payload Document - Request payload
getPurchaseInvoices
function getPurchaseInvoices(Signed32 docEntry, map<string|string[]> headers, *GetPurchaseInvoicesQueries queries) returns Document|errorGet a single Document by key
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
- queries *GetPurchaseInvoicesQueries - Queries to be sent with the request
deletePurchaseInvoices
Delete a Document
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updatePurchaseInvoices
function updatePurchaseInvoices(Signed32 docEntry, Document payload, map<string|string[]> headers) returns error?Partially update a Document (PATCH/MERGE semantics)
Return Type
- error? - Updated. No content returned
purchaseInvoicesCancel
Bound action 'Cancel' on PurchaseInvoices (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Success. No content returned
purchaseInvoicesClose
Bound action 'Close' on PurchaseInvoices (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Success. No content returned
purchaseInvoicesCreateCancellationDocument
function purchaseInvoicesCreateCancellationDocument(Signed32 docEntry, map<string|string[]> headers) returns Document|errorBound action 'CreateCancellationDocument' on PurchaseInvoices (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
purchaseInvoicesReopen
Bound action 'Reopen' on PurchaseInvoices (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Success. No content returned
purchaseInvoicesServiceApproveAndAdd
function purchaseInvoicesServiceApproveAndAdd(PurchaseInvoicesService_ApproveAndAdd_body payload, map<string|string[]> headers) returns error?Approve and add
Parameters
- payload PurchaseInvoicesService_ApproveAndAdd_body - Request payload
Return Type
- error? - Success. No content returned
purchaseInvoicesServiceApproveAndUpdate
function purchaseInvoicesServiceApproveAndUpdate(PurchaseInvoicesService_ApproveAndUpdate_body payload, map<string|string[]> headers) returns error?Approve and update
Parameters
- payload PurchaseInvoicesService_ApproveAndUpdate_body - Request payload
Return Type
- error? - Success. No content returned
purchaseInvoicesServiceCancel2
function purchaseInvoicesServiceCancel2(PurchaseInvoicesService_Cancel2_body payload, map<string|string[]> headers) returns error?Cancel2
Parameters
- payload PurchaseInvoicesService_Cancel2_body - Request payload
Return Type
- error? - Success. No content returned
purchaseInvoicesServiceCloseByDate
function purchaseInvoicesServiceCloseByDate(PurchaseInvoicesService_CloseByDate_body payload, map<string|string[]> headers) returns error?Close by date
Parameters
- payload PurchaseInvoicesService_CloseByDate_body - Request payload
Return Type
- error? - Success. No content returned
purchaseInvoicesServiceExportEWayBill
function purchaseInvoicesServiceExportEWayBill(PurchaseInvoicesService_ExportEWayBill_body payload, map<string|string[]> headers) returns error?Export E way bill
Parameters
- payload PurchaseInvoicesService_ExportEWayBill_body - Request payload
Return Type
- error? - Success. No content returned
purchaseInvoicesServiceGetApprovalTemplates
function purchaseInvoicesServiceGetApprovalTemplates(PurchaseInvoicesService_GetApprovalTemplates_body payload, map<string|string[]> headers) returns Document|errorGet approval templates
Parameters
- payload PurchaseInvoicesService_GetApprovalTemplates_body - Request payload
purchaseInvoicesServiceHandleApprovalRequest
Handle approval request
Return Type
- error? - Success. No content returned
purchaseInvoicesServiceInitData
Init data
listPurchaseOrders
function listPurchaseOrders(ListPurchaseOrdersHeaders headers, *ListPurchaseOrdersQueries queries) returns PurchaseOrdersCollectionResponse|errorQuery the PurchaseOrders collection
Parameters
- headers ListPurchaseOrdersHeaders (default {}) - Headers to be sent with the request
- queries *ListPurchaseOrdersQueries - Queries to be sent with the request
Return Type
- PurchaseOrdersCollectionResponse|error - A page of entities
createPurchaseOrders
function createPurchaseOrders(Document payload, map<string|string[]> headers) returns Document|errorCreate a new Document
Parameters
- payload Document - Request payload
getPurchaseOrders
function getPurchaseOrders(Signed32 docEntry, map<string|string[]> headers, *GetPurchaseOrdersQueries queries) returns Document|errorGet a single Document by key
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
- queries *GetPurchaseOrdersQueries - Queries to be sent with the request
deletePurchaseOrders
Delete a Document
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updatePurchaseOrders
function updatePurchaseOrders(Signed32 docEntry, Document payload, map<string|string[]> headers) returns error?Partially update a Document (PATCH/MERGE semantics)
Return Type
- error? - Updated. No content returned
purchaseOrdersCancel
Bound action 'Cancel' on PurchaseOrders (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Success. No content returned
purchaseOrdersClose
Bound action 'Close' on PurchaseOrders (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Success. No content returned
purchaseOrdersCreateCancellationDocument
function purchaseOrdersCreateCancellationDocument(Signed32 docEntry, map<string|string[]> headers) returns Document|errorBound action 'CreateCancellationDocument' on PurchaseOrders (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
purchaseOrdersReopen
Bound action 'Reopen' on PurchaseOrders (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Success. No content returned
purchaseOrdersServiceApproveAndAdd
function purchaseOrdersServiceApproveAndAdd(PurchaseOrdersService_ApproveAndAdd_body payload, map<string|string[]> headers) returns error?Approve and add
Parameters
- payload PurchaseOrdersService_ApproveAndAdd_body - Request payload
Return Type
- error? - Success. No content returned
purchaseOrdersServiceApproveAndUpdate
function purchaseOrdersServiceApproveAndUpdate(PurchaseOrdersService_ApproveAndUpdate_body payload, map<string|string[]> headers) returns error?Approve and update
Parameters
- payload PurchaseOrdersService_ApproveAndUpdate_body - Request payload
Return Type
- error? - Success. No content returned
purchaseOrdersServiceCloseByDate
function purchaseOrdersServiceCloseByDate(PurchaseOrdersService_CloseByDate_body payload, map<string|string[]> headers) returns error?Close by date
Parameters
- payload PurchaseOrdersService_CloseByDate_body - Request payload
Return Type
- error? - Success. No content returned
purchaseOrdersServiceExportEWayBill
function purchaseOrdersServiceExportEWayBill(PurchaseOrdersService_ExportEWayBill_body payload, map<string|string[]> headers) returns error?Export E way bill
Parameters
- payload PurchaseOrdersService_ExportEWayBill_body - Request payload
Return Type
- error? - Success. No content returned
purchaseOrdersServiceGetApprovalTemplates
function purchaseOrdersServiceGetApprovalTemplates(PurchaseOrdersService_GetApprovalTemplates_body payload, map<string|string[]> headers) returns Document|errorGet approval templates
Parameters
- payload PurchaseOrdersService_GetApprovalTemplates_body - Request payload
purchaseOrdersServiceHandleApprovalRequest
Handle approval request
Return Type
- error? - Success. No content returned
purchaseOrdersServiceInitData
Init data
listPurchaseQuotations
function listPurchaseQuotations(ListPurchaseQuotationsHeaders headers, *ListPurchaseQuotationsQueries queries) returns PurchaseQuotationsCollectionResponse|errorQuery the PurchaseQuotations collection
Parameters
- headers ListPurchaseQuotationsHeaders (default {}) - Headers to be sent with the request
- queries *ListPurchaseQuotationsQueries - Queries to be sent with the request
Return Type
- PurchaseQuotationsCollectionResponse|error - A page of entities
createPurchaseQuotations
function createPurchaseQuotations(Document payload, map<string|string[]> headers) returns Document|errorCreate a new Document
Parameters
- payload Document - Request payload
getPurchaseQuotations
function getPurchaseQuotations(Signed32 docEntry, map<string|string[]> headers, *GetPurchaseQuotationsQueries queries) returns Document|errorGet a single Document by key
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
- queries *GetPurchaseQuotationsQueries - Queries to be sent with the request
deletePurchaseQuotations
Delete a Document
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updatePurchaseQuotations
function updatePurchaseQuotations(Signed32 docEntry, Document payload, map<string|string[]> headers) returns error?Partially update a Document (PATCH/MERGE semantics)
Return Type
- error? - Updated. No content returned
purchaseQuotationsCancel
Bound action 'Cancel' on PurchaseQuotations (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Success. No content returned
purchaseQuotationsClose
Bound action 'Close' on PurchaseQuotations (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Success. No content returned
purchaseQuotationsCreateCancellationDocument
function purchaseQuotationsCreateCancellationDocument(Signed32 docEntry, map<string|string[]> headers) returns Document|errorBound action 'CreateCancellationDocument' on PurchaseQuotations (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
purchaseQuotationsReopen
Bound action 'Reopen' on PurchaseQuotations (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Success. No content returned
purchaseQuotationsServiceApproveAndAdd
function purchaseQuotationsServiceApproveAndAdd(PurchaseQuotationsService_ApproveAndAdd_body payload, map<string|string[]> headers) returns error?Approve and add
Parameters
- payload PurchaseQuotationsService_ApproveAndAdd_body - Request payload
Return Type
- error? - Success. No content returned
purchaseQuotationsServiceApproveAndUpdate
function purchaseQuotationsServiceApproveAndUpdate(PurchaseQuotationsService_ApproveAndUpdate_body payload, map<string|string[]> headers) returns error?Approve and update
Parameters
- payload PurchaseQuotationsService_ApproveAndUpdate_body - Request payload
Return Type
- error? - Success. No content returned
purchaseQuotationsServiceCloseByDate
function purchaseQuotationsServiceCloseByDate(PurchaseQuotationsService_CloseByDate_body payload, map<string|string[]> headers) returns error?Close by date
Parameters
- payload PurchaseQuotationsService_CloseByDate_body - Request payload
Return Type
- error? - Success. No content returned
purchaseQuotationsServiceExportEWayBill
function purchaseQuotationsServiceExportEWayBill(PurchaseQuotationsService_ExportEWayBill_body payload, map<string|string[]> headers) returns error?Export E way bill
Parameters
- payload PurchaseQuotationsService_ExportEWayBill_body - Request payload
Return Type
- error? - Success. No content returned
purchaseQuotationsServiceGetApprovalTemplates
function purchaseQuotationsServiceGetApprovalTemplates(PurchaseQuotationsService_GetApprovalTemplates_body payload, map<string|string[]> headers) returns Document|errorGet approval templates
Parameters
- payload PurchaseQuotationsService_GetApprovalTemplates_body - Request payload
purchaseQuotationsServiceHandleApprovalRequest
function purchaseQuotationsServiceHandleApprovalRequest(map<string|string[]> headers) returns error?Handle approval request
Return Type
- error? - Success. No content returned
purchaseQuotationsServiceInitData
Init data
purchaseRequestServiceApproveAndAdd
function purchaseRequestServiceApproveAndAdd(PurchaseRequestService_ApproveAndAdd_body payload, map<string|string[]> headers) returns error?Approve and add
Parameters
- payload PurchaseRequestService_ApproveAndAdd_body - Request payload
Return Type
- error? - Success. No content returned
purchaseRequestServiceApproveAndUpdate
function purchaseRequestServiceApproveAndUpdate(PurchaseRequestService_ApproveAndUpdate_body payload, map<string|string[]> headers) returns error?Approve and update
Parameters
- payload PurchaseRequestService_ApproveAndUpdate_body - Request payload
Return Type
- error? - Success. No content returned
purchaseRequestServiceCloseByDate
function purchaseRequestServiceCloseByDate(PurchaseRequestService_CloseByDate_body payload, map<string|string[]> headers) returns error?Close by date
Parameters
- payload PurchaseRequestService_CloseByDate_body - Request payload
Return Type
- error? - Success. No content returned
purchaseRequestServiceExportEWayBill
function purchaseRequestServiceExportEWayBill(PurchaseRequestService_ExportEWayBill_body payload, map<string|string[]> headers) returns error?Export E way bill
Parameters
- payload PurchaseRequestService_ExportEWayBill_body - Request payload
Return Type
- error? - Success. No content returned
purchaseRequestServiceGetApprovalTemplates
function purchaseRequestServiceGetApprovalTemplates(PurchaseRequestService_GetApprovalTemplates_body payload, map<string|string[]> headers) returns Document|errorGet approval templates
Parameters
- payload PurchaseRequestService_GetApprovalTemplates_body - Request payload
purchaseRequestServiceHandleApprovalRequest
Handle approval request
Return Type
- error? - Success. No content returned
purchaseRequestServiceInitData
Init data
listPurchaseRequests
function listPurchaseRequests(ListPurchaseRequestsHeaders headers, *ListPurchaseRequestsQueries queries) returns PurchaseRequestsCollectionResponse|errorQuery the PurchaseRequests collection
Parameters
- headers ListPurchaseRequestsHeaders (default {}) - Headers to be sent with the request
- queries *ListPurchaseRequestsQueries - Queries to be sent with the request
Return Type
- PurchaseRequestsCollectionResponse|error - A page of entities
createPurchaseRequests
function createPurchaseRequests(Document payload, map<string|string[]> headers) returns Document|errorCreate a new Document
Parameters
- payload Document - Request payload
getPurchaseRequests
function getPurchaseRequests(Signed32 docEntry, map<string|string[]> headers, *GetPurchaseRequestsQueries queries) returns Document|errorGet a single Document by key
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
- queries *GetPurchaseRequestsQueries - Queries to be sent with the request
deletePurchaseRequests
Delete a Document
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updatePurchaseRequests
function updatePurchaseRequests(Signed32 docEntry, Document payload, map<string|string[]> headers) returns error?Partially update a Document (PATCH/MERGE semantics)
Return Type
- error? - Updated. No content returned
purchaseRequestsCancel
Bound action 'Cancel' on PurchaseRequests (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Success. No content returned
purchaseRequestsClose
Bound action 'Close' on PurchaseRequests (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Success. No content returned
purchaseRequestsCreateCancellationDocument
function purchaseRequestsCreateCancellationDocument(Signed32 docEntry, map<string|string[]> headers) returns Document|errorBound action 'CreateCancellationDocument' on PurchaseRequests (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
purchaseRequestsReopen
Bound action 'Reopen' on PurchaseRequests (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Success. No content returned
listPurchaseReturns
function listPurchaseReturns(ListPurchaseReturnsHeaders headers, *ListPurchaseReturnsQueries queries) returns PurchaseReturnsCollectionResponse|errorQuery the PurchaseReturns collection
Parameters
- headers ListPurchaseReturnsHeaders (default {}) - Headers to be sent with the request
- queries *ListPurchaseReturnsQueries - Queries to be sent with the request
Return Type
- PurchaseReturnsCollectionResponse|error - A page of entities
createPurchaseReturns
function createPurchaseReturns(Document payload, map<string|string[]> headers) returns Document|errorCreate a new Document
Parameters
- payload Document - Request payload
getPurchaseReturns
function getPurchaseReturns(Signed32 docEntry, map<string|string[]> headers, *GetPurchaseReturnsQueries queries) returns Document|errorGet a single Document by key
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
- queries *GetPurchaseReturnsQueries - Queries to be sent with the request
deletePurchaseReturns
Delete a Document
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updatePurchaseReturns
function updatePurchaseReturns(Signed32 docEntry, Document payload, map<string|string[]> headers) returns error?Partially update a Document (PATCH/MERGE semantics)
Return Type
- error? - Updated. No content returned
purchaseReturnsCancel
Bound action 'Cancel' on PurchaseReturns (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Success. No content returned
purchaseReturnsClose
Bound action 'Close' on PurchaseReturns (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Success. No content returned
purchaseReturnsCreateCancellationDocument
function purchaseReturnsCreateCancellationDocument(Signed32 docEntry, map<string|string[]> headers) returns Document|errorBound action 'CreateCancellationDocument' on PurchaseReturns (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
purchaseReturnsReopen
Bound action 'Reopen' on PurchaseReturns (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Success. No content returned
purchaseReturnsServiceApproveAndAdd
function purchaseReturnsServiceApproveAndAdd(PurchaseReturnsService_ApproveAndAdd_body payload, map<string|string[]> headers) returns error?Approve and add
Parameters
- payload PurchaseReturnsService_ApproveAndAdd_body - Request payload
Return Type
- error? - Success. No content returned
purchaseReturnsServiceApproveAndUpdate
function purchaseReturnsServiceApproveAndUpdate(PurchaseReturnsService_ApproveAndUpdate_body payload, map<string|string[]> headers) returns error?Approve and update
Parameters
- payload PurchaseReturnsService_ApproveAndUpdate_body - Request payload
Return Type
- error? - Success. No content returned
purchaseReturnsServiceCancel2
function purchaseReturnsServiceCancel2(PurchaseReturnsService_Cancel2_body payload, map<string|string[]> headers) returns error?Cancel2
Parameters
- payload PurchaseReturnsService_Cancel2_body - Request payload
Return Type
- error? - Success. No content returned
purchaseReturnsServiceCloseByDate
function purchaseReturnsServiceCloseByDate(PurchaseReturnsService_CloseByDate_body payload, map<string|string[]> headers) returns error?Close by date
Parameters
- payload PurchaseReturnsService_CloseByDate_body - Request payload
Return Type
- error? - Success. No content returned
purchaseReturnsServiceExportEWayBill
function purchaseReturnsServiceExportEWayBill(PurchaseReturnsService_ExportEWayBill_body payload, map<string|string[]> headers) returns error?Export E way bill
Parameters
- payload PurchaseReturnsService_ExportEWayBill_body - Request payload
Return Type
- error? - Success. No content returned
purchaseReturnsServiceGetApprovalTemplates
function purchaseReturnsServiceGetApprovalTemplates(PurchaseReturnsService_GetApprovalTemplates_body payload, map<string|string[]> headers) returns Document|errorGet approval templates
Parameters
- payload PurchaseReturnsService_GetApprovalTemplates_body - Request payload
purchaseReturnsServiceHandleApprovalRequest
Handle approval request
Return Type
- error? - Success. No content returned
purchaseReturnsServiceInitData
Init data
listPurchaseTaxInvoices
function listPurchaseTaxInvoices(ListPurchaseTaxInvoicesHeaders headers, *ListPurchaseTaxInvoicesQueries queries) returns PurchaseTaxInvoicesCollectionResponse|errorQuery the PurchaseTaxInvoices collection
Parameters
- headers ListPurchaseTaxInvoicesHeaders (default {}) - Headers to be sent with the request
- queries *ListPurchaseTaxInvoicesQueries - Queries to be sent with the request
Return Type
- PurchaseTaxInvoicesCollectionResponse|error - A page of entities
createPurchaseTaxInvoices
function createPurchaseTaxInvoices(PurchaseTaxInvoice payload, map<string|string[]> headers) returns PurchaseTaxInvoice|errorCreate a new PurchaseTaxInvoice
Parameters
- payload PurchaseTaxInvoice - Request payload
Return Type
- PurchaseTaxInvoice|error - The created entity
getPurchaseTaxInvoices
function getPurchaseTaxInvoices(Signed32 docEntry, map<string|string[]> headers, *GetPurchaseTaxInvoicesQueries queries) returns PurchaseTaxInvoice|errorGet a single PurchaseTaxInvoice by key
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
- queries *GetPurchaseTaxInvoicesQueries - Queries to be sent with the request
Return Type
- PurchaseTaxInvoice|error - The requested entity
deletePurchaseTaxInvoices
Delete a PurchaseTaxInvoice
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updatePurchaseTaxInvoices
function updatePurchaseTaxInvoices(Signed32 docEntry, PurchaseTaxInvoice payload, map<string|string[]> headers) returns error?Partially update a PurchaseTaxInvoice (PATCH/MERGE semantics)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
- payload PurchaseTaxInvoice - 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.purchasing: AddressExtension
The AddressExtension complex type of the SAP Business One Service Layer
Fields
- ShipToStreet? string -
- ShipToStreetNo? string -
- ShipToBlock? string -
- ShipToBuilding? string -
- ShipToCity? string -
- ShipToZipCode? string -
- ShipToCounty? string -
- ShipToState? string -
- ShipToCountry? string -
- ShipToAddressType? string -
- BillToStreet? string -
- BillToStreetNo? string -
- BillToBlock? string -
- BillToBuilding? string -
- BillToCity? string -
- BillToZipCode? string -
- BillToCounty? string -
- BillToState? string -
- BillToCountry? string -
- BillToAddressType? string -
- ShipToGlobalLocationNumber? string -
- BillToGlobalLocationNumber? string -
- ShipToAddress2? string -
- ShipToAddress3? string -
- BillToAddress2? string -
- BillToAddress3? string -
- PlaceOfSupply? string -
- PurchasePlaceOfSupply? string -
- DocEntry? Signed32 -
- GoodsIssuePlaceBP? string -
- GoodsIssuePlaceCNPJ? string -
- GoodsIssuePlaceCPF? string -
- GoodsIssuePlaceStreet? string -
- GoodsIssuePlaceStreetNo? string -
- GoodsIssuePlaceBuilding? string -
- GoodsIssuePlaceZip? string -
- GoodsIssuePlaceBlock? string -
- GoodsIssuePlaceCity? string -
- GoodsIssuePlaceCounty? string -
- GoodsIssuePlaceState? string -
- GoodsIssuePlaceCountry? string -
- GoodsIssuePlacePhone? string -
- GoodsIssuePlaceEMail? string -
- GoodsIssuePlaceDepartureDate? string -
- DeliveryPlaceBP? string -
- DeliveryPlaceCNPJ? string -
- DeliveryPlaceCPF? string -
- DeliveryPlaceStreet? string -
- DeliveryPlaceStreetNo? string -
- DeliveryPlaceBuilding? string -
- DeliveryPlaceZip? string -
- DeliveryPlaceBlock? string -
- DeliveryPlaceCity? string -
- DeliveryPlaceCounty? string -
- DeliveryPlaceState? string -
- DeliveryPlaceCountry? string -
- DeliveryPlacePhone? string -
- DeliveryPlaceEMail? string -
- DeliveryPlaceDepartureDate? string -
- ShipToStreetForReturn? string -
- ShipToStreetNoForReturn? string -
- ShipToBlockForReturn? string -
- ShipToBuildingForReturn? string -
- ShipToCityForReturn? string -
- ShipToZipCodeForReturn? string -
- ShipToCountyForReturn? string -
- ShipToStateForReturn? string -
- ShipToCountryForReturn? string -
- ShipToAddressTypeForReturn? string -
- ShipToGlobalLocationNumberForReturn? string -
- ShipToAddress2ForReturn? string -
- ShipToAddress3ForReturn? string -
sap.businessone.purchasing: BatchNumber
The BatchNumber complex type of the SAP Business One Service Layer
Fields
- BatchNumber? string -
- ManufacturerSerialNumber? string -
- InternalSerialNumber? string -
- ExpiryDate? string -
- ManufacturingDate? string -
- AddmisionDate? string -
- Location? string -
- Notes? string -
- Quantity? decimal -
- BaseLineNumber? Signed32 -
- TrackingNote? Signed32 -
- TrackingNoteLine? Signed32 -
- ItemCode? string -
- SystemSerialNumber? Signed32 -
sap.businessone.purchasing: CCDNumber
The CCDNumber complex type of the SAP Business One Service Layer
Fields
- TrackingNote? Signed32 -
- TrackingNoteLine? Signed32 -
- CCDNumber? string -
- Quantity? decimal -
- CountryOfOrigin? string -
- SubLineNumber? Signed32 -
- DocumentEntry? Signed32 -
- BaseLineNumber? Signed32 -
- ChildNumber? Signed32 -
sap.businessone.purchasing: 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.purchasing: CorrectionPurchaseInvoiceCollectionResponse
A paged collection of CorrectionPurchaseInvoice entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? Document[] -
- odataNextLink? string -
sap.businessone.purchasing: CorrectionPurchaseInvoiceReversalCollectionResponse
A paged collection of CorrectionPurchaseInvoiceReversal entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? Document[] -
- odataNextLink? string -
sap.businessone.purchasing: CorrectionPurchaseInvoiceReversalService_ApproveAndAdd_body
Represents the request payload for the CorrectionPurchaseInvoiceReversalService_ApproveAndAdd operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.purchasing: CorrectionPurchaseInvoiceReversalService_ApproveAndUpdate_body
Represents the request payload for the CorrectionPurchaseInvoiceReversalService_ApproveAndUpdate operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.purchasing: CorrectionPurchaseInvoiceReversalService_CloseByDate_body
Represents the request payload for the CorrectionPurchaseInvoiceReversalService_CloseByDate operation of the SAP Business One Service Layer
Fields
- documentCloseParams? DocumentCloseParams -
sap.businessone.purchasing: CorrectionPurchaseInvoiceReversalService_ExportEWayBill_body
Represents the request payload for the CorrectionPurchaseInvoiceReversalService_ExportEWayBill operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.purchasing: CorrectionPurchaseInvoiceReversalService_GetApprovalTemplates_body
Represents the request payload for the CorrectionPurchaseInvoiceReversalService_GetApprovalTemplates operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.purchasing: CorrectionPurchaseInvoiceService_ApproveAndAdd_body
Represents the request payload for the CorrectionPurchaseInvoiceService_ApproveAndAdd operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.purchasing: CorrectionPurchaseInvoiceService_ApproveAndUpdate_body
Represents the request payload for the CorrectionPurchaseInvoiceService_ApproveAndUpdate operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.purchasing: CorrectionPurchaseInvoiceService_CloseByDate_body
Represents the request payload for the CorrectionPurchaseInvoiceService_CloseByDate operation of the SAP Business One Service Layer
Fields
- documentCloseParams? DocumentCloseParams -
sap.businessone.purchasing: CorrectionPurchaseInvoiceService_ExportEWayBill_body
Represents the request payload for the CorrectionPurchaseInvoiceService_ExportEWayBill operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.purchasing: CorrectionPurchaseInvoiceService_GetApprovalTemplates_body
Represents the request payload for the CorrectionPurchaseInvoiceService_GetApprovalTemplates operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.purchasing: DocExpenseTaxJurisdiction
The DocExpenseTaxJurisdiction complex type of the SAP Business One Service Layer
Fields
- JurisdictionCode? string -
- JurisdictionType? Signed32 -
- TaxAmount? decimal -
- TaxAmountSC? decimal -
- TaxAmountFC? decimal -
- TaxRate? decimal -
- DocEntry? Signed32 -
- LineNumber? Signed32 -
- RowSequence? Signed32 -
- ExternalCalcTaxRate? decimal -
- ExternalCalcTaxAmount? decimal -
- ExternalCalcTaxAmountFC? decimal -
- ExternalCalcTaxAmountSC? decimal -
sap.businessone.purchasing: DocFreightEBooksDetail
The DocFreightEBooksDetail complex type of the SAP Business One Service Layer
Fields
- IncomeClassificationType? Signed32 -
- IncomeClassificationCategory? Signed32 -
- ExpensesClassificationType? Signed32 -
- ExpensesClassificationCategory? Signed32 -
- NetValueLC? decimal -
- NetValueFC? decimal -
- NetValueSC? decimal -
- VatCategory? Signed32 -
- WithheldPercentCategory? Signed32 -
- WithheldAmountLC? decimal -
- WithheldAmountFC? decimal -
- WithheldAmountSC? decimal -
- VatClassificationType? Signed32 -
- VatClassificationCategory? Signed32 -
- VATExemptionCause? Signed32 -
sap.businessone.purchasing: DocLinePickList
The DocLinePickList complex type of the SAP Business One Service Layer
Fields
- pickListLineNum? Signed32 -
- pickListBatchAndBinLineNum? Signed32 -
- pickListEntry? Signed32 -
sap.businessone.purchasing: Document
The Document entity of the SAP Business One Service Layer
Fields
- DocEntry? Signed32 -
- DocNum? Signed32 -
- DocType? BoDocumentTypes - OData EnumType 'BoDocumentTypes'. Serialised by the Service Layer as the member name
- HandWritten? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Printed? PrintStatusEnum - OData EnumType 'PrintStatusEnum'. Serialised by the Service Layer as the member name
- DocDate? string -
- DocDueDate? string -
- CardCode? string -
- CardName? string -
- Address? string -
- NumAtCard? string -
- DocTotal? decimal -
- AttachmentEntry? Signed32 -
- DocCurrency? string -
- DocRate? decimal -
- Reference1? string -
- Reference2? string -
- Comments? string -
- JournalMemo? string -
- PaymentGroupCode? Signed32 -
- DocTime? string -
- SalesPersonCode? Signed32 -
- TransportationCode? Signed32 -
- Confirmed? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ImportFileNum? Signed32 -
- SummeryType? BoDocSummaryTypes - OData EnumType 'BoDocSummaryTypes'. Serialised by the Service Layer as the member name
- ContactPersonCode? Signed32 -
- ShowSCN? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Series? Signed32 -
- TaxDate? string -
- PartialSupply? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- DocObjectCode? BoObjectTypes - OData EnumType 'BoObjectTypes'. Serialised by the Service Layer as the member name
- ShipToCode? string -
- Indicator? string -
- FederalTaxID? string -
- DiscountPercent? decimal -
- PaymentReference? string -
- CreationDate? string -
- UpdateDate? string -
- FinancialPeriod? Signed32 -
- UserSign? Signed32 -
- TransNum? Signed32 -
- VatSum? decimal -
- VatSumSys? decimal -
- VatSumFc? decimal -
- NetProcedure? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- DocTotalFc? decimal -
- DocTotalSys? decimal -
- Form1099? Signed32 -
- Box1099? string -
- RevisionPo? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- RequriedDate? string -
- CancelDate? string -
- BlockDunning? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Submitted? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Segment? Signed32 -
- PickStatus? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Pick? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- PaymentMethod? string -
- PaymentBlock? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- PaymentBlockEntry? Signed32 -
- CentralBankIndicator? string -
- MaximumCashDiscount? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Reserve? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Project? string -
- ExemptionValidityDateFrom? string -
- ExemptionValidityDateTo? string -
- WareHouseUpdateType? BoDocWhsUpdateTypes - OData EnumType 'BoDocWhsUpdateTypes'. Serialised by the Service Layer as the member name
- Rounding? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ExternalCorrectedDocNum? string -
- InternalCorrectedDocNum? Signed32 -
- NextCorrectingDocument? Signed32 -
- DeferredTax? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- TaxExemptionLetterNum? string -
- WTApplied? decimal -
- WTAppliedFC? decimal -
- BillOfExchangeReserved? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- AgentCode? string -
- WTAppliedSC? decimal -
- TotalEqualizationTax? decimal -
- TotalEqualizationTaxFC? decimal -
- TotalEqualizationTaxSC? decimal -
- NumberOfInstallments? Signed32 -
- ApplyTaxOnFirstInstallment? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- TaxOnInstallments? BoTaxOnInstallmentsTypeEnum - OData EnumType 'BoTaxOnInstallmentsTypeEnum'. Serialised by the Service Layer as the member name
- WTNonSubjectAmount? decimal -
- WTNonSubjectAmountSC? decimal -
- WTNonSubjectAmountFC? decimal -
- WTExemptedAmount? decimal -
- WTExemptedAmountSC? decimal -
- WTExemptedAmountFC? decimal -
- BaseAmount? decimal -
- BaseAmountSC? decimal -
- BaseAmountFC? decimal -
- WTAmount? decimal -
- WTAmountSC? decimal -
- WTAmountFC? decimal -
- VatDate? string -
- DocumentsOwner? Signed32 -
- FolioPrefixString? string -
- FolioNumber? Signed32 -
- DocumentSubType? BoDocumentSubType - OData EnumType 'BoDocumentSubType'. Serialised by the Service Layer as the member name
- BPChannelCode? string -
- BPChannelContact? Signed32 -
- Address2? string -
- DocumentStatus? BoStatus - OData EnumType 'BoStatus'. Serialised by the Service Layer as the member name
- PeriodIndicator? string -
- PayToCode? string -
- ManualNumber? string -
- UseShpdGoodsAct? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- IsPayToBank? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- PayToBankCountry? string -
- PayToBankCode? string -
- PayToBankAccountNo? string -
- PayToBankBranch? string -
- BPL_IDAssignedToInvoice? Signed32 -
- DownPayment? decimal -
- ReserveInvoice? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- LanguageCode? Signed32 -
- TrackingNumber? string -
- PickRemark? string -
- ClosingDate? string -
- SequenceCode? Signed32 -
- SequenceSerial? Signed32 -
- SeriesString? string -
- SubSeriesString? string -
- SequenceModel? string -
- UseCorrectionVATGroup? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- TotalDiscount? decimal -
- DownPaymentAmount? decimal -
- DownPaymentPercentage? decimal -
- DownPaymentType? DownPaymentTypeEnum - OData EnumType 'DownPaymentTypeEnum'. Serialised by the Service Layer as the member name
- DownPaymentAmountSC? decimal -
- DownPaymentAmountFC? decimal -
- VatPercent? decimal -
- ServiceGrossProfitPercent? decimal -
- OpeningRemarks? string -
- ClosingRemarks? string -
- RoundingDiffAmount? decimal -
- RoundingDiffAmountFC? decimal -
- RoundingDiffAmountSC? decimal -
- Cancelled? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- SignatureInputMessage? string -
- SignatureDigest? string -
- CertificationNumber? string -
- PrivateKeyVersion? Signed32 -
- ControlAccount? string -
- InsuranceOperation347? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ArchiveNonremovableSalesQuotation? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- GTSChecker? Signed32 -
- GTSPayee? Signed32 -
- ExtraMonth? Signed32 -
- ExtraDays? Signed32 -
- CashDiscountDateOffset? Signed32 -
- StartFrom? BoPayTermDueTypes - OData EnumType 'BoPayTermDueTypes'. Serialised by the Service Layer as the member name
- NTSApproved? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ETaxWebSite? Signed32 -
- ETaxNumber? string -
- NTSApprovedNumber? string -
- EDocGenerationType? EDocGenerationTypeEnum - OData EnumType 'EDocGenerationTypeEnum'. Serialised by the Service Layer as the member name
- EDocSeries? Signed32 -
- EDocNum? string -
- EDocExportFormat? Signed32 -
- EDocStatus? EDocStatusEnum - OData EnumType 'EDocStatusEnum'. Serialised by the Service Layer as the member name
- EDocErrorCode? string -
- EDocErrorMessage? string -
- DownPaymentStatus? BoSoStatus - OData EnumType 'BoSoStatus'. Serialised by the Service Layer as the member name
- GroupSeries? Signed32 -
- GroupNumber? Signed32 -
- GroupHandWritten? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ReopenOriginalDocument? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ReopenManuallyClosedOrCanceledDocument? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- CreateOnlineQuotation? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- POSEquipmentNumber? string -
- POSManufacturerSerialNumber? string -
- POSCashierNumber? Signed32 -
- ApplyCurrentVATRatesForDownPaymentsToDraw? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ClosingOption? ClosingOptionEnum - OData EnumType 'ClosingOptionEnum'. Serialised by the Service Layer as the member name
- SpecifiedClosingDate? string -
- OpenForLandedCosts? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- AuthorizationStatus? DocumentAuthorizationStatusEnum - OData EnumType 'DocumentAuthorizationStatusEnum'. Serialised by the Service Layer as the member name
- TotalDiscountFC? decimal -
- TotalDiscountSC? decimal -
- RelevantToGTS? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- BPLName? string -
- VATRegNum? string -
- AnnualInvoiceDeclarationReference? Signed32 -
- Supplier? string -
- Releaser? Signed32 -
- Receiver? Signed32 -
- BlanketAgreementNumber? Signed32 -
- IsAlteration? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- CancelStatus? CancelStatusEnum - OData EnumType 'CancelStatusEnum'. Serialised by the Service Layer as the member name
- DraftKey? Signed32 -
- AssetValueDate? string -
- Requester? string -
- RequesterName? string -
- RequesterBranch? Signed32 -
- RequesterDepartment? Signed32 -
- RequesterEmail? string -
- SendNotification? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ReqType? Signed32 -
- ReqCode? string -
- InvoicePayment? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- DocumentDelivery? DocumentDeliveryTypeEnum - OData EnumType 'DocumentDeliveryTypeEnum'. Serialised by the Service Layer as the member name
- AuthorizationCode? string -
- StartDeliveryDate? string -
- StartDeliveryTime? string -
- EndDeliveryDate? string -
- EndDeliveryTime? string -
- VehiclePlate? string -
- ATDocumentType? string -
- ElecCommStatus? ElecCommStatusEnum - OData EnumType 'ElecCommStatusEnum'. Serialised by the Service Layer as the member name
- ElecCommMessage? string -
- ReuseDocumentNum? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ReuseNotaFiscalNum? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- PrintSEPADirect? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- FiscalDocNum? string -
- POSDailySummaryNo? Signed32 -
- POSReceiptNo? Signed32 -
- PointOfIssueCode? string -
- Letter? FolioLetterEnum - OData EnumType 'FolioLetterEnum'. Serialised by the Service Layer as the member name
- FolioNumberFrom? Signed32 -
- FolioNumberTo? Signed32 -
- InterimType? BoInterimDocTypes - OData EnumType 'BoInterimDocTypes'. Serialised by the Service Layer as the member name
- RelatedType? Signed32 -
- RelatedEntry? Signed32 -
- SAPPassport? string -
- DocumentTaxID? string -
- DateOfReportingControlStatementVAT? string -
- ReportingSectionControlStatementVAT? string -
- ExcludeFromTaxReportControlStatementVAT? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- POS_CashRegister? Signed32 -
- UpdateTime? string -
- CreateQRCodeFrom? string -
- PriceMode? PriceModeDocumentEnum - OData EnumType 'PriceModeDocumentEnum'. Serialised by the Service Layer as the member name
- PriceListNum? Signed32 -
- DownPaymentTrasactionID? string -
- OriginalRefNo? string -
- OriginalRefDate? string -
- Revision? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- GSTTransactionType? GSTTransactionTypeEnum - OData EnumType 'GSTTransactionTypeEnum'. Serialised by the Service Layer as the member name
- OriginalCreditOrDebitNo? string -
- OriginalCreditOrDebitDate? string -
- ECommerceOperator? string -
- ECommerceGSTIN? string -
- TaxInvoiceNo? string -
- TaxInvoiceDate? string -
- ShipFrom? string -
- CommissionTrade? CommissionTradeTypeEnum - OData EnumType 'CommissionTradeTypeEnum'. Serialised by the Service Layer as the member name
- CommissionTradeReturn? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- UseBillToAddrToDetermineTax? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- IssuingReason? Signed32 -
- Cig? Signed32 -
- Cup? Signed32 -
- EDocType? EDocTypeEnum - OData EnumType 'EDocTypeEnum'. Serialised by the Service Layer as the member name
- FCEAsPaymentMeans? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- PaidToDate? decimal -
- PaidToDateFC? decimal -
- PaidToDateSys? decimal -
- FatherCard? string -
- FatherType? BoFatherCardTypes - OData EnumType 'BoFatherCardTypes'. Serialised by the Service Layer as the member name
- ShipState? string -
- ShipPlace? string -
- CustOffice? string -
- FCI? string -
- AddLegIn? string -
- LegTextF? Signed32 -
- DANFELgTxt? string -
- DataVersion? Signed32 -
- LastPageFolioNumber? Signed32 -
- InventoryStatus? BoStatus - OData EnumType 'BoStatus'. Serialised by the Service Layer as the member name
- PlasticPackagingTaxRelevant? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- NotRelevantForMonthlyInvoice? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- EndAt? BoPayTermDueTypes - OData EnumType 'BoPayTermDueTypes'. Serialised by the Service Layer as the member name
- ShipToCodeForReturn? string -
- AddressForReturn? string -
- Document_ApprovalRequests? DocumentApprovalRequest[] -
- DocumentLines? DocumentLine[] -
- EWayBillDetails? EWayBillDetails - The
EWayBillDetailscomplex type of the SAP Business One Service Layer
- EDeliveryInfo? EDeliveryInfo - The
EDeliveryInfocomplex type of the SAP Business One Service Layer
- ElectronicProtocols? ElectronicProtocol[] -
- DocumentAdditionalExpenses? DocumentAdditionalExpense[] -
- DocumentDistributedExpenses? DocumentDistributedExpense[] -
- WithholdingTaxDataWTXCollection? WithholdingTaxDataWTX[] -
- WithholdingTaxDataCollection? WithholdingTaxData[] -
- DocumentPackages? DocumentPackage[] -
- DocumentSpecialLines? DocumentSpecialLine[] -
- DocumentInstallments? DocumentInstallment[] -
- DownPaymentsToDraw? DownPaymentToDraw[] -
- TaxExtension? TaxExtension - The
TaxExtensioncomplex type of the SAP Business One Service Layer
- AddressExtension? AddressExtension - The
AddressExtensioncomplex type of the SAP Business One Service Layer
- DocumentReferences? DocumentReference[] -
- DocumentAdditionalIntrastatExpenses? DocumentAdditionalIntrastatExpense[] -
- DutyStatus? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- BaseType? Signed32 -
- BaseEntry? Signed32 -
- IndFinal? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- AllocationNumberIL? string -
- DigitalPayToAddress? string -
- DigitalPayments? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- SirenNumber? string -
- SiretNumber? string -
- RoutingCode? string -
- Suffix? string -
- SOIWizardId? Signed32 -
- LandedCost? LandedCost - The
LandedCostentity of the SAP Business One Service Layer
sap.businessone.purchasing: DocumentAdditionalExpense
The DocumentAdditionalExpense complex type of the SAP Business One Service Layer
Fields
- ExpenseCode? Signed32 -
- LineTotal? decimal -
- LineTotalFC? decimal -
- LineTotalSys? decimal -
- PaidToDate? decimal -
- PaidToDateFC? decimal -
- PaidToDateSys? decimal -
- Remarks? string -
- DistributionMethod? BoAdEpnsDistribMethods - OData EnumType 'BoAdEpnsDistribMethods'. Serialised by the Service Layer as the member name
- TaxLiable? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- VatGroup? string -
- TaxPercent? decimal -
- TaxSum? decimal -
- TaxSumFC? decimal -
- TaxSumSys? decimal -
- DeductibleTaxSum? decimal -
- DeductibleTaxSumFC? decimal -
- DeductibleTaxSumSys? decimal -
- AquisitionTax? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- TaxCode? string -
- TaxType? BoAdEpnsTaxTypes - OData EnumType 'BoAdEpnsTaxTypes'. Serialised by the Service Layer as the member name
- TaxPaid? decimal -
- TaxPaidFC? decimal -
- TaxPaidSys? decimal -
- EqualizationTaxPercent? decimal -
- EqualizationTaxSum? decimal -
- EqualizationTaxFC? decimal -
- EqualizationTaxSys? decimal -
- TaxTotalSum? decimal -
- TaxTotalSumFC? decimal -
- TaxTotalSumSys? decimal -
- BaseDocEntry? Signed32 -
- BaseDocLine? Signed32 -
- BaseDocType? Signed32 -
- BaseDocumentReference? Signed32 -
- LineNum? Signed32 -
- LastPurchasePrice? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Status? BoStatus - OData EnumType 'BoStatus'. Serialised by the Service Layer as the member name
- Stock? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- TargetAbsEntry? Signed32 -
- TargetType? Signed32 -
- WTLiable? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- DistributionRule? string -
- Project? string -
- DistributionRule2? string -
- DistributionRule3? string -
- DistributionRule4? string -
- DistributionRule5? string -
- LineGross? decimal -
- LineGrossSys? decimal -
- LineGrossFC? decimal -
- ExternalCalcTaxRate? decimal -
- ExternalCalcTaxAmount? decimal -
- ExternalCalcTaxAmountFC? decimal -
- ExternalCalcTaxAmountSC? decimal -
- CUSplit? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- DocFreight? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- DocExpenseTaxJurisdictions? DocExpenseTaxJurisdiction[] -
- DocFreightEBooksDetails? DocFreightEBooksDetail[] -
sap.businessone.purchasing: DocumentAdditionalIntrastatExpense
The DocumentAdditionalIntrastatExpense complex type of the SAP Business One Service Layer
Fields
- ExpenseCode? Signed32 -
- LineTotal? decimal -
- LineTotalFC? decimal -
- LineTotalSys? decimal -
- PaidToDate? decimal -
- PaidToDateFC? decimal -
- PaidToDateSys? decimal -
- DistributionMethod? BoAdEpnsDistribMethods - OData EnumType 'BoAdEpnsDistribMethods'. Serialised by the Service Layer as the member name
- BaseDocEntry? Signed32 -
- BaseDocLine? Signed32 -
- BaseDocType? Signed32 -
- BaseDocumentReference? Signed32 -
- LineNum? Signed32 -
sap.businessone.purchasing: DocumentApprovalRequest
The Document_ApprovalRequest complex type of the SAP Business One Service Layer
Fields
- activeForUpdate? BoYesNoEnum -
- approvalTemplatesID? Signed32 -
- remarks? string -
- approvalTemplatesName? string -
sap.businessone.purchasing: DocumentCloseParams
The DocumentCloseParams complex type of the SAP Business One Service Layer
Fields
- docEntry? Signed32 -
- specifiedClosingDate? string -
- closingOption? ClosingOptionEnum -
sap.businessone.purchasing: DocumentDistributedExpense
The DocumentDistributedExpense complex type of the SAP Business One Service Layer
sap.businessone.purchasing: DocumentInstallment
The DocumentInstallment complex type of the SAP Business One Service Layer
Fields
- DueDate? string -
- Percentage? decimal -
- Total? decimal -
- LastDunningDate? string -
- DunningLevel? Signed32 -
- TotalFC? decimal -
- InstallmentId? Signed32 -
- PaymentOrdered? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- PaidToDate? decimal -
- PaidToDateFC? decimal -
sap.businessone.purchasing: DocumentLine
The DocumentLine complex type of the SAP Business One Service Layer
Fields
- LineNum? Signed32 -
- ItemCode? string -
- ItemDescription? string -
- Quantity? decimal -
- ShipDate? string -
- Price? decimal -
- PriceAfterVAT? decimal -
- Currency? string -
- Rate? decimal -
- DiscountPercent? decimal -
- VendorNum? string -
- SerialNum? string -
- WarehouseCode? string -
- SalesPersonCode? Signed32 -
- CommisionPercent? decimal -
- TreeType? BoItemTreeTypes - OData EnumType 'BoItemTreeTypes'. Serialised by the Service Layer as the member name
- AccountCode? string -
- UseBaseUnits? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- SupplierCatNum? string -
- CostingCode? string -
- ProjectCode? string -
- BarCode? string -
- VatGroup? string -
- Height1? decimal -
- Hight1Unit? Signed32 -
- Height2? decimal -
- Height2Unit? Signed32 -
- Lengh1? decimal -
- Lengh1Unit? Signed32 -
- Lengh2? decimal -
- Lengh2Unit? Signed32 -
- Weight1? decimal -
- Weight1Unit? Signed32 -
- Weight2? decimal -
- Weight2Unit? Signed32 -
- Factor1? decimal -
- Factor2? decimal -
- Factor3? decimal -
- Factor4? decimal -
- BaseType? Signed32 -
- BaseEntry? Signed32 -
- BaseLine? Signed32 -
- Volume? decimal -
- VolumeUnit? Signed32 -
- Width1? decimal -
- Width1Unit? Signed32 -
- Width2? decimal -
- Width2Unit? Signed32 -
- Address? string -
- TaxCode? string -
- TaxType? BoTaxTypes - OData EnumType 'BoTaxTypes'. Serialised by the Service Layer as the member name
- TaxLiable? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- PickStatus? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- PickQuantity? decimal -
- PickListIdNumber? Signed32 -
- OriginalItem? string -
- BackOrder? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- FreeText? string -
- ShippingMethod? Signed32 -
- POTargetNum? Signed32 -
- POTargetEntry? string -
- POTargetRowNum? Signed32 -
- CorrectionInvoiceItem? BoCorInvItemStatus - OData EnumType 'BoCorInvItemStatus'. Serialised by the Service Layer as the member name
- CorrInvAmountToStock? decimal -
- CorrInvAmountToDiffAcct? decimal -
- AppliedTax? decimal -
- AppliedTaxFC? decimal -
- AppliedTaxSC? decimal -
- WTLiable? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- DeferredTax? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- EqualizationTaxPercent? decimal -
- TotalEqualizationTax? decimal -
- TotalEqualizationTaxFC? decimal -
- TotalEqualizationTaxSC? decimal -
- NetTaxAmount? decimal -
- NetTaxAmountFC? decimal -
- NetTaxAmountSC? decimal -
- MeasureUnit? string -
- UnitsOfMeasurment? decimal -
- LineTotal? decimal -
- TaxPercentagePerRow? decimal -
- TaxTotal? decimal -
- ConsumerSalesForecast? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ExciseAmount? decimal -
- TaxPerUnit? decimal -
- TotalInclTax? decimal -
- CountryOrg? string -
- SWW? string -
- TransactionType? BoTransactionTypeEnum - OData EnumType 'BoTransactionTypeEnum'. Serialised by the Service Layer as the member name
- DistributeExpense? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- RowTotalFC? decimal -
- RowTotalSC? decimal -
- LastBuyInmPrice? decimal -
- LastBuyDistributeSumFc? decimal -
- LastBuyDistributeSumSc? decimal -
- LastBuyDistributeSum? decimal -
- StockDistributesumForeign? decimal -
- StockDistributesumSystem? decimal -
- StockDistributesum? decimal -
- StockInmPrice? decimal -
- PickStatusEx? BoDocumentLinePickStatus - OData EnumType 'BoDocumentLinePickStatus'. Serialised by the Service Layer as the member name
- TaxBeforeDPM? decimal -
- TaxBeforeDPMFC? decimal -
- TaxBeforeDPMSC? decimal -
- CFOPCode? string -
- CSTCode? string -
- Usage? Signed32 -
- TaxOnly? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- VisualOrder? Signed32 -
- BaseOpenQuantity? decimal -
- UnitPrice? decimal -
- LineStatus? BoStatus - OData EnumType 'BoStatus'. Serialised by the Service Layer as the member name
- PackageQuantity? decimal -
- Text? string -
- LineType? BoDocLineType - OData EnumType 'BoDocLineType'. Serialised by the Service Layer as the member name
- COGSCostingCode? string -
- COGSAccountCode? string -
- ChangeAssemlyBoMWarehouse? string -
- GrossBuyPrice? decimal -
- GrossBase? Signed32 -
- GrossProfitTotalBasePrice? decimal -
- CostingCode2? string -
- CostingCode3? string -
- CostingCode4? string -
- CostingCode5? string -
- ItemDetails? string -
- LocationCode? Signed32 -
- ActualDeliveryDate? string -
- RemainingOpenQuantity? decimal -
- OpenAmount? decimal -
- OpenAmountFC? decimal -
- OpenAmountSC? decimal -
- ExLineNo? string -
- RequiredDate? string -
- RequiredQuantity? decimal -
- COGSCostingCode2? string -
- COGSCostingCode3? string -
- COGSCostingCode4? string -
- COGSCostingCode5? string -
- CSTforIPI? string -
- CSTforPIS? string -
- CSTforCOFINS? string -
- CreditOriginCode? string -
- WithoutInventoryMovement? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- AgreementNo? Signed32 -
- AgreementRowNumber? Signed32 -
- ActualBaseEntry? Signed32 -
- ActualBaseLine? Signed32 -
- DocEntry? Signed32 -
- Surpluses? decimal -
- DefectAndBreakup? decimal -
- Shortages? decimal -
- ConsiderQuantity? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- PartialRetirement? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- RetirementQuantity? decimal -
- RetirementAPC? decimal -
- ThirdParty? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- PoNum? string -
- PoItmNum? Signed32 -
- ExpenseType? string -
- ReceiptNumber? string -
- ExpenseOperationType? BoExpenseOperationTypeEnum - OData EnumType 'BoExpenseOperationTypeEnum'. Serialised by the Service Layer as the member name
- FederalTaxID? string -
- GrossProfit? decimal -
- GrossProfitFC? decimal -
- GrossProfitSC? decimal -
- PriceSource? DocumentPriceSourceEnum - OData EnumType 'DocumentPriceSourceEnum'. Serialised by the Service Layer as the member name
- EnableReturnCost? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ReturnCost? decimal -
- LineVendor? string -
- ReturnAction? Signed32 -
- ReturnReason? Signed32 -
- StgSeqNum? Signed32 -
- StgEntry? Signed32 -
- StgDesc? string -
- UoMEntry? Signed32 -
- UoMCode? string -
- InventoryQuantity? decimal -
- RemainingOpenInventoryQuantity? decimal -
- ParentLineNum? Signed32 -
- Incoterms? Signed32 -
- TransportMode? Signed32 -
- NatureOfTransaction? Signed32 -
- DestinationCountryForImport? string -
- DestinationRegionForImport? Signed32 -
- OriginCountryForExport? string -
- OriginRegionForExport? Signed32 -
- ItemType? BoDocItemType - OData EnumType 'BoDocItemType'. Serialised by the Service Layer as the member name
- ChangeInventoryQuantityIndependently? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- FreeOfChargeBP? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- SACEntry? Signed32 -
- HSNEntry? Signed32 -
- GrossPrice? decimal -
- GrossTotal? decimal -
- GrossTotalFC? decimal -
- GrossTotalSC? decimal -
- NCMCode? Signed32 -
- NVECode? string -
- IndEscala? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- CtrSealQty? decimal -
- CNJPMan? string -
- CESTCode? Signed32 -
- UFFiscalBenefitCode? string -
- ReverseCharge? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ShipToCode? string -
- ShipToDescription? string -
- ShipFromCode? string -
- ShipFromDescription? string -
- OwnerCode? Signed32 -
- ExternalCalcTaxRate? decimal -
- ExternalCalcTaxAmount? decimal -
- ExternalCalcTaxAmountFC? decimal -
- ExternalCalcTaxAmountSC? decimal -
- StandardItemIdentification? Signed32 -
- CommodityClassification? Signed32 -
- WeightOfRecycledPlastic? decimal -
- PlasticPackageExemptionReason? string -
- LegalText? string -
- Cig? Signed32 -
- Cup? Signed32 -
- OperatingProfit? decimal -
- OperatingProfitFC? decimal -
- OperatingProfitSC? decimal -
- NetIncome? decimal -
- NetIncomeFC? decimal -
- NetIncomeSC? decimal -
- CSTforIBS? string -
- CSTforCBS? string -
- CSTforIS? string -
- UnencumberedReason? Signed32 -
- CUSplit? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ListNum? Signed32 -
- RecognizedTaxCode? string -
- LineTaxJurisdictions? LineTaxJurisdiction[] -
- GeneratedAssets? GeneratedAsset[] -
- EBooksDetails? EBooksDetail[] -
- DocLinePickLists? DocLinePickList[] -
- DocumentLineAdditionalExpenses? DocumentLineAdditionalExpense[] -
- WithholdingTaxLines? WithholdingTaxLine[] -
- SerialNumbers? SerialNumber[] -
- BatchNumbers? BatchNumber[] -
- DocumentLinesBinAllocations? DocumentLinesBinAllocation[] -
- ExportProcesses? ExportProcess[] -
- CCDNumbers? CCDNumber[] -
- ImportProcesses? ImportProcess[] -
sap.businessone.purchasing: DocumentLineAdditionalExpense
The DocumentLineAdditionalExpense complex type of the SAP Business One Service Layer
Fields
- LineNumber? Signed32 -
- GroupCode? Signed32 -
- ExpenseCode? Signed32 -
- LineTotal? decimal -
- LineTotalFC? decimal -
- LineTotalSys? decimal -
- PaidToDate? decimal -
- PaidToDateFC? decimal -
- PaidToDateSys? decimal -
- TaxLiable? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- VatGroup? string -
- TaxPercent? decimal -
- TaxSum? decimal -
- TaxSumFC? decimal -
- TaxSumSys? decimal -
- DeductibleTaxSum? decimal -
- DeductibleTaxSumFC? decimal -
- DeductibleTaxSumSys? decimal -
- AquisitionTax? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- TaxCode? string -
- TaxType? BoAdEpnsTaxTypes - OData EnumType 'BoAdEpnsTaxTypes'. Serialised by the Service Layer as the member name
- TaxPaid? decimal -
- TaxPaidFC? decimal -
- TaxPaidSys? decimal -
- EqualizationTaxPercent? decimal -
- EqualizationTaxSum? decimal -
- EqualizationTaxFC? decimal -
- EqualizationTaxSys? decimal -
- TaxTotalSum? decimal -
- TaxTotalSumFC? decimal -
- TaxTotalSumSys? decimal -
- WTLiable? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- BaseGroup? Signed32 -
- DistributionRule? string -
- Project? string -
- DistributionRule2? string -
- DistributionRule3? string -
- DistributionRule4? string -
- DistributionRule5? string -
- ExternalCalcTaxRate? decimal -
- ExternalCalcTaxAmount? decimal -
- ExternalCalcTaxAmountFC? decimal -
- ExternalCalcTaxAmountSC? decimal -
- CUSplit? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- DocFreight? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- LineExpenseTaxJurisdictions? LineExpenseTaxJurisdiction[] -
- LineFreightEBooksDetails? LineFreightEBooksDetail[] -
sap.businessone.purchasing: DocumentLinesBinAllocation
The DocumentLinesBinAllocation complex type of the SAP Business One Service Layer
Fields
- BinAbsEntry? Signed32 -
- Quantity? decimal -
- AllowNegativeQuantity? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- SerialAndBatchNumbersBaseLine? Signed32 -
- BaseLineNumber? Signed32 -
sap.businessone.purchasing: DocumentPackage
The DocumentPackage complex type of the SAP Business One Service Layer
Fields
- Number? Signed32 -
- Type? string -
- TotalWeight? decimal -
- Units? Signed32 -
- DocumentPackageItems? DocumentPackageItem[] -
sap.businessone.purchasing: DocumentPackageItem
The DocumentPackageItem complex type of the SAP Business One Service Layer
Fields
- PackageNumber? Signed32 -
- ItemCode? string -
- Quantity? decimal -
- UoMEntry? Signed32 -
- MeasureUnit? string -
- UnitsOfMeasurement? decimal -
sap.businessone.purchasing: DocumentReference
The DocumentReference complex type of the SAP Business One Service Layer
Fields
- docEntry? Signed32 -
- issueDate? string -
- issuerCode? string -
- extDocNum? string -
- lineNumber? Signed32 -
- refDocEntr? Signed32 -
- remark? string -
- refDocNum? Signed32 -
- issuerCNPJ? string -
- series? string -
- number? Signed32 -
- subSeries? string -
- linkRefTyp? LinkReferenceTypeEnum -
- refAmount? decimal -
- model? string -
- accessKey? string -
- refAccKey? string -
- refObjType? ReferencedObjectTypeEnum -
sap.businessone.purchasing: DocumentSpecialLine
The DocumentSpecialLine complex type of the SAP Business One Service Layer
Fields
- subtotalSC? decimal -
- grossTotalFC? decimal -
- freight1? decimal -
- freight2? decimal -
- freight3SC? decimal -
- taxAmountSC? decimal -
- subtotal? decimal -
- freight3FC? decimal -
- freight2FC? decimal -
- orderNumber? Signed32 -
- afterLineNumber? Signed32 -
- freight1FC? decimal -
- grossTotalSC? decimal -
- lineNum? Signed32 -
- lineText? string -
- taxAmount? decimal -
- taxAmountFC? decimal -
- subtotalFC? decimal -
- grossTotal? decimal -
- freight2SC? decimal -
- freight3? decimal -
- freight1SC? decimal -
- lineType? BoDocSpecialLineType -
sap.businessone.purchasing: DownPaymentToDraw
The DownPaymentToDraw complex type of the SAP Business One Service Layer
Fields
- taxFC? decimal -
- grossAmountToDraw? decimal -
- docEntry? Signed32 -
- grossAmountToDrawSC? decimal -
- tax? decimal -
- amountToDrawSC? decimal -
- rowNum? Signed32 -
- name? string -
- docInternalID? Signed32 -
- isGrossLine? BoYesNoEnum -
- details? string -
- postingDate? string -
- amountToDraw? decimal -
- taxSC? decimal -
- downPaymentType? DownPaymentTypeEnum -
- docNumber? Signed32 -
- grossAmountToDrawFC? decimal -
- downPaymentsToDrawDetails? DownPaymentToDrawDetails[] -
- dueDate? string -
- amountToDrawFC? decimal -
sap.businessone.purchasing: DownPaymentToDrawDetails
The DownPaymentToDrawDetails complex type of the SAP Business One Service Layer
Fields
- seqNum? Signed32 -
- vatGroupCode? string -
- taxFC? decimal -
- grossAmountToDraw? decimal -
- docEntry? Signed32 -
- grossAmountToDrawSC? decimal -
- tax? decimal -
- taxAdjust? BoYesNoEnum -
- rowNum? Signed32 -
- amountToDrawSC? decimal -
- docInternalID? Signed32 -
- isGrossLine? BoYesNoEnum -
- amountToDraw? decimal -
- taxSC? decimal -
- grossAmountToDrawFC? decimal -
- lineType? LineTypeEnum -
- vatPercent? decimal -
- amountToDrawFC? decimal -
sap.businessone.purchasing: EBooksDetail
The EBooksDetail complex type of the SAP Business One Service Layer
Fields
- IncomeClassificationType? Signed32 -
- IncomeClassificationCategory? Signed32 -
- ExpensesClassificationType? Signed32 -
- ExpensesClassificationCategory? Signed32 -
- NetValueLC? decimal -
- NetValueFC? decimal -
- NetValueSC? decimal -
- VatCategory? Signed32 -
- WithheldPercentCategory? Signed32 -
- WithheldAmountLC? decimal -
- WithheldAmountFC? decimal -
- WithheldAmountSC? decimal -
- VatClassificationType? Signed32 -
- VatClassificationCategory? Signed32 -
- VATExemptionCause? Signed32 -
- RecType? Signed32 -
- StampDutyCategory? Signed32 -
- OtherTaxesCategory? Signed32 -
- FeesCategory? Signed32 -
sap.businessone.purchasing: EDeliveryInfo
The EDeliveryInfo complex type of the SAP Business One Service Layer
Fields
- vehicleNo? string -
- docEntry? Signed32 -
- moveType? Signed32 -
sap.businessone.purchasing: ElectronicProtocol
The ElectronicProtocol complex type of the SAP Business One Service Layer
Fields
- ProtocolCode? ElectronicDocProtocolCodeEnum - OData EnumType 'ElectronicDocProtocolCodeEnum'. Serialised by the Service Layer as the member name
- GenerationType? ElectronicDocGenTypeEnum - OData EnumType 'ElectronicDocGenTypeEnum'. Serialised by the Service Layer as the member name
- MappingID? Signed32 -
- TestingMode? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Confirmation? string -
- EDocType? Signed32 -
- CFDiCancellationReason? string -
- CFDiCancellationResponse? string -
- RelatedDocuments? RelatedDocument[] -
- EBooksRelevant? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- EBooksMARK? string -
- EBooksMARKofNegative? string -
- EBooksInvoiceType? string -
- EBooksInvoiceTypeofNegative? string -
- EBillingIRN? string -
- EETPKP? string -
- EETBKP? string -
- SignatureInputMessage? string -
- SignatureDigest? string -
- FechaTimbrado? string -
- SelloSAT? string -
- PaymentMethod? string -
- RfcProvCertif? string -
- NoCertificadoSAT? string -
- FPASequenceNumber? Signed32 -
- FPASendDateSDI? string -
- FPAProgressivo? string -
- ProtocolDescription? string -
- CFDiExport? string -
- EBillingAckNo? string -
- EBillingAckDt? string -
- EBillingSignedInvoice? string -
- EBillingSignedQRCode? string -
- EBillingResponseStatus? string -
- CFDiCancellationReference? string -
- EBooksQRCodePath? string -
- EBooksQRCodePathofNegative? string -
- CartaPorteID? string -
- EBooksDispatchDate? string -
- EBooksDispatchTime? string -
sap.businessone.purchasing: EWayBillDetails
The EWayBillDetails complex type of the SAP Business One Service Layer
Fields
- billFromName? string -
- shipToStateGSTCode? string -
- transactionType? EWBTransactionTypeEnum -
- vehicleNo? string -
- eWayBillExpirationDate? string -
- dispatchFromAddress1? string -
- transporterName? string -
- billFromGSTIN? string -
- dispatchFromAddress2? string -
- dispatchFromZipCode? string -
- transporterID? string -
- billToName? string -
- supplyType? EWBSupplyTypeEnum -
- mainHSNEntry? Signed32 -
- shipToAddress2? string -
- shipToAddress1? string -
- distance? decimal -
- dispatchFromPlace? string -
- subType? Signed32 -
- shipToZipCode? string -
- transportationMode? Signed32 -
- transporterDocDate? string -
- vehicleType? string -
- transporterEntry? Signed32 -
- docEntry? Signed32 -
- documentType? string -
- billFromStateGSTCode? string -
- dispatchFromStateGSTCode? string -
- transporterDocNo? string -
- shipToPlace? string -
- billToGSTIN? string -
- transporterLineNumber? Signed32 -
- eWayBillNo? string -
- billToStateGSTCode? string -
- eWayBillDate? string -
sap.businessone.purchasing: ExportProcess
The ExportProcess complex type of the SAP Business One Service Layer
Fields
- ladingBillTypeCode? Signed32 -
- quantityOfExportedItems? decimal -
- exportationNatureCode? Signed32 -
- ladingBillDate? string -
- natureOfExport? string -
- ladingBillNumber? string -
- lineNumber? Signed32 -
- exportationRegistryNumber? Signed32 -
- additionalItemSequentialNumber? Signed32 -
- exportationDeclarationDate? string -
- drawbackSuspensionRegime? string -
- merchandiseLeftCustomsDate? string -
- exportationDocumentTypeCode? Signed32 -
- exportationRegistryDate? string -
- exportationDeclarationNumber? Signed32 -
sap.businessone.purchasing: GeneratedAsset
The GeneratedAsset complex type of the SAP Business One Service Layer
Fields
- status? GeneratedAssetStatusEnum -
- amount? decimal -
- serialNumber? string -
- remarks? string -
- docEntry? Signed32 -
- assetCode? string -
- lineNumber? Signed32 -
- visualOrder? Signed32 -
- amountSC? decimal -
sap.businessone.purchasing: GetCorrectionPurchaseInvoiceQueries
Represents the Queries record for the operation: getCorrectionPurchaseInvoice
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.purchasing: GetCorrectionPurchaseInvoiceReversalQueries
Represents the Queries record for the operation: getCorrectionPurchaseInvoiceReversal
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.purchasing: GetGoodsReturnRequestQueries
Represents the Queries record for the operation: getGoodsReturnRequest
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.purchasing: GetLandedCostsCodesQueries
Represents the Queries record for the operation: getLandedCostsCodes
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.purchasing: GetLandedCostsQueries
Represents the Queries record for the operation: getLandedCosts
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.purchasing: GetPurchaseCreditNotesQueries
Represents the Queries record for the operation: getPurchaseCreditNotes
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.purchasing: GetPurchaseDeliveryNotesQueries
Represents the Queries record for the operation: getPurchaseDeliveryNotes
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.purchasing: GetPurchaseDownPaymentsQueries
Represents the Queries record for the operation: getPurchaseDownPayments
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.purchasing: GetPurchaseInvoicesQueries
Represents the Queries record for the operation: getPurchaseInvoices
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.purchasing: GetPurchaseOrdersQueries
Represents the Queries record for the operation: getPurchaseOrders
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.purchasing: GetPurchaseQuotationsQueries
Represents the Queries record for the operation: getPurchaseQuotations
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.purchasing: GetPurchaseRequestsQueries
Represents the Queries record for the operation: getPurchaseRequests
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.purchasing: GetPurchaseReturnsQueries
Represents the Queries record for the operation: getPurchaseReturns
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.purchasing: GetPurchaseTaxInvoicesQueries
Represents the Queries record for the operation: getPurchaseTaxInvoices
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.purchasing: GoodsReturnRequestCollectionResponse
A paged collection of GoodsReturnRequest entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? Document[] -
- odataNextLink? string -
sap.businessone.purchasing: GoodsReturnRequestService_ApproveAndAdd_body
Represents the request payload for the GoodsReturnRequestService_ApproveAndAdd operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.purchasing: GoodsReturnRequestService_ApproveAndUpdate_body
Represents the request payload for the GoodsReturnRequestService_ApproveAndUpdate operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.purchasing: GoodsReturnRequestService_CloseByDate_body
Represents the request payload for the GoodsReturnRequestService_CloseByDate operation of the SAP Business One Service Layer
Fields
- documentCloseParams? DocumentCloseParams -
sap.businessone.purchasing: GoodsReturnRequestService_ExportEWayBill_body
Represents the request payload for the GoodsReturnRequestService_ExportEWayBill operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.purchasing: GoodsReturnRequestService_GetApprovalTemplates_body
Represents the request payload for the GoodsReturnRequestService_GetApprovalTemplates operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.purchasing: ImportProcess
The ImportProcess complex type of the SAP Business One Service Layer
Fields
- dateOfRegistryDIDSIDA? string -
- importationDocumentNumber? string -
- customsClearanceDate? string -
- additionalItemSequentialNumber? Signed32 -
- drawbackSuspensionRegime? string -
- typeOfImport? string -
- additionalFreightToNavyAuthority? decimal -
- drawbackRegimeConcessionAccountNumber? string -
- importationDocumentTypeCode? string -
- additionalNumber? string -
- additionalItemDiscountValue? decimal -
- lineNumber? Signed32 -
sap.businessone.purchasing: inline_response_200
Represents the response payload for the LandedCostsService_GetLandedCostList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? LandedCostParams[] -
sap.businessone.purchasing: LandedCost
The LandedCost entity of the SAP Business One Service Layer
Fields
- DocEntry? Signed32 -
- LandedCostNumber? Signed32 -
- PostingDate? string -
- DueDate? string -
- VendorCode? string -
- VendorName? string -
- Broker? string -
- BrokerName? string -
- ClosedDocument? LandedCostDocStatusEnum - OData EnumType 'LandedCostDocStatusEnum'. Serialised by the Service Layer as the member name
- FileNumber? string -
- Remarks? string -
- Reference? string -
- DocumentCurrency? string -
- DocumentRate? decimal -
- ProjectedCustoms? decimal -
- ActualCustoms? decimal -
- ActualCustomsFC? decimal -
- Tax1? decimal -
- Tax2? decimal -
- BeforeTax? decimal -
- Total? decimal -
- TotalFreightCharges? decimal -
- ProjectedCustomsFC? decimal -
- Tax1FC? decimal -
- Tax2FC? decimal -
- BeforeTaxFC? decimal -
- TotalFC? decimal -
- TotalFreightChargesFC? decimal -
- Series? Signed32 -
- CustomsAffectsInventory? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- AmountToBalance? decimal -
- AmountToBalanceFC? decimal -
- BillofLadingNumber? string -
- TransportType? Signed32 -
- TransactionNumber? Signed32 -
- JournalRemarks? string -
- AttachmentEntry? Signed32 -
- LandedCost_ItemLines? LandedCostItemLine[] -
- LandedCost_CostLines? LandedCostCostLine[] -
- PurchaseDeliveryNotes? Document[] -
sap.businessone.purchasing: LandedCostCostLine
The LandedCost_CostLine complex type of the SAP Business One Service Layer
Fields
- DocEntry? Signed32 -
- LandedCostCode? string -
- AllocationBy? LandedCostAllocationByEnum - OData EnumType 'LandedCostAllocationByEnum'. Serialised by the Service Layer as the member name
- Amount? decimal -
- AmountFC? decimal -
- Factor? decimal -
- CostType? LCCostTypeEnum - OData EnumType 'LCCostTypeEnum'. Serialised by the Service Layer as the member name
- IncludeForCustoms? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- OpenAmount? decimal -
- OpenAmountFC? decimal -
- Broker? string -
- BrokerName? string -
- CostCategory? LandedCostCostCategoryEnum - OData EnumType 'LandedCostCostCategoryEnum'. Serialised by the Service Layer as the member name
sap.businessone.purchasing: LandedCostItemLine
The LandedCost_ItemLine complex type of the SAP Business One Service Layer
Fields
- DocEntry? Signed32 -
- LineNumber? Signed32 -
- BaseDocumentType? LandedCostBaseDocumentTypeEnum - OData EnumType 'LandedCostBaseDocumentTypeEnum'. Serialised by the Service Layer as the member name
- BaseEntry? Signed32 -
- Number? string -
- ItemDescription? string -
- Quantity? decimal -
- BaseDocumentPrice? decimal -
- Rate? decimal -
- ProjectedCustoms? decimal -
- ProjectedCustomsFC? decimal -
- Expenditure? decimal -
- ExpenditureFC? decimal -
- WarehousePrice? decimal -
- WarehousePriceFC? decimal -
- LineTotal? decimal -
- LineTotalFC? decimal -
- Volume? decimal -
- VolumeUoM? Signed32 -
- Weight1? decimal -
- Weight1UnitCode? Signed32 -
- Weight2? decimal -
- Weight2UnitCode? Signed32 -
- VendorCode? string -
- Reference? string -
- FactorWithoutCustoms? decimal -
- FactorWithCustoms? decimal -
- InventoryUoM? string -
- BlockNumber? string -
- ImportLog? string -
- OriginalWarehouse? string -
- Warehouse? string -
- ReleaseNumber? Signed32 -
- VariantCosts? decimal -
- FixCosts? decimal -
- VariantCostsFC? decimal -
- FixCostsFC? decimal -
- Customs? decimal -
- CustomsFC? decimal -
- BaseDocumentValueLineTotal? decimal -
- BaseDocumentValueLineTotalFC? decimal -
- AllocatedUnitCostsLineTotal? decimal -
- AllocatedUnitCostsLineTotalFC? decimal -
- CustomsValue? decimal -
- CustomsValueFC? decimal -
- TotalCosts? decimal -
- TotalCostsFC? decimal -
- TotalVolume? decimal -
- BaseLine? Signed32 -
- TotalLineProjectedCustoms? decimal -
- AllocatedCostsLineTotal? decimal -
- FOBandIncludedCosts? decimal -
- FOBandIncludedCostsFC? decimal -
- Project? string -
- DistributionRule? string -
- DistributionRule2? string -
- DistributionRule3? string -
- DistributionRule4? string -
- DistributionRule5? string -
- PriceList? Signed32 -
- AutomaticExpenditure? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- InventoryValuation? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- OriginLine? Signed32 -
- Currency? string -
- CustomsGroupRate? decimal -
- VatGroup? string -
- VatPercent? decimal -
- ExciseSum? decimal -
- ExciseSumFC? decimal -
- ExciseAffectStock? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- CustomsCost? decimal -
- CustomsCostFC? decimal -
- CustomsAffectStock? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- CustomsVat? decimal -
- CustomsVatFC? decimal -
- CustomsVatAffectStock? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- CCDNumber? string -
- CorrectedBaseDocumentValue? decimal -
- CorrectedBaseDocumentValueFC? decimal -
sap.businessone.purchasing: LandedCostParams
The LandedCostParams complex type of the SAP Business One Service Layer
Fields
- docEntry? Signed32 -
sap.businessone.purchasing: LandedCostsCode
The LandedCostsCode entity of the SAP Business One Service Layer
Fields
- Code? string -
- Name? string -
- AllocationBy? BoAllocationByEnum - OData EnumType 'BoAllocationByEnum'. Serialised by the Service Layer as the member name
- LandedCostsAllocationAccount? string -
sap.businessone.purchasing: LandedCostsCodesCollectionResponse
A paged collection of LandedCostsCodes entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? LandedCostsCode[] -
- odataNextLink? string -
sap.businessone.purchasing: LandedCostsCollectionResponse
A paged collection of LandedCosts entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? LandedCost[] -
- odataNextLink? string -
sap.businessone.purchasing: LineExpenseTaxJurisdiction
The LineExpenseTaxJurisdiction complex type of the SAP Business One Service Layer
Fields
- JurisdictionCode? string -
- JurisdictionType? Signed32 -
- TaxAmount? decimal -
- TaxAmountSC? decimal -
- TaxAmountFC? decimal -
- TaxRate? decimal -
- DocEntry? Signed32 -
- LineNumber? Signed32 -
- RowSequence? Signed32 -
- ExternalCalcTaxRate? decimal -
- ExternalCalcTaxAmount? decimal -
- ExternalCalcTaxAmountFC? decimal -
- ExternalCalcTaxAmountSC? decimal -
sap.businessone.purchasing: LineFreightEBooksDetail
The LineFreightEBooksDetail complex type of the SAP Business One Service Layer
Fields
- IncomeClassificationType? Signed32 -
- IncomeClassificationCategory? Signed32 -
- ExpensesClassificationType? Signed32 -
- ExpensesClassificationCategory? Signed32 -
- NetValueLC? decimal -
- NetValueFC? decimal -
- NetValueSC? decimal -
- VatCategory? Signed32 -
- WithheldPercentCategory? Signed32 -
- WithheldAmountLC? decimal -
- WithheldAmountFC? decimal -
- WithheldAmountSC? decimal -
- VatClassificationType? Signed32 -
- VatClassificationCategory? Signed32 -
- VATExemptionCause? Signed32 -
sap.businessone.purchasing: LineTaxJurisdiction
The LineTaxJurisdiction complex type of the SAP Business One Service Layer
Fields
- JurisdictionCode? string -
- JurisdictionType? Signed32 -
- TaxAmount? decimal -
- TaxAmountSC? decimal -
- TaxAmountFC? decimal -
- TaxRate? decimal -
- DocEntry? Signed32 -
- LineNumber? Signed32 -
- RowSequence? Signed32 -
- ExternalCalcTaxRate? decimal -
- ExternalCalcTaxAmount? decimal -
- ExternalCalcTaxAmountFC? decimal -
- ExternalCalcTaxAmountSC? decimal -
- BaseSum? decimal -
- TaxInPrice? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- NonDeductiblePercent? decimal -
- TaxOnReserveInvoice? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Exempt? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Unencumbered? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
sap.businessone.purchasing: ListCorrectionPurchaseInvoiceHeaders
Represents the Headers record for the operation: listCorrectionPurchaseInvoice
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.purchasing: ListCorrectionPurchaseInvoiceQueries
Represents the Queries record for the operation: listCorrectionPurchaseInvoice
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.purchasing: ListCorrectionPurchaseInvoiceReversalHeaders
Represents the Headers record for the operation: listCorrectionPurchaseInvoiceReversal
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.purchasing: ListCorrectionPurchaseInvoiceReversalQueries
Represents the Queries record for the operation: listCorrectionPurchaseInvoiceReversal
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.purchasing: ListGoodsReturnRequestHeaders
Represents the Headers record for the operation: listGoodsReturnRequest
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.purchasing: ListGoodsReturnRequestQueries
Represents the Queries record for the operation: listGoodsReturnRequest
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.purchasing: ListLandedCostsCodesHeaders
Represents the Headers record for the operation: listLandedCostsCodes
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.purchasing: ListLandedCostsCodesQueries
Represents the Queries record for the operation: listLandedCostsCodes
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.purchasing: ListLandedCostsHeaders
Represents the Headers record for the operation: listLandedCosts
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.purchasing: ListLandedCostsQueries
Represents the Queries record for the operation: listLandedCosts
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.purchasing: ListPurchaseCreditNotesHeaders
Represents the Headers record for the operation: listPurchaseCreditNotes
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.purchasing: ListPurchaseCreditNotesQueries
Represents the Queries record for the operation: listPurchaseCreditNotes
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.purchasing: ListPurchaseDeliveryNotesHeaders
Represents the Headers record for the operation: listPurchaseDeliveryNotes
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.purchasing: ListPurchaseDeliveryNotesQueries
Represents the Queries record for the operation: listPurchaseDeliveryNotes
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.purchasing: ListPurchaseDownPaymentsHeaders
Represents the Headers record for the operation: listPurchaseDownPayments
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.purchasing: ListPurchaseDownPaymentsQueries
Represents the Queries record for the operation: listPurchaseDownPayments
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.purchasing: ListPurchaseInvoicesHeaders
Represents the Headers record for the operation: listPurchaseInvoices
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.purchasing: ListPurchaseInvoicesQueries
Represents the Queries record for the operation: listPurchaseInvoices
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.purchasing: ListPurchaseOrdersHeaders
Represents the Headers record for the operation: listPurchaseOrders
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.purchasing: ListPurchaseOrdersQueries
Represents the Queries record for the operation: listPurchaseOrders
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.purchasing: ListPurchaseQuotationsHeaders
Represents the Headers record for the operation: listPurchaseQuotations
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.purchasing: ListPurchaseQuotationsQueries
Represents the Queries record for the operation: listPurchaseQuotations
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.purchasing: ListPurchaseRequestsHeaders
Represents the Headers record for the operation: listPurchaseRequests
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.purchasing: ListPurchaseRequestsQueries
Represents the Queries record for the operation: listPurchaseRequests
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.purchasing: ListPurchaseReturnsHeaders
Represents the Headers record for the operation: listPurchaseReturns
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.purchasing: ListPurchaseReturnsQueries
Represents the Queries record for the operation: listPurchaseReturns
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.purchasing: ListPurchaseTaxInvoicesHeaders
Represents the Headers record for the operation: listPurchaseTaxInvoices
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.purchasing: ListPurchaseTaxInvoicesQueries
Represents the Queries record for the operation: listPurchaseTaxInvoices
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.purchasing: PurchaseCreditNotesCollectionResponse
A paged collection of PurchaseCreditNotes entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? Document[] -
- odataNextLink? string -
sap.businessone.purchasing: PurchaseCreditNotesService_ApproveAndAdd_body
Represents the request payload for the PurchaseCreditNotesService_ApproveAndAdd operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.purchasing: PurchaseCreditNotesService_ApproveAndUpdate_body
Represents the request payload for the PurchaseCreditNotesService_ApproveAndUpdate operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.purchasing: PurchaseCreditNotesService_Cancel2_body
Represents the request payload for the PurchaseCreditNotesService_Cancel2 operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.purchasing: PurchaseCreditNotesService_CloseByDate_body
Represents the request payload for the PurchaseCreditNotesService_CloseByDate operation of the SAP Business One Service Layer
Fields
- documentCloseParams? DocumentCloseParams -
sap.businessone.purchasing: PurchaseCreditNotesService_ExportEWayBill_body
Represents the request payload for the PurchaseCreditNotesService_ExportEWayBill operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.purchasing: PurchaseCreditNotesService_GetApprovalTemplates_body
Represents the request payload for the PurchaseCreditNotesService_GetApprovalTemplates operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.purchasing: PurchaseDeliveryNotesCollectionResponse
A paged collection of PurchaseDeliveryNotes entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? Document[] -
- odataNextLink? string -
sap.businessone.purchasing: PurchaseDeliveryNotesService_ApproveAndAdd_body
Represents the request payload for the PurchaseDeliveryNotesService_ApproveAndAdd operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.purchasing: PurchaseDeliveryNotesService_ApproveAndUpdate_body
Represents the request payload for the PurchaseDeliveryNotesService_ApproveAndUpdate operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.purchasing: PurchaseDeliveryNotesService_Cancel2_body
Represents the request payload for the PurchaseDeliveryNotesService_Cancel2 operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.purchasing: PurchaseDeliveryNotesService_CloseByDate_body
Represents the request payload for the PurchaseDeliveryNotesService_CloseByDate operation of the SAP Business One Service Layer
Fields
- documentCloseParams? DocumentCloseParams -
sap.businessone.purchasing: PurchaseDeliveryNotesService_ExportEWayBill_body
Represents the request payload for the PurchaseDeliveryNotesService_ExportEWayBill operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.purchasing: PurchaseDeliveryNotesService_GetApprovalTemplates_body
Represents the request payload for the PurchaseDeliveryNotesService_GetApprovalTemplates operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.purchasing: PurchaseDownPaymentsCollectionResponse
A paged collection of PurchaseDownPayments entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? Document[] -
- odataNextLink? string -
sap.businessone.purchasing: PurchaseDownPaymentsService_ApproveAndAdd_body
Represents the request payload for the PurchaseDownPaymentsService_ApproveAndAdd operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.purchasing: PurchaseDownPaymentsService_ApproveAndUpdate_body
Represents the request payload for the PurchaseDownPaymentsService_ApproveAndUpdate operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.purchasing: PurchaseDownPaymentsService_CloseByDate_body
Represents the request payload for the PurchaseDownPaymentsService_CloseByDate operation of the SAP Business One Service Layer
Fields
- documentCloseParams? DocumentCloseParams -
sap.businessone.purchasing: PurchaseDownPaymentsService_ExportEWayBill_body
Represents the request payload for the PurchaseDownPaymentsService_ExportEWayBill operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.purchasing: PurchaseDownPaymentsService_GetApprovalTemplates_body
Represents the request payload for the PurchaseDownPaymentsService_GetApprovalTemplates operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.purchasing: PurchaseInvoicesCollectionResponse
A paged collection of PurchaseInvoices entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? Document[] -
- odataNextLink? string -
sap.businessone.purchasing: PurchaseInvoicesService_ApproveAndAdd_body
Represents the request payload for the PurchaseInvoicesService_ApproveAndAdd operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.purchasing: PurchaseInvoicesService_ApproveAndUpdate_body
Represents the request payload for the PurchaseInvoicesService_ApproveAndUpdate operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.purchasing: PurchaseInvoicesService_Cancel2_body
Represents the request payload for the PurchaseInvoicesService_Cancel2 operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.purchasing: PurchaseInvoicesService_CloseByDate_body
Represents the request payload for the PurchaseInvoicesService_CloseByDate operation of the SAP Business One Service Layer
Fields
- documentCloseParams? DocumentCloseParams -
sap.businessone.purchasing: PurchaseInvoicesService_ExportEWayBill_body
Represents the request payload for the PurchaseInvoicesService_ExportEWayBill operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.purchasing: PurchaseInvoicesService_GetApprovalTemplates_body
Represents the request payload for the PurchaseInvoicesService_GetApprovalTemplates operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.purchasing: PurchaseOrdersCollectionResponse
A paged collection of PurchaseOrders entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? Document[] -
- odataNextLink? string -
sap.businessone.purchasing: PurchaseOrdersService_ApproveAndAdd_body
Represents the request payload for the PurchaseOrdersService_ApproveAndAdd operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.purchasing: PurchaseOrdersService_ApproveAndUpdate_body
Represents the request payload for the PurchaseOrdersService_ApproveAndUpdate operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.purchasing: PurchaseOrdersService_CloseByDate_body
Represents the request payload for the PurchaseOrdersService_CloseByDate operation of the SAP Business One Service Layer
Fields
- documentCloseParams? DocumentCloseParams -
sap.businessone.purchasing: PurchaseOrdersService_ExportEWayBill_body
Represents the request payload for the PurchaseOrdersService_ExportEWayBill operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.purchasing: PurchaseOrdersService_GetApprovalTemplates_body
Represents the request payload for the PurchaseOrdersService_GetApprovalTemplates operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.purchasing: PurchaseQuotationsCollectionResponse
A paged collection of PurchaseQuotations entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? Document[] -
- odataNextLink? string -
sap.businessone.purchasing: PurchaseQuotationsService_ApproveAndAdd_body
Represents the request payload for the PurchaseQuotationsService_ApproveAndAdd operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.purchasing: PurchaseQuotationsService_ApproveAndUpdate_body
Represents the request payload for the PurchaseQuotationsService_ApproveAndUpdate operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.purchasing: PurchaseQuotationsService_CloseByDate_body
Represents the request payload for the PurchaseQuotationsService_CloseByDate operation of the SAP Business One Service Layer
Fields
- documentCloseParams? DocumentCloseParams -
sap.businessone.purchasing: PurchaseQuotationsService_ExportEWayBill_body
Represents the request payload for the PurchaseQuotationsService_ExportEWayBill operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.purchasing: PurchaseQuotationsService_GetApprovalTemplates_body
Represents the request payload for the PurchaseQuotationsService_GetApprovalTemplates operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.purchasing: PurchaseRequestsCollectionResponse
A paged collection of PurchaseRequests entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? Document[] -
- odataNextLink? string -
sap.businessone.purchasing: PurchaseRequestService_ApproveAndAdd_body
Represents the request payload for the PurchaseRequestService_ApproveAndAdd operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.purchasing: PurchaseRequestService_ApproveAndUpdate_body
Represents the request payload for the PurchaseRequestService_ApproveAndUpdate operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.purchasing: PurchaseRequestService_CloseByDate_body
Represents the request payload for the PurchaseRequestService_CloseByDate operation of the SAP Business One Service Layer
Fields
- documentCloseParams? DocumentCloseParams -
sap.businessone.purchasing: PurchaseRequestService_ExportEWayBill_body
Represents the request payload for the PurchaseRequestService_ExportEWayBill operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.purchasing: PurchaseRequestService_GetApprovalTemplates_body
Represents the request payload for the PurchaseRequestService_GetApprovalTemplates operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.purchasing: PurchaseReturnsCollectionResponse
A paged collection of PurchaseReturns entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? Document[] -
- odataNextLink? string -
sap.businessone.purchasing: PurchaseReturnsService_ApproveAndAdd_body
Represents the request payload for the PurchaseReturnsService_ApproveAndAdd operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.purchasing: PurchaseReturnsService_ApproveAndUpdate_body
Represents the request payload for the PurchaseReturnsService_ApproveAndUpdate operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.purchasing: PurchaseReturnsService_Cancel2_body
Represents the request payload for the PurchaseReturnsService_Cancel2 operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.purchasing: PurchaseReturnsService_CloseByDate_body
Represents the request payload for the PurchaseReturnsService_CloseByDate operation of the SAP Business One Service Layer
Fields
- documentCloseParams? DocumentCloseParams -
sap.businessone.purchasing: PurchaseReturnsService_ExportEWayBill_body
Represents the request payload for the PurchaseReturnsService_ExportEWayBill operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.purchasing: PurchaseReturnsService_GetApprovalTemplates_body
Represents the request payload for the PurchaseReturnsService_GetApprovalTemplates operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.purchasing: PurchaseTaxInvoice
The PurchaseTaxInvoice entity of the SAP Business One Service Layer
Fields
- DocEntry? Signed32 -
- DocNum? Signed32 -
- DocType? BoTaxInvoiceTypes - OData EnumType 'BoTaxInvoiceTypes'. Serialised by the Service Layer as the member name
- Printed? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- DocDate? string -
- CardCode? string -
- CreationDate? string -
- UpdateDate? string -
- DocDueDate? string -
- Series? Signed32 -
- Segment? Signed32 -
- ContactPersonCode? Signed32 -
- TaxDate? string -
- Comments? string -
- ShipToCode? string -
- Address? string -
- Address2? string -
- CurrencySource? BoCurrencySources - OData EnumType 'BoCurrencySources'. Serialised by the Service Layer as the member name
- DocCurrency? string -
- CustomerOrVendorRefNo? string -
- CustomerOrVendorName? string -
- CancelDate? string -
- DocumentTotal? decimal -
- TaxTotal? decimal -
- PaymentRefNo? string -
- PaymentRefDate? string -
- AlterationRevision? Signed32 -
- PurchaseTaxInvoiceLines? PurchaseTaxInvoiceLine[] -
- PurchaseTaxInvoiceOperationCodes? PurchaseTaxInvoiceOperationCode[] -
- PurchaseTaxInvoiceDocumentReferences? PurchaseTaxInvoiceDocumentReference[] -
- PurchaseTaxInvoiceLinkedDownPayments? PurchaseTaxInvoiceLinkedDownPayment[] -
sap.businessone.purchasing: PurchaseTaxInvoiceDocumentReference
The PurchaseTaxInvoiceDocumentReference complex type of the SAP Business One Service Layer
Fields
- DocEntry? Signed32 -
- LineNumber? Signed32 -
- ReferencedDocEntry? Signed32 -
- ReferencedDocNumber? Signed32 -
- ExternalReferencedDocNumber? string -
- ReferencedObjectType? ReferencedObjectTypeEnum - OData EnumType 'ReferencedObjectTypeEnum'. Serialised by the Service Layer as the member name
- IssueDate? string -
- Remark? string -
- CardCode? string -
sap.businessone.purchasing: PurchaseTaxInvoiceLine
The PurchaseTaxInvoiceLine complex type of the SAP Business One Service Layer
Fields
- RefEntry1? Signed32 -
- RefEntry2? Signed32 -
sap.businessone.purchasing: PurchaseTaxInvoiceLinkedDownPayment
The PurchaseTaxInvoiceLinkedDownPayment complex type of the SAP Business One Service Layer
Fields
- DocEntry? Signed32 -
- LineNum? Signed32 -
- DownPaymentType? Signed32 -
- DownPaymentEntry? Signed32 -
- DownPaymentNum? Signed32 -
- PaymentType? Signed32 -
- PaymentEntry? Signed32 -
- PaymentNum? Signed32 -
- PaymentTaxDate? string -
- TransferDate? string -
- TransferReference? string -
- AmountToDraw? decimal -
- AmountToDrawFC? decimal -
- AmountToDrawSC? decimal -
- DocCurrency? string -
sap.businessone.purchasing: PurchaseTaxInvoiceOperationCode
The PurchaseTaxInvoiceOperationCode complex type of the SAP Business One Service Layer
Fields
- OpCode? Signed32 -
sap.businessone.purchasing: PurchaseTaxInvoicesCollectionResponse
A paged collection of PurchaseTaxInvoices entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? PurchaseTaxInvoice[] -
- odataNextLink? string -
sap.businessone.purchasing: RelatedDocument
The RelatedDocument complex type of the SAP Business One Service Layer
Fields
- absEnry? Signed32 -
- absEntry? Signed32 -
- uUID? string -
- docTye? RelatedDocumentTypeEnum -
- docType? RelatedDocumentTypeEnum -
sap.businessone.purchasing: SerialNumber
The SerialNumber complex type of the SAP Business One Service Layer
Fields
- ManufacturerSerialNumber? string -
- InternalSerialNumber? string -
- ExpiryDate? string -
- ManufactureDate? string -
- ReceptionDate? string -
- WarrantyStart? string -
- WarrantyEnd? string -
- Location? string -
- Notes? string -
- BatchID? string -
- SystemSerialNumber? Signed32 -
- BaseLineNumber? Signed32 -
- Quantity? decimal -
- TrackingNote? Signed32 -
- TrackingNoteLine? Signed32 -
- ItemCode? string -
sap.businessone.purchasing: TaxExtension
The TaxExtension complex type of the SAP Business One Service Layer
Fields
- buildingS? string -
- taxId3? string -
- taxId2? string -
- taxId5? string -
- taxId4? string -
- packQuantity? Signed32 -
- taxId1? string -
- taxId0? string -
- vehicle? string -
- portCode? string -
- taxId7? string -
- buildingB? string -
- taxId6? string -
- taxId9? string -
- taxId8? string -
- carrier? string -
- shipUnitNo? Signed32 -
- streetS? string -
- differentialOfTaxRate? Signed32 -
- zipCodeS? string -
- countryB? string -
- grossWeight? decimal -
- globalLocationNumberB? string -
- packDescription? string -
- mainUsage? Signed32 -
- docEntry? Signed32 -
- brand? string -
- stateS? string -
- countryS? string -
- blockB? string -
- state? string -
- globalLocationNumberS? string -
- importOrExportType? ImportOrExportTypeEnum -
- vehicleState? string -
- blockS? string -
- stateB? string -
- cityS? string -
- county? string -
- boEValue? decimal -
- nFRef? string -
- countyB? string -
- billOfEntryNo? string -
- countyS? string -
- taxId14? string -
- taxId13? string -
- claimRefund? BoYesNoEnum -
- taxId12? string -
- netWeight? decimal -
- originalBillOfEntryDate? string -
- billOfEntryDate? string -
- zipCodeB? string -
- importOrExport? BoYesNoEnum -
- originalBillOfEntryNo? string -
- streetB? string -
- cityB? string -
- isIGSTAccount? BoYesNoEnum -
- incoterms? string -
sap.businessone.purchasing: WithholdingTaxData
The WithholdingTaxData complex type of the SAP Business One Service Layer
Fields
- WTCode? string -
- WTAmountSys? decimal -
- WTAmountFC? decimal -
- WTAmount? decimal -
- WithholdingType? string -
- TaxableAmountinSys? decimal -
- TaxableAmountFC? decimal -
- TaxableAmount? decimal -
- RoundingType? string -
- Rate? decimal -
- Criteria? string -
- Category? string -
- BaseType? string -
- AppliedWTAmountSys? decimal -
- AppliedWTAmountFC? decimal -
- AppliedWTAmount? decimal -
- GLAccount? string -
- LineNum? Signed32 -
- BaseDocEntry? Signed32 -
- BaseDocLine? Signed32 -
- BaseDocType? Signed32 -
- BaseDocumentReference? Signed32 -
- Status? BoStatus - OData EnumType 'BoStatus'. Serialised by the Service Layer as the member name
- TargetAbsEntry? Signed32 -
- TargetDocumentType? Signed32 -
sap.businessone.purchasing: WithholdingTaxDataWTX
The WithholdingTaxDataWTX complex type of the SAP Business One Service Layer
Fields
- WTAmountSys? decimal -
- WTAmountFC? decimal -
- WTAmount? decimal -
- WithholdingType? string -
- TaxableAmountinSys? decimal -
- TaxableAmountFC? decimal -
- TaxableAmount? decimal -
- Rate? decimal -
- Category? string -
- BaseType? string -
- AppliedWTAmountSys? decimal -
- AppliedWTAmountFC? decimal -
- AppliedWTAmount? decimal -
- GLAccount? string -
- LineNum? Signed32 -
- BaseDocEntry? Signed32 -
- BaseDocLine? Signed32 -
- BaseDocType? string -
- WTAbsId? string -
- ExemptRate? decimal -
- BaseNetAmountSys? decimal -
- BaseNetAmountFC? decimal -
- BaseNetAmount? decimal -
- BaseVatmountSys? decimal -
- BaseVatmountFC? decimal -
- BaseVatmount? decimal -
- AccumBaseAmountSys? decimal -
- AccumBaseAmountFC? decimal -
- AccumBaseAmount? decimal -
- AccumWTaxAmountSys? decimal -
- AccumWTaxAmountFC? decimal -
- AccumWTaxAmount? decimal -
sap.businessone.purchasing: WithholdingTaxLine
The WithholdingTaxLine complex type of the SAP Business One Service Layer
Fields
- WTCode? string -
- WTAmountSys? decimal -
- WTAmountFC? decimal -
- WTAmount? decimal -
- WithholdingType? string -
- TaxableAmountinSys? decimal -
- TaxableAmountFC? decimal -
- TaxableAmount? decimal -
- RoundingType? string -
- Rate? decimal -
- Criteria? string -
- Category? string -
- BaseType? string -
- AppliedWTAmountSys? decimal -
- AppliedWTAmountFC? decimal -
- AppliedWTAmount? decimal -
- GLAccount? string -
- LineNum? Signed32 -
- BaseDocEntry? Signed32 -
- BaseDocLine? Signed32 -
- BaseDocType? Signed32 -
- BaseDocumentReference? Signed32 -
- Status? BoStatus - OData EnumType 'BoStatus'. Serialised by the Service Layer as the member name
- TargetAbsEntry? Signed32 -
- TargetDocumentType? Signed32 -
- CSTCodeIncoming? string -
- CSTCodeOutgoing? string -
- Doc1LineNum? Signed32 -
Union types
sap.businessone.purchasing: ElectronicDocGenTypeEnum
ElectronicDocGenTypeEnum
OData EnumType 'ElectronicDocGenTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.purchasing: ClosingOptionEnum
ClosingOptionEnum
OData EnumType 'ClosingOptionEnum'. Serialised by the Service Layer as the member name
sap.businessone.purchasing: LandedCostCostCategoryEnum
LandedCostCostCategoryEnum
OData EnumType 'LandedCostCostCategoryEnum'. Serialised by the Service Layer as the member name
sap.businessone.purchasing: PrintStatusEnum
PrintStatusEnum
OData EnumType 'PrintStatusEnum'. Serialised by the Service Layer as the member name
sap.businessone.purchasing: CancelStatusEnum
CancelStatusEnum
OData EnumType 'CancelStatusEnum'. Serialised by the Service Layer as the member name
sap.businessone.purchasing: BoAdEpnsDistribMethods
BoAdEpnsDistribMethods
OData EnumType 'BoAdEpnsDistribMethods'. Serialised by the Service Layer as the member name
sap.businessone.purchasing: BoCorInvItemStatus
BoCorInvItemStatus
OData EnumType 'BoCorInvItemStatus'. Serialised by the Service Layer as the member name
sap.businessone.purchasing: BoPayTermDueTypes
BoPayTermDueTypes
OData EnumType 'BoPayTermDueTypes'. Serialised by the Service Layer as the member name
sap.businessone.purchasing: DocumentPriceSourceEnum
DocumentPriceSourceEnum
OData EnumType 'DocumentPriceSourceEnum'. Serialised by the Service Layer as the member name
sap.businessone.purchasing: LandedCostAllocationByEnum
LandedCostAllocationByEnum
OData EnumType 'LandedCostAllocationByEnum'. Serialised by the Service Layer as the member name
sap.businessone.purchasing: BoDocumentSubType
BoDocumentSubType
OData EnumType 'BoDocumentSubType'. Serialised by the Service Layer as the member name
sap.businessone.purchasing: BoDocSpecialLineType
BoDocSpecialLineType
OData EnumType 'BoDocSpecialLineType'. Serialised by the Service Layer as the member name
sap.businessone.purchasing: PriceModeDocumentEnum
PriceModeDocumentEnum
OData EnumType 'PriceModeDocumentEnum'. Serialised by the Service Layer as the member name
sap.businessone.purchasing: BoTaxTypes
BoTaxTypes
OData EnumType 'BoTaxTypes'. Serialised by the Service Layer as the member name
sap.businessone.purchasing: BoDocSummaryTypes
BoDocSummaryTypes
OData EnumType 'BoDocSummaryTypes'. Serialised by the Service Layer as the member name
sap.businessone.purchasing: DocumentAuthorizationStatusEnum
DocumentAuthorizationStatusEnum
OData EnumType 'DocumentAuthorizationStatusEnum'. Serialised by the Service Layer as the member name
sap.businessone.purchasing: BoDocumentLinePickStatus
BoDocumentLinePickStatus
OData EnumType 'BoDocumentLinePickStatus'. Serialised by the Service Layer as the member name
sap.businessone.purchasing: GSTTransactionTypeEnum
GSTTransactionTypeEnum
OData EnumType 'GSTTransactionTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.purchasing: BoSoStatus
BoSoStatus
OData EnumType 'BoSoStatus'. Serialised by the Service Layer as the member name
sap.businessone.purchasing: EDocTypeEnum
EDocTypeEnum
OData EnumType 'EDocTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.purchasing: ReferencedObjectTypeEnum
ReferencedObjectTypeEnum
OData EnumType 'ReferencedObjectTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.purchasing: BoDocLineType
BoDocLineType
OData EnumType 'BoDocLineType'. Serialised by the Service Layer as the member name
sap.businessone.purchasing: BoTransactionTypeEnum
BoTransactionTypeEnum
OData EnumType 'BoTransactionTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.purchasing: EDocStatusEnum
EDocStatusEnum
OData EnumType 'EDocStatusEnum'. Serialised by the Service Layer as the member name
sap.businessone.purchasing: BoExpenseOperationTypeEnum
BoExpenseOperationTypeEnum
OData EnumType 'BoExpenseOperationTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.purchasing: BoCurrencySources
BoCurrencySources
OData EnumType 'BoCurrencySources'. Serialised by the Service Layer as the member name
sap.businessone.purchasing: BoStatus
BoStatus
OData EnumType 'BoStatus'. Serialised by the Service Layer as the member name
sap.businessone.purchasing: LinkReferenceTypeEnum
LinkReferenceTypeEnum
OData EnumType 'LinkReferenceTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.purchasing: LandedCostBaseDocumentTypeEnum
LandedCostBaseDocumentTypeEnum
OData EnumType 'LandedCostBaseDocumentTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.purchasing: BoAdEpnsTaxTypes
BoAdEpnsTaxTypes
OData EnumType 'BoAdEpnsTaxTypes'. Serialised by the Service Layer as the member name
sap.businessone.purchasing: RelatedDocumentTypeEnum
RelatedDocumentTypeEnum
OData EnumType 'RelatedDocumentTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.purchasing: BoFatherCardTypes
BoFatherCardTypes
OData EnumType 'BoFatherCardTypes'. Serialised by the Service Layer as the member name
sap.businessone.purchasing: BoInterimDocTypes
BoInterimDocTypes
OData EnumType 'BoInterimDocTypes'. Serialised by the Service Layer as the member name
sap.businessone.purchasing: LandedCostDocStatusEnum
LandedCostDocStatusEnum
OData EnumType 'LandedCostDocStatusEnum'. Serialised by the Service Layer as the member name
sap.businessone.purchasing: DownPaymentTypeEnum
DownPaymentTypeEnum
OData EnumType 'DownPaymentTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.purchasing: BoDocWhsUpdateTypes
BoDocWhsUpdateTypes
OData EnumType 'BoDocWhsUpdateTypes'. Serialised by the Service Layer as the member name
sap.businessone.purchasing: BoYesNoEnum
BoYesNoEnum
OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
sap.businessone.purchasing: EWBSupplyTypeEnum
EWBSupplyTypeEnum
OData EnumType 'EWBSupplyTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.purchasing: LCCostTypeEnum
LCCostTypeEnum
OData EnumType 'LCCostTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.purchasing: LineTypeEnum
LineTypeEnum
OData EnumType 'LineTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.purchasing: ImportOrExportTypeEnum
ImportOrExportTypeEnum
OData EnumType 'ImportOrExportTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.purchasing: EDocGenerationTypeEnum
EDocGenerationTypeEnum
OData EnumType 'EDocGenerationTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.purchasing: FolioLetterEnum
FolioLetterEnum
OData EnumType 'FolioLetterEnum'. Serialised by the Service Layer as the member name
sap.businessone.purchasing: DocumentDeliveryTypeEnum
DocumentDeliveryTypeEnum
OData EnumType 'DocumentDeliveryTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.purchasing: CommissionTradeTypeEnum
CommissionTradeTypeEnum
OData EnumType 'CommissionTradeTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.purchasing: BoAllocationByEnum
BoAllocationByEnum
OData EnumType 'BoAllocationByEnum'. Serialised by the Service Layer as the member name
sap.businessone.purchasing: BoTaxOnInstallmentsTypeEnum
BoTaxOnInstallmentsTypeEnum
OData EnumType 'BoTaxOnInstallmentsTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.purchasing: BoDocItemType
BoDocItemType
OData EnumType 'BoDocItemType'. Serialised by the Service Layer as the member name
sap.businessone.purchasing: ElectronicDocProtocolCodeEnum
ElectronicDocProtocolCodeEnum
OData EnumType 'ElectronicDocProtocolCodeEnum'. Serialised by the Service Layer as the member name
sap.businessone.purchasing: ElecCommStatusEnum
ElecCommStatusEnum
OData EnumType 'ElecCommStatusEnum'. Serialised by the Service Layer as the member name
sap.businessone.purchasing: EWBTransactionTypeEnum
EWBTransactionTypeEnum
OData EnumType 'EWBTransactionTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.purchasing: BoObjectTypes
BoObjectTypes
OData EnumType 'BoObjectTypes'. Serialised by the Service Layer as the member name
sap.businessone.purchasing: GeneratedAssetStatusEnum
GeneratedAssetStatusEnum
OData EnumType 'GeneratedAssetStatusEnum'. Serialised by the Service Layer as the member name
sap.businessone.purchasing: BoItemTreeTypes
BoItemTreeTypes
OData EnumType 'BoItemTreeTypes'. Serialised by the Service Layer as the member name
sap.businessone.purchasing: BoTaxInvoiceTypes
BoTaxInvoiceTypes
OData EnumType 'BoTaxInvoiceTypes'. Serialised by the Service Layer as the member name
sap.businessone.purchasing: BoDocumentTypes
BoDocumentTypes
OData EnumType 'BoDocumentTypes'. Serialised by the Service Layer as the member name
Import
import ballerinax/sap.businessone.purchasing;Metadata
Released date: 13 days ago
Version: 1.0.0
License: Apache-2.0
Compatibility
Platform: any
Ballerina version: 2201.13.0
GraalVM compatible: Yes
Pull count
Total: 1
Current verison: 0
Weekly downloads
Keywords
Name/SAP Business One Purchasing
Area/ERP & Business Operations
Vendor/SAP
Cost/Paid
Type/Connector
SAP Business One
Purchasing
ERP
Contributors