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

The Service Layer endpoint follows the pattern https://<host>:50000/b1s/v1.
Quickstart
To use the sap.businessone.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 - Ship to street field
- ShipToStreetNo? string - Ship to street number field
- ShipToBlock? string - Ship to block field
- ShipToBuilding? string - Ship to building field
- ShipToCity? string - Ship to city field
- ShipToZipCode? string - Ship to zip code field
- ShipToCounty? string - Ship to county field
- ShipToState? string - Ship to state field
- ShipToCountry? string - Ship to country field
- ShipToAddressType? string - Ship to address type field
- BillToStreet? string - Bill to street field
- BillToStreetNo? string - Bill to street number field
- BillToBlock? string - Bill to block field
- BillToBuilding? string - Bill to building field
- BillToCity? string - Bill to city field
- BillToZipCode? string - Bill to zip code field
- BillToCounty? string - Bill to county field
- BillToState? string - Bill to state field
- BillToCountry? string - Bill to country field
- BillToAddressType? string - Bill to address type field
- ShipToGlobalLocationNumber? string - Ship to global location number field
- BillToGlobalLocationNumber? string - Bill to global location number field
- ShipToAddress2? string - Ship to address2 field
- ShipToAddress3? string - Ship to address3 field
- BillToAddress2? string - Bill to address2 field
- BillToAddress3? string - Bill to address3 field
- PlaceOfSupply? string - Place of supply field
- PurchasePlaceOfSupply? string - Purchase place of supply field
- DocEntry? Signed32 - Document entry field
- GoodsIssuePlaceBP? string - Goods issue place business partner field
- GoodsIssuePlaceCNPJ? string - Goods issue place CNPJ field
- GoodsIssuePlaceCPF? string - Goods issue place CPF field
- GoodsIssuePlaceStreet? string - Goods issue place street field
- GoodsIssuePlaceStreetNo? string - Goods issue place street number field
- GoodsIssuePlaceBuilding? string - Goods issue place building field
- GoodsIssuePlaceZip? string - Goods issue place zip field
- GoodsIssuePlaceBlock? string - Goods issue place block field
- GoodsIssuePlaceCity? string - Goods issue place city field
- GoodsIssuePlaceCounty? string - Goods issue place county field
- GoodsIssuePlaceState? string - Goods issue place state field
- GoodsIssuePlaceCountry? string - Goods issue place country field
- GoodsIssuePlacePhone? string - Goods issue place phone field
- GoodsIssuePlaceEMail? string - Goods issue place e mail field
- GoodsIssuePlaceDepartureDate? string - Goods issue place departure date field
- DeliveryPlaceBP? string - Delivery place business partner field
- DeliveryPlaceCNPJ? string - Delivery place CNPJ field
- DeliveryPlaceCPF? string - Delivery place CPF field
- DeliveryPlaceStreet? string - Delivery place street field
- DeliveryPlaceStreetNo? string - Delivery place street number field
- DeliveryPlaceBuilding? string - Delivery place building field
- DeliveryPlaceZip? string - Delivery place zip field
- DeliveryPlaceBlock? string - Delivery place block field
- DeliveryPlaceCity? string - Delivery place city field
- DeliveryPlaceCounty? string - Delivery place county field
- DeliveryPlaceState? string - Delivery place state field
- DeliveryPlaceCountry? string - Delivery place country field
- DeliveryPlacePhone? string - Delivery place phone field
- DeliveryPlaceEMail? string - Delivery place e mail field
- DeliveryPlaceDepartureDate? string - Delivery place departure date field
- ShipToStreetForReturn? string - Ship to street for return field
- ShipToStreetNoForReturn? string - Ship to street number for return field
- ShipToBlockForReturn? string - Ship to block for return field
- ShipToBuildingForReturn? string - Ship to building for return field
- ShipToCityForReturn? string - Ship to city for return field
- ShipToZipCodeForReturn? string - Ship to zip code for return field
- ShipToCountyForReturn? string - Ship to county for return field
- ShipToStateForReturn? string - Ship to state for return field
- ShipToCountryForReturn? string - Ship to country for return field
- ShipToAddressTypeForReturn? string - Ship to address type for return field
- ShipToGlobalLocationNumberForReturn? string - Ship to global location number for return field
- ShipToAddress2ForReturn? string - Ship to address2 for return field
- ShipToAddress3ForReturn? string - Ship to address3 for return field
sap.businessone.purchasing: BatchNumber
The BatchNumber complex type of the SAP Business One Service Layer
Fields
- BatchNumber? string - Batch number field
- ManufacturerSerialNumber? string - Manufacturer serial number field
- InternalSerialNumber? string - Internal serial number field
- ExpiryDate? string - Expiry date field
- ManufacturingDate? string - Manufacturing date field
- AddmisionDate? string - Addmision date field
- Location? string - Location field
- Notes? string - Notes field
- Quantity? decimal - Quantity field
- BaseLineNumber? Signed32 - Base line number field
- TrackingNote? Signed32 - Tracking note field
- TrackingNoteLine? Signed32 - Tracking note line field
- ItemCode? string - Item code field
- SystemSerialNumber? Signed32 - System serial number field
sap.businessone.purchasing: CCDNumber
The CCDNumber complex type of the SAP Business One Service Layer
Fields
- TrackingNote? Signed32 - Tracking note field
- TrackingNoteLine? Signed32 - Tracking note line field
- CCDNumber? string - CCD number field
- Quantity? decimal - Quantity field
- CountryOfOrigin? string - Country of origin field
- SubLineNumber? Signed32 - Sub line number field
- DocumentEntry? Signed32 - Document entry field
- BaseLineNumber? Signed32 - Base line number field
- ChildNumber? Signed32 - Child number field
sap.businessone.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 - Odata metadata field
- value? Document[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.purchasing: CorrectionPurchaseInvoiceReversalCollectionResponse
A paged collection of CorrectionPurchaseInvoiceReversal entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? Document[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.purchasing: CorrectionPurchaseInvoiceReversalService_ApproveAndAdd_body
Represents the request payload for the CorrectionPurchaseInvoiceReversalService_ApproveAndAdd operation of the SAP Business One Service Layer
Fields
- document? Document - Document field
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 - Document field
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 - Document close params field
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 - Document field
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 - Document field
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 - Document field
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 - Document field
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 - Document close params field
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 - Document field
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 - Document field
sap.businessone.purchasing: DocExpenseTaxJurisdiction
The DocExpenseTaxJurisdiction complex type of the SAP Business One Service Layer
Fields
- JurisdictionCode? string - Jurisdiction code field
- JurisdictionType? Signed32 - Jurisdiction type field
- TaxAmount? decimal - Tax amount field
- TaxAmountSC? decimal - Tax amount system currency field
- TaxAmountFC? decimal - Tax amount foreign currency field
- TaxRate? decimal - Tax rate field
- DocEntry? Signed32 - Document entry field
- LineNumber? Signed32 - Line number field
- RowSequence? Signed32 - Row sequence field
- ExternalCalcTaxRate? decimal - External calc tax rate field
- ExternalCalcTaxAmount? decimal - External calc tax amount field
- ExternalCalcTaxAmountFC? decimal - External calc tax amount foreign currency field
- ExternalCalcTaxAmountSC? decimal - External calc tax amount system currency field
sap.businessone.purchasing: DocFreightEBooksDetail
The DocFreightEBooksDetail complex type of the SAP Business One Service Layer
Fields
- IncomeClassificationType? Signed32 - Income classification type field
- IncomeClassificationCategory? Signed32 - Income classification category field
- ExpensesClassificationType? Signed32 - Expenses classification type field
- ExpensesClassificationCategory? Signed32 - Expenses classification category field
- NetValueLC? decimal - Net value local currency field
- NetValueFC? decimal - Net value foreign currency field
- NetValueSC? decimal - Net value system currency field
- VatCategory? Signed32 - VAT category field
- WithheldPercentCategory? Signed32 - Withheld percent category field
- WithheldAmountLC? decimal - Withheld amount local currency field
- WithheldAmountFC? decimal - Withheld amount foreign currency field
- WithheldAmountSC? decimal - Withheld amount system currency field
- VatClassificationType? Signed32 - VAT classification type field
- VatClassificationCategory? Signed32 - VAT classification category field
- VATExemptionCause? Signed32 - VAT exemption cause field
sap.businessone.purchasing: DocLinePickList
The DocLinePickList complex type of the SAP Business One Service Layer
Fields
- pickListLineNum? Signed32 - Pick list line number field
- pickListBatchAndBinLineNum? Signed32 - Pick list batch and bin line number field
- pickListEntry? Signed32 - Pick list entry field
sap.businessone.purchasing: Document
The Document entity of the SAP Business One Service Layer
Fields
- DocEntry? Signed32 - Document entry field
- DocNum? Signed32 - Document number field
- DocType? BoDocumentTypes - OData EnumType 'BoDocumentTypes'. Serialised by the Service Layer as the member name
- HandWritten? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Printed? PrintStatusEnum - OData EnumType 'PrintStatusEnum'. Serialised by the Service Layer as the member name
- DocDate? string - Document date field
- DocDueDate? string - Document due date field
- CardCode? string - Card code field
- CardName? string - Card name field
- Address? string - Address field
- NumAtCard? string - Number at card field
- DocTotal? decimal - Document total field
- AttachmentEntry? Signed32 - Attachment entry field
- DocCurrency? string - Document currency field
- DocRate? decimal - Document rate field
- Reference1? string - Reference1 field
- Reference2? string - Reference2 field
- Comments? string - Comments field
- JournalMemo? string - Journal memo field
- PaymentGroupCode? Signed32 - Payment group code field
- DocTime? string - Document time field
- SalesPersonCode? Signed32 - Sales person code field
- TransportationCode? Signed32 - Transportation code field
- Confirmed? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ImportFileNum? Signed32 - Import file number field
- SummeryType? BoDocSummaryTypes - OData EnumType 'BoDocSummaryTypes'. Serialised by the Service Layer as the member name
- ContactPersonCode? Signed32 - Contact person code field
- ShowSCN? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Series? Signed32 - Series field
- TaxDate? string - Tax date field
- PartialSupply? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- DocObjectCode? BoObjectTypes - OData EnumType 'BoObjectTypes'. Serialised by the Service Layer as the member name
- ShipToCode? string - Ship to code field
- Indicator? string - Indicator field
- FederalTaxID? string - Federal tax ID field
- DiscountPercent? decimal - Discount percent field
- PaymentReference? string - Payment reference field
- CreationDate? string - Creation date field
- UpdateDate? string - Update date field
- FinancialPeriod? Signed32 - Financial period field
- UserSign? Signed32 - User sign field
- TransNum? Signed32 - Trans number field
- VatSum? decimal - VAT sum field
- VatSumSys? decimal - VAT sum sys field
- VatSumFc? decimal - VAT sum foreign currency field
- NetProcedure? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- DocTotalFc? decimal - Document total foreign currency field
- DocTotalSys? decimal - Document total sys field
- Form1099? Signed32 - Form1099 field
- Box1099? string - Box1099 field
- RevisionPo? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- RequriedDate? string - Requried date field
- CancelDate? string - Cancel date field
- BlockDunning? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Submitted? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Segment? Signed32 - Segment field
- PickStatus? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Pick? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- PaymentMethod? string - Payment method field
- PaymentBlock? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- PaymentBlockEntry? Signed32 - Payment block entry field
- CentralBankIndicator? string - Central bank indicator field
- MaximumCashDiscount? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Reserve? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Project? string - Project field
- ExemptionValidityDateFrom? string - Exemption validity date from field
- ExemptionValidityDateTo? string - Exemption validity date to field
- WareHouseUpdateType? BoDocWhsUpdateTypes - OData EnumType 'BoDocWhsUpdateTypes'. Serialised by the Service Layer as the member name
- Rounding? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ExternalCorrectedDocNum? string - External corrected document number field
- InternalCorrectedDocNum? Signed32 - Internal corrected document number field
- NextCorrectingDocument? Signed32 - Next correcting document field
- DeferredTax? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- TaxExemptionLetterNum? string - Tax exemption letter number field
- WTApplied? decimal - Withholding tax applied field
- WTAppliedFC? decimal - Withholding tax applied foreign currency field
- BillOfExchangeReserved? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- AgentCode? string - Agent code field
- WTAppliedSC? decimal - Withholding tax applied system currency field
- TotalEqualizationTax? decimal - Total equalization tax field
- TotalEqualizationTaxFC? decimal - Total equalization tax foreign currency field
- TotalEqualizationTaxSC? decimal - Total equalization tax system currency field
- NumberOfInstallments? Signed32 - Number of installments field
- ApplyTaxOnFirstInstallment? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- TaxOnInstallments? BoTaxOnInstallmentsTypeEnum - OData EnumType 'BoTaxOnInstallmentsTypeEnum'. Serialised by the Service Layer as the member name
- WTNonSubjectAmount? decimal - Withholding tax non subject amount field
- WTNonSubjectAmountSC? decimal - Withholding tax non subject amount system currency field
- WTNonSubjectAmountFC? decimal - Withholding tax non subject amount foreign currency field
- WTExemptedAmount? decimal - Withholding tax exempted amount field
- WTExemptedAmountSC? decimal - Withholding tax exempted amount system currency field
- WTExemptedAmountFC? decimal - Withholding tax exempted amount foreign currency field
- BaseAmount? decimal - Base amount field
- BaseAmountSC? decimal - Base amount system currency field
- BaseAmountFC? decimal - Base amount foreign currency field
- WTAmount? decimal - Withholding tax amount field
- WTAmountSC? decimal - Withholding tax amount system currency field
- WTAmountFC? decimal - Withholding tax amount foreign currency field
- VatDate? string - VAT date field
- DocumentsOwner? Signed32 - Documents owner field
- FolioPrefixString? string - Folio prefix string field
- FolioNumber? Signed32 - Folio number field
- DocumentSubType? BoDocumentSubType - OData EnumType 'BoDocumentSubType'. Serialised by the Service Layer as the member name
- BPChannelCode? string - Business partner channel code field
- BPChannelContact? Signed32 - Business partner channel contact field
- Address2? string - Address2 field
- DocumentStatus? BoStatus - OData EnumType 'BoStatus'. Serialised by the Service Layer as the member name
- PeriodIndicator? string - Period indicator field
- PayToCode? string - Pay to code field
- ManualNumber? string - Manual number field
- UseShpdGoodsAct? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- IsPayToBank? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- PayToBankCountry? string - Pay to bank country field
- PayToBankCode? string - Pay to bank code field
- PayToBankAccountNo? string - Pay to bank account number field
- PayToBankBranch? string - Pay to bank branch field
- BPL_IDAssignedToInvoice? Signed32 - BPL ID assigned to invoice field
- DownPayment? decimal - Down payment field
- ReserveInvoice? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- LanguageCode? Signed32 - Language code field
- TrackingNumber? string - Tracking number field
- PickRemark? string - Pick remark field
- ClosingDate? string - Closing date field
- SequenceCode? Signed32 - Sequence code field
- SequenceSerial? Signed32 - Sequence serial field
- SeriesString? string - Series string field
- SubSeriesString? string - Sub series string field
- SequenceModel? string - Sequence model field
- UseCorrectionVATGroup? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- TotalDiscount? decimal - Total discount field
- DownPaymentAmount? decimal - Down payment amount field
- DownPaymentPercentage? decimal - Down payment percentage field
- DownPaymentType? DownPaymentTypeEnum - OData EnumType 'DownPaymentTypeEnum'. Serialised by the Service Layer as the member name
- DownPaymentAmountSC? decimal - Down payment amount system currency field
- DownPaymentAmountFC? decimal - Down payment amount foreign currency field
- VatPercent? decimal - VAT percent field
- ServiceGrossProfitPercent? decimal - Service gross profit percent field
- OpeningRemarks? string - Opening remarks field
- ClosingRemarks? string - Closing remarks field
- RoundingDiffAmount? decimal - Rounding diff amount field
- RoundingDiffAmountFC? decimal - Rounding diff amount foreign currency field
- RoundingDiffAmountSC? decimal - Rounding diff amount system currency field
- Cancelled? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- SignatureInputMessage? string - Signature input message field
- SignatureDigest? string - Signature digest field
- CertificationNumber? string - Certification number field
- PrivateKeyVersion? Signed32 - Private key version field
- ControlAccount? string - Control account field
- InsuranceOperation347? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ArchiveNonremovableSalesQuotation? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- GTSChecker? Signed32 - GTS checker field
- GTSPayee? Signed32 - GTS payee field
- ExtraMonth? Signed32 - Extra month field
- ExtraDays? Signed32 - Extra days field
- CashDiscountDateOffset? Signed32 - Cash discount date offset field
- StartFrom? BoPayTermDueTypes - OData EnumType 'BoPayTermDueTypes'. Serialised by the Service Layer as the member name
- NTSApproved? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ETaxWebSite? Signed32 - E tax web site field
- ETaxNumber? string - E tax number field
- NTSApprovedNumber? string - NTS approved number field
- EDocGenerationType? EDocGenerationTypeEnum - OData EnumType 'EDocGenerationTypeEnum'. Serialised by the Service Layer as the member name
- EDocSeries? Signed32 - E document series field
- EDocNum? string - E document number field
- EDocExportFormat? Signed32 - E document export format field
- EDocStatus? EDocStatusEnum - OData EnumType 'EDocStatusEnum'. Serialised by the Service Layer as the member name
- EDocErrorCode? string - E document error code field
- EDocErrorMessage? string - E document error message field
- DownPaymentStatus? BoSoStatus - OData EnumType 'BoSoStatus'. Serialised by the Service Layer as the member name
- GroupSeries? Signed32 - Group series field
- GroupNumber? Signed32 - Group number field
- GroupHandWritten? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ReopenOriginalDocument? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ReopenManuallyClosedOrCanceledDocument? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- CreateOnlineQuotation? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- POSEquipmentNumber? string - POS equipment number field
- POSManufacturerSerialNumber? string - POS manufacturer serial number field
- POSCashierNumber? Signed32 - POS cashier number field
- ApplyCurrentVATRatesForDownPaymentsToDraw? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ClosingOption? ClosingOptionEnum - OData EnumType 'ClosingOptionEnum'. Serialised by the Service Layer as the member name
- SpecifiedClosingDate? string - Specified closing date field
- OpenForLandedCosts? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- AuthorizationStatus? DocumentAuthorizationStatusEnum - OData EnumType 'DocumentAuthorizationStatusEnum'. Serialised by the Service Layer as the member name
- TotalDiscountFC? decimal - Total discount foreign currency field
- TotalDiscountSC? decimal - Total discount system currency field
- RelevantToGTS? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- BPLName? string - BPL name field
- VATRegNum? string - VAT reg number field
- AnnualInvoiceDeclarationReference? Signed32 - Annual invoice declaration reference field
- Supplier? string - Supplier field
- Releaser? Signed32 - Releaser field
- Receiver? Signed32 - Receiver field
- BlanketAgreementNumber? Signed32 - Blanket agreement number field
- IsAlteration? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- CancelStatus? CancelStatusEnum - OData EnumType 'CancelStatusEnum'. Serialised by the Service Layer as the member name
- DraftKey? Signed32 - Draft key field
- AssetValueDate? string - Asset value date field
- Requester? string - Requester field
- RequesterName? string - Requester name field
- RequesterBranch? Signed32 - Requester branch field
- RequesterDepartment? Signed32 - Requester department field
- RequesterEmail? string - Requester email field
- SendNotification? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ReqType? Signed32 - Req type field
- ReqCode? string - Req code field
- InvoicePayment? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- DocumentDelivery? DocumentDeliveryTypeEnum - OData EnumType 'DocumentDeliveryTypeEnum'. Serialised by the Service Layer as the member name
- AuthorizationCode? string - Authorization code field
- StartDeliveryDate? string - Start delivery date field
- StartDeliveryTime? string - Start delivery time field
- EndDeliveryDate? string - End delivery date field
- EndDeliveryTime? string - End delivery time field
- VehiclePlate? string - Vehicle plate field
- ATDocumentType? string - AT document type field
- ElecCommStatus? ElecCommStatusEnum - OData EnumType 'ElecCommStatusEnum'. Serialised by the Service Layer as the member name
- ElecCommMessage? string - Elec comm message field
- ReuseDocumentNum? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ReuseNotaFiscalNum? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- PrintSEPADirect? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- FiscalDocNum? string - Fiscal document number field
- POSDailySummaryNo? Signed32 - POS daily summary number field
- POSReceiptNo? Signed32 - POS receipt number field
- PointOfIssueCode? string - Point of issue code field
- Letter? FolioLetterEnum - OData EnumType 'FolioLetterEnum'. Serialised by the Service Layer as the member name
- FolioNumberFrom? Signed32 - Folio number from field
- FolioNumberTo? Signed32 - Folio number to field
- InterimType? BoInterimDocTypes - OData EnumType 'BoInterimDocTypes'. Serialised by the Service Layer as the member name
- RelatedType? Signed32 - Related type field
- RelatedEntry? Signed32 - Related entry field
- SAPPassport? string - SAP passport field
- DocumentTaxID? string - Document tax ID field
- DateOfReportingControlStatementVAT? string - Date of reporting control statement VAT field
- ReportingSectionControlStatementVAT? string - Reporting section control statement VAT field
- ExcludeFromTaxReportControlStatementVAT? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- POS_CashRegister? Signed32 - POS cash register field
- UpdateTime? string - Update time field
- CreateQRCodeFrom? string - Create QR code from field
- PriceMode? PriceModeDocumentEnum - OData EnumType 'PriceModeDocumentEnum'. Serialised by the Service Layer as the member name
- PriceListNum? Signed32 - Price list number field
- DownPaymentTrasactionID? string - Down payment trasaction ID field
- OriginalRefNo? string - Original reference number field
- OriginalRefDate? string - Original reference date field
- Revision? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- GSTTransactionType? GSTTransactionTypeEnum - OData EnumType 'GSTTransactionTypeEnum'. Serialised by the Service Layer as the member name
- OriginalCreditOrDebitNo? string - Original credit or debit number field
- OriginalCreditOrDebitDate? string - Original credit or debit date field
- ECommerceOperator? string - E commerce operator field
- ECommerceGSTIN? string - E commerce GSTIN field
- TaxInvoiceNo? string - Tax invoice number field
- TaxInvoiceDate? string - Tax invoice date field
- ShipFrom? string - Ship from field
- CommissionTrade? CommissionTradeTypeEnum - OData EnumType 'CommissionTradeTypeEnum'. Serialised by the Service Layer as the member name
- CommissionTradeReturn? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- UseBillToAddrToDetermineTax? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- IssuingReason? Signed32 - Issuing reason field
- Cig? Signed32 - Cig field
- Cup? Signed32 - Cup field
- EDocType? EDocTypeEnum - OData EnumType 'EDocTypeEnum'. Serialised by the Service Layer as the member name
- FCEAsPaymentMeans? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- PaidToDate? decimal - Paid to date field
- PaidToDateFC? decimal - Paid to date foreign currency field
- PaidToDateSys? decimal - Paid to date sys field
- FatherCard? string - Father card field
- FatherType? BoFatherCardTypes - OData EnumType 'BoFatherCardTypes'. Serialised by the Service Layer as the member name
- ShipState? string - Ship state field
- ShipPlace? string - Ship place field
- CustOffice? string - Customer office field
- FCI? string - FCI field
- AddLegIn? string - Add leg in field
- LegTextF? Signed32 - Leg text f field
- DANFELgTxt? string - DANFE lg txt field
- DataVersion? Signed32 - Data version field
- LastPageFolioNumber? Signed32 - Last page folio number field
- InventoryStatus? BoStatus - OData EnumType 'BoStatus'. Serialised by the Service Layer as the member name
- PlasticPackagingTaxRelevant? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- NotRelevantForMonthlyInvoice? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- EndAt? BoPayTermDueTypes - OData EnumType 'BoPayTermDueTypes'. Serialised by the Service Layer as the member name
- ShipToCodeForReturn? string - Ship to code for return field
- AddressForReturn? string - Address for return field
- Document_ApprovalRequests? DocumentApprovalRequest[] - Document approval requests field
- DocumentLines? DocumentLine[] - Document lines field
- EWayBillDetails? EWayBillDetails - The
EWayBillDetailscomplex type of the SAP Business One Service Layer
- EDeliveryInfo? EDeliveryInfo - The
EDeliveryInfocomplex type of the SAP Business One Service Layer
- ElectronicProtocols? ElectronicProtocol[] - Electronic protocols field
- DocumentAdditionalExpenses? DocumentAdditionalExpense[] - Document additional expenses field
- DocumentDistributedExpenses? DocumentDistributedExpense[] - Document distributed expenses field
- WithholdingTaxDataWTXCollection? WithholdingTaxDataWTX[] - Withholding tax data WTX collection field
- WithholdingTaxDataCollection? WithholdingTaxData[] - Withholding tax data collection field
- DocumentPackages? DocumentPackage[] - Document packages field
- DocumentSpecialLines? DocumentSpecialLine[] - Document special lines field
- DocumentInstallments? DocumentInstallment[] - Document installments field
- DownPaymentsToDraw? DownPaymentToDraw[] - Down payments to draw field
- TaxExtension? TaxExtension - The
TaxExtensioncomplex type of the SAP Business One Service Layer
- AddressExtension? AddressExtension - The
AddressExtensioncomplex type of the SAP Business One Service Layer
- DocumentReferences? DocumentReference[] - Document references field
- DocumentAdditionalIntrastatExpenses? DocumentAdditionalIntrastatExpense[] - Document additional intrastat expenses field
- DutyStatus? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- BaseType? Signed32 - Base type field
- BaseEntry? Signed32 - Base entry field
- IndFinal? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- AllocationNumberIL? string - Allocation number IL field
- DigitalPayToAddress? string - Digital pay to address field
- DigitalPayments? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- SirenNumber? string - Siren number field
- SiretNumber? string - Siret number field
- RoutingCode? string - Routing code field
- Suffix? string - Suffix field
- SOIWizardId? Signed32 - SOI wizard ID field
- 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 - Expense code field
- LineTotal? decimal - Line total field
- LineTotalFC? decimal - Line total foreign currency field
- LineTotalSys? decimal - Line total sys field
- PaidToDate? decimal - Paid to date field
- PaidToDateFC? decimal - Paid to date foreign currency field
- PaidToDateSys? decimal - Paid to date sys field
- Remarks? string - Remarks field
- DistributionMethod? BoAdEpnsDistribMethods - OData EnumType 'BoAdEpnsDistribMethods'. Serialised by the Service Layer as the member name
- TaxLiable? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- VatGroup? string - VAT group field
- TaxPercent? decimal - Tax percent field
- TaxSum? decimal - Tax sum field
- TaxSumFC? decimal - Tax sum foreign currency field
- TaxSumSys? decimal - Tax sum sys field
- DeductibleTaxSum? decimal - Deductible tax sum field
- DeductibleTaxSumFC? decimal - Deductible tax sum foreign currency field
- DeductibleTaxSumSys? decimal - Deductible tax sum sys field
- AquisitionTax? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- TaxCode? string - Tax code field
- TaxType? BoAdEpnsTaxTypes - OData EnumType 'BoAdEpnsTaxTypes'. Serialised by the Service Layer as the member name
- TaxPaid? decimal - Tax paid field
- TaxPaidFC? decimal - Tax paid foreign currency field
- TaxPaidSys? decimal - Tax paid sys field
- EqualizationTaxPercent? decimal - Equalization tax percent field
- EqualizationTaxSum? decimal - Equalization tax sum field
- EqualizationTaxFC? decimal - Equalization tax foreign currency field
- EqualizationTaxSys? decimal - Equalization tax sys field
- TaxTotalSum? decimal - Tax total sum field
- TaxTotalSumFC? decimal - Tax total sum foreign currency field
- TaxTotalSumSys? decimal - Tax total sum sys field
- BaseDocEntry? Signed32 - Base document entry field
- BaseDocLine? Signed32 - Base document line field
- BaseDocType? Signed32 - Base document type field
- BaseDocumentReference? Signed32 - Base document reference field
- LineNum? Signed32 - Line number field
- LastPurchasePrice? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Status? BoStatus - OData EnumType 'BoStatus'. Serialised by the Service Layer as the member name
- Stock? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- TargetAbsEntry? Signed32 - Target abs entry field
- TargetType? Signed32 - Target type field
- WTLiable? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- DistributionRule? string - Distribution rule field
- Project? string - Project field
- DistributionRule2? string - Distribution rule2 field
- DistributionRule3? string - Distribution rule3 field
- DistributionRule4? string - Distribution rule4 field
- DistributionRule5? string - Distribution rule5 field
- LineGross? decimal - Line gross field
- LineGrossSys? decimal - Line gross sys field
- LineGrossFC? decimal - Line gross foreign currency field
- ExternalCalcTaxRate? decimal - External calc tax rate field
- ExternalCalcTaxAmount? decimal - External calc tax amount field
- ExternalCalcTaxAmountFC? decimal - External calc tax amount foreign currency field
- ExternalCalcTaxAmountSC? decimal - External calc tax amount system currency field
- CUSplit? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- DocFreight? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- DocExpenseTaxJurisdictions? DocExpenseTaxJurisdiction[] - Document expense tax jurisdictions field
- DocFreightEBooksDetails? DocFreightEBooksDetail[] - Document freight e books details field
sap.businessone.purchasing: DocumentAdditionalIntrastatExpense
The DocumentAdditionalIntrastatExpense complex type of the SAP Business One Service Layer
Fields
- ExpenseCode? Signed32 - Expense code field
- LineTotal? decimal - Line total field
- LineTotalFC? decimal - Line total foreign currency field
- LineTotalSys? decimal - Line total sys field
- PaidToDate? decimal - Paid to date field
- PaidToDateFC? decimal - Paid to date foreign currency field
- PaidToDateSys? decimal - Paid to date sys field
- DistributionMethod? BoAdEpnsDistribMethods - OData EnumType 'BoAdEpnsDistribMethods'. Serialised by the Service Layer as the member name
- BaseDocEntry? Signed32 - Base document entry field
- BaseDocLine? Signed32 - Base document line field
- BaseDocType? Signed32 - Base document type field
- BaseDocumentReference? Signed32 - Base document reference field
- LineNum? Signed32 - Line number field
sap.businessone.purchasing: DocumentApprovalRequest
The Document_ApprovalRequest complex type of the SAP Business One Service Layer
Fields
- activeForUpdate? BoYesNoEnum - Active for update field
- approvalTemplatesID? Signed32 - Approval templates ID field
- remarks? string - Remarks field
- approvalTemplatesName? string - Approval templates name field
sap.businessone.purchasing: DocumentCloseParams
The DocumentCloseParams complex type of the SAP Business One Service Layer
Fields
- docEntry? Signed32 - Document entry field
- specifiedClosingDate? string - Specified closing date field
- closingOption? ClosingOptionEnum - Closing option field
sap.businessone.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 - Due date field
- Percentage? decimal - Percentage field
- Total? decimal - Total field
- LastDunningDate? string - Last dunning date field
- DunningLevel? Signed32 - Dunning level field
- TotalFC? decimal - Total foreign currency field
- InstallmentId? Signed32 - Installment ID field
- PaymentOrdered? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- PaidToDate? decimal - Paid to date field
- PaidToDateFC? decimal - Paid to date foreign currency field
sap.businessone.purchasing: DocumentLine
The DocumentLine complex type of the SAP Business One Service Layer
Fields
- LineNum? Signed32 - Line number field
- ItemCode? string - Item code field
- ItemDescription? string - Item description field
- Quantity? decimal - Quantity field
- ShipDate? string - Ship date field
- Price? decimal - Price field
- PriceAfterVAT? decimal - Price after VAT field
- Currency? string - Currency field
- Rate? decimal - Rate field
- DiscountPercent? decimal - Discount percent field
- VendorNum? string - Vendor number field
- SerialNum? string - Serial number field
- WarehouseCode? string - Warehouse code field
- SalesPersonCode? Signed32 - Sales person code field
- CommisionPercent? decimal - Commision percent field
- TreeType? BoItemTreeTypes - OData EnumType 'BoItemTreeTypes'. Serialised by the Service Layer as the member name
- AccountCode? string - Account code field
- UseBaseUnits? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- SupplierCatNum? string - Supplier cat number field
- CostingCode? string - Costing code field
- ProjectCode? string - Project code field
- BarCode? string - Bar code field
- VatGroup? string - VAT group field
- Height1? decimal - Height1 field
- Hight1Unit? Signed32 - Hight1 unit field
- Height2? decimal - Height2 field
- Height2Unit? Signed32 - Height2 unit field
- Lengh1? decimal - Lengh1 field
- Lengh1Unit? Signed32 - Lengh1 unit field
- Lengh2? decimal - Lengh2 field
- Lengh2Unit? Signed32 - Lengh2 unit field
- Weight1? decimal - Weight1 field
- Weight1Unit? Signed32 - Weight1 unit field
- Weight2? decimal - Weight2 field
- Weight2Unit? Signed32 - Weight2 unit field
- Factor1? decimal - Factor1 field
- Factor2? decimal - Factor2 field
- Factor3? decimal - Factor3 field
- Factor4? decimal - Factor4 field
- BaseType? Signed32 - Base type field
- BaseEntry? Signed32 - Base entry field
- BaseLine? Signed32 - Base line field
- Volume? decimal - Volume field
- VolumeUnit? Signed32 - Volume unit field
- Width1? decimal - Width1 field
- Width1Unit? Signed32 - Width1 unit field
- Width2? decimal - Width2 field
- Width2Unit? Signed32 - Width2 unit field
- Address? string - Address field
- TaxCode? string - Tax code field
- TaxType? BoTaxTypes - OData EnumType 'BoTaxTypes'. Serialised by the Service Layer as the member name
- TaxLiable? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- PickStatus? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- PickQuantity? decimal - Pick quantity field
- PickListIdNumber? Signed32 - Pick list ID number field
- OriginalItem? string - Original item field
- BackOrder? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- FreeText? string - Free text field
- ShippingMethod? Signed32 - Shipping method field
- POTargetNum? Signed32 - Purchase order target number field
- POTargetEntry? string - Purchase order target entry field
- POTargetRowNum? Signed32 - Purchase order target row number field
- CorrectionInvoiceItem? BoCorInvItemStatus - OData EnumType 'BoCorInvItemStatus'. Serialised by the Service Layer as the member name
- CorrInvAmountToStock? decimal - Corr inv amount to stock field
- CorrInvAmountToDiffAcct? decimal - Corr inv amount to diff account field
- AppliedTax? decimal - Applied tax field
- AppliedTaxFC? decimal - Applied tax foreign currency field
- AppliedTaxSC? decimal - Applied tax system currency field
- WTLiable? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- DeferredTax? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- EqualizationTaxPercent? decimal - Equalization tax percent field
- TotalEqualizationTax? decimal - Total equalization tax field
- TotalEqualizationTaxFC? decimal - Total equalization tax foreign currency field
- TotalEqualizationTaxSC? decimal - Total equalization tax system currency field
- NetTaxAmount? decimal - Net tax amount field
- NetTaxAmountFC? decimal - Net tax amount foreign currency field
- NetTaxAmountSC? decimal - Net tax amount system currency field
- MeasureUnit? string - Measure unit field
- UnitsOfMeasurment? decimal - Units of measurment field
- LineTotal? decimal - Line total field
- TaxPercentagePerRow? decimal - Tax percentage per row field
- TaxTotal? decimal - Tax total field
- ConsumerSalesForecast? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ExciseAmount? decimal - Excise amount field
- TaxPerUnit? decimal - Tax per unit field
- TotalInclTax? decimal - Total incl tax field
- CountryOrg? string - Country organization field
- SWW? string - SWW field
- TransactionType? BoTransactionTypeEnum - OData EnumType 'BoTransactionTypeEnum'. Serialised by the Service Layer as the member name
- DistributeExpense? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- RowTotalFC? decimal - Row total foreign currency field
- RowTotalSC? decimal - Row total system currency field
- LastBuyInmPrice? decimal - Last buy inm price field
- LastBuyDistributeSumFc? decimal - Last buy distribute sum foreign currency field
- LastBuyDistributeSumSc? decimal - Last buy distribute sum system currency field
- LastBuyDistributeSum? decimal - Last buy distribute sum field
- StockDistributesumForeign? decimal - Stock distributesum foreign field
- StockDistributesumSystem? decimal - Stock distributesum system field
- StockDistributesum? decimal - Stock distributesum field
- StockInmPrice? decimal - Stock inm price field
- PickStatusEx? BoDocumentLinePickStatus - OData EnumType 'BoDocumentLinePickStatus'. Serialised by the Service Layer as the member name
- TaxBeforeDPM? decimal - Tax before DPM field
- TaxBeforeDPMFC? decimal - Tax before DPMFC field
- TaxBeforeDPMSC? decimal - Tax before DPMSC field
- CFOPCode? string - CFOP code field
- CSTCode? string - CST code field
- Usage? Signed32 - Usage field
- TaxOnly? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- VisualOrder? Signed32 - Visual order field
- BaseOpenQuantity? decimal - Base open quantity field
- UnitPrice? decimal - Unit price field
- LineStatus? BoStatus - OData EnumType 'BoStatus'. Serialised by the Service Layer as the member name
- PackageQuantity? decimal - Package quantity field
- Text? string - Text field
- LineType? BoDocLineType - OData EnumType 'BoDocLineType'. Serialised by the Service Layer as the member name
- COGSCostingCode? string - COGS costing code field
- COGSAccountCode? string - COGS account code field
- ChangeAssemlyBoMWarehouse? string - Change assemly bo m warehouse field
- GrossBuyPrice? decimal - Gross buy price field
- GrossBase? Signed32 - Gross base field
- GrossProfitTotalBasePrice? decimal - Gross profit total base price field
- CostingCode2? string - Costing code2 field
- CostingCode3? string - Costing code3 field
- CostingCode4? string - Costing code4 field
- CostingCode5? string - Costing code5 field
- ItemDetails? string - Item details field
- LocationCode? Signed32 - Location code field
- ActualDeliveryDate? string - Actual delivery date field
- RemainingOpenQuantity? decimal - Remaining open quantity field
- OpenAmount? decimal - Open amount field
- OpenAmountFC? decimal - Open amount foreign currency field
- OpenAmountSC? decimal - Open amount system currency field
- ExLineNo? string - Ex line number field
- RequiredDate? string - Required date field
- RequiredQuantity? decimal - Required quantity field
- COGSCostingCode2? string - COGS costing code2 field
- COGSCostingCode3? string - COGS costing code3 field
- COGSCostingCode4? string - COGS costing code4 field
- COGSCostingCode5? string - COGS costing code5 field
- CSTforIPI? string - CS tfor IPI field
- CSTforPIS? string - CS tfor PIS field
- CSTforCOFINS? string - CS tfor COFINS field
- CreditOriginCode? string - Credit origin code field
- WithoutInventoryMovement? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- AgreementNo? Signed32 - Agreement number field
- AgreementRowNumber? Signed32 - Agreement row number field
- ActualBaseEntry? Signed32 - Actual base entry field
- ActualBaseLine? Signed32 - Actual base line field
- DocEntry? Signed32 - Document entry field
- Surpluses? decimal - Surpluses field
- DefectAndBreakup? decimal - Defect and breakup field
- Shortages? decimal - Shortages field
- ConsiderQuantity? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- PartialRetirement? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- RetirementQuantity? decimal - Retirement quantity field
- RetirementAPC? decimal - Retirement APC field
- ThirdParty? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- PoNum? string - Purchase order number field
- PoItmNum? Signed32 - Purchase order itm number field
- ExpenseType? string - Expense type field
- ReceiptNumber? string - Receipt number field
- ExpenseOperationType? BoExpenseOperationTypeEnum - OData EnumType 'BoExpenseOperationTypeEnum'. Serialised by the Service Layer as the member name
- FederalTaxID? string - Federal tax ID field
- GrossProfit? decimal - Gross profit field
- GrossProfitFC? decimal - Gross profit foreign currency field
- GrossProfitSC? decimal - Gross profit system currency field
- PriceSource? DocumentPriceSourceEnum - OData EnumType 'DocumentPriceSourceEnum'. Serialised by the Service Layer as the member name
- EnableReturnCost? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ReturnCost? decimal - Return cost field
- LineVendor? string - Line vendor field
- ReturnAction? Signed32 - Return action field
- ReturnReason? Signed32 - Return reason field
- StgSeqNum? Signed32 - Stg seq number field
- StgEntry? Signed32 - Stg entry field
- StgDesc? string - Stg description field
- UoMEntry? Signed32 - Uo m entry field
- UoMCode? string - Uo m code field
- InventoryQuantity? decimal - Inventory quantity field
- RemainingOpenInventoryQuantity? decimal - Remaining open inventory quantity field
- ParentLineNum? Signed32 - Parent line number field
- Incoterms? Signed32 - Incoterms field
- TransportMode? Signed32 - Transport mode field
- NatureOfTransaction? Signed32 - Nature of transaction field
- DestinationCountryForImport? string - Destination country for import field
- DestinationRegionForImport? Signed32 - Destination region for import field
- OriginCountryForExport? string - Origin country for export field
- OriginRegionForExport? Signed32 - Origin region for export field
- ItemType? BoDocItemType - OData EnumType 'BoDocItemType'. Serialised by the Service Layer as the member name
- ChangeInventoryQuantityIndependently? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- FreeOfChargeBP? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- SACEntry? Signed32 - SAC entry field
- HSNEntry? Signed32 - HSN entry field
- GrossPrice? decimal - Gross price field
- GrossTotal? decimal - Gross total field
- GrossTotalFC? decimal - Gross total foreign currency field
- GrossTotalSC? decimal - Gross total system currency field
- NCMCode? Signed32 - NCM code field
- NVECode? string - NVE code field
- IndEscala? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- CtrSealQty? decimal - Ctr seal quantity field
- CNJPMan? string - CNJP man field
- CESTCode? Signed32 - CEST code field
- UFFiscalBenefitCode? string - UF fiscal benefit code field
- ReverseCharge? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ShipToCode? string - Ship to code field
- ShipToDescription? string - Ship to description field
- ShipFromCode? string - Ship from code field
- ShipFromDescription? string - Ship from description field
- OwnerCode? Signed32 - Owner code field
- ExternalCalcTaxRate? decimal - External calc tax rate field
- ExternalCalcTaxAmount? decimal - External calc tax amount field
- ExternalCalcTaxAmountFC? decimal - External calc tax amount foreign currency field
- ExternalCalcTaxAmountSC? decimal - External calc tax amount system currency field
- StandardItemIdentification? Signed32 - Standard item identification field
- CommodityClassification? Signed32 - Commodity classification field
- WeightOfRecycledPlastic? decimal - Weight of recycled plastic field
- PlasticPackageExemptionReason? string - Plastic package exemption reason field
- LegalText? string - Legal text field
- Cig? Signed32 - Cig field
- Cup? Signed32 - Cup field
- OperatingProfit? decimal - Operating profit field
- OperatingProfitFC? decimal - Operating profit foreign currency field
- OperatingProfitSC? decimal - Operating profit system currency field
- NetIncome? decimal - Net income field
- NetIncomeFC? decimal - Net income foreign currency field
- NetIncomeSC? decimal - Net income system currency field
- CSTforIBS? string - CS tfor IBS field
- CSTforCBS? string - CS tfor CBS field
- CSTforIS? string - CS tfor IS field
- UnencumberedReason? Signed32 - Unencumbered reason field
- CUSplit? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ListNum? Signed32 - List number field
- RecognizedTaxCode? string - Recognized tax code field
- LineTaxJurisdictions? LineTaxJurisdiction[] - Line tax jurisdictions field
- GeneratedAssets? GeneratedAsset[] - Generated assets field
- EBooksDetails? EBooksDetail[] - E books details field
- DocLinePickLists? DocLinePickList[] - Document line pick lists field
- DocumentLineAdditionalExpenses? DocumentLineAdditionalExpense[] - Document line additional expenses field
- WithholdingTaxLines? WithholdingTaxLine[] - Withholding tax lines field
- SerialNumbers? SerialNumber[] - Serial numbers field
- BatchNumbers? BatchNumber[] - Batch numbers field
- DocumentLinesBinAllocations? DocumentLinesBinAllocation[] - Document lines bin allocations field
- ExportProcesses? ExportProcess[] - Export processes field
- CCDNumbers? CCDNumber[] - CCD numbers field
- ImportProcesses? ImportProcess[] - Import processes field
sap.businessone.purchasing: DocumentLineAdditionalExpense
The DocumentLineAdditionalExpense complex type of the SAP Business One Service Layer
Fields
- LineNumber? Signed32 - Line number field
- GroupCode? Signed32 - Group code field
- ExpenseCode? Signed32 - Expense code field
- LineTotal? decimal - Line total field
- LineTotalFC? decimal - Line total foreign currency field
- LineTotalSys? decimal - Line total sys field
- PaidToDate? decimal - Paid to date field
- PaidToDateFC? decimal - Paid to date foreign currency field
- PaidToDateSys? decimal - Paid to date sys field
- TaxLiable? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- VatGroup? string - VAT group field
- TaxPercent? decimal - Tax percent field
- TaxSum? decimal - Tax sum field
- TaxSumFC? decimal - Tax sum foreign currency field
- TaxSumSys? decimal - Tax sum sys field
- DeductibleTaxSum? decimal - Deductible tax sum field
- DeductibleTaxSumFC? decimal - Deductible tax sum foreign currency field
- DeductibleTaxSumSys? decimal - Deductible tax sum sys field
- AquisitionTax? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- TaxCode? string - Tax code field
- TaxType? BoAdEpnsTaxTypes - OData EnumType 'BoAdEpnsTaxTypes'. Serialised by the Service Layer as the member name
- TaxPaid? decimal - Tax paid field
- TaxPaidFC? decimal - Tax paid foreign currency field
- TaxPaidSys? decimal - Tax paid sys field
- EqualizationTaxPercent? decimal - Equalization tax percent field
- EqualizationTaxSum? decimal - Equalization tax sum field
- EqualizationTaxFC? decimal - Equalization tax foreign currency field
- EqualizationTaxSys? decimal - Equalization tax sys field
- TaxTotalSum? decimal - Tax total sum field
- TaxTotalSumFC? decimal - Tax total sum foreign currency field
- TaxTotalSumSys? decimal - Tax total sum sys field
- WTLiable? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- BaseGroup? Signed32 - Base group field
- DistributionRule? string - Distribution rule field
- Project? string - Project field
- DistributionRule2? string - Distribution rule2 field
- DistributionRule3? string - Distribution rule3 field
- DistributionRule4? string - Distribution rule4 field
- DistributionRule5? string - Distribution rule5 field
- ExternalCalcTaxRate? decimal - External calc tax rate field
- ExternalCalcTaxAmount? decimal - External calc tax amount field
- ExternalCalcTaxAmountFC? decimal - External calc tax amount foreign currency field
- ExternalCalcTaxAmountSC? decimal - External calc tax amount system currency field
- CUSplit? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- DocFreight? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- LineExpenseTaxJurisdictions? LineExpenseTaxJurisdiction[] - Line expense tax jurisdictions field
- LineFreightEBooksDetails? LineFreightEBooksDetail[] - Line freight e books details field
sap.businessone.purchasing: DocumentLinesBinAllocation
The DocumentLinesBinAllocation complex type of the SAP Business One Service Layer
Fields
- BinAbsEntry? Signed32 - Bin abs entry field
- Quantity? decimal - Quantity field
- AllowNegativeQuantity? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- SerialAndBatchNumbersBaseLine? Signed32 - Serial and batch numbers base line field
- BaseLineNumber? Signed32 - Base line number field
sap.businessone.purchasing: DocumentPackage
The DocumentPackage complex type of the SAP Business One Service Layer
Fields
- Number? Signed32 - Number field
- Type? string - Type field
- TotalWeight? decimal - Total weight field
- Units? Signed32 - Units field
- DocumentPackageItems? DocumentPackageItem[] - Document package items field
sap.businessone.purchasing: DocumentPackageItem
The DocumentPackageItem complex type of the SAP Business One Service Layer
Fields
- PackageNumber? Signed32 - Package number field
- ItemCode? string - Item code field
- Quantity? decimal - Quantity field
- UoMEntry? Signed32 - Uo m entry field
- MeasureUnit? string - Measure unit field
- UnitsOfMeasurement? decimal - Units of measurement field
sap.businessone.purchasing: DocumentReference
The DocumentReference complex type of the SAP Business One Service Layer
Fields
- docEntry? Signed32 - Document entry field
- issueDate? string - Issue date field
- issuerCode? string - Issuer code field
- extDocNum? string - Ext document number field
- lineNumber? Signed32 - Line number field
- refDocEntr? Signed32 - Reference document entr field
- remark? string - Remark field
- refDocNum? Signed32 - Reference document number field
- issuerCNPJ? string - Issuer CNPJ field
- series? string - Series field
- number? Signed32 - Number field
- subSeries? string - Sub series field
- linkRefTyp? LinkReferenceTypeEnum - Link reference typ field
- refAmount? decimal - Reference amount field
- model? string - Model field
- accessKey? string - Access key field
- refAccKey? string - Reference acc key field
- refObjType? ReferencedObjectTypeEnum - Reference obj type field
sap.businessone.purchasing: DocumentSpecialLine
The DocumentSpecialLine complex type of the SAP Business One Service Layer
Fields
- subtotalSC? decimal - Subtotal system currency field
- grossTotalFC? decimal - Gross total foreign currency field
- freight1? decimal - Freight1 field
- freight2? decimal - Freight2 field
- freight3SC? decimal - Freight3 system currency field
- taxAmountSC? decimal - Tax amount system currency field
- subtotal? decimal - Subtotal field
- freight3FC? decimal - Freight3 foreign currency field
- freight2FC? decimal - Freight2 foreign currency field
- orderNumber? Signed32 - Order number field
- afterLineNumber? Signed32 - After line number field
- freight1FC? decimal - Freight1 foreign currency field
- grossTotalSC? decimal - Gross total system currency field
- lineNum? Signed32 - Line number field
- lineText? string - Line text field
- taxAmount? decimal - Tax amount field
- taxAmountFC? decimal - Tax amount foreign currency field
- subtotalFC? decimal - Subtotal foreign currency field
- grossTotal? decimal - Gross total field
- freight2SC? decimal - Freight2 system currency field
- freight3? decimal - Freight3 field
- freight1SC? decimal - Freight1 system currency field
- lineType? BoDocSpecialLineType - Line type field
sap.businessone.purchasing: DownPaymentToDraw
The DownPaymentToDraw complex type of the SAP Business One Service Layer
Fields
- taxFC? decimal - Tax foreign currency field
- grossAmountToDraw? decimal - Gross amount to draw field
- docEntry? Signed32 - Document entry field
- grossAmountToDrawSC? decimal - Gross amount to draw system currency field
- tax? decimal - Tax field
- amountToDrawSC? decimal - Amount to draw system currency field
- rowNum? Signed32 - Row number field
- name? string - Name field
- docInternalID? Signed32 - Document internal ID field
- isGrossLine? BoYesNoEnum - Is gross line field
- details? string - Details field
- postingDate? string - Posting date field
- amountToDraw? decimal - Amount to draw field
- taxSC? decimal - Tax system currency field
- downPaymentType? DownPaymentTypeEnum - Down payment type field
- docNumber? Signed32 - Document number field
- grossAmountToDrawFC? decimal - Gross amount to draw foreign currency field
- downPaymentsToDrawDetails? DownPaymentToDrawDetails[] - Down payments to draw details field
- dueDate? string - Due date field
- amountToDrawFC? decimal - Amount to draw foreign currency field
sap.businessone.purchasing: DownPaymentToDrawDetails
The DownPaymentToDrawDetails complex type of the SAP Business One Service Layer
Fields
- seqNum? Signed32 - Seq number field
- vatGroupCode? string - VAT group code field
- taxFC? decimal - Tax foreign currency field
- grossAmountToDraw? decimal - Gross amount to draw field
- docEntry? Signed32 - Document entry field
- grossAmountToDrawSC? decimal - Gross amount to draw system currency field
- tax? decimal - Tax field
- taxAdjust? BoYesNoEnum - Tax adjust field
- rowNum? Signed32 - Row number field
- amountToDrawSC? decimal - Amount to draw system currency field
- docInternalID? Signed32 - Document internal ID field
- isGrossLine? BoYesNoEnum - Is gross line field
- amountToDraw? decimal - Amount to draw field
- taxSC? decimal - Tax system currency field
- grossAmountToDrawFC? decimal - Gross amount to draw foreign currency field
- lineType? LineTypeEnum - Line type field
- vatPercent? decimal - VAT percent field
- amountToDrawFC? decimal - Amount to draw foreign currency field
sap.businessone.purchasing: EBooksDetail
The EBooksDetail complex type of the SAP Business One Service Layer
Fields
- IncomeClassificationType? Signed32 - Income classification type field
- IncomeClassificationCategory? Signed32 - Income classification category field
- ExpensesClassificationType? Signed32 - Expenses classification type field
- ExpensesClassificationCategory? Signed32 - Expenses classification category field
- NetValueLC? decimal - Net value local currency field
- NetValueFC? decimal - Net value foreign currency field
- NetValueSC? decimal - Net value system currency field
- VatCategory? Signed32 - VAT category field
- WithheldPercentCategory? Signed32 - Withheld percent category field
- WithheldAmountLC? decimal - Withheld amount local currency field
- WithheldAmountFC? decimal - Withheld amount foreign currency field
- WithheldAmountSC? decimal - Withheld amount system currency field
- VatClassificationType? Signed32 - VAT classification type field
- VatClassificationCategory? Signed32 - VAT classification category field
- VATExemptionCause? Signed32 - VAT exemption cause field
- RecType? Signed32 - Rec type field
- StampDutyCategory? Signed32 - Stamp duty category field
- OtherTaxesCategory? Signed32 - Other taxes category field
- FeesCategory? Signed32 - Fees category field
sap.businessone.purchasing: EDeliveryInfo
The EDeliveryInfo complex type of the SAP Business One Service Layer
Fields
- vehicleNo? string - Vehicle number field
- docEntry? Signed32 - Document entry field
- moveType? Signed32 - Move type field
sap.businessone.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 - Mapping ID field
- TestingMode? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Confirmation? string - Confirmation field
- EDocType? Signed32 - E document type field
- CFDiCancellationReason? string - CF di cancellation reason field
- CFDiCancellationResponse? string - CF di cancellation response field
- RelatedDocuments? RelatedDocument[] - Related documents field
- EBooksRelevant? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- EBooksMARK? string - E books MARK field
- EBooksMARKofNegative? string - E books MAR kof negative field
- EBooksInvoiceType? string - E books invoice type field
- EBooksInvoiceTypeofNegative? string - E books invoice typeof negative field
- EBillingIRN? string - E billing IRN field
- EETPKP? string - EETPKP field
- EETBKP? string - EETBKP field
- SignatureInputMessage? string - Signature input message field
- SignatureDigest? string - Signature digest field
- FechaTimbrado? string - Fecha timbrado field
- SelloSAT? string - Sello SAT field
- PaymentMethod? string - Payment method field
- RfcProvCertif? string - Rfc prov certif field
- NoCertificadoSAT? string - Number certificado SAT field
- FPASequenceNumber? Signed32 - FPA sequence number field
- FPASendDateSDI? string - FPA send date SDI field
- FPAProgressivo? string - FPA progressivo field
- ProtocolDescription? string - Protocol description field
- CFDiExport? string - CF di export field
- EBillingAckNo? string - E billing ack number field
- EBillingAckDt? string - E billing ack dt field
- EBillingSignedInvoice? string - E billing signed invoice field
- EBillingSignedQRCode? string - E billing signed QR code field
- EBillingResponseStatus? string - E billing response status field
- CFDiCancellationReference? string - CF di cancellation reference field
- EBooksQRCodePath? string - E books QR code path field
- EBooksQRCodePathofNegative? string - E books QR code pathof negative field
- CartaPorteID? string - Carta porte ID field
- EBooksDispatchDate? string - E books dispatch date field
- EBooksDispatchTime? string - E books dispatch time field
sap.businessone.purchasing: EWayBillDetails
The EWayBillDetails complex type of the SAP Business One Service Layer
Fields
- billFromName? string - Bill from name field
- shipToStateGSTCode? string - Ship to state GST code field
- transactionType? EWBTransactionTypeEnum - Transaction type field
- vehicleNo? string - Vehicle number field
- eWayBillExpirationDate? string - E way bill expiration date field
- dispatchFromAddress1? string - Dispatch from address1 field
- transporterName? string - Transporter name field
- billFromGSTIN? string - Bill from GSTIN field
- dispatchFromAddress2? string - Dispatch from address2 field
- dispatchFromZipCode? string - Dispatch from zip code field
- transporterID? string - Transporter ID field
- billToName? string - Bill to name field
- supplyType? EWBSupplyTypeEnum - Supply type field
- mainHSNEntry? Signed32 - Main HSN entry field
- shipToAddress2? string - Ship to address2 field
- shipToAddress1? string - Ship to address1 field
- distance? decimal - Distance field
- dispatchFromPlace? string - Dispatch from place field
- subType? Signed32 - Sub type field
- shipToZipCode? string - Ship to zip code field
- transportationMode? Signed32 - Transportation mode field
- transporterDocDate? string - Transporter document date field
- vehicleType? string - Vehicle type field
- transporterEntry? Signed32 - Transporter entry field
- docEntry? Signed32 - Document entry field
- documentType? string - Document type field
- billFromStateGSTCode? string - Bill from state GST code field
- dispatchFromStateGSTCode? string - Dispatch from state GST code field
- transporterDocNo? string - Transporter document number field
- shipToPlace? string - Ship to place field
- billToGSTIN? string - Bill to GSTIN field
- transporterLineNumber? Signed32 - Transporter line number field
- eWayBillNo? string - E way bill number field
- billToStateGSTCode? string - Bill to state GST code field
- eWayBillDate? string - E way bill date field
sap.businessone.purchasing: ExportProcess
The ExportProcess complex type of the SAP Business One Service Layer
Fields
- ladingBillTypeCode? Signed32 - Lading bill type code field
- quantityOfExportedItems? decimal - Quantity of exported items field
- exportationNatureCode? Signed32 - Exportation nature code field
- ladingBillDate? string - Lading bill date field
- natureOfExport? string - Nature of export field
- ladingBillNumber? string - Lading bill number field
- lineNumber? Signed32 - Line number field
- exportationRegistryNumber? Signed32 - Exportation registry number field
- additionalItemSequentialNumber? Signed32 - Additional item sequential number field
- exportationDeclarationDate? string - Exportation declaration date field
- drawbackSuspensionRegime? string - Drawback suspension regime field
- merchandiseLeftCustomsDate? string - Merchandise left customs date field
- exportationDocumentTypeCode? Signed32 - Exportation document type code field
- exportationRegistryDate? string - Exportation registry date field
- exportationDeclarationNumber? Signed32 - Exportation declaration number field
sap.businessone.purchasing: GeneratedAsset
The GeneratedAsset complex type of the SAP Business One Service Layer
Fields
- status? GeneratedAssetStatusEnum - Status field
- amount? decimal - Amount field
- serialNumber? string - Serial number field
- remarks? string - Remarks field
- docEntry? Signed32 - Document entry field
- assetCode? string - Asset code field
- lineNumber? Signed32 - Line number field
- visualOrder? Signed32 - Visual order field
- amountSC? decimal - Amount system currency field
sap.businessone.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 - Odata metadata field
- value? Document[] - Value field
- odataNextLink? string - Odata next link field
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 - Document field
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 - Document field
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 - Document close params field
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 - Document field
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 - Document field
sap.businessone.purchasing: ImportProcess
The ImportProcess complex type of the SAP Business One Service Layer
Fields
- dateOfRegistryDIDSIDA? string - Date of registry DIDSIDA field
- importationDocumentNumber? string - Importation document number field
- customsClearanceDate? string - Customs clearance date field
- additionalItemSequentialNumber? Signed32 - Additional item sequential number field
- drawbackSuspensionRegime? string - Drawback suspension regime field
- typeOfImport? string - Type of import field
- additionalFreightToNavyAuthority? decimal - Additional freight to navy authority field
- drawbackRegimeConcessionAccountNumber? string - Drawback regime concession account number field
- importationDocumentTypeCode? string - Importation document type code field
- additionalNumber? string - Additional number field
- additionalItemDiscountValue? decimal - Additional item discount value field
- lineNumber? Signed32 - Line number field
sap.businessone.purchasing: inline_response_200
Represents the response payload for the LandedCostsService_GetLandedCostList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? LandedCostParams[] - Value field
sap.businessone.purchasing: LandedCost
The LandedCost entity of the SAP Business One Service Layer
Fields
- DocEntry? Signed32 - Document entry field
- LandedCostNumber? Signed32 - Landed cost number field
- PostingDate? string - Posting date field
- DueDate? string - Due date field
- VendorCode? string - Vendor code field
- VendorName? string - Vendor name field
- Broker? string - Broker field
- BrokerName? string - Broker name field
- ClosedDocument? LandedCostDocStatusEnum - OData EnumType 'LandedCostDocStatusEnum'. Serialised by the Service Layer as the member name
- FileNumber? string - File number field
- Remarks? string - Remarks field
- Reference? string - Reference field
- DocumentCurrency? string - Document currency field
- DocumentRate? decimal - Document rate field
- ProjectedCustoms? decimal - Projected customs field
- ActualCustoms? decimal - Actual customs field
- ActualCustomsFC? decimal - Actual customs foreign currency field
- Tax1? decimal - Tax1 field
- Tax2? decimal - Tax2 field
- BeforeTax? decimal - Before tax field
- Total? decimal - Total field
- TotalFreightCharges? decimal - Total freight charges field
- ProjectedCustomsFC? decimal - Projected customs foreign currency field
- Tax1FC? decimal - Tax1 foreign currency field
- Tax2FC? decimal - Tax2 foreign currency field
- BeforeTaxFC? decimal - Before tax foreign currency field
- TotalFC? decimal - Total foreign currency field
- TotalFreightChargesFC? decimal - Total freight charges foreign currency field
- Series? Signed32 - Series field
- CustomsAffectsInventory? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- AmountToBalance? decimal - Amount to balance field
- AmountToBalanceFC? decimal - Amount to balance foreign currency field
- BillofLadingNumber? string - Billof lading number field
- TransportType? Signed32 - Transport type field
- TransactionNumber? Signed32 - Transaction number field
- JournalRemarks? string - Journal remarks field
- AttachmentEntry? Signed32 - Attachment entry field
- LandedCost_ItemLines? LandedCostItemLine[] - Landed cost item lines field
- LandedCost_CostLines? LandedCostCostLine[] - Landed cost cost lines field
- PurchaseDeliveryNotes? Document[] - Purchase delivery notes field
sap.businessone.purchasing: LandedCostCostLine
The LandedCost_CostLine complex type of the SAP Business One Service Layer
Fields
- DocEntry? Signed32 - Document entry field
- LandedCostCode? string - Landed cost code field
- AllocationBy? LandedCostAllocationByEnum - OData EnumType 'LandedCostAllocationByEnum'. Serialised by the Service Layer as the member name
- Amount? decimal - Amount field
- AmountFC? decimal - Amount foreign currency field
- Factor? decimal - Factor field
- 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 - Open amount field
- OpenAmountFC? decimal - Open amount foreign currency field
- Broker? string - Broker field
- BrokerName? string - Broker name field
- 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 - Document entry field
- LineNumber? Signed32 - Line number field
- BaseDocumentType? LandedCostBaseDocumentTypeEnum - OData EnumType 'LandedCostBaseDocumentTypeEnum'. Serialised by the Service Layer as the member name
- BaseEntry? Signed32 - Base entry field
- Number? string - Number field
- ItemDescription? string - Item description field
- Quantity? decimal - Quantity field
- BaseDocumentPrice? decimal - Base document price field
- Rate? decimal - Rate field
- ProjectedCustoms? decimal - Projected customs field
- ProjectedCustomsFC? decimal - Projected customs foreign currency field
- Expenditure? decimal - Expenditure field
- ExpenditureFC? decimal - Expenditure foreign currency field
- WarehousePrice? decimal - Warehouse price field
- WarehousePriceFC? decimal - Warehouse price foreign currency field
- LineTotal? decimal - Line total field
- LineTotalFC? decimal - Line total foreign currency field
- Volume? decimal - Volume field
- VolumeUoM? Signed32 - Volume uo m field
- Weight1? decimal - Weight1 field
- Weight1UnitCode? Signed32 - Weight1 unit code field
- Weight2? decimal - Weight2 field
- Weight2UnitCode? Signed32 - Weight2 unit code field
- VendorCode? string - Vendor code field
- Reference? string - Reference field
- FactorWithoutCustoms? decimal - Factor without customs field
- FactorWithCustoms? decimal - Factor with customs field
- InventoryUoM? string - Inventory uo m field
- BlockNumber? string - Block number field
- ImportLog? string - Import log field
- OriginalWarehouse? string - Original warehouse field
- Warehouse? string - Warehouse field
- ReleaseNumber? Signed32 - Release number field
- VariantCosts? decimal - Variant costs field
- FixCosts? decimal - Fix costs field
- VariantCostsFC? decimal - Variant costs foreign currency field
- FixCostsFC? decimal - Fix costs foreign currency field
- Customs? decimal - Customs field
- CustomsFC? decimal - Customs foreign currency field
- BaseDocumentValueLineTotal? decimal - Base document value line total field
- BaseDocumentValueLineTotalFC? decimal - Base document value line total foreign currency field
- AllocatedUnitCostsLineTotal? decimal - Allocated unit costs line total field
- AllocatedUnitCostsLineTotalFC? decimal - Allocated unit costs line total foreign currency field
- CustomsValue? decimal - Customs value field
- CustomsValueFC? decimal - Customs value foreign currency field
- TotalCosts? decimal - Total costs field
- TotalCostsFC? decimal - Total costs foreign currency field
- TotalVolume? decimal - Total volume field
- BaseLine? Signed32 - Base line field
- TotalLineProjectedCustoms? decimal - Total line projected customs field
- AllocatedCostsLineTotal? decimal - Allocated costs line total field
- FOBandIncludedCosts? decimal - FO band included costs field
- FOBandIncludedCostsFC? decimal - FO band included costs foreign currency field
- Project? string - Project field
- DistributionRule? string - Distribution rule field
- DistributionRule2? string - Distribution rule2 field
- DistributionRule3? string - Distribution rule3 field
- DistributionRule4? string - Distribution rule4 field
- DistributionRule5? string - Distribution rule5 field
- PriceList? Signed32 - Price list field
- 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 - Origin line field
- Currency? string - Currency field
- CustomsGroupRate? decimal - Customs group rate field
- VatGroup? string - VAT group field
- VatPercent? decimal - VAT percent field
- ExciseSum? decimal - Excise sum field
- ExciseSumFC? decimal - Excise sum foreign currency field
- ExciseAffectStock? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- CustomsCost? decimal - Customs cost field
- CustomsCostFC? decimal - Customs cost foreign currency field
- CustomsAffectStock? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- CustomsVat? decimal - Customs VAT field
- CustomsVatFC? decimal - Customs VAT foreign currency field
- CustomsVatAffectStock? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- CCDNumber? string - CCD number field
- CorrectedBaseDocumentValue? decimal - Corrected base document value field
- CorrectedBaseDocumentValueFC? decimal - Corrected base document value foreign currency field
sap.businessone.purchasing: LandedCostParams
The LandedCostParams complex type of the SAP Business One Service Layer
Fields
- docEntry? Signed32 - Document entry field
sap.businessone.purchasing: LandedCostsCode
The LandedCostsCode entity of the SAP Business One Service Layer
Fields
- Code? string - Code field
- Name? string - Name field
- AllocationBy? BoAllocationByEnum - OData EnumType 'BoAllocationByEnum'. Serialised by the Service Layer as the member name
- LandedCostsAllocationAccount? string - Landed costs allocation account field
sap.businessone.purchasing: LandedCostsCodesCollectionResponse
A paged collection of LandedCostsCodes entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? LandedCostsCode[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.purchasing: LandedCostsCollectionResponse
A paged collection of LandedCosts entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? LandedCost[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.purchasing: LineExpenseTaxJurisdiction
The LineExpenseTaxJurisdiction complex type of the SAP Business One Service Layer
Fields
- JurisdictionCode? string - Jurisdiction code field
- JurisdictionType? Signed32 - Jurisdiction type field
- TaxAmount? decimal - Tax amount field
- TaxAmountSC? decimal - Tax amount system currency field
- TaxAmountFC? decimal - Tax amount foreign currency field
- TaxRate? decimal - Tax rate field
- DocEntry? Signed32 - Document entry field
- LineNumber? Signed32 - Line number field
- RowSequence? Signed32 - Row sequence field
- ExternalCalcTaxRate? decimal - External calc tax rate field
- ExternalCalcTaxAmount? decimal - External calc tax amount field
- ExternalCalcTaxAmountFC? decimal - External calc tax amount foreign currency field
- ExternalCalcTaxAmountSC? decimal - External calc tax amount system currency field
sap.businessone.purchasing: LineFreightEBooksDetail
The LineFreightEBooksDetail complex type of the SAP Business One Service Layer
Fields
- IncomeClassificationType? Signed32 - Income classification type field
- IncomeClassificationCategory? Signed32 - Income classification category field
- ExpensesClassificationType? Signed32 - Expenses classification type field
- ExpensesClassificationCategory? Signed32 - Expenses classification category field
- NetValueLC? decimal - Net value local currency field
- NetValueFC? decimal - Net value foreign currency field
- NetValueSC? decimal - Net value system currency field
- VatCategory? Signed32 - VAT category field
- WithheldPercentCategory? Signed32 - Withheld percent category field
- WithheldAmountLC? decimal - Withheld amount local currency field
- WithheldAmountFC? decimal - Withheld amount foreign currency field
- WithheldAmountSC? decimal - Withheld amount system currency field
- VatClassificationType? Signed32 - VAT classification type field
- VatClassificationCategory? Signed32 - VAT classification category field
- VATExemptionCause? Signed32 - VAT exemption cause field
sap.businessone.purchasing: LineTaxJurisdiction
The LineTaxJurisdiction complex type of the SAP Business One Service Layer
Fields
- JurisdictionCode? string - Jurisdiction code field
- JurisdictionType? Signed32 - Jurisdiction type field
- TaxAmount? decimal - Tax amount field
- TaxAmountSC? decimal - Tax amount system currency field
- TaxAmountFC? decimal - Tax amount foreign currency field
- TaxRate? decimal - Tax rate field
- DocEntry? Signed32 - Document entry field
- LineNumber? Signed32 - Line number field
- RowSequence? Signed32 - Row sequence field
- ExternalCalcTaxRate? decimal - External calc tax rate field
- ExternalCalcTaxAmount? decimal - External calc tax amount field
- ExternalCalcTaxAmountFC? decimal - External calc tax amount foreign currency field
- ExternalCalcTaxAmountSC? decimal - External calc tax amount system currency field
- BaseSum? decimal - Base sum field
- TaxInPrice? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- NonDeductiblePercent? decimal - Non deductible percent field
- TaxOnReserveInvoice? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Exempt? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Unencumbered? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
sap.businessone.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 - Odata metadata field
- value? Document[] - Value field
- odataNextLink? string - Odata next link field
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 - Document field
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 - Document field
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 - Document field
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 - Document close params field
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 - Document field
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 - Document field
sap.businessone.purchasing: PurchaseDeliveryNotesCollectionResponse
A paged collection of PurchaseDeliveryNotes entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? Document[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.purchasing: PurchaseDeliveryNotesService_ApproveAndAdd_body
Represents the request payload for the PurchaseDeliveryNotesService_ApproveAndAdd operation of the SAP Business One Service Layer
Fields
- document? Document - Document field
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 - Document field
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 - Document field
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 - Document close params field
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 - Document field
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 - Document field
sap.businessone.purchasing: PurchaseDownPaymentsCollectionResponse
A paged collection of PurchaseDownPayments entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? Document[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.purchasing: PurchaseDownPaymentsService_ApproveAndAdd_body
Represents the request payload for the PurchaseDownPaymentsService_ApproveAndAdd operation of the SAP Business One Service Layer
Fields
- document? Document - Document field
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 - Document field
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 - Document close params field
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 - Document field
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 - Document field
sap.businessone.purchasing: PurchaseInvoicesCollectionResponse
A paged collection of PurchaseInvoices entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? Document[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.purchasing: PurchaseInvoicesService_ApproveAndAdd_body
Represents the request payload for the PurchaseInvoicesService_ApproveAndAdd operation of the SAP Business One Service Layer
Fields
- document? Document - Document field
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 - Document field
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 - Document field
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 - Document close params field
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 - Document field
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 - Document field
sap.businessone.purchasing: PurchaseOrdersCollectionResponse
A paged collection of PurchaseOrders entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? Document[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.purchasing: PurchaseOrdersService_ApproveAndAdd_body
Represents the request payload for the PurchaseOrdersService_ApproveAndAdd operation of the SAP Business One Service Layer
Fields
- document? Document - Document field
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 - Document field
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 - Document close params field
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 - Document field
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 - Document field
sap.businessone.purchasing: PurchaseQuotationsCollectionResponse
A paged collection of PurchaseQuotations entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? Document[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.purchasing: PurchaseQuotationsService_ApproveAndAdd_body
Represents the request payload for the PurchaseQuotationsService_ApproveAndAdd operation of the SAP Business One Service Layer
Fields
- document? Document - Document field
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 - Document field
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 - Document close params field
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 - Document field
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 - Document field
sap.businessone.purchasing: PurchaseRequestsCollectionResponse
A paged collection of PurchaseRequests entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? Document[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.purchasing: PurchaseRequestService_ApproveAndAdd_body
Represents the request payload for the PurchaseRequestService_ApproveAndAdd operation of the SAP Business One Service Layer
Fields
- document? Document - Document field
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 - Document field
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 - Document close params field
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 - Document field
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 - Document field
sap.businessone.purchasing: PurchaseReturnsCollectionResponse
A paged collection of PurchaseReturns entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? Document[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.purchasing: PurchaseReturnsService_ApproveAndAdd_body
Represents the request payload for the PurchaseReturnsService_ApproveAndAdd operation of the SAP Business One Service Layer
Fields
- document? Document - Document field
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 - Document field
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 - Document field
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 - Document close params field
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 - Document field
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 - Document field
sap.businessone.purchasing: PurchaseTaxInvoice
The PurchaseTaxInvoice entity of the SAP Business One Service Layer
Fields
- DocEntry? Signed32 - Document entry field
- DocNum? Signed32 - Document number field
- DocType? BoTaxInvoiceTypes - OData EnumType 'BoTaxInvoiceTypes'. Serialised by the Service Layer as the member name
- Printed? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- DocDate? string - Document date field
- CardCode? string - Card code field
- CreationDate? string - Creation date field
- UpdateDate? string - Update date field
- DocDueDate? string - Document due date field
- Series? Signed32 - Series field
- Segment? Signed32 - Segment field
- ContactPersonCode? Signed32 - Contact person code field
- TaxDate? string - Tax date field
- Comments? string - Comments field
- ShipToCode? string - Ship to code field
- Address? string - Address field
- Address2? string - Address2 field
- CurrencySource? BoCurrencySources - OData EnumType 'BoCurrencySources'. Serialised by the Service Layer as the member name
- DocCurrency? string - Document currency field
- CustomerOrVendorRefNo? string - Customer or vendor reference number field
- CustomerOrVendorName? string - Customer or vendor name field
- CancelDate? string - Cancel date field
- DocumentTotal? decimal - Document total field
- TaxTotal? decimal - Tax total field
- PaymentRefNo? string - Payment reference number field
- PaymentRefDate? string - Payment reference date field
- AlterationRevision? Signed32 - Alteration revision field
- PurchaseTaxInvoiceLines? PurchaseTaxInvoiceLine[] - Purchase tax invoice lines field
- PurchaseTaxInvoiceOperationCodes? PurchaseTaxInvoiceOperationCode[] - Purchase tax invoice operation codes field
- PurchaseTaxInvoiceDocumentReferences? PurchaseTaxInvoiceDocumentReference[] - Purchase tax invoice document references field
- PurchaseTaxInvoiceLinkedDownPayments? PurchaseTaxInvoiceLinkedDownPayment[] - Purchase tax invoice linked down payments field
sap.businessone.purchasing: PurchaseTaxInvoiceDocumentReference
The PurchaseTaxInvoiceDocumentReference complex type of the SAP Business One Service Layer
Fields
- DocEntry? Signed32 - Document entry field
- LineNumber? Signed32 - Line number field
- ReferencedDocEntry? Signed32 - Referenced document entry field
- ReferencedDocNumber? Signed32 - Referenced document number field
- ExternalReferencedDocNumber? string - External referenced document number field
- ReferencedObjectType? ReferencedObjectTypeEnum - OData EnumType 'ReferencedObjectTypeEnum'. Serialised by the Service Layer as the member name
- IssueDate? string - Issue date field
- Remark? string - Remark field
- CardCode? string - Card code field
sap.businessone.purchasing: PurchaseTaxInvoiceLine
The PurchaseTaxInvoiceLine complex type of the SAP Business One Service Layer
Fields
- RefEntry1? Signed32 - Reference entry1 field
- RefEntry2? Signed32 - Reference entry2 field
sap.businessone.purchasing: PurchaseTaxInvoiceLinkedDownPayment
The PurchaseTaxInvoiceLinkedDownPayment complex type of the SAP Business One Service Layer
Fields
- DocEntry? Signed32 - Document entry field
- LineNum? Signed32 - Line number field
- DownPaymentType? Signed32 - Down payment type field
- DownPaymentEntry? Signed32 - Down payment entry field
- DownPaymentNum? Signed32 - Down payment number field
- PaymentType? Signed32 - Payment type field
- PaymentEntry? Signed32 - Payment entry field
- PaymentNum? Signed32 - Payment number field
- PaymentTaxDate? string - Payment tax date field
- TransferDate? string - Transfer date field
- TransferReference? string - Transfer reference field
- AmountToDraw? decimal - Amount to draw field
- AmountToDrawFC? decimal - Amount to draw foreign currency field
- AmountToDrawSC? decimal - Amount to draw system currency field
- DocCurrency? string - Document currency field
sap.businessone.purchasing: PurchaseTaxInvoiceOperationCode
The PurchaseTaxInvoiceOperationCode complex type of the SAP Business One Service Layer
Fields
- OpCode? Signed32 - Op code field
sap.businessone.purchasing: PurchaseTaxInvoicesCollectionResponse
A paged collection of PurchaseTaxInvoices entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? PurchaseTaxInvoice[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.purchasing: RelatedDocument
The RelatedDocument complex type of the SAP Business One Service Layer
Fields
- absEnry? Signed32 - Abs enry field
- absEntry? Signed32 - Abs entry field
- uUID? string - U UID field
- docTye? RelatedDocumentTypeEnum - Document tye field
- docType? RelatedDocumentTypeEnum - Document type field
sap.businessone.purchasing: SerialNumber
The SerialNumber complex type of the SAP Business One Service Layer
Fields
- ManufacturerSerialNumber? string - Manufacturer serial number field
- InternalSerialNumber? string - Internal serial number field
- ExpiryDate? string - Expiry date field
- ManufactureDate? string - Manufacture date field
- ReceptionDate? string - Reception date field
- WarrantyStart? string - Warranty start field
- WarrantyEnd? string - Warranty end field
- Location? string - Location field
- Notes? string - Notes field
- BatchID? string - Batch ID field
- SystemSerialNumber? Signed32 - System serial number field
- BaseLineNumber? Signed32 - Base line number field
- Quantity? decimal - Quantity field
- TrackingNote? Signed32 - Tracking note field
- TrackingNoteLine? Signed32 - Tracking note line field
- ItemCode? string - Item code field
sap.businessone.purchasing: TaxExtension
The TaxExtension complex type of the SAP Business One Service Layer
Fields
- buildingS? string - Building s field
- taxId3? string - Tax id3 field
- taxId2? string - Tax id2 field
- taxId5? string - Tax id5 field
- taxId4? string - Tax id4 field
- packQuantity? Signed32 - Pack quantity field
- taxId1? string - Tax id1 field
- taxId0? string - Tax id0 field
- vehicle? string - Vehicle field
- portCode? string - Port code field
- taxId7? string - Tax id7 field
- buildingB? string - Building b field
- taxId6? string - Tax id6 field
- taxId9? string - Tax id9 field
- taxId8? string - Tax id8 field
- carrier? string - Carrier field
- shipUnitNo? Signed32 - Ship unit number field
- streetS? string - Street s field
- differentialOfTaxRate? Signed32 - Differential of tax rate field
- zipCodeS? string - Zip code s field
- countryB? string - Country b field
- grossWeight? decimal - Gross weight field
- globalLocationNumberB? string - Global location number b field
- packDescription? string - Pack description field
- mainUsage? Signed32 - Main usage field
- docEntry? Signed32 - Document entry field
- brand? string - Brand field
- stateS? string - State s field
- countryS? string - Country s field
- blockB? string - Block b field
- state? string - State field
- globalLocationNumberS? string - Global location number s field
- importOrExportType? ImportOrExportTypeEnum - Import or export type field
- vehicleState? string - Vehicle state field
- blockS? string - Block s field
- stateB? string - State b field
- cityS? string - City s field
- county? string - County field
- boEValue? decimal - Bo e value field
- nFRef? string - N f reference field
- countyB? string - County b field
- billOfEntryNo? string - Bill of entry number field
- countyS? string - County s field
- taxId14? string - Tax id14 field
- taxId13? string - Tax id13 field
- claimRefund? BoYesNoEnum - Claim refund field
- taxId12? string - Tax id12 field
- netWeight? decimal - Net weight field
- originalBillOfEntryDate? string - Original bill of entry date field
- billOfEntryDate? string - Bill of entry date field
- zipCodeB? string - Zip code b field
- importOrExport? BoYesNoEnum - Import or export field
- originalBillOfEntryNo? string - Original bill of entry number field
- streetB? string - Street b field
- cityB? string - City b field
- isIGSTAccount? BoYesNoEnum - Is IGST account field
- incoterms? string - Incoterms field
sap.businessone.purchasing: WithholdingTaxData
The WithholdingTaxData complex type of the SAP Business One Service Layer
Fields
- WTCode? string - Withholding tax code field
- WTAmountSys? decimal - Withholding tax amount sys field
- WTAmountFC? decimal - Withholding tax amount foreign currency field
- WTAmount? decimal - Withholding tax amount field
- WithholdingType? string - Withholding type field
- TaxableAmountinSys? decimal - Taxable amountin sys field
- TaxableAmountFC? decimal - Taxable amount foreign currency field
- TaxableAmount? decimal - Taxable amount field
- RoundingType? string - Rounding type field
- Rate? decimal - Rate field
- Criteria? string - Criteria field
- Category? string - Category field
- BaseType? string - Base type field
- AppliedWTAmountSys? decimal - Applied withholding tax amount sys field
- AppliedWTAmountFC? decimal - Applied withholding tax amount foreign currency field
- AppliedWTAmount? decimal - Applied withholding tax amount field
- GLAccount? string - General ledger account field
- LineNum? Signed32 - Line number field
- BaseDocEntry? Signed32 - Base document entry field
- BaseDocLine? Signed32 - Base document line field
- BaseDocType? Signed32 - Base document type field
- BaseDocumentReference? Signed32 - Base document reference field
- Status? BoStatus - OData EnumType 'BoStatus'. Serialised by the Service Layer as the member name
- TargetAbsEntry? Signed32 - Target abs entry field
- TargetDocumentType? Signed32 - Target document type field
sap.businessone.purchasing: WithholdingTaxDataWTX
The WithholdingTaxDataWTX complex type of the SAP Business One Service Layer
Fields
- WTAmountSys? decimal - Withholding tax amount sys field
- WTAmountFC? decimal - Withholding tax amount foreign currency field
- WTAmount? decimal - Withholding tax amount field
- WithholdingType? string - Withholding type field
- TaxableAmountinSys? decimal - Taxable amountin sys field
- TaxableAmountFC? decimal - Taxable amount foreign currency field
- TaxableAmount? decimal - Taxable amount field
- Rate? decimal - Rate field
- Category? string - Category field
- BaseType? string - Base type field
- AppliedWTAmountSys? decimal - Applied withholding tax amount sys field
- AppliedWTAmountFC? decimal - Applied withholding tax amount foreign currency field
- AppliedWTAmount? decimal - Applied withholding tax amount field
- GLAccount? string - General ledger account field
- LineNum? Signed32 - Line number field
- BaseDocEntry? Signed32 - Base document entry field
- BaseDocLine? Signed32 - Base document line field
- BaseDocType? string - Base document type field
- WTAbsId? string - Withholding tax abs ID field
- ExemptRate? decimal - Exempt rate field
- BaseNetAmountSys? decimal - Base net amount sys field
- BaseNetAmountFC? decimal - Base net amount foreign currency field
- BaseNetAmount? decimal - Base net amount field
- BaseVatmountSys? decimal - Base vatmount sys field
- BaseVatmountFC? decimal - Base vatmount foreign currency field
- BaseVatmount? decimal - Base vatmount field
- AccumBaseAmountSys? decimal - Accum base amount sys field
- AccumBaseAmountFC? decimal - Accum base amount foreign currency field
- AccumBaseAmount? decimal - Accum base amount field
- AccumWTaxAmountSys? decimal - Accum w tax amount sys field
- AccumWTaxAmountFC? decimal - Accum w tax amount foreign currency field
- AccumWTaxAmount? decimal - Accum w tax amount field
sap.businessone.purchasing: WithholdingTaxLine
The WithholdingTaxLine complex type of the SAP Business One Service Layer
Fields
- WTCode? string - Withholding tax code field
- WTAmountSys? decimal - Withholding tax amount sys field
- WTAmountFC? decimal - Withholding tax amount foreign currency field
- WTAmount? decimal - Withholding tax amount field
- WithholdingType? string - Withholding type field
- TaxableAmountinSys? decimal - Taxable amountin sys field
- TaxableAmountFC? decimal - Taxable amount foreign currency field
- TaxableAmount? decimal - Taxable amount field
- RoundingType? string - Rounding type field
- Rate? decimal - Rate field
- Criteria? string - Criteria field
- Category? string - Category field
- BaseType? string - Base type field
- AppliedWTAmountSys? decimal - Applied withholding tax amount sys field
- AppliedWTAmountFC? decimal - Applied withholding tax amount foreign currency field
- AppliedWTAmount? decimal - Applied withholding tax amount field
- GLAccount? string - General ledger account field
- LineNum? Signed32 - Line number field
- BaseDocEntry? Signed32 - Base document entry field
- BaseDocLine? Signed32 - Base document line field
- BaseDocType? Signed32 - Base document type field
- BaseDocumentReference? Signed32 - Base document reference field
- Status? BoStatus - OData EnumType 'BoStatus'. Serialised by the Service Layer as the member name
- TargetAbsEntry? Signed32 - Target abs entry field
- TargetDocumentType? Signed32 - Target document type field
- CSTCodeIncoming? string - CST code incoming field
- CSTCodeOutgoing? string - CST code outgoing field
- Doc1LineNum? Signed32 - Doc1 line number field
Union types
sap.businessone.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: 6 days ago
Version: 1.0.2
License: Apache-2.0
Compatibility
Platform: any
Ballerina version: 2201.13.0
GraalVM compatible: Yes
Pull count
Total: 1
Current verison: 1
Weekly downloads
Keywords
Name/SAP Business One Purchasing
Area/ERP & Business Operations
Vendor/SAP
Cost/Paid
Type/Connector
SAP Business One
Purchasing
ERP
Contributors